public inbox for linux-next@vger.kernel.org 
 help / color / mirror / Atom feed
* Re: [BUG] Kernel panic in __migrate_swap_task() on 6.16-rc2 (NULL pointer dereference)
       [not found] <CAE4VaGBLJxpd=NeRJXpSCuw=REhC5LWJpC29kDy-Zh2ZDyzQZA@mail.gmail.com>
@ 2025-06-18  4:43 ` Aithal, Srikanth
  2025-06-18  4:48   ` Aithal, Srikanth
  0 siblings, 1 reply; 2+ messages in thread
From: Aithal, Srikanth @ 2025-06-18  4:43 UTC (permalink / raw)
  To: Jirka Hladky, linux-kernel, Linux-Next Mailing List

[-- Attachment #1: Type: text/plain, Size: 3431 bytes --]

Hi all,

I am hitting similar issue starting next-20250616 as well with 
next-20250617 
[https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git].

I have hit the issue on two of our CI machines [AMD EPYC Milan and AMD 
EPYC Genoa] while running normal as well as SEV guest boot tests.



I am attaching both run logs here.



Thanks and Regards,
Srikanth Aithal
Srikanth.Aithal@amd•com



On 6/18/2025 1:35 AM, Jirka Hladky wrote:
> Hi all,
> 
> I’ve encountered a reproducible kernel panic on 6.16-rc1 and 6.16-rc2
> involving a NULL pointer dereference in `__migrate_swap_task()` during
> CPU migration. This occurred on various AMD and Intel systems while
> running a CPU-intensive workload (Linpack, Stress_ng - it's not
> specific to a benchmark).
> 
> Full trace below:
> ---
> BUG: kernel NULL pointer dereference, address: 00000000000004c8
> #PF: supervisor read access in kernel mode
> #PF: error_code(0x0000) - not-present page
> PGD 4078b99067 P4D 4078b99067 PUD 0
> Oops: Oops: 0000 [#1] SMP NOPTI
> CPU: 74 UID: 0 PID: 466 Comm: migration/74 Kdump: loaded Not tainted
> 6.16.0-0.rc2.24.eln149.x86_64 #1 PREEMPT(lazy)
> Hardware name: GIGABYTE R182-Z91-00/MZ92-FS0-00, BIOS M07 09/03/2021
> Stopper: multi_cpu_stop+0x0/0x130 <- migrate_swap+0xa7/0x120
> RIP: 0010:__migrate_swap_task+0x2f/0x170
> Code: 41 55 4c 63 ee 41 54 55 53 48 89 fb 48 83 87 a0 04 00 00 01 65
> 48 ff 05 e7 14 dd 02 48 8b af 50 0a 00 00 66 90 e8 61 93 07 00 <48> 8b
> bd c8 04 00 00 e8 85 11 35 00 48 85 c0 74 12 ba 01 00 00 00
> RSP: 0018:ffffce79cd90bdd0 EFLAGS: 00010002
> RAX: 0000000000000001 RBX: ffff8e9c7290d1c0 RCX: 0000000000000000
> RDX: ffff8e9c71e83680 RSI: 000000000000001b RDI: ffff8e9c7290d1c0
> RBP: 0000000000000000 R08: 00056e36392913e7 R09: 00000000002ab980
> R10: ffff8eac2fcb13c0 R11: ffff8e9c77997410 R12: ffff8e7c2fcf12c0
> R13: 000000000000001b R14: ffff8eac71eda944 R15: ffff8eac71eda944
> FS:  0000000000000000(0000) GS:ffff8eac9db4a000(0000) knlGS:0000000000000000
> CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
> CR2: 00000000000004c8 CR3: 0000003072388003 CR4: 0000000000f70ef0
> PKRU: 55555554
> Call Trace:
>   <TASK>
>   migrate_swap_stop+0xe8/0x190
>   multi_cpu_stop+0xf3/0x130
>   ? __pfx_multi_cpu_stop+0x10/0x10
>   cpu_stopper_thread+0x97/0x140
>   ? __pfx_smpboot_thread_fn+0x10/0x10
>   smpboot_thread_fn+0xf3/0x220
>   kthread+0xfc/0x240
>   ? __pfx_kthread+0x10/0x10
>   ? __pfx_kthread+0x10/0x10
>   ret_from_fork+0xf0/0x110
>   ? __pfx_kthread+0x10/0x10
>   ret_from_fork_asm+0x1a/0x30
>   </TASK>
> ---
> 
> **Kernel Version:**
> 6.16.0-0.rc2.24.eln149.x86_64 (Fedora rawhide)
> https://koji.fedoraproject.org/koji/buildinfo?buildID=2732950
> 
> **Reproducibility:**
> Happened multiple times during routine CPU-intensive operations. It
> happens with various benchmarks (Stress_ng, Linpack) after several
> hours of performance testing. `migration/*` kernel threads hit a NULL
> dereference in `__migrate_swap_task`.
> 
> **System Info:**
> - Platform: GIGABYTE R182-Z91-00 (dual socket EPYC)
> - BIOS: M07 09/03/2021
> - Config: Based on Fedora’s debug kernel (`PREEMPT(lazy)`)
> 
> **Crash Cause (tentative):**
> NULL dereference at offset `0x4c8` from a task struct pointer in
> `__migrate_swap_task`. Possibly an uninitialized or freed
> `task_struct` field.
> 
> Please let me know if you’d like me to test a patch or if you need
> more details.
> 
> Thanks,
> Jirka
> 

[-- Attachment #2: Genoa_log.tar.gz --]
[-- Type: application/gzip, Size: 91106 bytes --]

[-- Attachment #3: Milan_log.tar.gz --]
[-- Type: application/gzip, Size: 831857 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [BUG] Kernel panic in __migrate_swap_task() on 6.16-rc2 (NULL pointer dereference)
  2025-06-18  4:43 ` [BUG] Kernel panic in __migrate_swap_task() on 6.16-rc2 (NULL pointer dereference) Aithal, Srikanth
@ 2025-06-18  4:48   ` Aithal, Srikanth
  0 siblings, 0 replies; 2+ messages in thread
From: Aithal, Srikanth @ 2025-06-18  4:48 UTC (permalink / raw)
  To: Jirka Hladky, linux-kernel, Linux-Next Mailing List

[-- Attachment #1: Type: text/plain, Size: 3684 bytes --]



I could not see the logs which I attached. Now attaching them again.



On 6/18/2025 10:13 AM, Aithal, Srikanth wrote:
> Hi all,
> 
> I am hitting similar issue starting next-20250616 as well with 
> next-20250617 [https://git.kernel.org/pub/scm/linux/kernel/git/next/ 
> linux-next.git].
> 
> I have hit the issue on two of our CI machines [AMD EPYC Milan and AMD 
> EPYC Genoa] while running normal as well as SEV guest boot tests.
> 
> 
> 
> I am attaching both run logs here.
> 
> 
> 
> Thanks and Regards,
> Srikanth Aithal
> Srikanth.Aithal@amd•com
> 
> 
> 
> On 6/18/2025 1:35 AM, Jirka Hladky wrote:
>> Hi all,
>>
>> I’ve encountered a reproducible kernel panic on 6.16-rc1 and 6.16-rc2
>> involving a NULL pointer dereference in `__migrate_swap_task()` during
>> CPU migration. This occurred on various AMD and Intel systems while
>> running a CPU-intensive workload (Linpack, Stress_ng - it's not
>> specific to a benchmark).
>>
>> Full trace below:
>> ---
>> BUG: kernel NULL pointer dereference, address: 00000000000004c8
>> #PF: supervisor read access in kernel mode
>> #PF: error_code(0x0000) - not-present page
>> PGD 4078b99067 P4D 4078b99067 PUD 0
>> Oops: Oops: 0000 [#1] SMP NOPTI
>> CPU: 74 UID: 0 PID: 466 Comm: migration/74 Kdump: loaded Not tainted
>> 6.16.0-0.rc2.24.eln149.x86_64 #1 PREEMPT(lazy)
>> Hardware name: GIGABYTE R182-Z91-00/MZ92-FS0-00, BIOS M07 09/03/2021
>> Stopper: multi_cpu_stop+0x0/0x130 <- migrate_swap+0xa7/0x120
>> RIP: 0010:__migrate_swap_task+0x2f/0x170
>> Code: 41 55 4c 63 ee 41 54 55 53 48 89 fb 48 83 87 a0 04 00 00 01 65
>> 48 ff 05 e7 14 dd 02 48 8b af 50 0a 00 00 66 90 e8 61 93 07 00 <48> 8b
>> bd c8 04 00 00 e8 85 11 35 00 48 85 c0 74 12 ba 01 00 00 00
>> RSP: 0018:ffffce79cd90bdd0 EFLAGS: 00010002
>> RAX: 0000000000000001 RBX: ffff8e9c7290d1c0 RCX: 0000000000000000
>> RDX: ffff8e9c71e83680 RSI: 000000000000001b RDI: ffff8e9c7290d1c0
>> RBP: 0000000000000000 R08: 00056e36392913e7 R09: 00000000002ab980
>> R10: ffff8eac2fcb13c0 R11: ffff8e9c77997410 R12: ffff8e7c2fcf12c0
>> R13: 000000000000001b R14: ffff8eac71eda944 R15: ffff8eac71eda944
>> FS:  0000000000000000(0000) GS:ffff8eac9db4a000(0000) 
>> knlGS:0000000000000000
>> CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
>> CR2: 00000000000004c8 CR3: 0000003072388003 CR4: 0000000000f70ef0
>> PKRU: 55555554
>> Call Trace:
>>   <TASK>
>>   migrate_swap_stop+0xe8/0x190
>>   multi_cpu_stop+0xf3/0x130
>>   ? __pfx_multi_cpu_stop+0x10/0x10
>>   cpu_stopper_thread+0x97/0x140
>>   ? __pfx_smpboot_thread_fn+0x10/0x10
>>   smpboot_thread_fn+0xf3/0x220
>>   kthread+0xfc/0x240
>>   ? __pfx_kthread+0x10/0x10
>>   ? __pfx_kthread+0x10/0x10
>>   ret_from_fork+0xf0/0x110
>>   ? __pfx_kthread+0x10/0x10
>>   ret_from_fork_asm+0x1a/0x30
>>   </TASK>
>> ---
>>
>> **Kernel Version:**
>> 6.16.0-0.rc2.24.eln149.x86_64 (Fedora rawhide)
>> https://koji.fedoraproject.org/koji/buildinfo?buildID=2732950
>>
>> **Reproducibility:**
>> Happened multiple times during routine CPU-intensive operations. It
>> happens with various benchmarks (Stress_ng, Linpack) after several
>> hours of performance testing. `migration/*` kernel threads hit a NULL
>> dereference in `__migrate_swap_task`.
>>
>> **System Info:**
>> - Platform: GIGABYTE R182-Z91-00 (dual socket EPYC)
>> - BIOS: M07 09/03/2021
>> - Config: Based on Fedora’s debug kernel (`PREEMPT(lazy)`)
>>
>> **Crash Cause (tentative):**
>> NULL dereference at offset `0x4c8` from a task struct pointer in
>> `__migrate_swap_task`. Possibly an uninitialized or freed
>> `task_struct` field.
>>
>> Please let me know if you’d like me to test a patch or if you need
>> more details.
>>
>> Thanks,
>> Jirka
>>

[-- Attachment #2: Genoa_migrate_swap_stop_linux_next_20250616.log --]
[-- Type: text/plain, Size: 185549 bytes --]

\r^[[H^[[J^[[1;1H^[[?25l^[[m^[[H^[[J^[[1;1H^[[2;30HGNU GRUB  version 2.12

\r^[[m^[[4;2H+----------------------------------------------------------------------------+^[[5;2H|^[[5;79H|^[[6;2H|^[[6;79H|^[[7;2H|^[[7;79H|^[[8;2H|^[[8;79H|^[[9;2H|^[[9;79H|^[[10;2H|^[[10;79H|^[[11;2H|^[[11;79H|^[[12;2H|^[[12;79H|^[[13;2H|^[[13;79H|^[[14;2H|^[[14;79H|^[[15;2H|^[[15;79H|^[[16;2H+----------------------------------------------------------------------------+^[[m^[[17;2H^[[18;2H^[[m     Use the ^ and v keys to select which entry is highlighted.          
\r      Press enter to boot the selected OS, `e' to edit the commands       
\r      before booting or `c' for a command-line. ESC to return             
\r      previous menu.                                                      ^[[5;80H ^[[7m^[[5;3H*Ubuntu                                                                     ^[[m^[[5;78H^[[m^[[m^[[6;3H Advanced options for Ubuntu                                                ^[[m^[[6;78H^[[m^[[m^[[7;3H Oracle Linux Server 8.6 (on /dev/mapper/ol_titanite--34d8host00-root)      ^[[m^[[7;78H^[[m^[[m^[[8;3H Advanced options for Oracle Linux Server 8.6 (on /dev/mapper/ol_titanite-->^[[m^[[8;78H^[[m^[[m^[[9;3H UEFI Firmware Settings                                                     ^[[m^[[9;78H^[[m^[[m^[[10;3H                                                                            ^[[m^[[10;78H^[[m^[[m^[[11;3H                                                                            ^[[m^[[11;78H^[[m^[[m^[[12;3H                                                                            ^[[m^[[12;78H^[[m^[[m^[[13;3H                                                                            ^[[m^[[13;78H^[[m^[[m^[[14;3H                                                                            ^[[m^[[14;78H^[[m^[[m^[[15;3H                                                                            ^[[m^[[15;78H^[[m^[[15;80H ^[[5;78H^[[0;37;40m^[[0;30;40m^[[2J^[[1;1H^[[0;37;40m^[[2;30HGNU GRUB  version 2.12

\r^[[1;37;40m^[[4;2HÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿^[[5;2H³^[[5;79H³^[[6;2H³^[[6;79H³^[[7;2H³^[[7;79H³^[[8;2H³^[[8;79H³^[[9;2H³^[[9;79H³^[[10;2H³^[[10;79H³^[[11;2H³^[[11;79H³^[[12;2H³^[[12;79H³^[[13;2H³^[[13;79H³^[[14;2H³^[[14;79H³^[[15;2H³^[[15;79H³^[[16;2H³^[[16;79H³^[[17;2HÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ^[[18;2H^[[19;2H^[[0;37;40m     Use the \x1e and \x1f keys to select which entry is highlighted.          
\r      Press enter to boot the selected OS, `e' to edit the commands       
\r      before booting or `c' for a command-line. ESC to return previous    
\r      menu.                                                               ^[[5;80H ^[[0;30;47m^[[5;3H*Ubuntu                                                                     ^[[1;37;40m^[[5;78H^[[0;37;40m^[[1;37;40m^[[6;3H Advanced options for Ubuntu                                                ^[[6;78H^[[0;37;40m^[[1;37;40m^[[7;3H Oracle Linux Server 8.6 (on /dev/mapper/ol_titanite--34d8host00-root)      ^[[7;78H^[[0;37;40m^[[1;37;40m^[[8;3H Advanced options for Oracle Linux Server 8.6 (on /dev/mapper/ol_titanite--\x10
\r^[[9;1H^[[8;78H^[[0;37;40m^[[1;37;40m^[[9;3H UEFI Firmware Settings                                                     ^[[9;78H^[[0;37;40m^[[1;37;40m^[[10;3H                                                                            ^[[10;78H^[[0;37;40m^[[1;37;40m^[[11;3H                                                                            ^[[11;78H^[[0;37;40m^[[1;37;40m^[[12;3H                                                                            ^[[12;78H^[[0;37;40m^[[1;37;40m^[[13;3H                                                                            ^[[13;78H^[[0;37;40m^[[1;37;40m^[[14;3H                                                                            ^[[14;78H^[[0;37;40m^[[1;37;40m^[[15;3H                                                                            ^[[15;78H^[[0;37;40m^[[1;37;40m^[[16;3H                                                                            ^[[16;78H^[[0;37;40m^[[16;80H ^[[5;78H^[[23;1H   The highlighted entry will be executed automatically in 10s.                ^[[5;78H^[[22;1H   The highlighted entry will be executed automatically in 10s.                ^[[5;78H^[[23;1H   The highlighted entry will be executed automatically in 9s.                 ^[[5;78H^[[22;1H   The highlighted entry will be executed automatically in 9s.                 ^[[5;78H^[[23;1H   The highlighted entry will be executed automatically in 8s.                 ^[[5;78H^[[22;1H   The highlighted entry will be executed automatically in 8s.                 ^[[5;78H^[[23;1H   The highlighted entry will be executed automatically in 7s.                 ^[[5;78H^[[22;1H   The highlighted entry will be executed automatically in 7s.                 ^[[5;78H^[[23;1H   The highlighted entry will be executed automatically in 6s.                 ^[[5;78H^[[22;1H   The highlighted entry will be executed automatically in 6s.                 ^[[5;78H^[[23;1H   The highlighted entry will be executed automatically in 5s.                 ^[[5;78H^[[22;1H   The highlighted entry will be executed automatically in 5s.                 ^[[5;78H^[[23;1H   The highlighted entry will be executed automatically in 4s.                 ^[[5;78H^[[22;1H   The highlighted entry will be executed automatically in 4s.                 ^[[5;78H^[[23;1H   The highlighted entry will be executed automatically in 3s.                 ^[[5;78H^[[22;1H   The highlighted entry will be executed automatically in 3s.                 ^[[5;78H^[[23;1H   The highlighted entry will be executed automatically in 2s.                 ^[[5;78H^[[22;1H   The highlighted entry will be executed automatically in 2s.                 ^[[5;78H^[[23;1H   The highlighted entry will be executed automatically in 1s.                 ^[[5;78H^[[22;1H   The highlighted entry will be executed automatically in 1s.                 ^[[5;78H^[[23;1H   The highlighted entry will be executed automatically in 0s.                 ^[[5;78H^[[22;1H   The highlighted entry will be executed automatically in 0s.                 ^[[5;78H^[[0;30;40m^[[2J^[[1;1H^[[0;37;40m^[[?25h^[[H^[[J^[[1;1H^[[H^[[J^[[1;1H^[[0;30;40m^[[2J^[[1;1H^[[0;37;40mEFI stub: Loaded initrd from LINUX_EFI_INITRD_MEDIA_GUID device path
[    0.000000] Linux version 6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997 (root@titanite-34d8host) (gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0, GNU ld (GNU Binutils for Ubuntu) 2.42) #1 SMP PREEMPT_DYNAMIC Mon Jun 16 09:23:21 UTC 2025
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997 root=UUID=1d30d6aa-af84-4d36-9630-a98466edebfd ro net.ifnames=0 selinux=0 console=ttyS1,115200n8 earlyprintk mem_encrypt=on
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] SEV-SNP: RMP table physical range [0x0000018278f00000 - 0x00000183fcffffff]
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000075bbffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000075bc0000-0x0000000075c67fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000075c68000-0x0000000075cbffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000075cc0000-0x0000000075ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000076000000-0x000000009f7b2fff] usable
[    0.000000] BIOS-e820: [mem 0x000000009f7b3000-0x00000000a4dadfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000a4dae000-0x00000000a5052fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000a5053000-0x00000000a54d3fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000a54d4000-0x00000000a63fefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000a63ff000-0x00000000a7ffbfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000a7ffc000-0x00000000a7ffefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000a7fff000-0x00000000a7ffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000a8000000-0x00000000afffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b4180000-0x00000000b4180fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b5280000-0x00000000b5280fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000be180000-0x00000000be180fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bf200000-0x00000000bf400fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cc180000-0x00000000cc180fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cd180000-0x00000000cd180fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000da200000-0x00000000da2fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000da500000-0x00000000da500fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000db180000-0x00000000db180fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000feafffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedc0000-0x00000000fedc0fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedc5fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedc7000-0x00000000fedc7fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedc9000-0x00000000fedcafff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000feefffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000fc4fffffff] usable
[    0.000000] BIOS-e820: [mem 0x000000fc50000000-0x000000ffffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000010000000000-0x0000018278efffff] usable
[    0.000000] BIOS-e820: [mem 0x0000018278f00000-0x00000183fcffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000183fd000000-0x00000183fd0bffff] usable
[    0.000000] BIOS-e820: [mem 0x00000183fd0c0000-0x00000183ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00003ffb00000000-0x00003ffb1fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00003ffc00000000-0x00003ffc03ffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.8 by American Megatrends
[    0.000000] efi: ACPI=0xa54b2000 ACPI 2.0=0xa54b2014 SMBIOS=0xa5fc3000 SMBIOS 3.0=0xa5fc2000 MEMATTR=0x98836018 ESRT=0x98871518 MOKvar=0xa60dd000 INITRD=0x98837a18 
[    0.000000] efi: Not removing mem49: MMIO range=[0xb4180000-0xb4180fff] (4KB) from e820 map
[    0.000000] efi: Not removing mem50: MMIO range=[0xb5280000-0xb5280fff] (4KB) from e820 map
[    0.000000] efi: Not removing mem51: MMIO range=[0xbe180000-0xbe180fff] (4KB) from e820 map
[    0.000000] efi: Remove mem52: MMIO range=[0xbf200000-0xbf400fff] (2MB) from e820 map
[    0.000000] efi: Not removing mem53: MMIO range=[0xcc180000-0xcc180fff] (4KB) from e820 map
[    0.000000] efi: Not removing mem54: MMIO range=[0xcd180000-0xcd180fff] (4KB) from e820 map
[    0.000000] efi: Remove mem55: MMIO range=[0xda200000-0xda2fffff] (1MB) from e820 map
[    0.000000] efi: Not removing mem56: MMIO range=[0xda500000-0xda500fff] (4KB) from e820 map
[    0.000000] efi: Not removing mem57: MMIO range=[0xdb180000-0xdb180fff] (4KB) from e820 map
[    0.000000] efi: Remove mem58: MMIO range=[0xfea00000-0xfeafffff] (1MB) from e820 map
[    0.000000] efi: Not removing mem59: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
[    0.000000] efi: Not removing mem60: MMIO range=[0xfec10000-0xfec10fff] (4KB) from e820 map
[    0.000000] efi: Not removing mem61: MMIO range=[0xfed00000-0xfed00fff] (4KB) from e820 map
[    0.000000] efi: Not removing mem62: MMIO range=[0xfed40000-0xfed44fff] (20KB) from e820 map
[    0.000000] efi: Not removing mem63: MMIO range=[0xfed80000-0xfed8ffff] (64KB) from e820 map
[    0.000000] efi: Not removing mem64: MMIO range=[0xfedc0000-0xfedc0fff] (4KB) from e820 map
[    0.000000] efi: Not removing mem65: MMIO range=[0xfedc2000-0xfedc5fff] (16KB) from e820 map
[    0.000000] efi: Not removing mem66: MMIO range=[0xfedc7000-0xfedc7fff] (4KB) from e820 map
[    0.000000] efi: Not removing mem67: MMIO range=[0xfedc9000-0xfedcafff] (8KB) from e820 map
[    0.000000] efi: Remove mem68: MMIO range=[0xfee00000-0xfeefffff] (1MB) from e820 map
[    0.000000] efi: Remove mem69: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem72: MMIO range=[0x3ffb00000000-0x3ffb1fffffff] (512MB) from e820 map
[    0.000000] efi: Remove mem73: MMIO range=[0x3ffc00000000-0x3ffc03ffffff] (64MB) from e820 map
[    0.000000] SMBIOS 3.4.0 present.
[    0.000000] DMI: AMD Corporation Titanite_4G/Titanite_4G, BIOS RTI100EB 12/05/2024
[    0.000000] DMI: Memory slots populated: 24/28
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2146.707 MHz processor
[    0.000021] last_pfn = 0x183fd0c0 max_arch_pfn = 0x10000000000
[    0.000028] MTRR map: 5 entries (3 fixed + 2 variable; max 20), built from 9 variable MTRRs
[    0.000030] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000653] x2apic: enabled by BIOS, switching to x2apic ops
[    0.000655] last_pfn = 0xa8000 max_arch_pfn = 0x10000000000
[    0.006543] SEV-SNP: Reserving start/end of RMP table on a 2MB boundary [0x0000018278e00000]
[    0.006548] esrt: Reserving ESRT space from 0x0000000098871518 to 0x0000000098871550.
[    0.006573] Using GB pages for direct mapping
[    0.007030] Secure boot disabled
[    0.007030] RAMDISK: [mem 0x94af0000-0x96581fff]
[    0.007038] ACPI: Early table checksum verification disabled
[    0.007043] ACPI: RSDP 0x00000000A54B2014 000024 (v02 AMD   )
[    0.007047] ACPI: XSDT 0x00000000A54B1728 0000F4 (v01 AMD    AmdTable 03242016 AMI  01000013)
[    0.007053] ACPI: FACP 0x00000000A504C000 000114 (v06 AMD    AmdTable 03242016 AMI  00000005)
[    0.007059] ACPI: DSDT 0x00000000A502B000 020ABC (v02 AMD    AmdTable 03242016 INTL 20200717)
[    0.007062] ACPI: FACS 0x00000000A54A7000 000040
[    0.007065] ACPI: SSDT 0x00000000A5052000 00015D (v02 AMD    MPDMA    00000001 INTL 20200717)
[    0.007068] ACPI: SPMI 0x00000000A5051000 000041 (v05 AMD    AmdTable 00000000 AMI. 00000005)
[    0.007070] ACPI: SPMI 0x00000000A5050000 000041 (v05 AMD    AmdTable 00000000 AMI. 00000005)
[    0.007073] ACPI: SSDT 0x00000000A504E000 001226 (v02 AMD    AMD AFC  00000001 INTL 20200717)
[    0.007075] ACPI: SSDT 0x00000000A504D000 000065 (v02 AMD    CPMDSM   00000001 INTL 20200717)
[    0.007078] ACPI: FIDT 0x00000000A502A000 00009C (v01 AMD    AmdTable 03242016 AMI  00000005)
[    0.007081] ACPI: MCFG 0x00000000A5029000 00003C (v01 AMD    AmdTable 03242016 AMI  00000005)
[    0.007083] ACPI: SSDT 0x00000000A5026000 002D2D (v02 AMD    CPUSSDT  03242016 AMI  03242016)
[    0.007086] ACPI: HPET 0x00000000A5025000 000038 (v01 AMD    AmdTable 03242016 AMI  00000005)
[    0.007089] ACPI: SSDT 0x00000000A5023000 001630 (v02 AMD    CPMRAS   00000001 INTL 20200717)
[    0.007091] ACPI: BERT 0x00000000A5022000 000030 (v01 AMD    AmdTable 00000001 AMD  00000001)
[    0.007094] ACPI: IVRS 0x00000000A5020000 000370 (v02 AMD    AmdTable 00000001 AMD  00000001)
[    0.007096] ACPI: BGRT 0x00000000A501F000 000038 (v01 AMD    AmdTable 03242016 AMI  00010013)
[    0.007099] ACPI: SPCR 0x00000000A501E000 000050 (v02 AMD    AmdTable 03242016 AMI  00050019)
[    0.007102] ACPI: ASPT 0x00000000A501D000 000070 (v02 AMD    AmdTable 00000001 AMD  00000001)
[    0.007104] ACPI: SSDT 0x00000000A4FC2000 05A7A4 (v02 AMD    AmdTable 00000001 AMD  00000001)
[    0.007107] ACPI: SRAT 0x00000000A4FBF000 0024F8 (v03 AMD    AmdTable 00000001 AMD  00000001)
[    0.007109] ACPI: MSCT 0x00000000A4FBE000 00004E (v01 AMD    AmdTable 00000000 AMD  00000001)
[    0.007112] ACPI: SLIT 0x00000000A4FBD000 000030 (v01 AMD    AmdTable 00000001 AMD  00000001)
[    0.007114] ACPI: HMAT 0x00000000A4FBC000 0000E8 (v02 AMD    AmdTable 00000001 AMD  00000001)
[    0.007117] ACPI: SSDT 0x00000000A4FBA000 001828 (v02 AMD    CPMCMN   00000001 INTL 20200717)
[    0.007119] ACPI: WSMT 0x00000000A4FB9000 000028 (v01 AMD    AmdTable 03242016 AMI  00000005)
[    0.007122] ACPI: APIC 0x00000000A4FB6000 0020B8 (v05 AMD    AmdTable 03242016 AMI  00000005)
[    0.007124] ACPI: HEST 0x00000000A4E35000 180A14 (v01 AMD    AmdTable 00000001 AMD  00000001)
[    0.007127] ACPI: FPDT 0x00000000A5021000 000034 (v01 AMD    AmdTable 01072009 AMI  01000013)
[    0.007128] ACPI: Reserving FACP table memory at [mem 0xa504c000-0xa504c113]
[    0.007129] ACPI: Reserving DSDT table memory at [mem 0xa502b000-0xa504babb]
[    0.007130] ACPI: Reserving FACS table memory at [mem 0xa54a7000-0xa54a703f]
[    0.007130] ACPI: Reserving SSDT table memory at [mem 0xa5052000-0xa505215c]
[    0.007131] ACPI: Reserving SPMI table memory at [mem 0xa5051000-0xa5051040]
[    0.007131] ACPI: Reserving SPMI table memory at [mem 0xa5050000-0xa5050040]
[    0.007132] ACPI: Reserving SSDT table memory at [mem 0xa504e000-0xa504f225]
[    0.007132] ACPI: Reserving SSDT table memory at [mem 0xa504d000-0xa504d064]
[    0.007133] ACPI: Reserving FIDT table memory at [mem 0xa502a000-0xa502a09b]
[    0.007133] ACPI: Reserving MCFG table memory at [mem 0xa5029000-0xa502903b]
[    0.007133] ACPI: Reserving SSDT table memory at [mem 0xa5026000-0xa5028d2c]
[    0.007134] ACPI: Reserving HPET table memory at [mem 0xa5025000-0xa5025037]
[    0.007134] ACPI: Reserving SSDT table memory at [mem 0xa5023000-0xa502462f]
[    0.007135] ACPI: Reserving BERT table memory at [mem 0xa5022000-0xa502202f]
[    0.007135] ACPI: Reserving IVRS table memory at [mem 0xa5020000-0xa502036f]
[    0.007135] ACPI: Reserving BGRT table memory at [mem 0xa501f000-0xa501f037]
[    0.007136] ACPI: Reserving SPCR table memory at [mem 0xa501e000-0xa501e04f]
[    0.007136] ACPI: Reserving ASPT table memory at [mem 0xa501d000-0xa501d06f]
[    0.007137] ACPI: Reserving SSDT table memory at [mem 0xa4fc2000-0xa501c7a3]
[    0.007137] ACPI: Reserving SRAT table memory at [mem 0xa4fbf000-0xa4fc14f7]
[    0.007138] ACPI: Reserving MSCT table memory at [mem 0xa4fbe000-0xa4fbe04d]
[    0.007138] ACPI: Reserving SLIT table memory at [mem 0xa4fbd000-0xa4fbd02f]
[    0.007138] ACPI: Reserving HMAT table memory at [mem 0xa4fbc000-0xa4fbc0e7]
[    0.007139] ACPI: Reserving SSDT table memory at [mem 0xa4fba000-0xa4fbb827]
[    0.007139] ACPI: Reserving WSMT table memory at [mem 0xa4fb9000-0xa4fb9027]
[    0.007140] ACPI: Reserving APIC table memory at [mem 0xa4fb6000-0xa4fb80b7]
[    0.007140] ACPI: Reserving HEST table memory at [mem 0xa4e35000-0xa4fb5a13]
[    0.007141] ACPI: Reserving FPDT table memory at [mem 0xa5021000-0xa5021033]
[    0.007215] APIC: Switched APIC routing to: cluster x2apic
[    0.007255] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.007256] ACPI: SRAT: Node 0 PXM 0 [mem 0x000c0000-0xafffffff]
[    0.007257] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0xc04fffffff]
[    0.007258] ACPI: SRAT: Node 1 PXM 1 [mem 0xc050000000-0xfc4fffffff]
[    0.007258] ACPI: SRAT: Node 1 PXM 1 [mem 0x10000000000-0x183ffffffff]
[    0.007265] NUMA: Node 0 [mem 0x00001000-0x0009ffff] + [mem 0x000c0000-0xafffffff] -> [mem 0x00001000-0xafffffff]
[    0.007267] NUMA: Node 0 [mem 0x00001000-0xafffffff] + [mem 0x100000000-0xc04fffffff] -> [mem 0x00001000-0xc04fffffff]
[    0.007268] NUMA: Node 1 [mem 0xc050000000-0xfc4fffffff] + [mem 0x10000000000-0x183fd0bffff] -> [mem 0xc050000000-0x183fd0bffff]
[    0.007274] NODE_DATA(0) allocated [mem 0xc04ffd5c40-0xc04fffffff]
[    0.007282] NODE_DATA(1) allocated [mem 0x183fd094c40-0x183fd0befff]
[    0.008342] Zone ranges:
[    0.008343]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.008344]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.008345]   Normal   [mem 0x0000000100000000-0x00000183fd0bffff]
[    0.008346]   Device   empty
[    0.008347] Movable zone start for each node
[    0.008348] Early memory node ranges
[    0.008348]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.008349]   node   0: [mem 0x0000000000100000-0x0000000075bbffff]
[    0.008350]   node   0: [mem 0x0000000075c68000-0x0000000075cbffff]
[    0.008350]   node   0: [mem 0x0000000076000000-0x000000009f7b2fff]
[    0.008351]   node   0: [mem 0x00000000a63ff000-0x00000000a7ffbfff]
[    0.008351]   node   0: [mem 0x00000000a7fff000-0x00000000a7ffffff]
[    0.008351]   node   0: [mem 0x0000000100000000-0x000000c04fffffff]
[    0.008389]   node   1: [mem 0x000000c050000000-0x000000fc4fffffff]
[    0.008401]   node   1: [mem 0x0000010000000000-0x0000018278efffff]
[    0.008427]   node   1: [mem 0x00000183fd000000-0x00000183fd0bffff]
[    0.008427] Initmem setup node 0 [mem 0x0000000000001000-0x000000c04fffffff]
[    0.008430] Initmem setup node 1 [mem 0x000000c050000000-0x00000183fd0bffff]
[    0.008433] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.008445] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.009598] On node 0, zone DMA32: 168 pages in unavailable ranges
[    0.010024] On node 0, zone DMA32: 832 pages in unavailable ranges
[    0.010108] On node 0, zone DMA32: 27724 pages in unavailable ranges
[    0.010109] On node 0, zone DMA32: 3 pages in unavailable ranges
[    1.351996] On node 1, zone Normal: 49408 pages in unavailable ranges
[    1.352052] On node 1, zone Normal: 12096 pages in unavailable ranges
[    1.352214] ACPI: PM-Timer IO Port: 0x808
[    1.352288] ACPI: X2APIC_NMI (uid[0xffffffff] high edge lint[0x1])
[    1.352304] IOAPIC[0]: apic_id 128, version 33, address 0xfec00000, GSI 0-23
[    1.352308] IOAPIC[1]: apic_id 241, version 33, address 0xda500000, GSI 24-55
[    1.352311] IOAPIC[2]: apic_id 242, version 33, address 0xcd180000, GSI 56-87
[    1.352314] IOAPIC[3]: apic_id 243, version 33, address 0xdb180000, GSI 88-119
[    1.352317] IOAPIC[4]: apic_id 244, version 33, address 0xcc180000, GSI 120-151
[    1.352322] IOAPIC[5]: apic_id 245, version 33, address 0xbf400000, GSI 152-183
[    1.352326] IOAPIC[6]: apic_id 246, version 33, address 0xbe180000, GSI 184-215
[    1.352330] IOAPIC[7]: apic_id 247, version 33, address 0xb5280000, GSI 216-247
[    1.352334] IOAPIC[8]: apic_id 248, version 33, address 0xb4180000, GSI 248-279
[    1.352337] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    1.352338] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    1.352345] ACPI: Using ACPI (MADT) for SMP configuration information
[    1.352346] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    1.352373] ACPI: SPCR: console: uart,io,0x3f8,115200
[    1.352377] CPU topo: Max. logical packages:   2
[    1.352377] CPU topo: Max. logical dies:      24
[    1.352378] CPU topo: Max. dies per package:  16
[    1.352381] CPU topo: Max. threads per core:   2
[    1.352382] CPU topo: Num. cores per package:    96
[    1.352383] CPU topo: Num. threads per package: 192
[    1.352384] CPU topo: Allowing 384 present CPUs plus 0 hotplug CPUs
[    1.352421] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    1.352422] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    1.352424] PM: hibernation: Registered nosave memory: [mem 0x75bc0000-0x75c67fff]
[    1.352425] PM: hibernation: Registered nosave memory: [mem 0x75cc0000-0x75ffffff]
[    1.352426] PM: hibernation: Registered nosave memory: [mem 0x98871000-0x98871fff]
[    1.352427] PM: hibernation: Registered nosave memory: [mem 0x99771000-0x997c3fff]
[    1.352429] PM: hibernation: Registered nosave memory: [mem 0x9f7b3000-0xa63fefff]
[    1.352430] PM: hibernation: Registered nosave memory: [mem 0xa7ffc000-0xa7ffefff]
[    1.352431] PM: hibernation: Registered nosave memory: [mem 0xa8000000-0xffffffff]
[    1.352432] PM: hibernation: Registered nosave memory: [mem 0xfc50000000-0xffffffffff]
[    1.352434] PM: hibernation: Registered nosave memory: [mem 0x18278e00000-0x183fcffffff]
[    1.352436] [mem 0xdb181000-0xfebfffff] available for PCI devices
[    1.352437] Booting paravirtualized kernel on bare hardware
[    1.352439] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    1.352453] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:384 nr_cpu_ids:384 nr_node_ids:2
[    1.362577] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[    1.362740] Kernel command line: BOOT_IMAGE=/vmlinuz-6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997 root=UUID=1d30d6aa-af84-4d36-9630-a98466edebfd ro net.ifnames=0 selinux=0 console=ttyS1,115200n8 earlyprintk mem_encrypt=on
[    1.362834] Unknown kernel command line parameters "BOOT_IMAGE=/vmlinuz-6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997 mem_encrypt=on", will be passed to user space.
[    1.362848] random: crng init done
[    1.362849] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    1.362849] printk: log_buf_len total cpu_extra contributions: 1568768 bytes
[    1.362850] printk: log_buf_len min size: 262144 bytes
[    1.363860] printk: log buffer data + meta data: 2097152 + 7340032 = 9437184 bytes
[    1.363862] printk: early log buf free: 240440(91%)
[    1.370984] software IO TLB: area num 512.
[    1.370986] software IO TLB: SWIOTLB bounce buffer size roundup to 128MB
[    1.380471] Fallback order for Node 0: 0 1 
[    1.380478] Fallback order for Node 1: 1 0 
[    1.380523] Built 2 zonelists, mobility grouping on.  Total pages: 400989992
[    1.380525] Policy zone: Normal
[    1.380536] mem auto-init: stack:off, heap alloc:on, heap free:off
[    3.405198] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=384, Nodes=2
[    3.416023] ftrace: allocating 59234 entries in 232 pages
[    3.416025] ftrace: allocated 232 pages with 4 groups
[    3.417201] Dynamic Preempt: voluntary
[    3.418137] rcu: Preemptible hierarchical RCU implementation.
[    3.418138] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=384.
[    3.418139] 	Trampoline variant of Tasks RCU enabled.
[    3.418140] 	Rude variant of Tasks RCU enabled.
[    3.418140] 	Tracing variant of Tasks RCU enabled.
[    3.418141] rcu: RCU calculated value of scheduler-enlistment delay is 26 jiffies.
[    3.418141] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=384
[    3.418234] RCU Tasks: Setting shift to 9 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=384.
[    3.418246] RCU Tasks Rude: Setting shift to 9 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=384.
[    3.418261] RCU Tasks Trace: Setting shift to 9 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=384.
[    3.420858] NR_IRQS: 524544, nr_irqs: 7848, preallocated irqs: 16
[    3.421159] rcu: srcu_init: Setting srcu_struct sizes to big.
[    3.421515] Console: colour dummy device 80x25
[    3.421530] printk: legacy console [ttyS1] enabled
[    5.482948] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    5.495472] ACPI: Core revision 20250404
[    5.500573] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    5.510781] APIC: Switch to symmetric I/O mode setup
[    5.516662] AMD-Vi: Using global IVHD EFR:0xa5bf7320a2294aee, EFR2:0x1d
[    5.526872] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    5.550786] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1ef18b20d35, max_idle_ns: 440795300324 ns
[    5.562531] Calibrating delay loop (skipped), value calculated using timer frequency.. 4293.41 BogoMIPS (lpj=8586828)
[    5.566550] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    5.570673] LVT offset 2 assigned for vector 0xf4
[    5.574572] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    5.578530] Last level dTLB entries: 4KB 3072, 2MB 3072, 4MB 1536, 1GB 0
[    5.582534] process: using mwait in idle threads
[    5.586533] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    5.590529] Speculative Return Stack Overflow: IBPB-extending microcode not applied!
[    5.594528] Speculative Return Stack Overflow: WARNING: See https://kernel.org/doc/html/latest/admin-guide/hw-vuln/srso.html for mitigation options.
[    5.594529] Spectre V2 : Mitigation: Retpolines
[    5.602529] Spectre V2 : User space: Mitigation: STIBP always-on protection
[    5.606530] Speculative Return Stack Overflow: Vulnerable: Safe RET, no microcode
[    5.610528] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    5.614531] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
[    5.618531] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    5.622533] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    5.626536] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    5.630528] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    5.634528] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    5.638528] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[    5.642528] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    5.646528] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    5.650530] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    5.654531] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    5.658531] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    5.662529] x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
[    5.666528] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
[    5.670529] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[    5.674528] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
[    5.678528] x86/fpu: xstate_offset[11]: 2440, xstate_sizes[11]:   16
[    5.682528] x86/fpu: Enabled xstate features 0xae7, context size is 2456 bytes, using 'compacted' format.
[    5.722736] Freeing SMP alternatives memory: 52K
[    5.726667] Memory Encryption Features active: AMD SME
[    5.730530] pid_max: default: 393216 minimum: 3072
[    5.740904] LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,ima,evm
[    5.742626] landlock: Up and running.
[    5.746529] Yama: becoming mindful.
[    5.750653] AppArmor: AppArmor initialized
[    5.771000] Dentry cache hash table entries: 33554432 (order: 16, 268435456 bytes, vmalloc hugepage)
[    5.783632] Inode-cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    5.786815] Mount-cache hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    5.790701] Mountpoint-cache hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    5.907481] smpboot: CPU0: AMD Eng Sample: 100-000000894-04 (family: 0x19, model: 0x11, stepping: 0x0)
[    5.911185] Performance Events: Fam17h+ 16-deep LBR, core perfctr, AMD PMU driver.
[    5.914533] ... version:                2
[    5.918529] ... bit width:              48
[    5.922534] ... generic registers:      6
[    5.926529] ... value mask:             0000ffffffffffff
[    5.930533] ... max period:             00007fffffffffff
[    5.934529] ... fixed-purpose events:   0
[    5.938529] ... event mask:             000000000000003f
[    5.946670] signal: max sigframe size: 3376
[    5.950610] rcu: Hierarchical SRCU implementation.
[    5.954529] rcu: 	Max phase no-delay instances is 1000.
[    5.958589] Timer migration: 4 hierarchy levels; 8 children per group; 3 crossnode level
[    5.969651] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    5.976003] smp: Bringing up secondary CPUs ...
[    5.978716] smpboot: x86: Booting SMP configuration:
[    5.982532] .... node  #0, CPUs:          #1   #2   #3   #4   #5   #6   #7   #8   #9  #10  #11  #12  #13  #14  #15  #16  #17  #18  #19  #20  #21  #22  #23  #24  #25  #26  #27  #28  #29  #30  #31  #32  #33  #34  #35  #36  #37  #38  #39  #40  #41  #42  #43  #44  #45  #46  #47  #48  #49  #50  #51  #52  #53  #54  #55  #56  #57  #58  #59  #60  #61  #62  #63  #64  #65  #66  #67  #68  #69  #70  #71  #72  #73  #74  #75  #76  #77  #78  #79  #80  #81  #82  #83  #84  #85  #86  #87  #88  #89  #90  #91  #92  #93  #94  #95
[    5.998532] .... node  #1, CPUs:    #96  #97  #98  #99 #100 #101 #102 #103 #104 #105 #106 #107 #108 #109 #110 #111 #112 #113 #114 #115 #116 #117 #118 #119 #120 #121 #122 #123 #124 #125 #126 #127 #128 #129 #130 #131 #132 #133 #134 #135 #136 #137 #138 #139 #140 #141 #142 #143 #144 #145 #146 #147 #148 #149 #150 #151 #152 #153 #154 #155 #156 #157 #158 #159 #160 #161 #162 #163 #164 #165 #166 #167 #168 #169 #170 #171 #172 #173 #174 #175 #176 #177 #178 #179 #180 #181 #182 #183 #184 #185 #186 #187 #188 #189 #190 #191
[    6.498536] .... node  #0, CPUs:   #192 #193 #194 #195 #196 #197 #198 #199 #200 #201 #202 #203 #204 #205 #206 #207 #208 #209 #210 #211 #212 #213 #214 #215 #216 #217 #218 #219 #220 #221 #222 #223 #224 #225 #226 #227 #228 #229 #230 #231 #232 #233 #234 #235 #236 #237 #238 #239 #240 #241 #242 #243 #244 #245 #246 #247 #248 #249 #250 #251 #252 #253 #254 #255 #256 #257 #258 #259 #260 #261 #262 #263 #264 #265 #266 #267 #268 #269 #270 #271 #272 #273 #274 #275 #276 #277 #278 #279 #280 #281 #282 #283 #284 #285 #286 #287
[    6.522545] .... node  #1, CPUs:   #288 #289 #290 #291 #292 #293 #294 #295 #296 #297 #298 #299 #300 #301 #302 #303 #304 #305 #306 #307 #308 #309 #310 #311 #312 #313 #314 #315 #316 #317 #318 #319 #320 #321 #322 #323 #324 #325 #326 #327 #328 #329 #330 #331 #332 #333 #334 #335 #336 #337 #338 #339 #340 #341 #342 #343 #344 #345 #346 #347 #348 #349 #350 #351 #352 #353 #354 #355 #356 #357 #358 #359 #360 #361 #362 #363 #364 #365 #366 #367 #368 #369 #370 #371 #372 #373 #374 #375 #376 #377 #378 #379 #380 #381 #382 #383
[    6.543178] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[    7.026834] smp: Brought up 2 nodes, 384 CPUs
[    7.030542] smpboot: Total of 384 processors activated (1648670.97 BogoMIPS)
[    7.056185] Memory: 1577871384K/1603959968K available (21461K kernel code, 4733K rwdata, 8836K rodata, 5200K init, 6248K bss, 25388364K reserved, 0K cma-reserved)
[    7.073892] devtmpfs: initialized
[    7.074682] x86/mm: Memory block size: 2048MB
[    7.106659] ACPI: PM: Registering ACPI NVS region [mem 0x75bc0000-0x75c67fff] (688128 bytes)
[    7.110547] ACPI: PM: Registering ACPI NVS region [mem 0xa5053000-0xa54d3fff] (4722688 bytes)
[    7.114752] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    7.118712] posixtimers hash table entries: 262144 (order: 10, 4194304 bytes, vmalloc hugepage)
[    7.123182] futex hash table entries: 65536 (4194304 bytes on 2 NUMA nodes, total 8192 KiB, linear).
[    7.126996] pinctrl core: initialized pinctrl subsystem
[    7.130695] PM: RTC time: 09:40:42, date: 2025-06-16
[    7.138606] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    7.143176] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    7.146725] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    7.150732] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    7.154542] audit: initializing netlink subsys (disabled)
[    7.158597] audit: type=2000 audit(1750066839.628:1): state=initialized audit_enabled=0 res=1
[    7.158751] thermal_sys: Registered thermal governor 'fair_share'
[    7.162534] thermal_sys: Registered thermal governor 'bang_bang'
[    7.166530] thermal_sys: Registered thermal governor 'step_wise'
[    7.170529] thermal_sys: Registered thermal governor 'user_space'
[    7.174530] thermal_sys: Registered thermal governor 'power_allocator'
[    7.178603] cpuidle: using governor ladder
[    7.190584] cpuidle: using governor menu
[    7.199722] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    7.202719] PCI: ECAM [mem 0x3ffb00000000-0x3ffb0fffffff] (base 0x3ffb00000000) for domain 0000 [bus 00-ff]
[    7.206556] PCI: Using configuration type 1 for base access
[    7.210694] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    7.214869] HugeTLB: allocation took 0ms with hugepage_allocation_threads=96
[    7.218572] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    7.222530] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    7.226534] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    7.230529] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    7.239575] ACPI: Added _OSI(Module Device)
[    7.242531] ACPI: Added _OSI(Processor Device)
[    7.246529] ACPI: Added _OSI(Processor Aggregator Device)
[    7.347091] ACPI: 8 ACPI AML tables successfully acquired and loaded
[    7.379364] ACPI: Interpreter enabled
[    7.382543] ACPI: PM: (supports S0 S5)
[    7.386529] ACPI: Using IOAPIC for interrupt routing
[    7.391226] HEST: Table parsing has been initialized.
[    7.398673] GHES: APEI firmware first mode is enabled by APEI bit.
[    7.406532] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    7.414529] PCI: Ignoring E820 reservations for host bridge windows
[    7.427045] ACPI: Enabled 3 GPEs in block 00 to 1F
[    7.434682] ACPI: \_SB_.S0D0.C000.SATA.P0SA: New power resource
[    7.438574] ACPI: \_SB_.S0D0.C000.SATA.P3SA: New power resource
[    7.447186] ACPI: \_SB_.S0D0.C000.SAT2.P0SA: New power resource
[    7.454572] ACPI: \_SB_.S0D0.C000.SAT2.P3SA: New power resource
[    7.465641] ACPI: \_SB_.S0D2.C021.SATA.P0SA: New power resource
[    7.470569] ACPI: \_SB_.S0D2.C021.SATA.P3SA: New power resource
[    7.479154] ACPI: \_SB_.S0D2.C021.SAT2.P0SA: New power resource
[    7.486572] ACPI: \_SB_.S0D2.C021.SAT2.P3SA: New power resource
[    7.546266] ACPI: PCI Root Bridge [S0D0] (domain 0000 [bus 60-7f])
[    7.550534] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    7.562795] acpi PNP0A08:00: _OSC: platform does not support [AER LTR]
[    7.571001] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]
[    7.579201] PCI host bridge to bus 0000:60
[    7.586635] pci_bus 0000:60: root bus resource [io  0x03b0-0x03df window]
[    7.594531] pci_bus 0000:60: root bus resource [io  0x5000-0x7fff window]
[    7.598532] pci_bus 0000:60: root bus resource [mem 0x000a0000-0x000bffff window]
[    7.610532] pci_bus 0000:60: root bus resource [mem 0xd2000000-0xd3afffff window]
[    7.618531] pci_bus 0000:60: root bus resource [mem 0x18421000000-0x28420ffffff window]
[    7.626532] pci_bus 0000:60: root bus resource [bus 60-7f]
[    7.630551] pci 0000:60:00.0: [1022:14a4] type 00 class 0x060000 conventional PCI endpoint
[    7.643007] pci 0000:60:00.2: [1022:149e] type 00 class 0x080600 conventional PCI endpoint
[    7.651046] pci 0000:60:00.3: [1022:14a6] type 00 class 0x080700 PCIe Root Complex Event Collector
[    7.662568] pci 0000:60:00.3: enabling Extended Tags
[    7.667140] pci 0000:60:01.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    7.678634] pci 0000:60:02.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    7.687010] pci 0000:60:03.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    7.695008] pci 0000:60:04.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    7.706989] pci 0000:60:05.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    7.715000] pci 0000:60:05.2: [1022:14aa] type 01 class 0x060400 PCIe Root Port
[    7.726543] pci 0000:60:05.2: PCI bridge to [bus 61]
[    7.730535] pci 0000:60:05.2:   bridge window [mem 0xd3500000-0xd35fffff]
[    7.738540] pci 0000:60:05.2:   bridge window [mem 0x28420f00000-0x28420ffffff 64bit pref]
[    7.746587] pci 0000:60:05.2: PME# supported from D0 D3hot D3cold
[    7.755070] pci 0000:60:05.3: [1022:14aa] type 01 class 0x060400 PCIe Root Port
[    7.762545] pci 0000:60:05.3: PCI bridge to [bus 62-63]
[    7.766536] pci 0000:60:05.3:   bridge window [io  0x7000-0x7fff]
[    7.774534] pci 0000:60:05.3:   bridge window [mem 0xd2000000-0xd31fffff]
[    7.782601] pci 0000:60:05.3: PME# supported from D0 D3hot D3cold
[    7.791092] pci 0000:60:07.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    7.798991] pci 0000:60:07.1: [1022:14a7] type 01 class 0x060400 PCIe Root Port
[    7.806542] pci 0000:60:07.1: PCI bridge to [bus 64]
[    7.814533] pci 0000:60:07.1:   bridge window [mem 0xd3400000-0xd34fffff]
[    7.822534] pci 0000:60:07.1:   bridge window [mem 0x28420e00000-0x28420efffff 64bit pref]
[    7.830535] pci 0000:60:07.1: enabling Extended Tags
[    7.834571] pci 0000:60:07.1: PME# supported from D0 D3hot D3cold
[    7.843093] pci 0000:60:07.2: [1022:14a7] type 01 class 0x060400 PCIe Root Port
[    7.850545] pci 0000:60:07.2: PCI bridge to [bus 65]
[    7.858534] pci 0000:60:07.2:   bridge window [mem 0xd3300000-0xd33fffff]
[    7.866543] pci 0000:60:07.2: enabling Extended Tags
[    7.870571] pci 0000:60:07.2: PME# supported from D0 D3hot D3cold
[    7.878635] pci 0000:61:00.0: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    7.886572] pci 0000:61:00.0: BAR 0 [mem 0x28420f20000-0x28420f2ffff 64bit pref]
[    7.894533] pci 0000:61:00.0: BAR 2 [mem 0x28420f10000-0x28420f1ffff 64bit pref]
[    7.902532] pci 0000:61:00.0: BAR 4 [mem 0x28420f00000-0x28420f0ffff 64bit pref]
[    7.910531] pci 0000:61:00.0: ROM [mem 0xd3500000-0xd353ffff pref]
[    7.918614] pci 0000:61:00.0: PME# supported from D0 D3hot D3cold
[    7.922579] pci 0000:61:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:60:05.2 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
[    7.943030] pci 0000:60:05.2: PCI bridge to [bus 61]
[    7.946658] pci 0000:62:00.0: [1a03:1150] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    7.954566] pci 0000:62:00.0: PCI bridge to [bus 63]
[    7.962536] pci 0000:62:00.0:   bridge window [io  0x7000-0x7fff]
[    7.970533] pci 0000:62:00.0:   bridge window [mem 0xd2000000-0xd31fffff]
[    7.974557] pci 0000:62:00.0: enabling Extended Tags
[    7.982618] pci 0000:62:00.0: supports D1 D2
[    7.986529] pci 0000:62:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    7.995081] pci 0000:60:05.3: PCI bridge to [bus 62-63]
[    7.998577] pci_bus 0000:63: extended config space not accessible
[    8.006558] pci 0000:63:00.0: [1a03:2000] type 00 class 0x030000 conventional PCI endpoint
[    8.014586] pci 0000:63:00.0: BAR 0 [mem 0xd2000000-0xd2ffffff]
[    8.022534] pci 0000:63:00.0: BAR 1 [mem 0xd3140000-0xd317ffff]
[    8.030534] pci 0000:63:00.0: BAR 2 [io  0x7000-0x707f]
[    8.034563] pci 0000:63:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    8.046531] pci 0000:63:00.0: pci_fixup_video+0x0/0x120 took 11718 usecs
[    8.050567] pci 0000:63:00.0: supports D1 D2
[    8.058529] pci 0000:63:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    8.063059] pci 0000:63:01.0: [1a03:2402] type 00 class 0xff0000 conventional PCI endpoint
[    8.074582] pci 0000:63:01.0: BAR 0 [mem 0xd3000000-0xd30fffff]
[    8.082531] pci 0000:63:01.0: BAR 1 [mem 0xd3100000-0xd313ffff]
[    8.086585] pci 0000:63:01.0: supports D1 D2
[    8.090531] pci 0000:63:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    8.099061] pci 0000:62:00.0: PCI bridge to [bus 63]
[    8.106807] pci 0000:64:00.0: [1022:14ac] type 00 class 0x130000 PCIe Endpoint
[    8.114557] pci 0000:64:00.0: enabling Extended Tags
[    8.119096] pci 0000:64:00.1: [1022:14dc] type 00 class 0x088000 PCIe Endpoint
[    8.126547] pci 0000:64:00.1: BAR 0 [mem 0x28420e80000-0x28420efffff 64bit pref]
[    8.138533] pci 0000:64:00.1: BAR 2 [mem 0x28420e00000-0x28420e7ffff 64bit pref]
[    8.146534] pci 0000:64:00.1: enabling Extended Tags
[    8.151062] pci 0000:64:00.4: [1022:14c9] type 00 class 0x0c0330 PCIe Endpoint
[    8.158548] pci 0000:64:00.4: BAR 0 [mem 0xd3400000-0xd34fffff 64bit]
[    8.166535] pci 0000:64:00.4: enabling Extended Tags
[    8.170563] pci 0000:64:00.4: PME# supported from D0 D3hot D3cold
[    8.179714] pci 0000:60:07.1: PCI bridge to [bus 64]
[    8.186615] pci 0000:65:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[    8.194553] pci 0000:65:00.0: BAR 5 [mem 0xd3301000-0xd33017ff]
[    8.198540] pci 0000:65:00.0: enabling Extended Tags
[    8.206574] pci 0000:65:00.0: PME# supported from D3hot D3cold
[    8.215078] pci 0000:65:00.1: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[    8.222551] pci 0000:65:00.1: BAR 5 [mem 0xd3300000-0xd33007ff]
[    8.226533] pci 0000:65:00.1: enabling Extended Tags
[    8.234558] pci 0000:65:00.1: PME# supported from D3hot D3cold
[    8.239075] pci 0000:60:07.2: PCI bridge to [bus 65]
[    8.247568] ACPI: PCI Root Bridge [S0D1] (domain 0000 [bus 40-5f])
[    8.254533] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    8.262856] acpi PNP0A08:01: _OSC: platform does not support [AER LTR]
[    8.271014] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]
[    8.283076] PCI host bridge to bus 0000:40
[    8.286619] pci_bus 0000:40: root bus resource [io  0x4000-0x4fff window]
[    8.294530] pci_bus 0000:40: root bus resource [mem 0xce000000-0xd00fffff window]
[    8.302530] pci_bus 0000:40: root bus resource [mem 0x28421000000-0x38420ffffff window]
[    8.310530] pci_bus 0000:40: root bus resource [bus 40-5f]
[    8.318544] pci 0000:40:00.0: [1022:14a4] type 00 class 0x060000 conventional PCI endpoint
[    8.327041] pci 0000:40:00.2: [1022:149e] type 00 class 0x080600 conventional PCI endpoint
[    8.338530] pci 0000:40:00.3: [1022:14a6] type 00 class 0x080700 PCIe Root Complex Event Collector
[    8.346568] pci 0000:40:00.3: enabling Extended Tags
[    8.354772] pci 0000:40:01.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    8.363018] pci 0000:40:01.1: [1022:14ab] type 01 class 0x060400 PCIe Root Port
[    8.370548] pci 0000:40:01.1: PCI bridge to [bus 41]
[    8.378535] pci 0000:40:01.1:   bridge window [mem 0xd0000000-0xd00fffff]
[    8.386617] pci 0000:40:01.1: PME# supported from D0 D3hot D3cold
[    8.391404] pci 0000:40:01.2: [1022:14ab] type 01 class 0x060400 PCIe Root Port
[    8.402543] pci 0000:40:01.2: PCI bridge to [bus 42]
[    8.406614] pci 0000:40:01.2: PME# supported from D0 D3hot D3cold
[    8.414948] pci 0000:40:01.3: [1022:14ab] type 01 class 0x060400 PCIe Root Port
[    8.422544] pci 0000:40:01.3: PCI bridge to [bus 43]
[    8.426616] pci 0000:40:01.3: PME# supported from D0 D3hot D3cold
[    8.435368] pci 0000:40:01.4: [1022:14ab] type 01 class 0x060400 PCIe Root Port
[    8.442547] pci 0000:40:01.4: PCI bridge to [bus 44]
[    8.450622] pci 0000:40:01.4: PME# supported from D0 D3hot D3cold
[    8.455402] pci 0000:40:02.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    8.466989] pci 0000:40:03.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    8.474995] pci 0000:40:04.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    8.486912] pci 0000:40:05.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    8.494983] pci 0000:40:07.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    8.506988] pci 0000:40:07.1: [1022:14a7] type 01 class 0x060400 PCIe Root Port
[    8.514545] pci 0000:40:07.1: PCI bridge to [bus 45]
[    8.518538] pci 0000:40:07.1:   bridge window [mem 0x38420f00000-0x38420ffffff 64bit pref]
[    8.526539] pci 0000:40:07.1: enabling Extended Tags
[    8.534577] pci 0000:40:07.1: PME# supported from D0 D3hot D3cold
[    8.543180] pci 0000:41:00.0: [144d:a808] type 00 class 0x010802 PCIe Endpoint
[    8.550563] pci 0000:41:00.0: BAR 0 [mem 0xd0010000-0xd0013fff 64bit]
[    8.554535] pci 0000:41:00.0: ROM [mem 0xd0000000-0xd000ffff pref]
[    8.563110] pci 0000:40:01.1: PCI bridge to [bus 41]
[    8.571558] pci 0000:40:01.2: PCI bridge to [bus 42]
[    8.574986] pci 0000:40:01.3: PCI bridge to [bus 43]
[    8.582980] pci 0000:40:01.4: PCI bridge to [bus 44]
[    8.587024] pci 0000:45:00.0: [1022:14ac] type 00 class 0x130000 PCIe Endpoint
[    8.598552] pci 0000:45:00.0: enabling Extended Tags
[    8.603085] pci 0000:45:00.1: [1022:14dc] type 00 class 0x088000 PCIe Endpoint
[    8.610549] pci 0000:45:00.1: BAR 0 [mem 0x38420f80000-0x38420ffffff 64bit pref]
[    8.618535] pci 0000:45:00.1: BAR 2 [mem 0x38420f00000-0x38420f7ffff 64bit pref]
[    8.626536] pci 0000:45:00.1: enabling Extended Tags
[    8.634565] pci 0000:40:07.1: PCI bridge to [bus 45]
[    8.639424] ACPI: PCI Root Bridge [S0D2] (domain 0000 [bus 00-1f])
[    8.646533] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    8.658838] acpi PNP0A08:02: _OSC: platform does not support [AER LTR]
[    8.666866] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]
[    8.675136] PCI host bridge to bus 0000:00
[    8.682637] pci_bus 0000:00: root bus resource [io  0x1000-0x2fff window]
[    8.686531] pci_bus 0000:00: root bus resource [mem 0xdc000000-0xde3fffff window]
[    8.698535] pci_bus 0000:00: root bus resource [mem 0x38481000000-0x48480ffffff window]
[    8.706533] pci_bus 0000:00: root bus resource [bus 00-1f]
[    8.710549] pci 0000:00:00.0: [1022:14a4] type 00 class 0x060000 conventional PCI endpoint
[    8.722610] pci 0000:00:00.2: [1022:149e] type 00 class 0x080600 conventional PCI endpoint
[    8.731044] pci 0000:00:00.3: [1022:14a6] type 00 class 0x080700 PCIe Root Complex Event Collector
[    8.742529] pci 0000:00:00.3: enabling Extended Tags
[    8.747522] pci 0000:00:01.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    8.759000] pci 0000:00:01.1: [1022:14ab] type 01 class 0x060400 PCIe Root Port
[    8.766547] pci 0000:00:01.1: PCI bridge to [bus 01]
[    8.770633] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    8.779411] pci 0000:00:02.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    8.791022] pci 0000:00:03.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    8.798992] pci 0000:00:04.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    8.806997] pci 0000:00:05.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    8.818993] pci 0000:00:07.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    8.826988] pci 0000:00:07.1: [1022:14a7] type 01 class 0x060400 PCIe Root Port
[    8.834541] pci 0000:00:07.1: PCI bridge to [bus 02]
[    8.842533] pci 0000:00:07.1:   bridge window [mem 0xde000000-0xde2fffff]
[    8.850537] pci 0000:00:07.1:   bridge window [mem 0x48480f00000-0x48480ffffff 64bit pref]
[    8.858567] pci 0000:00:07.1: enabling Extended Tags
[    8.862575] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    8.871130] pci 0000:00:07.2: [1022:14a7] type 01 class 0x060400 PCIe Root Port
[    8.878545] pci 0000:00:07.2: PCI bridge to [bus 03]
[    8.886533] pci 0000:00:07.2:   bridge window [mem 0xde300000-0xde3fffff]
[    8.894540] pci 0000:00:07.2: enabling Extended Tags
[    8.898565] pci 0000:00:07.2: PME# supported from D0 D3hot D3cold
[    8.906950] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
[    8.915012] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
[    8.927023] pci 0000:00:18.0: [1022:14ad] type 00 class 0x060000 conventional PCI endpoint
[    8.934987] pci 0000:00:18.1: [1022:14ae] type 00 class 0x060000 conventional PCI endpoint
[    8.942999] pci 0000:00:18.2: [1022:14af] type 00 class 0x060000 conventional PCI endpoint
[    8.955002] pci 0000:00:18.3: [1022:14b0] type 00 class 0x060000 conventional PCI endpoint
[    8.962982] pci 0000:00:18.4: [1022:14b1] type 00 class 0x060000 conventional PCI endpoint
[    8.974798] pci 0000:00:18.5: [1022:14b2] type 00 class 0x060000 conventional PCI endpoint
[    8.982971] pci 0000:00:18.6: [1022:14b3] type 00 class 0x060000 conventional PCI endpoint
[    8.994970] pci 0000:00:18.7: [1022:14b4] type 00 class 0x060000 conventional PCI endpoint
[    9.002973] pci 0000:00:19.0: [1022:14ad] type 00 class 0x060000 conventional PCI endpoint
[    9.010982] pci 0000:00:19.1: [1022:14ae] type 00 class 0x060000 conventional PCI endpoint
[    9.022997] pci 0000:00:19.2: [1022:14af] type 00 class 0x060000 conventional PCI endpoint
[    9.031006] pci 0000:00:19.3: [1022:14b0] type 00 class 0x060000 conventional PCI endpoint
[    9.042563] pci 0000:00:19.4: [1022:14b1] type 00 class 0x060000 conventional PCI endpoint
[    9.050989] pci 0000:00:19.5: [1022:14b2] type 00 class 0x060000 conventional PCI endpoint
[    9.058999] pci 0000:00:19.6: [1022:14b3] type 00 class 0x060000 conventional PCI endpoint
[    9.070981] pci 0000:00:19.7: [1022:14b4] type 00 class 0x060000 conventional PCI endpoint
[    9.079701] pci 0000:00:01.1: PCI bridge to [bus 01]
[    9.087057] pci 0000:02:00.0: [1022:14ac] type 00 class 0x130000 PCIe Endpoint
[    9.094552] pci 0000:02:00.0: enabling Extended Tags
[    9.103091] pci 0000:02:00.1: [1022:14dc] type 00 class 0x088000 PCIe Endpoint
[    9.110547] pci 0000:02:00.1: BAR 0 [mem 0x48480f80000-0x48480ffffff 64bit pref]
[    9.118534] pci 0000:02:00.1: BAR 2 [mem 0x48480f00000-0x48480f7ffff 64bit pref]
[    9.126538] pci 0000:02:00.1: enabling Extended Tags
[    9.131106] pci 0000:02:00.4: [1022:14c9] type 00 class 0x0c0330 PCIe Endpoint
[    9.138549] pci 0000:02:00.4: BAR 0 [mem 0xde100000-0xde1fffff 64bit]
[    9.146535] pci 0000:02:00.4: enabling Extended Tags
[    9.154560] pci 0000:02:00.4: PME# supported from D0 D3hot D3cold
[    9.159030] pci 0000:02:00.5: [1022:14ca] type 00 class 0x108000 PCIe Endpoint
[    9.166547] pci 0000:02:00.5: BAR 2 [mem 0xde000000-0xde0fffff]
[    9.174531] pci 0000:02:00.5: BAR 5 [mem 0xde200000-0xde201fff]
[    9.182533] pci 0000:02:00.5: enabling Extended Tags
[    9.187131] pci 0000:00:07.1: PCI bridge to [bus 02]
[    9.194644] pci 0000:03:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[    9.202553] pci 0000:03:00.0: BAR 5 [mem 0xde301000-0xde3017ff]
[    9.206537] pci 0000:03:00.0: enabling Extended Tags
[    9.214572] pci 0000:03:00.0: PME# supported from D3hot D3cold
[    9.219087] pci 0000:03:00.1: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[    9.230551] pci 0000:03:00.1: BAR 5 [mem 0xde300000-0xde3007ff]
[    9.234534] pci 0000:03:00.1: enabling Extended Tags
[    9.242557] pci 0000:03:00.1: PME# supported from D3hot D3cold
[    9.247733] pci 0000:00:07.2: PCI bridge to [bus 03]
[    9.256138] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 20-3f])
[    9.262539] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    9.274847] acpi PNP0A08:03: _OSC: platform does not support [AER LTR]
[    9.279006] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]
[    9.291240] PCI host bridge to bus 0000:20
[    9.294621] pci_bus 0000:20: root bus resource [io  0x0000-0x02e7 window]
[    9.302530] pci_bus 0000:20: root bus resource [io  0x0300-0x03af window]
[    9.310530] pci_bus 0000:20: root bus resource [io  0x0400-0x0cf7 window]
[    9.318531] pci_bus 0000:20: root bus resource [io  0x3000-0x3fff window]
[    9.326529] pci_bus 0000:20: root bus resource [mem 0x000c0000-0x000dffff window]
[    9.334530] pci_bus 0000:20: root bus resource [mem 0xc4000000-0xc5ffffff window]
[    9.342530] pci_bus 0000:20: root bus resource [mem 0x48481000000-0x58480ffffff window]
[    9.350531] pci_bus 0000:20: root bus resource [bus 20-3f]
[    9.358549] pci 0000:20:00.0: [1022:14a4] type 00 class 0x060000 conventional PCI endpoint
[    9.367054] pci 0000:20:00.2: [1022:149e] type 00 class 0x080600 conventional PCI endpoint
[    9.379093] pci 0000:20:00.3: [1022:14a6] type 00 class 0x080700 PCIe Root Complex Event Collector
[    9.387167] pci 0000:20:00.3: enabling Extended Tags
[    9.395539] pci 0000:20:01.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    9.402993] pci 0000:20:01.1: [1022:14ab] type 01 class 0x060400 PCIe Root Port
[    9.410546] pci 0000:20:01.1: PCI bridge to [bus 21]
[    9.418635] pci 0000:20:01.1: PME# supported from D0 D3hot D3cold
[    9.426743] pci 0000:20:01.2: [1022:14ab] type 01 class 0x060400 PCIe Root Port
[    9.434546] pci 0000:20:01.2: PCI bridge to [bus 22]
[    9.438642] pci 0000:20:01.2: PME# supported from D0 D3hot D3cold
[    9.447399] pci 0000:20:01.3: [1022:14ab] type 01 class 0x060400 PCIe Root Port
[    9.454550] pci 0000:20:01.3: PCI bridge to [bus 23]
[    9.462643] pci 0000:20:01.3: PME# supported from D0 D3hot D3cold
[    9.467424] pci 0000:20:01.4: [1022:14ab] type 01 class 0x060400 PCIe Root Port
[    9.478548] pci 0000:20:01.4: PCI bridge to [bus 24]
[    9.482634] pci 0000:20:01.4: PME# supported from D0 D3hot D3cold
[    9.491211] pci 0000:20:02.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    9.498996] pci 0000:20:03.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    9.510586] pci 0000:20:04.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    9.518985] pci 0000:20:05.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    9.527007] pci 0000:20:07.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    9.539016] pci 0000:20:07.1: [1022:14a7] type 01 class 0x060400 PCIe Root Port
[    9.546545] pci 0000:20:07.1: PCI bridge to [bus 25]
[    9.550541] pci 0000:20:07.1:   bridge window [mem 0x58480f00000-0x58480ffffff 64bit pref]
[    9.562538] pci 0000:20:07.1: enabling Extended Tags
[    9.566567] pci 0000:20:07.1: PME# supported from D0 D3hot D3cold
[    9.576040] pci 0000:20:01.1: PCI bridge to [bus 21]
[    9.582979] pci 0000:20:01.2: PCI bridge to [bus 22]
[    9.586977] pci 0000:20:01.3: PCI bridge to [bus 23]
[    9.594992] pci 0000:20:01.4: PCI bridge to [bus 24]
[    9.599014] pci 0000:25:00.0: [1022:14ac] type 00 class 0x130000 PCIe Endpoint
[    9.606554] pci 0000:25:00.0: enabling Extended Tags
[    9.614674] pci 0000:25:00.1: [1022:14dc] type 00 class 0x088000 PCIe Endpoint
[    9.622551] pci 0000:25:00.1: BAR 0 [mem 0x58480f80000-0x58480ffffff 64bit pref]
[    9.630535] pci 0000:25:00.1: BAR 2 [mem 0x58480f00000-0x58480f7ffff 64bit pref]
[    9.638535] pci 0000:25:00.1: enabling Extended Tags
[    9.644012] pci 0000:20:07.1: PCI bridge to [bus 25]
[    9.655144] ACPI: PCI Root Bridge [S1D0] (domain 0000 [bus e0-ff])
[    9.662534] acpi PNP0A08:04: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    9.670793] acpi PNP0A08:04: _OSC: platform does not support [AER LTR]
[    9.679007] acpi PNP0A08:04: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]
[    9.691123] PCI host bridge to bus 0000:e0
[    9.694621] pci_bus 0000:e0: root bus resource [io  0xd000-0xffff window]
[    9.702532] pci_bus 0000:e0: root bus resource [mem 0xc0000000-0xc00fffff window]
[    9.710533] pci_bus 0000:e0: root bus resource [mem 0x584e1000000-0x684e0ffffff window]
[    9.718533] pci_bus 0000:e0: root bus resource [bus e0-ff]
[    9.726549] pci 0000:e0:00.0: [1022:14a4] type 00 class 0x060000 conventional PCI endpoint
[    9.735064] pci 0000:e0:00.2: [1022:149e] type 00 class 0x080600 conventional PCI endpoint
[    9.743065] pci 0000:e0:00.3: [1022:14a6] type 00 class 0x080700 PCIe Root Complex Event Collector
[    9.754574] pci 0000:e0:00.3: enabling Extended Tags
[    9.759102] pci 0000:e0:01.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    9.771003] pci 0000:e0:01.1: [1022:14ab] type 01 class 0x060400 PCIe Root Port
[    9.778550] pci 0000:e0:01.1: PCI bridge to [bus e1]
[    9.782656] pci 0000:e0:01.1: PME# supported from D0 D3hot D3cold
[    9.791436] pci 0000:e0:02.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    9.802756] pci 0000:e0:03.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    9.810996] pci 0000:e0:04.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    9.822998] pci 0000:e0:05.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    9.830993] pci 0000:e0:07.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[    9.838996] pci 0000:e0:07.1: [1022:14a7] type 01 class 0x060400 PCIe Root Port
[    9.850544] pci 0000:e0:07.1: PCI bridge to [bus e2]
[    9.854539] pci 0000:e0:07.1:   bridge window [mem 0x684e0f00000-0x684e0ffffff 64bit pref]
[    9.862537] pci 0000:e0:07.1: enabling Extended Tags
[    9.870586] pci 0000:e0:07.1: PME# supported from D0 D3hot D3cold
[    9.875136] pci 0000:e0:07.2: [1022:14a7] type 01 class 0x060400 PCIe Root Port
[    9.886550] pci 0000:e0:07.2: PCI bridge to [bus e3]
[    9.890535] pci 0000:e0:07.2:   bridge window [mem 0xc0000000-0xc00fffff]
[    9.898542] pci 0000:e0:07.2: enabling Extended Tags
[    9.902576] pci 0000:e0:07.2: PME# supported from D0 D3hot D3cold
[    9.911152] pci 0000:e0:01.1: PCI bridge to [bus e1]
[    9.914682] pci 0000:e2:00.0: [1022:14ac] type 00 class 0x130000 PCIe Endpoint
[    9.922558] pci 0000:e2:00.0: enabling Extended Tags
[    9.931088] pci 0000:e2:00.1: [1022:14dc] type 00 class 0x088000 PCIe Endpoint
[    9.938550] pci 0000:e2:00.1: BAR 0 [mem 0x684e0f80000-0x684e0ffffff 64bit pref]
[    9.946535] pci 0000:e2:00.1: BAR 2 [mem 0x684e0f00000-0x684e0f7ffff 64bit pref]
[    9.954539] pci 0000:e2:00.1: enabling Extended Tags
[    9.962568] pci 0000:e0:07.1: PCI bridge to [bus e2]
[    9.967011] pci 0000:e3:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[    9.974555] pci 0000:e3:00.0: BAR 5 [mem 0xc0001000-0xc00017ff]
[    9.982536] pci 0000:e3:00.0: enabling Extended Tags
[    9.986573] pci 0000:e3:00.0: PME# supported from D3hot D3cold
[    9.995025] pci 0000:e3:00.1: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[   10.002554] pci 0000:e3:00.1: BAR 5 [mem 0xc0000000-0xc00007ff]
[   10.010535] pci 0000:e3:00.1: enabling Extended Tags
[   10.014565] pci 0000:e3:00.1: PME# supported from D3hot D3cold
[   10.023037] pci 0000:e0:07.2: PCI bridge to [bus e3]
[   10.027083] ACPI: PCI Root Bridge [S1D1] (domain 0000 [bus c0-df])
[   10.034536] acpi PNP0A08:05: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[   10.046647] acpi PNP0A08:05: _OSC: platform does not support [AER LTR]
[   10.055003] acpi PNP0A08:05: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]
[   10.063071] PCI host bridge to bus 0000:c0
[   10.066621] pci_bus 0000:c0: root bus resource [io  0xb000-0xcfff window]
[   10.074551] pci_bus 0000:c0: root bus resource [mem 0xba000000-0xbbffffff window]
[   10.082530] pci_bus 0000:c0: root bus resource [mem 0x684e1000000-0x784e0ffffff window]
[   10.094532] pci_bus 0000:c0: root bus resource [bus c0-df]
[   10.098544] pci 0000:c0:00.0: [1022:14a4] type 00 class 0x060000 conventional PCI endpoint
[   10.107052] pci 0000:c0:00.2: [1022:149e] type 00 class 0x080600 conventional PCI endpoint
[   10.119085] pci 0000:c0:00.3: [1022:14a6] type 00 class 0x080700 PCIe Root Complex Event Collector
[   10.130914] pci 0000:c0:00.3: enabling Extended Tags
[   10.135569] pci 0000:c0:01.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[   10.147006] pci 0000:c0:01.1: [1022:14ab] type 01 class 0x060400 PCIe Root Port
[   10.154550] pci 0000:c0:01.1: PCI bridge to [bus c1]
[   10.158649] pci 0000:c0:01.1: PME# supported from D0 D3hot D3cold
[   10.167409] pci 0000:c0:02.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[   10.175000] pci 0000:c0:03.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[   10.186993] pci 0000:c0:04.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[   10.195019] pci 0000:c0:05.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[   10.206819] pci 0000:c0:07.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[   10.215025] pci 0000:c0:07.1: [1022:14a7] type 01 class 0x060400 PCIe Root Port
[   10.222545] pci 0000:c0:07.1: PCI bridge to [bus c2]
[   10.230539] pci 0000:c0:07.1:   bridge window [mem 0x784e0f00000-0x784e0ffffff 64bit pref]
[   10.238536] pci 0000:c0:07.1: enabling Extended Tags
[   10.242574] pci 0000:c0:07.1: PME# supported from D0 D3hot D3cold
[   10.251172] pci 0000:c0:01.1: PCI bridge to [bus c1]
[   10.258651] pci 0000:c2:00.0: [1022:14ac] type 00 class 0x130000 PCIe Endpoint
[   10.266555] pci 0000:c2:00.0: enabling Extended Tags
[   10.271085] pci 0000:c2:00.1: [1022:14dc] type 00 class 0x088000 PCIe Endpoint
[   10.278551] pci 0000:c2:00.1: BAR 0 [mem 0x784e0f80000-0x784e0ffffff 64bit pref]
[   10.286533] pci 0000:c2:00.1: BAR 2 [mem 0x784e0f00000-0x784e0f7ffff 64bit pref]
[   10.294537] pci 0000:c2:00.1: enabling Extended Tags
[   10.303853] pci 0000:c0:07.1: PCI bridge to [bus c2]
[   10.307359] ACPI: PCI Root Bridge [S1D2] (domain 0000 [bus 80-9f])
[   10.314535] acpi PNP0A08:06: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[   10.326838] acpi PNP0A08:06: _OSC: platform does not support [AER LTR]
[   10.334988] acpi PNP0A08:06: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]
[   10.343103] PCI host bridge to bus 0000:80
[   10.350643] pci_bus 0000:80: root bus resource [io  0x8000-0x9fff window]
[   10.358529] pci_bus 0000:80: root bus resource [mem 0xb6000000-0xb62fffff window]
[   10.366530] pci_bus 0000:80: root bus resource [mem 0x78541000000-0x88540ffffff window]
[   10.374533] pci_bus 0000:80: root bus resource [bus 80-9f]
[   10.378549] pci 0000:80:00.0: [1022:14a4] type 00 class 0x060000 conventional PCI endpoint
[   10.391008] pci 0000:80:00.2: [1022:149e] type 00 class 0x080600 conventional PCI endpoint
[   10.399077] pci 0000:80:00.3: [1022:14a6] type 00 class 0x080700 PCIe Root Complex Event Collector
[   10.411316] pci 0000:80:00.3: enabling Extended Tags
[   10.415540] pci 0000:80:01.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[   10.427004] pci 0000:80:02.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[   10.435005] pci 0000:80:03.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[   10.447010] pci 0000:80:04.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[   10.455015] pci 0000:80:05.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[   10.466646] pci 0000:80:07.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[   10.475015] pci 0000:80:07.1: [1022:14a7] type 01 class 0x060400 PCIe Root Port
[   10.482547] pci 0000:80:07.1: PCI bridge to [bus 81]
[   10.490535] pci 0000:80:07.1:   bridge window [mem 0xb6000000-0xb61fffff]
[   10.498535] pci 0000:80:07.1:   bridge window [mem 0x88540f00000-0x88540ffffff 64bit pref]
[   10.506536] pci 0000:80:07.1: enabling Extended Tags
[   10.510579] pci 0000:80:07.1: PME# supported from D0 D3hot D3cold
[   10.519117] pci 0000:80:07.2: [1022:14a7] type 01 class 0x060400 PCIe Root Port
[   10.526544] pci 0000:80:07.2: PCI bridge to [bus 82]
[   10.530535] pci 0000:80:07.2:   bridge window [mem 0xb6200000-0xb62fffff]
[   10.538546] pci 0000:80:07.2: enabling Extended Tags
[   10.546590] pci 0000:80:07.2: PME# supported from D0 D3hot D3cold
[   10.551250] pci 0000:81:00.0: [1022:14ac] type 00 class 0x130000 PCIe Endpoint
[   10.562558] pci 0000:81:00.0: enabling Extended Tags
[   10.567092] pci 0000:81:00.1: [1022:14dc] type 00 class 0x088000 PCIe Endpoint
[   10.574551] pci 0000:81:00.1: BAR 0 [mem 0x88540f80000-0x88540ffffff 64bit pref]
[   10.582532] pci 0000:81:00.1: BAR 2 [mem 0x88540f00000-0x88540f7ffff 64bit pref]
[   10.590536] pci 0000:81:00.1: enabling Extended Tags
[   10.599088] pci 0000:81:00.5: [1022:14ca] type 00 class 0x108000 PCIe Endpoint
[   10.606551] pci 0000:81:00.5: BAR 2 [mem 0xb6000000-0xb60fffff]
[   10.614532] pci 0000:81:00.5: BAR 5 [mem 0xb6100000-0xb6101fff]
[   10.618534] pci 0000:81:00.5: enabling Extended Tags
[   10.627082] pci 0000:80:07.1: PCI bridge to [bus 81]
[   10.631012] pci 0000:82:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[   10.638557] pci 0000:82:00.0: BAR 5 [mem 0xb6201000-0xb62017ff]
[   10.646538] pci 0000:82:00.0: enabling Extended Tags
[   10.650577] pci 0000:82:00.0: PME# supported from D3hot D3cold
[   10.659038] pci 0000:82:00.1: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[   10.666554] pci 0000:82:00.1: BAR 5 [mem 0xb6200000-0xb62007ff]
[   10.674534] pci 0000:82:00.1: enabling Extended Tags
[   10.678567] pci 0000:82:00.1: PME# supported from D3hot D3cold
[   10.687046] pci 0000:80:07.2: PCI bridge to [bus 82]
[   10.691048] ACPI: PCI Root Bridge [S1D3] (domain 0000 [bus a0-bf])
[   10.698538] acpi PNP0A08:07: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[   10.710863] acpi PNP0A08:07: _OSC: platform does not support [AER LTR]
[   10.718833] acpi PNP0A08:07: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]
[   10.727077] PCI host bridge to bus 0000:a0
[   10.734622] pci_bus 0000:a0: root bus resource [io  0xa000-0xafff window]
[   10.738530] pci_bus 0000:a0: root bus resource [mem 0xb0000000-0xb1ffffff window]
[   10.750530] pci_bus 0000:a0: root bus resource [mem 0x88541000000-0x98540ffffff window]
[   10.758531] pci_bus 0000:a0: root bus resource [bus a0-bf]
[   10.762545] pci 0000:a0:00.0: [1022:14a4] type 00 class 0x060000 conventional PCI endpoint
[   10.775058] pci 0000:a0:00.2: [1022:149e] type 00 class 0x080600 conventional PCI endpoint
[   10.783084] pci 0000:a0:00.3: [1022:14a6] type 00 class 0x080700 PCIe Root Complex Event Collector
[   10.794529] pci 0000:a0:00.3: enabling Extended Tags
[   10.799559] pci 0000:a0:01.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[   10.810944] pci 0000:a0:01.1: [1022:14ab] type 01 class 0x060400 PCIe Root Port
[   10.818549] pci 0000:a0:01.1: PCI bridge to [bus a1]
[   10.822650] pci 0000:a0:01.1: PME# supported from D0 D3hot D3cold
[   10.831419] pci 0000:a0:02.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[   10.842999] pci 0000:a0:03.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[   10.850994] pci 0000:a0:04.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[   10.858995] pci 0000:a0:05.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[   10.871012] pci 0000:a0:07.0: [1022:149f] type 00 class 0x060000 conventional PCI endpoint
[   10.879020] pci 0000:a0:07.1: [1022:14a7] type 01 class 0x060400 PCIe Root Port
[   10.886548] pci 0000:a0:07.1: PCI bridge to [bus a2]
[   10.894540] pci 0000:a0:07.1:   bridge window [mem 0x98540f00000-0x98540ffffff 64bit pref]
[   10.902538] pci 0000:a0:07.1: enabling Extended Tags
[   10.906576] pci 0000:a0:07.1: PME# supported from D0 D3hot D3cold
[   10.915202] pci 0000:a0:01.1: PCI bridge to [bus a1]
[   10.922609] pci 0000:a2:00.0: [1022:14ac] type 00 class 0x130000 PCIe Endpoint
[   10.930555] pci 0000:a2:00.0: enabling Extended Tags
[   10.935083] pci 0000:a2:00.1: [1022:14dc] type 00 class 0x088000 PCIe Endpoint
[   10.942549] pci 0000:a2:00.1: BAR 0 [mem 0x98540f80000-0x98540ffffff 64bit pref]
[   10.950532] pci 0000:a2:00.1: BAR 2 [mem 0x98540f00000-0x98540f7ffff 64bit pref]
[   10.958539] pci 0000:a2:00.1: enabling Extended Tags
[   10.967867] pci 0000:a0:07.1: PCI bridge to [bus a2]
[   10.974995] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[   10.978618] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[   10.986606] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[   10.994621] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[   10.998612] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[   11.006598] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[   11.014601] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[   11.018606] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[   11.036416] acpi/hmat: Memory Flags:0001 Processor Domain:0 Memory Domain:0
[   11.042532] acpi/hmat: Memory Flags:0001 Processor Domain:1 Memory Domain:1
[   11.050747] iommu: Default domain type: Translated
[   11.058535] iommu: DMA domain TLB invalidation policy: lazy mode
[   11.074845] SCSI subsystem initialized
[   11.078618] ACPI: bus type USB registered
[   11.082550] usbcore: registered new interface driver usbfs
[   11.086537] usbcore: registered new interface driver hub
[   11.090598] usbcore: registered new device driver usb
[   11.105527] i2c_designware AMDI0010:00: Unknown Synopsys component type: 0xffffffff
[   11.117735] i2c_designware AMDI0010:01: Unknown Synopsys component type: 0xffffffff
[   11.129646] i2c_designware AMDI0010:02: Unknown Synopsys component type: 0xffffffff
[   11.141502] i2c_designware AMDI0010:03: Unknown Synopsys component type: 0xffffffff
[   11.156695] pps_core: LinuxPPS API ver. 1 registered
[   11.158529] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux•it>
[   11.162540] PTP clock support registered
[   11.166728] EDAC MC: Ver: 3.0.0
[   11.170816] efivars: Registered efivars operations
[   11.175207] NetLabel: Initializing
[   11.178532] NetLabel:  domain hash size = 128
[   11.182532] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[   11.186551] NetLabel:  unlabeled traffic allowed by default
[   11.190578] mctp: management component transport protocol core
[   11.194532] NET: Registered PF_MCTP protocol family
[   11.198582] PCI: Using ACPI for IRQ routing
[   11.209378] pci 0000:63:00.0: vgaarb: setting as boot VGA device
[   11.210527] pci 0000:63:00.0: vgaarb: bridge control possible
[   11.210527] pci 0000:63:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[   11.210588] vgaarb: loaded
[   11.214640] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[   11.218529] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[   11.225088] clocksource: Switched to clocksource tsc-early
[   11.229137] VFS: Disk quotas dquot_6.6.0
[   11.233544] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[   11.241595] AppArmor: AppArmor Filesystem Enabled
[   11.246908] pnp: PnP ACPI init
[   11.251677] system 00:00: [mem 0x3ffb00000000-0x3ffb0fffffff] has been reserved
[   11.260394] system 00:02: [io  0x04d0-0x04d1] has been reserved
[   11.267004] system 00:02: [io  0x040b] has been reserved
[   11.272931] system 00:02: [io  0x04d6] has been reserved
[   11.278862] system 00:02: [io  0x0c00-0x0c01] has been reserved
[   11.285459] system 00:02: [io  0x0c14] has been reserved
[   11.291385] system 00:02: [io  0x0c50-0x0c51] has been reserved
[   11.297989] system 00:02: [io  0x0c52] has been reserved
[   11.303927] system 00:02: [io  0x0c6c] has been reserved
[   11.309853] system 00:02: [io  0x0c6f] has been reserved
[   11.315792] system 00:02: [io  0x0cd0-0x0cd1] has been reserved
[   11.322406] system 00:02: [io  0x0cd2-0x0cd3] has been reserved
[   11.329017] system 00:02: [io  0x0cd4-0x0cd5] has been reserved
[   11.335625] system 00:02: [io  0x0cd6-0x0cd7] has been reserved
[   11.342235] system 00:02: [io  0x0cd8-0x0cdf] has been reserved
[   11.348835] system 00:02: [io  0x0800-0x089f] has been reserved
[   11.355462] system 00:02: [io  0x0b00-0x0b0f] has been reserved
[   11.362074] system 00:02: [io  0x0b20-0x0b3f] has been reserved
[   11.368684] system 00:02: [io  0x0900-0x090f] has been reserved
[   11.375289] system 00:02: [io  0x0910-0x091f] has been reserved
[   11.381897] system 00:02: [io  0xfe00-0xfefe] has been reserved
[   11.388515] system 00:02: [mem 0xfedc0000-0xfedc0fff] has been reserved
[   11.395899] system 00:02: [mem 0xfee00000-0xfee00fff] has been reserved
[   11.403285] system 00:02: [mem 0xfed80000-0xfed814ff] has been reserved
[   11.410673] system 00:02: [mem 0xfed81900-0xfed8ffff] has been reserved
[   11.418057] system 00:02: [mem 0xfec10000-0xfec10fff] has been reserved
[   11.425440] system 00:02: [mem 0xff000000-0xffffffff] has been reserved
[   11.433332] ACPI: IRQ 4 override to edge, high(!)
[   11.438701] ACPI: IRQ 3 override to edge, high(!)
[   11.446544] pnp: PnP ACPI: found 5 devices
[   11.457763] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[   11.467807] NET: Registered PF_INET protocol family
[   11.473380] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[   11.485416] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[   11.495413] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[   11.504335] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[   11.514831] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc hugepage)
[   11.524173] TCP: Hash tables configured (established 524288 bind 65536)
[   11.532276] MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, vmalloc)
[   11.541175] UDP hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[   11.550398] UDP-Lite hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[   11.560396] NET: Registered PF_UNIX/PF_LOCAL protocol family
[   11.566725] NET: Registered PF_XDP protocol family
[   11.572107] pci 0000:60:05.2: PCI bridge to [bus 61]
[   11.577658] pci 0000:60:05.2:   bridge window [mem 0xd3500000-0xd35fffff]
[   11.585239] pci 0000:60:05.2:   bridge window [mem 0x28420f00000-0x28420ffffff 64bit pref]
[   11.594496] pci 0000:62:00.0: PCI bridge to [bus 63]
[   11.600041] pci 0000:62:00.0:   bridge window [io  0x7000-0x7fff]
[   11.606845] pci 0000:62:00.0:   bridge window [mem 0xd2000000-0xd31fffff]
[   11.614432] pci 0000:60:05.3: PCI bridge to [bus 62-63]
[   11.620261] pci 0000:60:05.3:   bridge window [io  0x7000-0x7fff]
[   11.627060] pci 0000:60:05.3:   bridge window [mem 0xd2000000-0xd31fffff]
[   11.635394] pci 0000:60:07.1: PCI bridge to [bus 64]
[   11.640941] pci 0000:60:07.1:   bridge window [mem 0xd3400000-0xd34fffff]
[   11.648521] pci 0000:60:07.1:   bridge window [mem 0x28420e00000-0x28420efffff 64bit pref]
[   11.657768] pci 0000:60:07.2: PCI bridge to [bus 65]
[   11.663319] pci 0000:60:07.2:   bridge window [mem 0xd3300000-0xd33fffff]
[   11.671285] pci_bus 0000:60: resource 4 [io  0x03b0-0x03df window]
[   11.678188] pci_bus 0000:60: resource 5 [io  0x5000-0x7fff window]
[   11.685086] pci_bus 0000:60: resource 6 [mem 0x000a0000-0x000bffff window]
[   11.692758] pci_bus 0000:60: resource 7 [mem 0xd2000000-0xd3afffff window]
[   11.700438] pci_bus 0000:60: resource 8 [mem 0x18421000000-0x28420ffffff window]
[   11.708691] pci_bus 0000:61: resource 1 [mem 0xd3500000-0xd35fffff]
[   11.715687] pci_bus 0000:61: resource 2 [mem 0x28420f00000-0x28420ffffff 64bit pref]
[   11.724335] pci_bus 0000:62: resource 0 [io  0x7000-0x7fff]
[   11.730554] pci_bus 0000:62: resource 1 [mem 0xd2000000-0xd31fffff]
[   11.737560] pci_bus 0000:63: resource 0 [io  0x7000-0x7fff]
[   11.743784] pci_bus 0000:63: resource 1 [mem 0xd2000000-0xd31fffff]
[   11.750790] pci_bus 0000:64: resource 1 [mem 0xd3400000-0xd34fffff]
[   11.757787] pci_bus 0000:64: resource 2 [mem 0x28420e00000-0x28420efffff 64bit pref]
[   11.766423] pci_bus 0000:65: resource 1 [mem 0xd3300000-0xd33fffff]
[   11.773470] pci 0000:40:01.1: bridge window [io  0x1000-0x0fff] to [bus 41] add_size 1000
[   11.782600] pci 0000:40:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 41] add_size 200000 add_align 100000
[   11.795405] pci 0000:40:01.2: bridge window [io  0x1000-0x0fff] to [bus 42] add_size 1000
[   11.804541] pci 0000:40:01.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 42] add_size 200000 add_align 100000
[   11.817359] pci 0000:40:01.2: bridge window [mem 0x00100000-0x000fffff] to [bus 42] add_size 200000 add_align 100000
[   11.829120] pci 0000:40:01.3: bridge window [io  0x1000-0x0fff] to [bus 43] add_size 1000
[   11.838264] pci 0000:40:01.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 43] add_size 200000 add_align 100000
[   11.851080] pci 0000:40:01.3: bridge window [mem 0x00100000-0x000fffff] to [bus 43] add_size 200000 add_align 100000
[   11.862830] pci 0000:40:01.4: bridge window [io  0x1000-0x0fff] to [bus 44] add_size 1000
[   11.871958] pci 0000:40:01.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 44] add_size 200000 add_align 100000
[   11.884769] pci 0000:40:01.4: bridge window [mem 0x00100000-0x000fffff] to [bus 44] add_size 200000 add_align 100000
[   11.896535] pci 0000:40:01.1: bridge window [mem 0x28421000000-0x284211fffff 64bit pref]: assigned
[   11.906554] pci 0000:40:01.2: bridge window [mem 0xce000000-0xce1fffff]: assigned
[   11.914909] pci 0000:40:01.2: bridge window [mem 0x28421200000-0x284213fffff 64bit pref]: assigned
[   11.924919] pci 0000:40:01.3: bridge window [mem 0xce200000-0xce3fffff]: assigned
[   11.933273] pci 0000:40:01.3: bridge window [mem 0x28421400000-0x284215fffff 64bit pref]: assigned
[   11.943275] pci 0000:40:01.4: bridge window [mem 0xce400000-0xce5fffff]: assigned
[   11.951628] pci 0000:40:01.4: bridge window [mem 0x28421600000-0x284217fffff 64bit pref]: assigned
[   11.961628] pci 0000:40:01.1: bridge window [io  0x4000-0x4fff]: assigned
[   11.969205] pci 0000:40:01.2: bridge window [io  size 0x1000]: can't assign; no space
[   11.977950] pci 0000:40:01.2: bridge window [io  size 0x1000]: failed to assign
[   11.986121] pci 0000:40:01.3: bridge window [io  size 0x1000]: can't assign; no space
[   11.994864] pci 0000:40:01.3: bridge window [io  size 0x1000]: failed to assign
[   12.003032] pci 0000:40:01.4: bridge window [io  size 0x1000]: can't assign; no space
[   12.011781] pci 0000:40:01.4: bridge window [io  size 0x1000]: failed to assign
[   12.019949] pci 0000:40:01.4: bridge window [io  0x4000-0x4fff]: assigned
[   12.027518] pci 0000:40:01.3: bridge window [io  size 0x1000]: can't assign; no space
[   12.036258] pci 0000:40:01.3: bridge window [io  size 0x1000]: failed to assign
[   12.044414] pci 0000:40:01.2: bridge window [io  size 0x1000]: can't assign; no space
[   12.053155] pci 0000:40:01.2: bridge window [io  size 0x1000]: failed to assign
[   12.061329] pci 0000:40:01.1: bridge window [io  size 0x1000]: can't assign; no space
[   12.070077] pci 0000:40:01.1: bridge window [io  size 0x1000]: failed to assign
[   12.078259] pci 0000:40:01.1: PCI bridge to [bus 41]
[   12.083810] pci 0000:40:01.1:   bridge window [mem 0xd0000000-0xd00fffff]
[   12.091390] pci 0000:40:01.1:   bridge window [mem 0x28421000000-0x284211fffff 64bit pref]
[   12.100633] pci 0000:40:01.2: PCI bridge to [bus 42]
[   12.106175] pci 0000:40:01.2:   bridge window [mem 0xce000000-0xce1fffff]
[   12.113764] pci 0000:40:01.2:   bridge window [mem 0x28421200000-0x284213fffff 64bit pref]
[   12.123852] pci 0000:40:01.3: PCI bridge to [bus 43]
[   12.129393] pci 0000:40:01.3:   bridge window [mem 0xce200000-0xce3fffff]
[   12.136969] pci 0000:40:01.3:   bridge window [mem 0x28421400000-0x284215fffff 64bit pref]
[   12.146212] pci 0000:40:01.4: PCI bridge to [bus 44]
[   12.151754] pci 0000:40:01.4:   bridge window [io  0x4000-0x4fff]
[   12.158562] pci 0000:40:01.4:   bridge window [mem 0xce400000-0xce5fffff]
[   12.166148] pci 0000:40:01.4:   bridge window [mem 0x28421600000-0x284217fffff 64bit pref]
[   12.175701] pci 0000:40:07.1: PCI bridge to [bus 45]
[   12.181242] pci 0000:40:07.1:   bridge window [mem 0x38420f00000-0x38420ffffff 64bit pref]
[   12.190482] pci_bus 0000:40: resource 4 [io  0x4000-0x4fff window]
[   12.197381] pci_bus 0000:40: resource 5 [mem 0xce000000-0xd00fffff window]
[   12.205052] pci_bus 0000:40: resource 6 [mem 0x28421000000-0x38420ffffff window]
[   12.213307] pci_bus 0000:41: resource 1 [mem 0xd0000000-0xd00fffff]
[   12.220309] pci_bus 0000:41: resource 2 [mem 0x28421000000-0x284211fffff 64bit pref]
[   12.228959] pci_bus 0000:42: resource 1 [mem 0xce000000-0xce1fffff]
[   12.235959] pci_bus 0000:42: resource 2 [mem 0x28421200000-0x284213fffff 64bit pref]
[   12.244608] pci_bus 0000:43: resource 1 [mem 0xce200000-0xce3fffff]
[   12.251611] pci_bus 0000:43: resource 2 [mem 0x28421400000-0x284215fffff 64bit pref]
[   12.260258] pci_bus 0000:44: resource 0 [io  0x4000-0x4fff]
[   12.266479] pci_bus 0000:44: resource 1 [mem 0xce400000-0xce5fffff]
[   12.273473] pci_bus 0000:44: resource 2 [mem 0x28421600000-0x284217fffff 64bit pref]
[   12.282119] pci_bus 0000:45: resource 2 [mem 0x38420f00000-0x38420ffffff 64bit pref]
[   12.290779] pci 0000:00:01.1: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[   12.299909] pci 0000:00:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[   12.312728] pci 0000:00:01.1: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[   12.324504] pci 0000:00:01.1: bridge window [mem 0xdc000000-0xdc1fffff]: assigned
[   12.332866] pci 0000:00:01.1: bridge window [mem 0x38481000000-0x384811fffff 64bit pref]: assigned
[   12.342872] pci 0000:00:01.1: bridge window [io  0x1000-0x1fff]: assigned
[   12.350464] pci 0000:00:01.1: PCI bridge to [bus 01]
[   12.356008] pci 0000:00:01.1:   bridge window [io  0x1000-0x1fff]
[   12.362813] pci 0000:00:01.1:   bridge window [mem 0xdc000000-0xdc1fffff]
[   12.370389] pci 0000:00:01.1:   bridge window [mem 0x38481000000-0x384811fffff 64bit pref]
[   12.379632] pci 0000:00:07.1: PCI bridge to [bus 02]
[   12.385171] pci 0000:00:07.1:   bridge window [mem 0xde000000-0xde2fffff]
[   12.392748] pci 0000:00:07.1:   bridge window [mem 0x48480f00000-0x48480ffffff 64bit pref]
[   12.402976] pci 0000:00:07.2: PCI bridge to [bus 03]
[   12.408525] pci 0000:00:07.2:   bridge window [mem 0xde300000-0xde3fffff]
[   12.416946] pci_bus 0000:00: resource 4 [io  0x1000-0x2fff window]
[   12.423855] pci_bus 0000:00: resource 5 [mem 0xdc000000-0xde3fffff window]
[   12.431540] pci_bus 0000:00: resource 6 [mem 0x38481000000-0x48480ffffff window]
[   12.439800] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[   12.446018] pci_bus 0000:01: resource 1 [mem 0xdc000000-0xdc1fffff]
[   12.453010] pci_bus 0000:01: resource 2 [mem 0x38481000000-0x384811fffff 64bit pref]
[   12.461652] pci_bus 0000:02: resource 1 [mem 0xde000000-0xde2fffff]
[   12.468644] pci_bus 0000:02: resource 2 [mem 0x48480f00000-0x48480ffffff 64bit pref]
[   12.477288] pci_bus 0000:03: resource 1 [mem 0xde300000-0xde3fffff]
[   12.484346] pci 0000:20:01.1: bridge window [io  0x1000-0x0fff] to [bus 21] add_size 1000
[   12.493483] pci 0000:20:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 21] add_size 200000 add_align 100000
[   12.506307] pci 0000:20:01.1: bridge window [mem 0x00100000-0x000fffff] to [bus 21] add_size 200000 add_align 100000
[   12.518059] pci 0000:20:01.2: bridge window [io  0x1000-0x0fff] to [bus 22] add_size 1000
[   12.527188] pci 0000:20:01.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 22] add_size 200000 add_align 100000
[   12.540009] pci 0000:20:01.2: bridge window [mem 0x00100000-0x000fffff] to [bus 22] add_size 200000 add_align 100000
[   12.551759] pci 0000:20:01.3: bridge window [io  0x1000-0x0fff] to [bus 23] add_size 1000
[   12.560888] pci 0000:20:01.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 23] add_size 200000 add_align 100000
[   12.573708] pci 0000:20:01.3: bridge window [mem 0x00100000-0x000fffff] to [bus 23] add_size 200000 add_align 100000
[   12.585470] pci 0000:20:01.4: bridge window [io  0x1000-0x0fff] to [bus 24] add_size 1000
[   12.594598] pci 0000:20:01.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 24] add_size 200000 add_align 100000
[   12.607414] pci 0000:20:01.4: bridge window [mem 0x00100000-0x000fffff] to [bus 24] add_size 200000 add_align 100000
[   12.619177] pci 0000:20:01.1: bridge window [mem 0xc4000000-0xc41fffff]: assigned
[   12.627531] pci 0000:20:01.1: bridge window [mem 0x48481000000-0x484811fffff 64bit pref]: assigned
[   12.637522] pci 0000:20:01.2: bridge window [mem 0xc4200000-0xc43fffff]: assigned
[   12.645881] pci 0000:20:01.2: bridge window [mem 0x48481200000-0x484813fffff 64bit pref]: assigned
[   12.655887] pci 0000:20:01.3: bridge window [mem 0xc4400000-0xc45fffff]: assigned
[   12.664249] pci 0000:20:01.3: bridge window [mem 0x48481400000-0x484815fffff 64bit pref]: assigned
[   12.674259] pci 0000:20:01.4: bridge window [mem 0xc4600000-0xc47fffff]: assigned
[   12.682619] pci 0000:20:01.4: bridge window [mem 0x48481600000-0x484817fffff 64bit pref]: assigned
[   12.692624] pci 0000:20:01.1: bridge window [io  0x3000-0x3fff]: assigned
[   12.700201] pci 0000:20:01.2: bridge window [io  size 0x1000]: can't assign; no space
[   12.708940] pci 0000:20:01.2: bridge window [io  size 0x1000]: failed to assign
[   12.717101] pci 0000:20:01.3: bridge window [io  size 0x1000]: can't assign; no space
[   12.725829] pci 0000:20:01.3: bridge window [io  size 0x1000]: failed to assign
[   12.733995] pci 0000:20:01.4: bridge window [io  size 0x1000]: can't assign; no space
[   12.742748] pci 0000:20:01.4: bridge window [io  size 0x1000]: failed to assign
[   12.750923] pci 0000:20:01.4: bridge window [io  0x3000-0x3fff]: assigned
[   12.758508] pci 0000:20:01.3: bridge window [io  size 0x1000]: can't assign; no space
[   12.767253] pci 0000:20:01.3: bridge window [io  size 0x1000]: failed to assign
[   12.775415] pci 0000:20:01.2: bridge window [io  size 0x1000]: can't assign; no space
[   12.784157] pci 0000:20:01.2: bridge window [io  size 0x1000]: failed to assign
[   12.792315] pci 0000:20:01.1: bridge window [io  size 0x1000]: can't assign; no space
[   12.801053] pci 0000:20:01.1: bridge window [io  size 0x1000]: failed to assign
[   12.809214] pci 0000:20:01.1: PCI bridge to [bus 21]
[   12.814756] pci 0000:20:01.1:   bridge window [mem 0xc4000000-0xc41fffff]
[   12.822331] pci 0000:20:01.1:   bridge window [mem 0x48481000000-0x484811fffff 64bit pref]
[   12.831623] pci 0000:20:01.2: PCI bridge to [bus 22]
[   12.837175] pci 0000:20:01.2:   bridge window [mem 0xc4200000-0xc43fffff]
[   12.844756] pci 0000:20:01.2:   bridge window [mem 0x48481200000-0x484813fffff 64bit pref]
[   12.854008] pci 0000:20:01.3: PCI bridge to [bus 23]
[   12.859553] pci 0000:20:01.3:   bridge window [mem 0xc4400000-0xc45fffff]
[   12.867131] pci 0000:20:01.3:   bridge window [mem 0x48481400000-0x484815fffff 64bit pref]
[   12.876371] pci 0000:20:01.4: PCI bridge to [bus 24]
[   12.881911] pci 0000:20:01.4:   bridge window [io  0x3000-0x3fff]
[   12.888711] pci 0000:20:01.4:   bridge window [mem 0xc4600000-0xc47fffff]
[   12.896289] pci 0000:20:01.4:   bridge window [mem 0x48481600000-0x484817fffff 64bit pref]
[   12.905529] pci 0000:20:07.1: PCI bridge to [bus 25]
[   12.911077] pci 0000:20:07.1:   bridge window [mem 0x58480f00000-0x58480ffffff 64bit pref]
[   12.920326] pci_bus 0000:20: resource 4 [io  0x0000-0x02e7 window]
[   12.927233] pci_bus 0000:20: resource 5 [io  0x0300-0x03af window]
[   12.934134] pci_bus 0000:20: resource 6 [io  0x0400-0x0cf7 window]
[   12.941033] pci_bus 0000:20: resource 7 [io  0x3000-0x3fff window]
[   12.947931] pci_bus 0000:20: resource 8 [mem 0x000c0000-0x000dffff window]
[   12.955604] pci_bus 0000:20: resource 9 [mem 0xc4000000-0xc5ffffff window]
[   12.963283] pci_bus 0000:20: resource 10 [mem 0x48481000000-0x58480ffffff window]
[   12.971634] pci_bus 0000:21: resource 1 [mem 0xc4000000-0xc41fffff]
[   12.978629] pci_bus 0000:21: resource 2 [mem 0x48481000000-0x484811fffff 64bit pref]
[   12.987280] pci_bus 0000:22: resource 1 [mem 0xc4200000-0xc43fffff]
[   12.994281] pci_bus 0000:22: resource 2 [mem 0x48481200000-0x484813fffff 64bit pref]
[   13.002928] pci_bus 0000:23: resource 1 [mem 0xc4400000-0xc45fffff]
[   13.009932] pci_bus 0000:23: resource 2 [mem 0x48481400000-0x484815fffff 64bit pref]
[   13.018579] pci_bus 0000:24: resource 0 [io  0x3000-0x3fff]
[   13.024800] pci_bus 0000:24: resource 1 [mem 0xc4600000-0xc47fffff]
[   13.031794] pci_bus 0000:24: resource 2 [mem 0x48481600000-0x484817fffff 64bit pref]
[   13.040438] pci_bus 0000:25: resource 2 [mem 0x58480f00000-0x58480ffffff 64bit pref]
[   13.049138] pci 0000:e0:01.1: bridge window [io  0x1000-0x0fff] to [bus e1] add_size 1000
[   13.058284] pci 0000:e0:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus e1] add_size 200000 add_align 100000
[   13.071110] pci 0000:e0:01.1: bridge window [mem 0x00100000-0x000fffff] to [bus e1] add_size 200000 add_align 100000
[   13.082874] pci 0000:e0:01.1: bridge window [mem size 0x00200000]: can't assign; no space
[   13.092013] pci 0000:e0:01.1: bridge window [mem size 0x00200000]: failed to assign
[   13.100566] pci 0000:e0:01.1: bridge window [mem 0x584e1000000-0x584e11fffff 64bit pref]: assigned
[   13.110574] pci 0000:e0:01.1: bridge window [io  0xd000-0xdfff]: assigned
[   13.118152] pci 0000:e0:01.1: bridge window [mem size 0x00200000]: can't assign; no space
[   13.127281] pci 0000:e0:01.1: bridge window [mem size 0x00200000]: failed to assign
[   13.135828] pci 0000:e0:01.1: bridge window [mem 0x584e1000000-0x584e11fffff 64bit pref]: assigned
[   13.145828] pci 0000:e0:01.1: PCI bridge to [bus e1]
[   13.151372] pci 0000:e0:01.1:   bridge window [io  0xd000-0xdfff]
[   13.158180] pci 0000:e0:01.1:   bridge window [mem 0x584e1000000-0x584e11fffff 64bit pref]
[   13.168355] pci 0000:e0:07.1: PCI bridge to [bus e2]
[   13.173919] pci 0000:e0:07.1:   bridge window [mem 0x684e0f00000-0x684e0ffffff 64bit pref]
[   13.183176] pci 0000:e0:07.2: PCI bridge to [bus e3]
[   13.188718] pci 0000:e0:07.2:   bridge window [mem 0xc0000000-0xc00fffff]
[   13.196312] pci_bus 0000:e0: resource 4 [io  0xd000-0xffff window]
[   13.203211] pci_bus 0000:e0: resource 5 [mem 0xc0000000-0xc00fffff window]
[   13.210883] pci_bus 0000:e0: resource 6 [mem 0x584e1000000-0x684e0ffffff window]
[   13.219137] pci_bus 0000:e1: resource 0 [io  0xd000-0xdfff]
[   13.225353] pci_bus 0000:e1: resource 2 [mem 0x584e1000000-0x584e11fffff 64bit pref]
[   13.233998] pci_bus 0000:e2: resource 2 [mem 0x684e0f00000-0x684e0ffffff 64bit pref]
[   13.242650] pci_bus 0000:e3: resource 1 [mem 0xc0000000-0xc00fffff]
[   13.249695] pci 0000:c0:01.1: bridge window [io  0x1000-0x0fff] to [bus c1] add_size 1000
[   13.258834] pci 0000:c0:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c1] add_size 200000 add_align 100000
[   13.271652] pci 0000:c0:01.1: bridge window [mem 0x00100000-0x000fffff] to [bus c1] add_size 200000 add_align 100000
[   13.283417] pci 0000:c0:01.1: bridge window [mem 0xba000000-0xba1fffff]: assigned
[   13.291771] pci 0000:c0:01.1: bridge window [mem 0x684e1000000-0x684e11fffff 64bit pref]: assigned
[   13.301776] pci 0000:c0:01.1: bridge window [io  0xb000-0xbfff]: assigned
[   13.309354] pci 0000:c0:01.1: PCI bridge to [bus c1]
[   13.314895] pci 0000:c0:01.1:   bridge window [io  0xb000-0xbfff]
[   13.321703] pci 0000:c0:01.1:   bridge window [mem 0xba000000-0xba1fffff]
[   13.329283] pci 0000:c0:01.1:   bridge window [mem 0x684e1000000-0x684e11fffff 64bit pref]
[   13.338533] pci 0000:c0:07.1: PCI bridge to [bus c2]
[   13.344086] pci 0000:c0:07.1:   bridge window [mem 0x784e0f00000-0x784e0ffffff 64bit pref]
[   13.353905] pci_bus 0000:c0: resource 4 [io  0xb000-0xcfff window]
[   13.360805] pci_bus 0000:c0: resource 5 [mem 0xba000000-0xbbffffff window]
[   13.368472] pci_bus 0000:c0: resource 6 [mem 0x684e1000000-0x784e0ffffff window]
[   13.376733] pci_bus 0000:c1: resource 0 [io  0xb000-0xbfff]
[   13.382950] pci_bus 0000:c1: resource 1 [mem 0xba000000-0xba1fffff]
[   13.389951] pci_bus 0000:c1: resource 2 [mem 0x684e1000000-0x684e11fffff 64bit pref]
[   13.398594] pci_bus 0000:c2: resource 2 [mem 0x784e0f00000-0x784e0ffffff 64bit pref]
[   13.407285] pci 0000:80:07.1: PCI bridge to [bus 81]
[   13.412828] pci 0000:80:07.1:   bridge window [mem 0xb6000000-0xb61fffff]
[   13.420411] pci 0000:80:07.1:   bridge window [mem 0x88540f00000-0x88540ffffff 64bit pref]
[   13.429728] pci 0000:80:07.2: PCI bridge to [bus 82]
[   13.435275] pci 0000:80:07.2:   bridge window [mem 0xb6200000-0xb62fffff]
[   13.443705] pci_bus 0000:80: resource 4 [io  0x8000-0x9fff window]
[   13.450602] pci_bus 0000:80: resource 5 [mem 0xb6000000-0xb62fffff window]
[   13.458274] pci_bus 0000:80: resource 6 [mem 0x78541000000-0x88540ffffff window]
[   13.466530] pci_bus 0000:81: resource 1 [mem 0xb6000000-0xb61fffff]
[   13.473524] pci_bus 0000:81: resource 2 [mem 0x88540f00000-0x88540ffffff 64bit pref]
[   13.482168] pci_bus 0000:82: resource 1 [mem 0xb6200000-0xb62fffff]
[   13.489207] pci 0000:a0:01.1: bridge window [io  0x1000-0x0fff] to [bus a1] add_size 1000
[   13.498355] pci 0000:a0:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus a1] add_size 200000 add_align 100000
[   13.511174] pci 0000:a0:01.1: bridge window [mem 0x00100000-0x000fffff] to [bus a1] add_size 200000 add_align 100000
[   13.522935] pci 0000:a0:01.1: bridge window [mem 0xb0000000-0xb01fffff]: assigned
[   13.531292] pci 0000:a0:01.1: bridge window [mem 0x88541000000-0x885411fffff 64bit pref]: assigned
[   13.541293] pci 0000:a0:01.1: bridge window [io  0xa000-0xafff]: assigned
[   13.548871] pci 0000:a0:01.1: PCI bridge to [bus a1]
[   13.554413] pci 0000:a0:01.1:   bridge window [io  0xa000-0xafff]
[   13.561217] pci 0000:a0:01.1:   bridge window [mem 0xb0000000-0xb01fffff]
[   13.568794] pci 0000:a0:01.1:   bridge window [mem 0x88541000000-0x885411fffff 64bit pref]
[   13.578042] pci 0000:a0:07.1: PCI bridge to [bus a2]
[   13.583594] pci 0000:a0:07.1:   bridge window [mem 0x98540f00000-0x98540ffffff 64bit pref]
[   13.593339] pci_bus 0000:a0: resource 4 [io  0xa000-0xafff window]
[   13.600240] pci_bus 0000:a0: resource 5 [mem 0xb0000000-0xb1ffffff window]
[   13.607922] pci_bus 0000:a0: resource 6 [mem 0x88541000000-0x98540ffffff window]
[   13.616180] pci_bus 0000:a1: resource 0 [io  0xa000-0xafff]
[   13.622404] pci_bus 0000:a1: resource 1 [mem 0xb0000000-0xb01fffff]
[   13.629398] pci_bus 0000:a1: resource 2 [mem 0x88541000000-0x885411fffff 64bit pref]
[   13.638042] pci_bus 0000:a2: resource 2 [mem 0x98540f00000-0x98540ffffff 64bit pref]
[   13.647460] PCI: CLS 64 bytes, default 64
[   13.652012] Unpacking initramfs...
[   13.733545] Freeing initrd memory: 27208K
[   13.825524] AMD-Vi: IOMMU SNP support enabled.
[   13.830626] pci 0000:60:00.2: AMD-Vi: IOMMU performance counters supported
[   13.838580] pci 0000:60:00.3: Adding to iommu group 0
[   13.844292] pci 0000:60:01.0: Adding to iommu group 1
[   13.850017] pci 0000:60:02.0: Adding to iommu group 2
[   13.855727] pci 0000:60:03.0: Adding to iommu group 3
[   13.861435] pci 0000:60:04.0: Adding to iommu group 4
[   13.867156] pci 0000:60:05.0: Adding to iommu group 5
[   13.872840] pci 0000:60:05.2: Adding to iommu group 6
[   13.878531] pci 0000:60:05.3: Adding to iommu group 7
[   13.884295] pci 0000:60:07.0: Adding to iommu group 8
[   13.889975] pci 0000:60:07.1: Adding to iommu group 8
[   13.895652] pci 0000:60:07.2: Adding to iommu group 8
[   13.901333] pci 0000:61:00.0: Adding to iommu group 9
[   13.907009] pci 0000:62:00.0: Adding to iommu group 10
[   13.912758] pci 0000:63:00.0: Adding to iommu group 10
[   13.918520] pci 0000:63:01.0: Adding to iommu group 10
[   13.924261] pci 0000:64:00.0: Adding to iommu group 8
[   13.929922] pci 0000:64:00.1: Adding to iommu group 8
[   13.935569] pci 0000:64:00.4: Adding to iommu group 8
[   13.941215] pci 0000:65:00.0: Adding to iommu group 8
[   13.946863] pci 0000:65:00.1: Adding to iommu group 8
[   13.965475] pci 0000:40:00.2: AMD-Vi: IOMMU performance counters supported
[   13.973711] pci 0000:40:00.3: Adding to iommu group 11
[   13.979530] pci 0000:40:01.0: Adding to iommu group 12
[   13.985309] pci 0000:40:01.1: Adding to iommu group 13
[   13.991086] pci 0000:40:01.2: Adding to iommu group 14
[   13.996881] pci 0000:40:01.3: Adding to iommu group 15
[   14.002668] pci 0000:40:01.4: Adding to iommu group 16
[   14.008478] pci 0000:40:02.0: Adding to iommu group 17
[   14.014301] pci 0000:40:03.0: Adding to iommu group 18
[   14.020110] pci 0000:40:04.0: Adding to iommu group 19
[   14.025915] pci 0000:40:05.0: Adding to iommu group 20
[   14.031756] pci 0000:40:07.0: Adding to iommu group 21
[   14.037539] pci 0000:40:07.1: Adding to iommu group 21
[   14.043323] pci 0000:41:00.0: Adding to iommu group 22
[   14.049062] pci 0000:45:00.0: Adding to iommu group 21
[   14.054801] pci 0000:45:00.1: Adding to iommu group 21
[   14.074242] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[   14.082265] pci 0000:00:00.3: Adding to iommu group 23
[   14.088086] pci 0000:00:01.0: Adding to iommu group 24
[   14.093869] pci 0000:00:01.1: Adding to iommu group 25
[   14.099691] pci 0000:00:02.0: Adding to iommu group 26
[   14.105507] pci 0000:00:03.0: Adding to iommu group 27
[   14.111313] pci 0000:00:04.0: Adding to iommu group 28
[   14.117125] pci 0000:00:05.0: Adding to iommu group 29
[   14.122992] pci 0000:00:07.0: Adding to iommu group 30
[   14.128774] pci 0000:00:07.1: Adding to iommu group 30
[   14.134559] pci 0000:00:07.2: Adding to iommu group 30
[   14.140401] pci 0000:00:14.0: Adding to iommu group 31
[   14.146182] pci 0000:00:14.3: Adding to iommu group 31
[   14.152202] pci 0000:00:18.0: Adding to iommu group 32
[   14.157985] pci 0000:00:18.1: Adding to iommu group 32
[   14.163779] pci 0000:00:18.2: Adding to iommu group 32
[   14.169568] pci 0000:00:18.3: Adding to iommu group 32
[   14.175361] pci 0000:00:18.4: Adding to iommu group 32
[   14.181154] pci 0000:00:18.5: Adding to iommu group 32
[   14.186947] pci 0000:00:18.6: Adding to iommu group 32
[   14.192729] pci 0000:00:18.7: Adding to iommu group 32
[   14.198746] pci 0000:00:19.0: Adding to iommu group 33
[   14.204537] pci 0000:00:19.1: Adding to iommu group 33
[   14.210321] pci 0000:00:19.2: Adding to iommu group 33
[   14.216104] pci 0000:00:19.3: Adding to iommu group 33
[   14.221900] pci 0000:00:19.4: Adding to iommu group 33
[   14.227679] pci 0000:00:19.5: Adding to iommu group 33
[   14.233462] pci 0000:00:19.6: Adding to iommu group 33
[   14.239243] pci 0000:00:19.7: Adding to iommu group 33
[   14.244998] pci 0000:02:00.0: Adding to iommu group 30
[   14.250739] pci 0000:02:00.1: Adding to iommu group 30
[   14.256489] pci 0000:02:00.4: Adding to iommu group 30
[   14.262234] pci 0000:02:00.5: Adding to iommu group 30
[   14.267987] pci 0000:03:00.0: Adding to iommu group 30
[   14.273732] pci 0000:03:00.1: Adding to iommu group 30
[   14.292469] pci 0000:20:00.2: AMD-Vi: IOMMU performance counters supported
[   14.300396] pci 0000:20:00.3: Adding to iommu group 34
[   14.306221] pci 0000:20:01.0: Adding to iommu group 35
[   14.311998] pci 0000:20:01.1: Adding to iommu group 36
[   14.317785] pci 0000:20:01.2: Adding to iommu group 37
[   14.323561] pci 0000:20:01.3: Adding to iommu group 38
[   14.329351] pci 0000:20:01.4: Adding to iommu group 39
[   14.335161] pci 0000:20:02.0: Adding to iommu group 40
[   14.340973] pci 0000:20:03.0: Adding to iommu group 41
[   14.346781] pci 0000:20:04.0: Adding to iommu group 42
[   14.352605] pci 0000:20:05.0: Adding to iommu group 43
[   14.358447] pci 0000:20:07.0: Adding to iommu group 44
[   14.364242] pci 0000:20:07.1: Adding to iommu group 44
[   14.369989] pci 0000:25:00.0: Adding to iommu group 44
[   14.375729] pci 0000:25:00.1: Adding to iommu group 44
[   14.393254] pci 0000:e0:00.2: AMD-Vi: IOMMU performance counters supported
[   14.401540] pci 0000:e0:00.3: Adding to iommu group 45
[   14.407368] pci 0000:e0:01.0: Adding to iommu group 46
[   14.413158] pci 0000:e0:01.1: Adding to iommu group 47
[   14.418967] pci 0000:e0:02.0: Adding to iommu group 48
[   14.424780] pci 0000:e0:03.0: Adding to iommu group 49
[   14.430594] pci 0000:e0:04.0: Adding to iommu group 50
[   14.436424] pci 0000:e0:05.0: Adding to iommu group 51
[   14.442296] pci 0000:e0:07.0: Adding to iommu group 52
[   14.448094] pci 0000:e0:07.1: Adding to iommu group 52
[   14.453895] pci 0000:e0:07.2: Adding to iommu group 52
[   14.459637] pci 0000:e2:00.0: Adding to iommu group 52
[   14.465378] pci 0000:e2:00.1: Adding to iommu group 52
[   14.471119] pci 0000:e3:00.0: Adding to iommu group 52
[   14.476860] pci 0000:e3:00.1: Adding to iommu group 52
[   14.491790] pci 0000:c0:00.2: AMD-Vi: IOMMU performance counters supported
[   14.500082] pci 0000:c0:00.3: Adding to iommu group 53
[   14.505897] pci 0000:c0:01.0: Adding to iommu group 54
[   14.511685] pci 0000:c0:01.1: Adding to iommu group 55
[   14.517501] pci 0000:c0:02.0: Adding to iommu group 56
[   14.523316] pci 0000:c0:03.0: Adding to iommu group 57
[   14.529135] pci 0000:c0:04.0: Adding to iommu group 58
[   14.534950] pci 0000:c0:05.0: Adding to iommu group 59
[   14.540793] pci 0000:c0:07.0: Adding to iommu group 60
[   14.546589] pci 0000:c0:07.1: Adding to iommu group 60
[   14.552330] pci 0000:c2:00.0: Adding to iommu group 60
[   14.558081] pci 0000:c2:00.1: Adding to iommu group 60
[   14.572856] pci 0000:80:00.2: AMD-Vi: IOMMU performance counters supported
[   14.580779] pci 0000:80:00.3: Adding to iommu group 61
[   14.586589] pci 0000:80:01.0: Adding to iommu group 62
[   14.592408] pci 0000:80:02.0: Adding to iommu group 63
[   14.598219] pci 0000:80:03.0: Adding to iommu group 64
[   14.604041] pci 0000:80:04.0: Adding to iommu group 65
[   14.609850] pci 0000:80:05.0: Adding to iommu group 66
[   14.615713] pci 0000:80:07.0: Adding to iommu group 67
[   14.621521] pci 0000:80:07.1: Adding to iommu group 67
[   14.627321] pci 0000:80:07.2: Adding to iommu group 67
[   14.633061] pci 0000:81:00.0: Adding to iommu group 67
[   14.638801] pci 0000:81:00.1: Adding to iommu group 67
[   14.644544] pci 0000:81:00.5: Adding to iommu group 67
[   14.650287] pci 0000:82:00.0: Adding to iommu group 67
[   14.656027] pci 0000:82:00.1: Adding to iommu group 67
[   14.670284] pci 0000:a0:00.2: AMD-Vi: IOMMU performance counters supported
[   14.678130] pci 0000:00:00.0: Adding to iommu group 23
[   14.684026] pci 0000:a0:00.3: Adding to iommu group 68
[   14.689853] pci 0000:a0:01.0: Adding to iommu group 69
[   14.695635] pci 0000:a0:01.1: Adding to iommu group 70
[   14.701443] pci 0000:a0:02.0: Adding to iommu group 71
[   14.707262] pci 0000:a0:03.0: Adding to iommu group 72
[   14.713072] pci 0000:a0:04.0: Adding to iommu group 73
[   14.718878] pci 0000:a0:05.0: Adding to iommu group 74
[   14.724713] pci 0000:a0:07.0: Adding to iommu group 75
[   14.730519] pci 0000:a0:07.1: Adding to iommu group 75
[   14.736259] pci 0000:a2:00.0: Adding to iommu group 75
[   14.741998] pci 0000:a2:00.1: Adding to iommu group 75
[   14.756859] AMD-Vi: Extended features (0xa5bf7320a2294aee, 0x1d): PPR X2APIC NX [5] IA GA PC GA_vAPIC SNP
[   14.767562] AMD-Vi: Interrupt remapping enabled
[   14.772623] AMD-Vi: X2APIC enabled
[   14.778858] AMD-Vi: Force to disable Virtual APIC due to SNP
[   14.785177] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[   14.792362] software IO TLB: mapped [mem 0x000000008caf0000-0x0000000094af0000] (128MB)
[   14.801400] LVT offset 0 assigned for vector 0x400
[   14.812272] perf: AMD IBS detected (0x00000bff)
[   14.817383] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[   14.825403] perf/amd_iommu: Detected AMD IOMMU #1 (2 banks, 4 counters/bank).
[   14.833430] perf/amd_iommu: Detected AMD IOMMU #2 (2 banks, 4 counters/bank).
[   14.841459] perf/amd_iommu: Detected AMD IOMMU #3 (2 banks, 4 counters/bank).
[   14.849487] perf/amd_iommu: Detected AMD IOMMU #4 (2 banks, 4 counters/bank).
[   14.857518] perf/amd_iommu: Detected AMD IOMMU #5 (2 banks, 4 counters/bank).
[   14.865539] perf/amd_iommu: Detected AMD IOMMU #6 (2 banks, 4 counters/bank).
[   14.873557] perf/amd_iommu: Detected AMD IOMMU #7 (2 banks, 4 counters/bank).
[   14.888400] Initialise system trusted keyrings
[   14.893366] Key type blacklist registered
[   14.898036] workingset: timestamp_bits=36 max_order=29 bucket_order=0
[   14.905729] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[   14.912386] fuse: init (API version 7.44)
[   14.917200] integrity: Platform Keyring initialized
[   14.933141] Key type asymmetric registered
[   14.937723] Asymmetric key parser 'x509' registered
[   14.943217] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
[   14.951662] io scheduler mq-deadline registered
[   14.966878] ledtrig-cpu: registered to indicate activity on CPUs
[   14.974715] pcieport 0000:60:00.3: PME: Signaling with IRQ 52
[   14.981301] pcieport 0000:60:05.2: PME: Signaling with IRQ 53
[   14.988820] pcieport 0000:60:05.3: PME: Signaling with IRQ 54
[   14.995359] pcieport 0000:60:07.1: PME: Signaling with IRQ 55
[   15.002898] pcieport 0000:60:07.2: PME: Signaling with IRQ 56
[   15.009582] pcieport 0000:40:00.3: PME: Signaling with IRQ 58
[   15.016725] pcieport 0000:40:01.1: PME: Signaling with IRQ 59
[   15.023205] pcieport 0000:40:01.1: pciehp: Slot #10 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[   15.054291] pcieport 0000:40:01.2: PME: Signaling with IRQ 60
[   15.060746] pcieport 0000:40:01.2: pciehp: Slot #11 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[   15.094339] pcieport 0000:40:01.3: PME: Signaling with IRQ 61
[   15.100808] pcieport 0000:40:01.3: pciehp: Slot #12 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[   15.134406] pcieport 0000:40:01.4: PME: Signaling with IRQ 62
[   15.140863] pcieport 0000:40:01.4: pciehp: Slot #13 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[   15.174591] pcieport 0000:40:07.1: PME: Signaling with IRQ 64
[   15.182244] pcieport 0000:00:00.3: PME: Signaling with IRQ 66
[   15.188841] pcieport 0000:00:01.1: PME: Signaling with IRQ 67
[   15.196198] pcieport 0000:00:01.1: pciehp: Slot #50 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[   15.229481] pcieport 0000:00:07.1: PME: Signaling with IRQ 68
[   15.236193] pcieport 0000:00:07.2: PME: Signaling with IRQ 69
[   15.243505] pcieport 0000:20:00.3: PME: Signaling with IRQ 71
[   15.250073] pcieport 0000:20:01.1: PME: Signaling with IRQ 72
[   15.257213] pcieport 0000:20:01.1: pciehp: Slot #21 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[   15.294657] pcieport 0000:20:01.2: PME: Signaling with IRQ 73
[   15.301126] pcieport 0000:20:01.2: pciehp: Slot #20 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[   15.334674] pcieport 0000:20:01.3: PME: Signaling with IRQ 74
[   15.341144] pcieport 0000:20:01.3: pciehp: Slot #19 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[   15.374778] pcieport 0000:20:01.4: PME: Signaling with IRQ 75
[   15.381248] pcieport 0000:20:01.4: pciehp: Slot #18 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[   15.415145] pcieport 0000:20:07.1: PME: Signaling with IRQ 77
[   15.422804] pcieport 0000:e0:00.3: PME: Signaling with IRQ 79
[   15.429429] pcieport 0000:e0:01.1: PME: Signaling with IRQ 80
[   15.436761] pcieport 0000:e0:01.1: pciehp: Slot #50 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[   15.453159] pcieport 0000:e0:07.1: PME: Signaling with IRQ 82
[   15.459867] pcieport 0000:e0:07.2: PME: Signaling with IRQ 83
[   15.466957] pcieport 0000:c0:00.3: PME: Signaling with IRQ 85
[   15.473544] pcieport 0000:c0:01.1: PME: Signaling with IRQ 86
[   15.480684] pcieport 0000:c0:01.1: pciehp: Slot #29 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[   15.497037] pcieport 0000:c0:07.1: PME: Signaling with IRQ 88
[   15.504655] pcieport 0000:80:00.3: PME: Signaling with IRQ 90
[   15.511361] pcieport 0000:80:07.1: PME: Signaling with IRQ 92
[   15.518865] pcieport 0000:80:07.2: PME: Signaling with IRQ 93
[   15.526617] pcieport 0000:a0:00.3: PME: Signaling with IRQ 95
[   15.533246] pcieport 0000:a0:01.1: PME: Signaling with IRQ 96
[   15.540582] pcieport 0000:a0:01.1: pciehp: Slot #53 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[   15.556918] pcieport 0000:a0:07.1: PME: Signaling with IRQ 98
[   15.564338] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[   15.573729] ACPI: button: Power Button [PWRB]
[   15.578723] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[   15.587046] ACPI: button: Power Button [PWRF]
[   15.662941] Estimated ratio of average max frequency by base frequency (times 1024): 1394
[   15.673013] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
ÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ[   15.700784] 00:03: ttyS1 at I/O 0x2f8 (irq = 4, base_baud = 115200) is a 16550A
[   15.737779] 00:04: ttyS0 at I/O 0x3f8 (irq = 3, base_baud = 115200) is a 16550A
[   15.752455] Linux agpgart interface v0.103
[   15.828500] loop: module loaded
[   15.833190] nvme nvme0: pci function 0000:41:00.0
[   15.834123] tun: Universal TUN/TAP device driver, 1.6
[   15.844227] PPP generic driver version 2.4.2
[   15.845564] nvme nvme0: D3 entry latency set to 8 seconds
[   15.849277] VFIO - User Level meta-driver version: 0.3
[   15.861068] xhci_hcd 0000:64:00.4: xHCI Host Controller
[   15.866959] xhci_hcd 0000:64:00.4: new USB bus registered, assigned bus number 1
[   15.875623] xhci_hcd 0000:64:00.4: hcc params 0x0118ffc5 hci version 0x120 quirks 0x0000000200000010
[   15.886323] xhci_hcd 0000:64:00.4: xHCI Host Controller
[   15.892152] xhci_hcd 0000:64:00.4: new USB bus registered, assigned bus number 2
[   15.900440] xhci_hcd 0000:64:00.4: Host supports USB 3.1 Enhanced SuperSpeed
[   15.908327] tsc: Refined TSC clocksource calibration: 2146.775 MHz
[   15.915348] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1ef1cb2e90a, max_idle_ns: 440795280915 ns
[   15.926578] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[   15.935816] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   15.943889] usb usb1: Product: xHCI Host Controller
[   15.949335] usb usb1: Manufacturer: Linux 6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997 xhci-hcd
[   15.959337] usb usb1: SerialNumber: 0000:64:00.4
[   15.964992] clocksource: Switched to clocksource tsc
[   15.970760] hub 1-0:1.0: USB hub found
[   15.974954] hub 1-0:1.0: 2 ports detected
[   15.979560] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[   15.988615] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[   15.997841] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   16.005897] usb usb2: Product: xHCI Host Controller
[   16.011345] usb usb2: Manufacturer: Linux 6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997 xhci-hcd
[   16.021354] usb usb2: SerialNumber: 0000:64:00.4
[   16.026720] hub 2-0:1.0: USB hub found
[   16.030925] hub 2-0:1.0: 2 ports detected
[   16.035850] xhci_hcd 0000:02:00.4: xHCI Host Controller
[   16.041720] xhci_hcd 0000:02:00.4: new USB bus registered, assigned bus number 3
[   16.050376] xhci_hcd 0000:02:00.4: hcc params 0x0118ffc5 hci version 0x120 quirks 0x0000000200000010
[   16.061066] xhci_hcd 0000:02:00.4: xHCI Host Controller
[   16.066903] xhci_hcd 0000:02:00.4: new USB bus registered, assigned bus number 4
[   16.075179] xhci_hcd 0000:02:00.4: Host supports USB 3.1 Enhanced SuperSpeed
[   16.083088] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[   16.092319] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   16.100391] usb usb3: Product: xHCI Host Controller
[   16.105849] usb usb3: Manufacturer: Linux 6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997 xhci-hcd
[   16.115866] usb usb3: SerialNumber: 0000:02:00.4
[   16.121255] hub 3-0:1.0: USB hub found
[   16.125451] hub 3-0:1.0: 2 ports detected
[   16.130060] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[   16.139131] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[   16.148357] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   16.156419] usb usb4: Product: xHCI Host Controller
[   16.161863] usb usb4: Manufacturer: Linux 6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997 xhci-hcd
[   16.171862] usb usb4: SerialNumber: 0000:02:00.4
[   16.177202] hub 4-0:1.0: USB hub found
[   16.181403] hub 4-0:1.0: 2 ports detected
[   16.186309] usbcore: registered new interface driver uas
[   16.192268] usbcore: registered new interface driver usb-storage
[   16.192962] nvme nvme0: 32/0/0 default/read/poll queues
[   16.198997] usbcore: registered new interface driver usbsevseg
[   16.211349] i8042: PNP: No PS/2 controller found.
[   16.212122]  nvme0n1: p1 p2 p3
[   16.216705] mousedev: PS/2 mouse device common for all mice
[   16.226628] rtc_cmos 00:01: registered as rtc0
[   16.231697] rtc_cmos 00:01: setting system clock to 2025-06-16T09:40:52 UTC (1750066852)
[   16.237370] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[   16.240767] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram
[   16.255492] i2c_dev: i2c /dev entries driver
[   16.260437] usbcore: registered new interface driver pcwd_usb
[   16.266968] sbc_epx_c3: Hardware Watchdog Timer for Winsystems EPX-C3 SBC: 0.1
[   16.275119] watchdog: Software Watchdog: cannot register miscdev on minor=130 (err=-16).
[   16.284152] watchdog: Software Watchdog: a legacy watchdog module is probably present.
[   16.293072] softdog: initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=0)
[   16.302494] softdog:              soft_reboot_cmd=<not set> soft_active_on_boot=0
[   16.310893] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[   16.324527] device-mapper: uevent: version 1.0.3
[   16.329871] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists•linux.dev
[   16.339787] amd_pstate: driver load is disabled, boot with specific mode to enable this
[   16.348797] efifb: probing for efifb
[   16.352851] efifb: framebuffer at 0xd2000000, using 1876k, total 1875k
[   16.360146] efifb: mode is 800x600x32, linelength=3200, pages=1
[   16.366767] efifb: scrolling: redraw
[   16.370758] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[   16.377125] fbcon: Deferring console take-over
[   16.382084] fb0: EFI VGA frame buffer device
[   16.383802] usb 1-1: New USB device found, idVendor=04b4, idProduct=6502, bcdDevice=50.10
[   16.386947] comedi: version 0.7.76 - http://www.comedi.org
[   16.389367] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[   16.395972] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[   16.417730] drop_monitor: Initializing network drop monitor service
[   16.425616] xt_time: kernel timezone is -0000
[   16.430640] NET: Registered PF_INET6 protocol family
[   16.444301] Segment Routing with IPv6
[   16.448401] In-situ OAM (IOAM) with IPv6
[   16.452516] hub 1-1:1.0: USB hub found
[   16.452827] NET: Registered PF_PACKET protocol family
[   16.457203] hub 1-1:1.0: 4 ports detected
[   16.462820] Key type dns_resolver registered
[   16.506546] x86/amd: Previous system reset reason [0x00080800]: software wrote 0x6 to reset control register 0xCF9
[   16.516448] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
[   16.518112] microcode: Current revision: 0x0a101020
[   16.545603] usb 2-1: New USB device found, idVendor=04b4, idProduct=6500, bcdDevice=50.10
[   16.554739] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[   16.554997] resctrl: L3 allocation detected
[   16.563677] usb 3-1: New USB device found, idVendor=04b4, idProduct=6502, bcdDevice=50.10
[   16.567415] resctrl: MB allocation detected
[   16.576540] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[   16.581222] resctrl: SMBA allocation detected
[   16.594019] resctrl: L3 monitoring detected
[   16.596374] hub 2-1:1.0: USB hub found
[   16.599150] IPI shorthand broadcast: enabled
[   16.602917] hub 2-1:1.0: 4 ports detected
[   16.611249] sched_clock: Marking stable (14500002021, 2109343851)->(17257828137, -648482265)
[   16.622908] registered taskstats version 1
[   16.627226] hub 3-1:1.0: USB hub found
[   16.631939] hub 3-1:1.0: 4 ports detected
[   16.645379] Loading compiled-in X.509 certificates
[   16.651267] Loaded X.509 cert 'Build time autogenerated kernel key: b37038957771d30f33b21d6c412344c4d5b5c943'
[   16.665373] usb 1-2: new high-speed USB device number 3 using xhci_hcd
[   16.672689] Demotion targets for Node 0: null
[   16.677540] Demotion targets for Node 1: null
[   16.683968] Key type .fscrypt registered
[   16.688346] Key type fscrypt-provisioning registered
[   16.691198] usb 4-1: new SuperSpeed USB device number 2 using xhci_hcd
[   16.709598] Key type encrypted registered
[   16.714074] AppArmor: AppArmor sha256 policy hashing enabled
[   16.717620] usb 4-1: New USB device found, idVendor=04b4, idProduct=6500, bcdDevice=50.10
[   16.720510] ima: No TPM chip found, activating TPM-bypass!
[   16.729512] usb 4-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[   16.735631] Loading compiled-in module X.509 certificates
[   16.750006] Loaded X.509 cert 'Build time autogenerated kernel key: b37038957771d30f33b21d6c412344c4d5b5c943'
[   16.761071] ima: Allocated hash algorithm: sha1
[   16.766133] ima: No architecture policies found
[   16.771160] hub 4-1:1.0: USB hub found
[   16.771206] evm: Initialising EVM extended attributes:
[   16.775423] hub 4-1:1.0: 4 ports detected
[   16.781096] evm: security.selinux
[   16.781098] evm: security.SMACK64
[   16.792957] evm: security.SMACK64EXEC
[   16.797041] evm: security.SMACK64TRANSMUTE
[   16.801608] evm: security.SMACK64MMAP
[   16.805691] evm: security.apparmor
[   16.809481] evm: security.ima
[   16.811798] usb 1-2: New USB device found, idVendor=1d6b, idProduct=0107, bcdDevice= 1.00
[   16.812784] evm: security.capability
[   16.812785] evm: HMAC attrs: 0x1
[   16.821907] usb 1-2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   16.826477] PM:   Magic number: 13:288:677
[   16.829485] usb 1-2: Product: USB Virtual Hub
[   16.829487] usb 1-2: Manufacturer: Aspeed
[   16.829488] usb 1-2: SerialNumber: 00000000
[   16.900497] hub 1-2:1.0: USB hub found
[   16.901396] usb 2-1.2: new SuperSpeed USB device number 3 using xhci_hcd
[   16.904938] hub 1-2:1.0: 7 ports detected
[   16.907032] RAS: Correctable Errors collector initialized.
[   16.907602] clk: Disabling unused clocks
[   16.926164] usb 2-1.2: New USB device found, idVendor=0781, idProduct=558c, bcdDevice=10.12
[   16.936443] usb 2-1.2: New USB device strings: Mfr=2, Product=3, SerialNumber=1
[   16.936445] usb 2-1.2: Product: Extreme SSD
[   16.936447] usb 2-1.2: Manufacturer: SanDisk
[   16.936448] usb 2-1.2: SerialNumber: 313932393858343031303234
[   16.961958] Freeing unused decrypted memory: 2036K
[   16.962397] scsi host0: uas
[   16.968131] Freeing unused kernel image (initmem) memory: 5200K
[   16.971139] scsi 0:0:0:0: Direct-Access     SanDisk  Extreme SSD      1012 PQ: 0 ANSI: 6
[   16.977037] Write protecting the kernel read-only data: 32768k
[   16.988513] scsi 0:0:0:1: Enclosure         SanDisk  SES Device       1012 PQ: 0 ANSI: 6
[   16.993206] Freeing unused kernel image (text/rodata gap) memory: 1064K
[   17.003558] sd 0:0:0:0: Attached scsi generic sg0 type 0
[   17.008311] sd 0:0:0:0: [sda] 1953523712 512-byte logical blocks: (1.00 TB/932 GiB)
[   17.008314] sd 0:0:0:0: [sda] 4096-byte physical blocks
[   17.008448] sd 0:0:0:0: [sda] Write Protect is off
[   17.008675] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   17.009331] Freeing unused kernel image (rodata/data gap) memory: 1404K
[   17.015073] sd 0:0:0:1: Attached scsi generic sg1 type 13
[   17.057562] sd 0:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
[   17.064563] sd 0:0:0:0: [sda] Optimal transfer size 1048576 bytes
[   17.119500]  sda: sda1 sda2 sda3 sda4
[   17.123910] sd 0:0:0:0: [sda] Attached SCSI disk
[   17.177417] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[   17.184621] Run /init as init process
Loading, please wait...
[   17.209385] usb 1-2.1: new high-speed USB device number 4 using xhci_hcd
Starting systemd-udevd version 255.4-1ubuntu8.5
[   17.311799] usb 1-2.1: New USB device found, idVendor=1d6b, idProduct=0105, bcdDevice= 5.10
[   17.321125] usb 1-2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   17.329284] usb 1-2.1: Product: OpenBMC USB Device
[   17.334630] usb 1-2.1: Manufacturer: OpenBMC
[   17.339392] usb 1-2.1: SerialNumber: fd62d4e74550
[   17.657769] ahci 0000:65:00.0: SSS flag set, parallel bus scan disabled
[   17.665179] ahci 0000:65:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[   17.674118] ahci 0000:65:00.0: 1/1 ports implemented (port mask 0x1)
[   17.681203] ahci 0000:65:00.0: flags: 64bit ncq sntf ilck stag pm led clo only pmp fbs pio slum part 
[   17.692791] scsi host1: ahci
[   17.696157] ata1: SATA max UDMA/133 abar m2048@0xd3301000 port 0xd3301100 irq 152 lpm-pol 0
[   17.705979] ahci 0000:65:00.1: SSS flag set, parallel bus scan disabled
[   17.713385] ahci 0000:65:00.1: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[   17.722327] ahci 0000:65:00.1: 1/1 ports implemented (port mask 0x1)
[   17.729421] ahci 0000:65:00.1: flags: 64bit ncq sntf ilck stag pm led clo only pmp fbs pio slum part 
[   17.740365] scsi host2: ahci
[   17.743738] ata2: SATA max UDMA/133 abar m2048@0xd3300000 port 0xd3300100 irq 155 lpm-pol 0
[   17.753558] ahci 0000:03:00.0: SSS flag set, parallel bus scan disabled
[   17.760956] ahci 0000:03:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[   17.769895] ahci 0000:03:00.0: 1/1 ports implemented (port mask 0x1)
[   17.776993] ahci 0000:03:00.0: flags: 64bit ncq sntf ilck stag pm led clo only pmp fbs pio slum part 
[   17.787984] scsi host3: ahci
[   17.791355] ata3: SATA max UDMA/133 abar m2048@0xde301000 port 0xde301100 irq 157 lpm-pol 0
[   17.801250] ahci 0000:03:00.1: SSS flag set, parallel bus scan disabled
[   17.808654] ahci 0000:03:00.1: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[   17.817592] ahci 0000:03:00.1: 1/1 ports implemented (port mask 0x1)
[   17.824686] ahci 0000:03:00.1: flags: 64bit ncq sntf ilck stag pm led clo only pmp fbs pio slum part 
[   17.835577] scsi host4: ahci
[   17.838954] ata4: SATA max UDMA/133 abar m2048@0xde300000 port 0xde300100 irq 159 lpm-pol 0
[   17.848872] ahci 0000:e3:00.0: SSS flag set, parallel bus scan disabled
[   17.850818] tg3 0000:61:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address c0:18:50:78:33:a2
[   17.856316] ahci 0000:e3:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[   17.868046] tg3 0000:61:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   17.876976] ahci 0000:e3:00.0: 1/1 ports implemented (port mask 0x1)
[   17.887935] tg3 0000:61:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   17.887940] tg3 0000:61:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[   17.911274] ahci 0000:e3:00.0: flags: 64bit ncq sntf ilck stag pm led clo only pmp fbs pio slum part 
[   17.922386] scsi host5: ahci
[   17.925730] ata5: SATA max UDMA/133 abar m2048@0xc0001000 port 0xc0001100 irq 160 lpm-pol 0
[   17.935940] ahci 0000:e3:00.1: SSS flag set, parallel bus scan disabled
[   17.943399] ahci 0000:e3:00.1: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[   17.952350] ahci 0000:e3:00.1: 8/8 ports implemented (port mask 0xff)
[   17.959550] ahci 0000:e3:00.1: flags: 64bit ncq sntf ilck stag pm led clo only pmp fbs pio slum part sxs 
[   17.971716] scsi host6: ahci
[   17.975489] scsi host7: ahci
[   17.979263] scsi host8: ahci
[   17.982938] scsi host9: ahci
[   17.986618] scsi host10: ahci
[   17.990387] scsi host11: ahci
[   17.994163] scsi host12: ahci
[   17.997847] scsi host13: ahci
[   18.001229] ata6: SATA max UDMA/133 abar m2048@0xc0000000 port 0xc0000100 irq 162 lpm-pol 0 ext
[   18.010949] ata7: SATA max UDMA/133 abar m2048@0xc0000000 port 0xc0000180 irq 163 lpm-pol 0 ext
[   18.019841] ata1: SATA link down (SStatus 0 SControl 300)
[   18.020661] ata8: SATA max UDMA/133 abar m2048@0xc0000000 port 0xc0000200 irq 164 lpm-pol 0 ext
[   18.036422] ata9: SATA max UDMA/133 abar m2048@0xc0000000 port 0xc0000280 irq 165 lpm-pol 0 ext
[   18.046147] ata10: SATA max UDMA/133 abar m2048@0xc0000000 port 0xc0000300 irq 166 lpm-pol 0 ext
[   18.055961] ata11: SATA max UDMA/133 abar m2048@0xc0000000 port 0xc0000380 irq 167 lpm-pol 0 ext
[   18.064318] ata2: SATA link down (SStatus 0 SControl 300)
[   18.065772] ata12: SATA max UDMA/133 abar m2048@0xc0000000 port 0xc0000400 irq 168 lpm-pol 0 ext
[   18.065776] ata13: SATA max UDMA/133 abar m2048@0xc0000000 port 0xc0000480 irq 169 lpm-pol 0 ext
[   18.066329] ahci 0000:82:00.0: SSS flag set, parallel bus scan disabled
[   18.098835] ahci 0000:82:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[   18.107771] ahci 0000:82:00.0: 1/1 ports implemented (port mask 0x1)
[   18.114874] ahci 0000:82:00.0: flags: 64bit ncq sntf ilck stag pm led clo only pmp fbs pio slum part 
[   18.116370] ata3: SATA link down (SStatus 0 SControl 300)
[   18.125957] scsi host14: ahci
[   18.134687] ata14: SATA max UDMA/133 abar m2048@0xb6201000 port 0xb6201100 irq 178 lpm-pol 0
[   18.144620] ahci 0000:82:00.1: SSS flag set, parallel bus scan disabled
[   18.152028] ahci 0000:82:00.1: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[   18.160968] ahci 0000:82:00.1: 1/1 ports implemented (port mask 0x1)
[   18.163971] ata4: SATA link down (SStatus 0 SControl 300)
[   18.168059] ahci 0000:82:00.1: flags: 64bit ncq sntf ilck stag pm led clo only pmp fbs pio slum part 
[   18.168734] scsi host15: ahci
[   18.187799] ata15: SATA max UDMA/133 abar m2048@0xb6200000 port 0xb6200100 irq 180 lpm-pol 0
[   18.249134] ata5: SATA link down (SStatus 0 SControl 300)
[   18.374674] ata6: SATA link down (SStatus 0 SControl 300)
[   18.453819] ata14: SATA link down (SStatus 0 SControl 300)
[   18.506175] ata15: SATA link down (SStatus 0 SControl 300)
[   18.691186] ata7: SATA link down (SStatus 0 SControl 300)
[   19.006460] ata8: SATA link down (SStatus 0 SControl 300)
[   19.324126] ata9: SATA link down (SStatus 0 SControl 300)
[   19.639178] ata10: SATA link down (SStatus 0 SControl 300)
[   19.956120] ata11: SATA link down (SStatus 0 SControl 300)
[   20.272105] ata12: SATA link down (SStatus 0 SControl 300)
[   20.587587] ata13: SATA link down (SStatus 0 SControl 300)
Begin: Loading essential drivers ... [   21.785363] raid6: avx512x4 gen() 43150 MB/s
[   21.857359] raid6: avx512x2 gen() 45495 MB/s
[   21.929367] raid6: avx512x1 gen() 42560 MB/s
[   22.001350] raid6: avx2x4   gen() 47400 MB/s
[   22.073351] raid6: avx2x2   gen() 47806 MB/s
[   22.145353] raid6: avx2x1   gen() 39903 MB/s
[   22.150136] raid6: using algorithm avx2x2 gen() 47806 MB/s
[   22.221352] raid6: .... xor() 32229 MB/s, rmw enabled
[   22.226999] raid6: using avx512x2 recovery algorithm
[   22.234471] xor: automatically using best checksumming function   avx       
[   22.243793] async_tx: api initialized (async)
done.
Begin: Running /scripts/init-premount ... done.
Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done.
Begin: Running /scripts/local-premount ... [   22.383971] Btrfs loaded, zoned=yes, fsverity=yes
Scanning for Btrfs filesystems
done.
Begin: Will now check root file system ... fsck from util-linux 2.39.3
[/usr/sbin/fsck.ext4 (1) -- /dev/sda2] fsck.ext4 -a -C0 /dev/sda2 
/dev/sda2: clean, 345202/6553600 files, 10950199/26214400 bl[   22.499555] EXT4-fs (sda2): mounted filesystem 1d30d6aa-af84-4d36-9630-a98466edebfd ro with ordered data mode. Quota mode: none.
ocks
done.
done.
Begin: Running /scripts/local-bottom ... done.
Begin: Running /scripts/init-bottom ... done.
[   22.715648] systemd[1]: Inserted module 'autofs4'
[   22.728315] systemd[1]: systemd 255.4-1ubuntu8.5 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)
[   22.764825] systemd[1]: Detected architecture x86-64.

Welcome to ^[[1mUbuntu 24.04.1 LTS^[[0m!

[   22.785731] systemd[1]: Hostname set to <titanite-34d8host>.
[   23.152681] systemd[1]: Queued start job for default target graphical.target.
[   23.232739] systemd[1]: Created slice machine.slice - Virtual Machine and Container Slice.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mmachine.slice^[[0m - Virtual Machine and Container Slice.
[   23.259842] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39msystem-modprobe.slice^[[0m - Slice /system/modprobe.
[   23.286917] systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39msystem-serial\x2dget…slice^[[0m - Slice /system/serial-getty.
[   23.314685] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39msystem-systemd\x2dfs…slice^[[0m - Slice /system/systemd-fsck.
[   23.342484] systemd[1]: Created slice user.slice - User and Session Slice.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39muser.slice^[[0m - User and Session Slice.
[   23.365545] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39msystemd-ask-password-wall.…^[[0md Requests to Wall Directory Watch.
[   23.393486] systemd[1]: proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point was skipped because of an unmet condition check (ConditionPathExists=/proc/sys/fs/binfmt_misc).
[   23.415048] systemd[1]: Expecting device dev-disk-by\x2duuid-0f587aaa\x2dc342\x2d458f\x2da006\x2dd8b4261e471c.device - /dev/disk/by-uuid/0f587aaa-c342-458f-a006-d8b4261e471c...
         Expecting device ^[[0;1;39mdev-disk-by\x2duu…^[[0m7aaa-c342-458f-a006-d8b4261e471c...
[   23.449433] systemd[1]: Expecting device dev-disk-by\x2duuid-5b387ad5\x2dddcc\x2d4178\x2db6b9\x2d826821c5d261.device - /dev/disk/by-uuid/5b387ad5-ddcc-4178-b6b9-826821c5d261...
         Expecting device ^[[0;1;39mdev-disk-by\x2duu…^[[0m7ad5-ddcc-4178-b6b9-826821c5d261...
[   23.481389] systemd[1]: Expecting device dev-disk-by\x2duuid-C4E1\x2d3ED1.device - /dev/disk/by-uuid/C4E1-3ED1...
         Expecting device ^[[0;1;39mdev-disk-by\x2duu…ce^[[0m - /dev/disk/by-uuid/C4E1-3ED1...
[   23.509406] systemd[1]: Expecting device dev-ttyS1.device - /dev/ttyS1...
         Expecting device ^[[0;1;39mdev-ttyS1.device^[[0m - /dev/ttyS1...
[   23.529477] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mintegritysetup.targ…^[[0m Local Integrity Protected Volumes.
[   23.553444] systemd[1]: Reached target slices.target - Slice Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mslices.target^[[0m - Slice Units.
[   23.573393] systemd[1]: Reached target snapd.mounts-pre.target - Mounting snaps.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msnapd.mounts-pre.target^[[0m - Mounting snaps.
[   23.597430] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mveritysetup.target^[[0m - Local Verity Protected Volumes.
[   23.621435] systemd[1]: Reached target virt-guest-shutdown.target - libvirt guests shutdown target.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mvirt-guest-shutdown…t^[[0m - libvirt guests shutdown target.
[   23.645534] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mdm-event.socket^[[0m - Device-mapper event daemon FIFOs.
[   23.669574] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlvm2-lvmpolld.socket^[[0m - LVM2 poll daemon socket.
[   23.693590] systemd[1]: Listening on multipathd.socket - multipathd control socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mmultipathd.socket^[[0m - multipathd control socket.
[   23.755729] systemd[1]: Listening on rpcbind.socket - RPCbind Server Activation Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mrpcbind.socket^[[0m - RPCbind Server Activation Socket.
[   23.786027] systemd[1]: Listening on syslog.socket - Syslog Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39msyslog.socket^[[0m - Syslog Socket.
[   23.809688] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39msystemd-fsckd.socket^[[0m …fsck to fsckd communication Socket.
[   23.837486] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39msystemd-initctl.socke…^[[0m- initctl Compatibility Named Pipe.
[   23.861567] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39msystemd-journald-dev-…socket^[[0m - Journal Socket (/dev/log).
[   23.885646] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39msystemd-journald.socket^[[0m - Journal Socket.
[   23.914338] systemd[1]: Listening on systemd-networkd.socket - Network Service Netlink Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39msystemd-networkd.socket^[[0m - Network Service Netlink Socket.
[   23.937466] systemd[1]: systemd-pcrextend.socket - TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[   23.954147] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39msystemd-udevd-control.socket^[[0m - udev Control Socket.
[   23.977567] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39msystemd-udevd-kernel.socket^[[0m - udev Kernel Socket.
[   24.033707] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
         Mounting ^[[0;1;39mdev-hugepages.mount^[[0m - Huge Pages File System...
[   24.059592] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
         Mounting ^[[0;1;39mdev-m[   24.070230] systemd[1]: Mounting proc-fs-nfsd.mount - NFSD configuration filesystem...
queue.mount^[[0m - POSIX Message Queue File System...
         Mounting ^[[0;1;39mproc-[   24.091535] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
fs-nfsd.mount^[[0m - NFSD configuration filesystem...
         Mounting ^[[0;1;39msys-k[   24.115818] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
ernel-debug.mount^[[0m - Kernel Debug File System...
         Mounting ^[[0;1;39msys-kernel-tracing.mo[   24.145441] systemd[1]: Starting systemd-journald.service - Journal Service...
unt^[[0m - Kernel Trace File System...
         Startin[   24.165573] systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
g ^[[0;1;39msystemd-journald.serv[   24.186963] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
ice^[[0m - Journal Service...
         Starting ^[[0;1;39mkeybo[   24.207302] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
ard-setup.service^[[0m - Set the console keyboard layout...
         Startin[   24.230843] systemd-journald[3382]: Collecting audit messages is disabled.
g ^[[0;1;39mkmod-[   24.231740] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
static-nodes.service^[[0m…eate List of Static Device Nodes...
         Starting ^[[0;1;39mlvm2-[   24.271819] systemd[1]: Starting modprobe@configfs•service - Load Kernel Module configfs...
monitor.service^[[0m - Mo…ing dmeventd or progress polling...
         Starting ^[[0;1;39mmodpr[   24.298982] systemd[1]: Starting modprobe@dm_mod•service - Load Kernel Module dm_mod...
obe@configfs•service^[[0m - Load Kernel Module configfs...
         Starting ^[[0;1;39mmodpr[   24.327065] systemd[1]: Starting modprobe@drm•service - Load Kernel Module drm...
obe@dm_mod•service^[[0m - Load Kernel Module dm_mod...
         Starting ^[[0;1;39mmodpr[   24.355019] systemd[1]: Starting modprobe@efi_pstore•service - Load Kernel Module efi_pstore...
obe@drm•service^[[0m - Load Kernel Module drm...
         Starting ^[[0;1;39mmodpr[   24.383539] systemd[1]: Starting modprobe@fuse•service - Load Kernel Module fuse...
obe@efi_pstore•servi…^[[0m - Load Kernel Module efi_pstore...
[   24.409039] ACPI: bus type drm_connector registered
         Starting ^[[0;1;39mmodpr[   24.416724] systemd[1]: Starting modprobe@loop•service - Load Kernel Module loop...
[   24.420479] pstore: Using crash dump compression: deflate
obe@fuse•service^[[0m - Load Kern[   24.434083] pstore: Registered efi_pstore as persistent store backend
el Module fuse...
         Starting ^[[0;1;39mmodpr[   24.455054] systemd[1]: Starting modprobe@nvme_fabrics•service - Load Kernel Module nvme_fabrics...
obe@loop•service^[[0m - Load Kernel Module loop...
         Startin[   24.481601] systemd[1]: netplan-ovs-cleanup.service - OpenVSwitch configuration for cleanup was skipped because of an unmet condition check (ConditionFileIsExecutable=/usr/bin/ovs-vsctl).
g ^[[0;1;39mmodpr[   24.501959] 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).
obe@nvme_fabrics•ser…^[[0m Load Kernel Module n[   24.524697] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
vme_fabrics...
         Startin[   24.545758] systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
g ^[[0;1;39msystemd-modules-load.[   24.566155] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
service^[[0m - Load Kernel Modules...
         Startin[   24.585570] systemd[1]: systemd-tpm2-setup-early.service - TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
g ^[[0;1;39msystemd-remount-fs.servic…^[[0munt R[   24.606809] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
oot and Kernel File Systems...
         Starting ^[[0;1;39msyste[   24.627174] systemd[1]: Started systemd-journald.service - Journal Service.
md-udev-trigger.service^[[0m - Coldplug All udev Devices...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39msystemd-journald.service^[[0m - Journal Service.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mdev-hugepages.mount^[[0m - Huge Pages File System.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mdev-mqueue.mount^[[0m - POSIX Message Queue File System.
[^[[0;1;31mFAILED^[[0m] Failed to mount ^[[0;1;39mproc-fs-nfsd.mount^[[0m - NFSD configuration filesystem.
[   24.714152] EXT4-fs (sda2): re-mounted 1d30d6aa-af84-4d36-9630-a98466edebfd r/w.
See 'systemctl status proc-fs-nfsd.mount' for details.
[^[[0;1;38;5;185mDEPEND^[[0m] Dependency failed for ^[[0;1;39mnfs-mountd.service^[[0m - NFS Mount Daemon.
[^[[0;1;38;5;185mDEPEND^[[0m] Dependency failed for ^[[0;1;39mnfs-server.service^[[0m - NFS server and services.
[^[[0;1;38;5;185mDEPEND^[[0m] Dependency failed for ^[[0;1;39mnfs-idmapd.s…ce^[[0m - NFSv4 ID-name mapping service.
[^[[0;1;38;5;185mDEPEND^[[0m] Dependency failed for ^[[0;1;39mnfsdcld.service^[[0m - NFSv4 Client Tracking Daemon.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39msys-kernel-debug.mount^[[0m - Kernel Debug File System.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39msys-kernel-tracing.mount^[[0m - Kernel Trace File System.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mkeyboard-setup.service^[[0m - Set the console keyboard layout.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mkmod-static-nodes.service^[[0m…Create List of Static Device Nodes.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mlvm2-monitor.service^[[0m - Mo…using dmeventd or progress polling.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mmodprobe@configfs•service^[[0m - Load Kernel Module configfs.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mmodprobe@dm_mod•service^[[0m - Load Kernel Module dm_mod.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mmodprobe@drm•service^[[0m - Load Kernel Module drm.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mmodprobe@efi_pstore•service^[[0m - Load Kernel Module efi_pstore.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mmodprobe@fuse•service^[[0m - Load Kernel Module fuse.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mmodprobe@loop•service^[[0m - Load Kernel Module loop.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mmodprobe@nvme_fabrics•ser…^[[0m - Load Kernel Module nvme_fabrics.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-modules-load.service^[[0m - Load Kernel Modules.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-remount-fs.servic…^[[0mmount Root and Kernel File Systems.
         Activating swap ^[[0;1;39mswap.img.swap^[[0m - /swap.img...
[   25.134827] Adding 8388604k swap on /swap.img.  Priority:-2 extents:14 across:64872448k SS
         Mounting ^[[0;1;39msys-fs-fuse-connections.mount^[[0m - FUSE Control File System...
         Mounting ^[[0;1;39msys-kernel-config.mount^[[0m - Kernel Configuration File System...
         Starting ^[[0;1;39mmultipathd.service^[[0m - Devi…pper Multipath Device Controller...
         Starting ^[[0;1;39msystemd-journal-flush.ser…^[[0msh Journal to Persistent Storage...
         Starting ^[[0;1;39msyste[   25.239181] systemd-journald[3382]: Received client request to flush runtime journal.
md-random-seed.service^[[0m - Load/Save OS Random Seed...
         Starting ^[[0;1;39msystemd-sysctl.service^[[0m - Apply Kernel Variables...
[   25.277623] systemd-journald[3382]: /var/log/journal/9e01cb34725d4d348c07952f8f596b0b/system.journal: Journal file uses a different sequence number ID, rotating.
[   25.293775] systemd-journald[3382]: Rotating system journal.
         Starting ^[[0;1;39msystemd-tmpfiles-setup-de…^[[0m Device Nodes in /dev gracefully...
[^[[0;32m  OK  ^[[0m] Activated swap ^[[0;1;39mswap.img.swap^[[0m - /swap.img.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-udev-trigger.service^[[0m - Coldplug All udev Devices.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39msys-fs-fuse-connections.mount^[[0m - FUSE Control File System.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39msys-kernel-config.mount^[[0m - Kernel Configuration File System.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-journal-flush.ser…^[[0mlush Journal to Persistent Storage.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-random-seed.service^[[0m - Load/Save OS Random Seed.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-sysctl.service^[[0m - Apply Kernel Variables.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mmultipathd.service^[[0m - Devic…Mapper Multipath Device Controller.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-tmpfiles-setup-de…^[[0mic Device Nodes in /dev gracefully.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mswap.target^[[0m - Swaps.
         Starting ^[[0;1;39msystemd-tmpfiles-setup-de…^[[0meate Static Device Nodes in /dev...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-tmpfiles-setup-de…^[[0mCreate Static Device Nodes in /dev.
         Starting ^[[0;1;39msystemd-udevd.service^[[0m - R…ager for Device Events and Files...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39msystemd-udevd.service^[[0m - Ru…anager for Device Events and Files.
[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39mdev-ttyS1.device^[[0m - /dev/ttyS1.
         Starting ^[[0;1;39mnvmefc-boot-connections.s…^[[0mC-NVME devices found during boot...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39msystemd-ask-password-conso…^[[0mequests to Console Directory Watch.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mcryptsetup.target^[[0m - Local Encrypted Volumes.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mnvmefc-boot-connections.s…^[[0m FC-NVME devices found during boot.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mlocal-fs-pre.target^[[0m…Preparation for Local File Systems.
         Mounting ^[[0;1;39mrun-qemu.mount^[[0m - Prepare …fallback-load modules from there...
         Mounting ^[[0;1;39msnap-core20-2582.mount^[[0m - …t unit for core20, revision 2582...
         Mounting ^[[0;1;39msnap-core20-2599.mount^[[0m - …t unit for core20, revision 2599...
         Mounting ^[[0;1;39msnap-lxd-29351.mount^[[0m - Mount unit for lxd, revision 29351...
         Mounting ^[[0;1;39msnap-lxd-31333.mount^[[0m - Mount unit for lxd, revision 31333...
         Mounting ^[[0;1;39msnap-snapd-23771.mount^[[0m - …t unit for snapd, revision 23771...
         Mounting ^[[0;1;39msnap-snapd-24505.mount^[[0m - …t unit for snapd, revision 24505...
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mmachines.target^[[0m - Containers.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mrun-qemu.mount^[[0m - Prepare /…o fallback-load modules from there.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39msnap-core20-2582.mount^[[0m - Mount unit for core20, revision 2582.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39msnap-core20-2599.mount^[[0m - Mount unit for core20, revision 2599.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39msnap-lxd-29351.mount^[[0m - Mount unit for lxd, revision 29351.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39msnap-lxd-31333.mount^[[0m - Mount unit for lxd, revision 31333.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39msnap-snapd-23771.mount^[[0m - Mount unit for snapd, revision 23771.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39msnap-snapd-24505.mount^[[0m - Mount unit for snapd, revision 24505.
[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39mdev-disk-by\x2duuid-0…8b4261e471c.device^[[0m - Extreme_SSD 3.
[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39mdev-disk-by\x2duuid-C4E1\x2d3ED1.device^[[0m - Extreme_SSD 1.
[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39mdev-disk-by\x2duuid-5…26821c5d261.device^[[0m - Extreme_SSD 4.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msnapd.mounts.target^[[0m - Mounted snaps.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39msystemd-rfkill.socket^[[0m…ll Switch Status /dev/rfkill Watch.
         Starting ^[[0;1;39msystemd-fsck@dev-disk-by\…^[[0m7aaa-c342-458f-a006-d8b4261e471c...
         Starting ^[[0;1;39msystemd-fsck@dev-disk-by\…^[[0m7ad5-ddcc-4178-b6b9-826821c5d261...
         Starting ^[[0;1;39msystemd-fsck@dev-disk-by\…^[[0mk on /dev/disk/by-uuid/C4E1-3ED1...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39msystemd-fsckd.service^[[0m - Fi…stem Check Daemon to report status.
\rChecking in progress on 1 disk (0.0% complete)\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-fsck@dev-disk-by\…^[[0m587aaa-c342-458f-a006-d8b4261e471c.
         Mounting ^[[0;1;39mboot.mount^[[0m - /boot...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-fsck@dev-disk-by\…^[[0m387ad5-ddcc-4178-b6b9-826821c5d261.
         Mounting ^[[0;1;39mhome.mount^[[0m - /home...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mboot.mount^[[0m - /boot.
\rChecking in progress on 0 disks (100.0% complete)\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-fsck@dev-disk-by\…^[[0meck on /dev/disk/by-uuid/C4E1-3ED1.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mhome.mount^[[0m - /home.
         Mounting ^[[0;1;39mboot-efi.mount^[[0m - /boot/efi...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mboot-efi.mount^[[0m - /boot/efi.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mlocal-fs.target^[[0m - Local File Systems.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39msystemd-sysext.socket^[[0m…tension Image Management (Varlink).
         Starting ^[[0;1;39mapparmor.service^[[0m - Load AppArmor profiles...
         Starting ^[[0;1;39mconsole-setup.service^[[0m - Set console font and keymap...
         Starting ^[[0;1;39mfinalrd.service^[[0m - Create …time dir for shutdown pivot root...
         Starting ^[[0;1;39mplymouth-read-write.servi…^[[0mymouth To Write Out Runtime Data...
         Starting ^[[0;1;39mqemu-kvm.service^[[0m - QEMU K…aration - module, ksm, hugepages...
         Starting ^[[0;1;39mbinfmt-support.service^[[0m - …tional executable binary formats...
         Starting ^[[0;1;39msystemd-tmpfiles-setup.se…^[[0me Volatile Files and Directories...
         Starting ^[[0;1;39mufw.service^[[0m - Uncomplicated firewall...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mapparmor.service^[[0m - Load AppArmor profiles.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mconsole-setup.service^[[0m - Set console font and keymap.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mfinalrd.service^[[0m - Create …untime dir for shutdown pivot root.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mplymouth-read-write.servi…^[[0mPlymouth To Write Out Runtime Data.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mbinfmt-support.service^[[0m - …ditional executable binary formats.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-tmpfiles-setup.se…^[[0mate Volatile Files and Directories.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mufw.service^[[0m - Uncomplicated firewall.
         Mounting ^[[0;1;39mrun-rpc_pipefs.mount^[[0m - RPC Pipe File System...
         Starting ^[[0;1;39mrpcbind.service^[[0m - RPC bind portmap service...
         Starting ^[[0;1;39msnapd.apparmor.service^[[0m - …iles managed internally by snapd...
         Starting ^[[0;1;39msystemd-resolved.service^[[0m - Network Name Resolution...
         Starting ^[[0;1;39msystemd-timesyncd.service^[[0m - Network Time Synchronization...
         Starting ^[[0;1;39msystemd-update-utmp.servi…^[[0mord System Boot/Shutdown in UTMP...
         Starting ^[[0;1;39mcloud-init-local.service^[[0m …-init: Local Stage (pre-network)...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mrpcbind.service^[[0m - RPC bind portmap service.
[^[[0;1;31mFAILED^[[0m] Failed to mount ^[[0;1;39mrun-rpc_pipefs.mount^[[0m - RPC Pipe File System.
See 'systemctl status run-rpc_pipefs.mount' for details.
[^[[0;1;38;5;185mDEPEND^[[0m] Dependency failed for ^[[0;1;39mrpc_pipefs.target^[[0m.
[^[[0;1;38;5;185mDEPEND^[[0m] Dependency failed for ^[[0;1;39mnfs-blkmap.s…^[[0m- pNFS block layout mapping daemon.
[^[[0;1;38;5;185mDEPEND^[[0m] Dependency failed for ^[[0;1;39mrpc-gssd.ser…^[[0m service for NFS client and server.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mnfs-client.target^[[0m - NFS client services.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mrpcbind.target^[[0m - RPC Port Mapper.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msnapd.apparmor.service^[[0m - …ofiles managed internally by snapd.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-update-utmp.servi…^[[0mecord System Boot/Shutdown in UTMP.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39msystemd-timesyncd.service^[[0m - Network Time Synchronization.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mtime-set.target^[[0m - System Time Set.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39msystemd-resolved.service^[[0m - Network Name Resolution.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mnss-lookup.target^[[0m - Host and Network Name Lookups.
[   25.536386] cloud-init[4470]: Cloud-init v. 24.4-0ubuntu1~24.04.2 running 'init-local' at Mon, 16 Jun 2025 09:41:03 +0000. Up 25.52 seconds.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mcloud-init-local.service^[[0m …ud-init: Local Stage (pre-network).
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mnetwork-pre.target^[[0m - Preparation for Network.
         Starting ^[[0;1;39msystemd-networkd.service^[[0m - Network Configuration...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39msystemd-networkd.service^[[0m - Network Configuration.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mnetwork.target^[[0m - Network.
         Starting ^[[0;1;39msystemd-networkd-wait-onl…^[[0mait for Network to be Configured...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-networkd-wait-onl…^[[0m Wait for Network to be Configured.
         Starting ^[[0;1;39mcloud-init.service^[[0m - Cloud-init: Network Stage...
[   32.647516] cloud-init[4493]: Cloud-init v. 24.4-0ubuntu1~24.04.2 running 'init' at Mon, 16 Jun 2025 09:41:11 +0000. Up 32.63 seconds.
[   32.686052] cloud-init[4493]: ci-info: +++++++++++++++++++++++++++++++++++++++Net device info+++++++++++++++++++++++++++++++++++++++
[   32.704176] cloud-init[4493]: ci-info: +--------+------+------------------------------+---------------+--------+-------------------+
[   32.728330] cloud-init[4493]: ci-info: | Device |  Up  |           Address            |      Mask     | Scope  |     Hw-Address    |
[   32.752259] cloud-init[4493]: ci-info: +--------+------+------------------------------+---------------+--------+-------------------+
[   32.772153] cloud-init[4493]: ci-info: |  eth0  | True |        10.230.172.87         | 255.255.252.0 | global | c0:18:50:78:33:a2 |
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mcloud-init.service^[[0m - Cloud-init: Network Stage.
[   32.792199] cloud-init[4493]: ci-info: |  eth0  | True | fe80::c218:50ff:fe78:33a2/64 |       .       |  link  | c0:18:50:78:33:a2 |
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mcloud-config.target^[[0m - Cloud-config availability.
[   32.820227] cloud-init[4493]: ci-info: |   lo   | True |          127.0.0.1           |   255.0.0.0   |  host  |         .         |
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mnetwork-online.target^[[0m - Network is Online.
[   32.840471] cloud-init[4493]: ci-info: |   lo   | True |           ::1/128            |       .       |  host  |         .         |
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msysinit.target^[[0m - System Initialization.
[   32.888300] cloud-init[4493]: ci-info: +--------+------+------------------------------+---------------+--------+-------------------+
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mapt-daily.timer^[[0m - Daily apt download activities.
[   32.924191] cloud-init[4493]: ci-info: +++++++++++++++++++++++++++++++++Route IPv4 info+++++++++++++++++++++++++++++++++
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mapt-daily-upgrade.timer^[[0m - …y apt upgrade and clean activities.
[   32.952213] cloud-init[4493]: ci-info: +-------+----------------+----------------+-----------------+-----------+-------+
[   32.988216] cloud-init[4493]: ci-info: | Route |  Destination   |    Gateway     |     Genmask     | Interface | Flags |
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdpkg-db-backup.timer^[[0m - Daily dpkg database backup timer.
[   32.988373] cloud-init[4493]: ci-info: +-------+----------------+----------------+-----------------+-----------+-------+
[   33.032133] cloud-init[4493]: ci-info: |   0   |    0.0.0.0     | 10.230.175.254 |     0.0.0.0     |    eth0   |   UG  |
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39me2scrub_all.timer^[[0m - Period…Metadata Check for All Filesystems.
[   33.032261] cloud-init[4493]: ci-info: |   1   |  10.229.9.99   | 10.230.175.254 | 255.255.255.255 |    eth0   |  UGH  |
[   33.076149] cloud-init[4493]: ci-info: |   2   |  10.230.172.0  |    0.0.0.0     |  255.255.252.0  |    eth0   |   U   |
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mfstrim.timer^[[0m - Discard unused filesystem blocks once a week.
[   33.076282] cloud-init[4493]: ci-info: |   3   | 10.230.175.254 |    0.0.0.0     | 255.255.255.255 |    eth0   |   UH  |
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mlogrotate.timer^[[0m - Daily rotation of log files.
[   33.120158] cloud-init[4493]: ci-info: |   4   |  10.231.1.11   | 10.230.175.254 | 255.255.255.255 |    eth0   |  UGH  |
[   33.148157] cloud-init[4493]: ci-info: +-------+----------------+----------------+-----------------+-----------+-------+
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mman-db.timer^[[0m - Daily man-db regeneration.
[   33.148291] cloud-init[4493]: ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mmotd-news.timer^[[0m - Message of the Day.
[   33.192201] cloud-init[4493]: ci-info: +-------+-------------+---------+-----------+-------+
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39msystemd-tmpfiles-clean.tim…^[[0my Cleanup of Temporary Directories.
[   33.220218] cloud-init[4493]: ci-info: | Route | Destination | Gateway | Interface | Flags |
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mupdate-notifier-download.t…^[[0mhat failed at package install time.
[   33.244348] cloud-init[4493]: ci-info: +-------+-------------+---------+-----------+-------+
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mupdate-notifier-motd.timer^[[0m… a new version of Ubuntu available.
[   33.276213] cloud-init[4493]: ci-info: |   0   |  fe80::/64  |    ::   |    eth0   |   U   |
[   33.300141] cloud-init[4493]: ci-info: |   2   |    local    |    ::   |    eth0   |   U   |
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mpaths.target^[[0m - Path Units.
[   33.300272] cloud-init[4493]: ci-info: |   3   |  multicast  |    ::   |    eth0   |   U   |
[   33.336141] cloud-init[4493]: ci-info: +-------+-------------+---------+-----------+-------+
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mtimers.target^[[0m - Timer Units.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mcloud-init-hotplugd.s…t^[[0m - cloud-init hotplug hook socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mdbus.socket^[[0m - D-Bus System Message Bus Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39miscsid.socket^[[0m - Open-iSCSI iscsid Socket.
         Starting ^[[0;1;39mlibvirtd.socket^[[0m - libvirt legacy monolithic daemon socket...
         Starting ^[[0;1;39mlxd-installer.socket^[[0m - He…er to install lxd snap on demand...
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39msnap.lxd.daemon.unix.…^[[0mix for snap application lxd.daemon.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39msnap.lxd.user-daemon.…^[[0mr snap application lxd.user-daemon.
         Starting ^[[0;1;39msnapd.socket^[[0m - Socket activation for snappy daemon...
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mssh.socket^[[0m - OpenBSD Secure Shell server socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39muuidd.socket^[[0m - UUID daemon activation socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mvirtlockd.socket^[[0m - libvirt locking daemon socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mvirtlockd-admin.socke…^[[0mibvirt locking daemon admin socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mvirtlogd.socket^[[0m - libvirt logging daemon socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mvirtlogd-admin.socket^[[0m…ibvirt logging daemon admin socket.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mblk-availability.service^[[0m - Availability of block devices.
         Starting ^[[0;1;39mrpc-statd-notify.service^[[0m - Notify NFS peers of a restart...
         Starting ^[[0;1;39mrpc-statd.service^[[0m - NFS s…tus monitor for NFSv2/3 locking....
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirtd.socket^[[0m - lib…rt legacy monolithic daemon socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlxd-installer.socket^[[0m …lper to install lxd snap on demand.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39msnapd.socket^[[0m - Socket activation for snappy daemon.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mrpc-statd-notify.service^[[0m - Notify NFS peers of a restart.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mrpc-statd.service^[[0m - NFS status monitor for NFSv2/3 locking..
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirtd-admin.socket^[[0m…acy monolithic daemon admin socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirtd-ro.socket^[[0m - …monolithic daemon read-only socket.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msockets.target^[[0m - Socket Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mbasic.target^[[0m - Basic System.
         Starting ^[[0;1;39mcloud-config.service^[[0m - Cloud-init: Config Stage...
         Starting ^[[0;1;39mdbus.service^[[0m - D-Bus System Message Bus...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdmesg.service^[[0m - Save initial kernel messages after boot.
         Starting ^[[0;1;39me2scrub_reap.service^[[0m - Re…ne ext4 Metadata Check Snapshots...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mfsidd.service^[[0m - NFS FSID Daemon.
         Starting ^[[0;1;39mgrub-common.service^[[0m - Record successful boot for GRUB...
         Starting ^[[0;1;39mlibvirt-guests.service^[[0m - …rt guests suspend/resume service...
         Starting ^[[0;1;39mnghttpx.service^[[0m - HTTP/2 proxy...
         Starting ^[[0;1;39mnvmf-autoconnect.service^[[0m …ystems automatically during boot...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mrngd.service^[[0m - Start entropy gathering daemon (rngd).
         Starting ^[[0;1;39mrsyslog.service^[[0m - System Logging Service...
[   34.187587] cloud-init[4534]: Cloud-init v. 24.4-0ubuntu1~24.04.2 running 'modules:config' at Mon, 16 Jun 2025 09:41:12 +0000. Up 34.16 seconds.
         Starting ^[[0;1;39msnap.lxd.activate.service^[[0m…or snap application lxd.activate...
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mgetty-pre.target^[[0m - Preparation for Logins.
         Starting ^[[0;1;39msnapd.seeded.service^[[0m - Wait until snapd is fully seeded...
         Starting ^[[0;1;39msnapd.service^[[0m - Snap Daemon...
         Starting ^[[0;1;39msystemd-logind.service^[[0m - User Login Management...
         Starting ^[[0;1;39msystemd-machined.service^[[0m …d Container Registration Service...
         Starting ^[[0;1;39mthermald.service^[[0m - Thermal Daemon Service...
         Starting ^[[0;1;39mudisks2.service^[[0m - Disk Manager...
         Starting ^[[0;1;39mvirtlockd.service^[[0m - libvirt locking daemon...
         Starting ^[[0;1;39mvirtlogd.service^[[0m - libvirt logging daemon...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdbus.service^[[0m - D-Bus System Message Bus.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mnghttpx.service^[[0m - HTTP/2 proxy.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39msystemd-logind.service^[[0m - User Login Management.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mcloud-config.service^[[0m - Cloud-init: Config Stage.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mvirtlockd.service^[[0m - libvirt locking daemon.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mvirtlogd.service^[[0m - libvirt logging daemon.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39me2scrub_reap.service^[[0m - Re…line ext4 Metadata Check Snapshots.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mnvmf-autoconnect.service^[[0m …bsystems automatically during boot.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mthermald.service^[[0m - Thermal Daemon Service.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mgrub-common.service^[[0m - Record successful boot for GRUB.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mlibvirt-guests.service^[[0m - …virt guests suspend/resume service.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mrsyslog.service^[[0m - System Logging Service.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39msystemd-machined.service^[[0m -…and Container Registration Service.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mremote-fs-pre.targe…^[[0mreparation for Remote File Systems.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mremote-fs.target^[[0m - Remote File Systems.
         Starting ^[[0;1;39mapport.service^[[0m - automatic crash report generation...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mcron.service^[[0m - Regular background program processing daemon.
         Starting ^[[0;1;39mgrub-initrd-fallback.service^[[0m - GRUB failed boot detection...
         Starting ^[[0;1;39mopenipmi.service^[[0m - LSB: OpenIPMI Driver init script...
         Starting ^[[0;1;39mpolkit.service^[[0m - Authorization Manager...
         Starting ^[[0;1;39msystemd-hostnamed.service^[[0m - Hostname Service...
         Starting ^[[0;1;39msystemd-user-sessions.service^[[0m - Permit User Sessions...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mapport.service^[[0m - automatic crash report generation.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-user-sessions.service^[[0m - Permit User Sessions.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mgrub-initrd-fallback.service^[[0m - GRUB failed boot detection.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39msystemd-hostnamed.service^[[0m - Hostname Service.
         Starting ^[[0;1;39mplymouth-quit-wait.servic…^[[0md until boot process finishes up...
         Starting ^[[0;1;39mplymouth-quit.service^[[0m - Terminate Plymouth Boot Screen...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mopenipmi.service^[[0m - LSB: OpenIPMI Driver init script.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mplymouth-quit-wait.servic…^[[0mold until boot process finishes up.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mplymouth-quit.service^[[0m - Terminate Plymouth Boot Screen.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mpolkit.service^[[0m - Authorization Manager.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mserial-getty@ttyS1•service^[[0m - Serial Getty on ttyS1.
         Starting ^[[0;1;39msetvtrgb.service^[[0m - Set console scheme...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mudisks2.service^[[0m - Disk Manager.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msetvtrgb.service^[[0m - Set console scheme.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39msystem-getty.slice^[[0m - Slice /system/getty.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mgetty@tty1•service^[[0m - Getty on tty1.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mgetty.target^[[0m - Login Prompts.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39msnapd.service^[[0m - Snap Daemon.
         Starting ^[[0;1;39msystemd-timedated.service^[[0m - Time & Date Service...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39msystemd-timedated.service^[[0m - Time & Date Service.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msnapd.seeded.service^[[0m - Wait until snapd is fully seeded.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msnap.lxd.activate.service^[[0m… for snap application lxd.activate.

Ubuntu 24.04.1 LTS titanite-34d8host ttyS1

titanite-34d8host login: [   40.608557] cloud-init[5038]: Cloud-init v. 24.4-0ubuntu1~24.04.2 running 'modules:final' at Mon, 16 Jun 2025 09:41:18 +0000. Up 40.58 seconds.
[   40.661595] cloud-init[5038]: Cloud-init v. 24.4-0ubuntu1~24.04.2 finished at Mon, 16 Jun 2025 09:41:19 +0000. Datasource DataSourceNone.  Up 40.65 seconds
\r                                                   \rclient_loop: send disconnect: Broken pipe
RSA host key for IP address '10.230.174.60' not in list of known hosts.
[ 8370.275799] watchdog: BUG: soft lockup - CPU#10 stuck for 3779s! [migration/10:77]
[ 8370.275806] Modules linked in: xt_CHECKSUM ipt_REJECT amd_atl intel_rapl_msr intel_rapl_common amd64_edac edac_mce_amd nls_iso8859_1 ipmi_ssif wmi_bmof kvm_amd rapl acpi_ipmi ccp ipmi_si i2c_piix4 ipmi_devintf i2c_smbus k10temp wmi ipmi_msghandler mac_hid sch_fq_codel dm_multipath efi_pstore drm autofs4 btrfs blake2b_generic raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq raid1 raid0 ghash_clmulni_intel tg3 ahci libahci aesni_intel
[ 8370.275845] CPU: 10 UID: 0 PID: 77 Comm: migration/10 Tainted: G      D      L      6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997 #1 PREEMPT(voluntary) 
[ 8370.275848] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 8370.275849] Hardware name: AMD Corporation Titanite_4G/Titanite_4G, BIOS RTI100EB 12/05/2024
[ 8370.275850] Stopper: multi_cpu_stop+0x0/0x140 <- migrate_swap+0xa1/0x120
[ 8370.275860] RIP: 0010:multi_cpu_stop+0x95/0x140
[ 8370.275862] Code: 00 00 00 f0 ff 0b 75 13 41 8b 46 20 41 8b 76 10 83 c0 01 41 89 76 24 41 89 46 20 45 89 fc 4c 89 ef e8 4f ff ff ff 45 8b 7e 20 <45> 39 fc 75 ba 41 83 ff 01 76 e6 e8 9b 21 02 00 e8 c6 21 02 00 e8
[ 8370.275864] RSP: 0018:ff3457ee99dd7e28 EFLAGS: 00000246
[ 8370.275866] RAX: 0000000000000286 RBX: ff3457eeb7c4f31c RCX: ff1897a34d2a1b10
[ 8370.275867] RDX: ff1897a34d2a1b10 RSI: 0000000000000282 RDI: ffffffff8c231c00
[ 8370.275869] RBP: ff3457ee99dd7e60 R08: 0000000000000001 R09: 0000000000000141
[ 8370.275870] R10: ff66572c4568dd80 R11: 0000000000000000 R12: 0000000000000001
[ 8370.275871] R13: ffffffff8c231c00 R14: ff3457eeb7c4f2f8 R15: 0000000000000001
[ 8370.275872] FS:  0000000000000000(0000) GS:ff1897a3bfcde000(0000) knlGS:0000000000000000
[ 8370.275874] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 8370.275875] CR2: 00007efef7bbb1d0 CR3: 0008000276edb022 CR4: 0000000000771ef0
[ 8370.275876] PKRU: 55555554
[ 8370.275877] Call Trace:
[ 8370.275879]  <TASK>
[ 8370.275883]  ? __pfx_multi_cpu_stop+0x10/0x10
[ 8370.275885]  cpu_stopper_thread+0xa0/0x160
[ 8370.275889]  ? __pfx_smpboot_thread_fn+0x10/0x10
[ 8370.275892]  smpboot_thread_fn+0x101/0x230
[ 8370.275894]  kthread+0x111/0x220
[ 8370.275897]  ? __pfx_kthread+0x10/0x10
[ 8370.275900]  ret_from_fork+0x8c/0x100
[ 8370.275904]  ? __pfx_kthread+0x10/0x10
[ 8370.275906]  ret_from_fork_asm+0x1a/0x30
[ 8370.275913]  </TASK>
[ 8374.355730] watchdog: BUG: soft lockup - CPU#42 stuck for 3964s! [migration/42:271]
[ 8374.355740] Modules linked in: xt_CHECKSUM ipt_REJECT amd_atl intel_rapl_msr intel_rapl_common amd64_edac edac_mce_amd nls_iso8859_1 ipmi_ssif wmi_bmof kvm_amd rapl acpi_ipmi ccp ipmi_si i2c_piix4 ipmi_devintf i2c_smbus k10temp wmi ipmi_msghandler mac_hid sch_fq_codel dm_multipath efi_pstore drm autofs4 btrfs blake2b_generic raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq raid1 raid0 ghash_clmulni_intel tg3 ahci libahci aesni_intel
[ 8374.355812] CPU: 42 UID: 0 PID: 271 Comm: migration/42 Tainted: G      D      L      6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997 #1 PREEMPT(voluntary) 
[ 8374.355819] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 8374.355820] Hardware name: AMD Corporation Titanite_4G/Titanite_4G, BIOS RTI100EB 12/05/2024
[ 8374.355823] Stopper: multi_cpu_stop+0x0/0x140 <- migrate_swap+0xa1/0x120
[ 8374.355837] RIP: 0010:multi_cpu_stop+0x95/0x140
[ 8374.355843] Code: 00 00 00 f0 ff 0b 75 13 41 8b 46 20 41 8b 76 10 83 c0 01 41 89 76 24 41 89 46 20 45 89 fc 4c 89 ef e8 4f ff ff ff 45 8b 7e 20 <45> 39 fc 75 ba 41 83 ff 01 76 e6 e8 9b 21 02 00 e8 c6 21 02 00 e8
[ 8374.355847] RSP: 0018:ff3457ee9a453e28 EFLAGS: 00000246
[ 8374.355851] RAX: 0000000000000286 RBX: ff3457f057cd3afc RCX: ff1897a34daa1b10
[ 8374.355853] RDX: ff1897a34daa1b10 RSI: 0000000000000282 RDI: ffffffff8c230c18
[ 8374.355856] RBP: ff3457ee9a453e60 R08: 0000000000000001 R09: 0000000000000089
[ 8374.355858] R10: ff66572c45e8dd80 R11: 0000000000000000 R12: 0000000000000001
[ 8374.355861] R13: ffffffff8c230c18 R14: ff3457f057cd3ad8 R15: 0000000000000001
[ 8374.355863] FS:  0000000000000000(0000) GS:ff1897a3c04de000(0000) knlGS:0000000000000000
[ 8374.355866] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 8374.355869] CR2: 000055a38b669190 CR3: 000800013ab99023 CR4: 0000000000771ef0
[ 8374.355872] PKRU: 55555554
[ 8374.355874] Call Trace:
[ 8374.355876]  <TASK>
[ 8374.355883]  ? __pfx_multi_cpu_stop+0x10/0x10
[ 8374.355889]  cpu_stopper_thread+0xa0/0x160
[ 8374.355896]  ? __pfx_smpboot_thread_fn+0x10/0x10
[ 8374.355902]  smpboot_thread_fn+0x101/0x230
[ 8374.355907]  kthread+0x111/0x220
[ 8374.355913]  ? __pfx_kthread+0x10/0x10
[ 8374.355919]  ret_from_fork+0x8c/0x100
[ 8374.355926]  ? __pfx_kthread+0x10/0x10
[ 8374.355932]  ret_from_fork_asm+0x1a/0x30
[ 8374.355946]  </TASK>
[ 8374.371728] watchdog: BUG: soft lockup - CPU#48 stuck for 3964s! [journal-offline:57229]
[ 8374.371735] Modules linked in: xt_CHECKSUM ipt_REJECT amd_atl intel_rapl_msr intel_rapl_common amd64_edac edac_mce_amd nls_iso8859_1 ipmi_ssif wmi_bmof kvm_amd rapl acpi_ipmi ccp ipmi_si i2c_piix4 ipmi_devintf i2c_smbus k10temp wmi ipmi_msghandler mac_hid sch_fq_codel dm_multipath efi_pstore drm autofs4 btrfs blake2b_generic raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq raid1 raid0 ghash_clmulni_intel tg3 ahci libahci aesni_intel
[ 8374.371776] CPU: 48 UID: 0 PID: 57229 Comm: journal-offline Tainted: G      D      L      6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997 #1 PREEMPT(voluntary) 
[ 8374.371780] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 8374.371781] Hardware name: AMD Corporation Titanite_4G/Titanite_4G, BIOS RTI100EB 12/05/2024
[ 8374.371783] RIP: 0010:smp_call_function_many_cond+0x35a/0x550
[ 8374.371790] Code: 63 e0 49 8b 1e 49 81 fc 00 20 00 00 0f 83 d1 01 00 00 4a 03 1c e5 80 b0 99 8c 8b 53 08 48 89 de 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb ad 45 31 ed 9c 58 0f 1f 40 00 48 89 c3
[ 8374.371793] RSP: 0018:ff3457f063bbb490 EFLAGS: 00000202
[ 8374.371794] RAX: 0000000000000004 RBX: ff1897a34d1395a0 RCX: 0000000000000011
[ 8374.371796] RDX: 0000000000000001 RSI: ff1897a34d1395a0 RDI: ff1896e70deba800
[ 8374.371797] RBP: ff3457f063bbb4f0 R08: ff1897a65e02b000 R09: 0000000000000180
[ 8374.371799] R10: 0000000000000030 R11: 0000000000000006 R12: 0000000000000004
[ 8374.371800] R13: 0000000000000001 R14: ff1897a34dc32d00 R15: 0000000000000173
[ 8374.371802] FS:  00007f9858bff6c0(0000) GS:ff1897a3c065e000(0000) knlGS:0000000000000000
[ 8374.371803] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 8374.371805] CR2: 000055a38b26a4a0 CR3: 000800c063195006 CR4: 0000000000771ef0
[ 8374.371806] PKRU: 55555554
[ 8374.371807] Call Trace:
[ 8374.371810]  <TASK>
[ 8374.371813]  ? __pfx_flush_tlb_func+0x10/0x10
[ 8374.371819]  on_each_cpu_cond_mask+0x28/0x50
[ 8374.371822]  native_flush_tlb_multi+0xfe/0x160
[ 8374.371825]  flush_tlb_mm_range+0x2bf/0x740
[ 8374.371828]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 8374.371832]  ? page_vma_mapped_walk+0x52d/0xa20
[ 8374.371837]  ptep_clear_flush+0x62/0x70
[ 8374.371839]  page_vma_mkclean_one.constprop.0+0x10f/0x250
[ 8374.371843]  page_mkclean_one+0x8c/0xb0
[ 8374.371847]  __rmap_walk_file+0xb9/0x1b0
[ 8374.371850]  rmap_walk+0x49/0x50
[ 8374.371852]  folio_mkclean+0xaf/0xc0
[ 8374.371854]  ? __pfx_page_mkclean_one+0x10/0x10
[ 8374.371856]  ? __pfx_invalid_mkclean_vma+0x10/0x10
[ 8374.371859]  folio_clear_dirty_for_io+0x5f/0x1d0
[ 8374.371864]  mpage_submit_folio+0x2c/0xc0
[ 8374.371868]  mpage_process_page_bufs+0xcf/0x1a0
[ 8374.371871]  mpage_prepare_extent_to_map+0x1e1/0x550
[ 8374.371881]  ext4_do_writepages+0x33c/0xdd0
[ 8374.371887]  ext4_writepages+0xcc/0x1a0
[ 8374.371890]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 8374.371892]  ? ext4_writepages+0xcc/0x1a0
[ 8374.371897]  do_writepages+0xc8/0x160
[ 8374.371900]  filemap_fdatawrite_wbc+0x56/0x80
[ 8374.371903]  __filemap_fdatawrite_range+0x70/0x90
[ 8374.371912]  file_write_and_wait_range+0x56/0xb0
[ 8374.371916]  ext4_sync_file+0x9d/0x350
[ 8374.371920]  vfs_fsync_range+0x49/0x90
[ 8374.371924]  do_fsync+0x40/0x90
[ 8374.371926]  ? __secure_computing+0x71/0xc0
[ 8374.371929]  __x64_sys_fsync+0x17/0x20
[ 8374.371931]  x64_sys_call+0x1daf/0x20c0
[ 8374.371936]  do_syscall_64+0x72/0x1d0
[ 8374.371940]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 8374.371941]  ? __do_sys_prctl+0x42d/0xd30
[ 8374.371946]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 8374.371947]  ? __x64_sys_prctl+0x25/0x30
[ 8374.371949]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 8374.371951]  ? x64_sys_call+0x16e5/0x20c0
[ 8374.371953]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 8374.371955]  ? do_syscall_64+0xa1/0x1d0
[ 8374.371957]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 8374.371959]  ? restore_fpregs_from_fpstate+0x41/0xa0
[ 8374.371962]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 8374.371964]  ? switch_fpu_return+0x60/0xf0
[ 8374.371966]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 8374.371968]  ? ret_from_fork+0xdd/0x100
[ 8374.371971]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 8374.371973] RIP: 0033:0x7f985b71ee0c
[ 8374.371975] Code: 0f 05 48 3d 00 f0 ff ff 77 3c c3 0f 1f 00 55 48 89 e5 48 83 ec 10 89 7d fc e8 50 97 f7 ff 8b 7d fc 89 c2 b8 4a 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 2c 89 d7 89 45 fc e8 b2 97 f7 ff 8b 45 fc c9
[ 8374.371977] RSP: 002b:00007f9858bfec10 EFLAGS: 00000293 ORIG_RAX: 000000000000004a
[ 8374.371978] RAX: ffffffffffffffda RBX: 0000560798218cc0 RCX: 00007f985b71ee0c
[ 8374.371979] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000011
[ 8374.371980] RBP: 00007f9858bfec20 R08: 0000000000000000 R09: 00007f9858bff6c0
[ 8374.371981] R10: 00007f985b69c85e R11: 0000000000000293 R12: 00007f985bd0b9b0
[ 8374.371982] R13: fffffffffffffda8 R14: 0000000000000000 R15: 00007ffeb72c79e0
[ 8374.371987]  </TASK>
[ 8374.431728] watchdog: BUG: soft lockup - CPU#73 stuck for 3882s! [migration/73:459]
[ 8374.431735] Modules linked in: xt_CHECKSUM ipt_REJECT amd_atl intel_rapl_msr intel_rapl_common amd64_edac edac_mce_amd nls_iso8859_1 ipmi_ssif wmi_bmof kvm_amd rapl acpi_ipmi ccp ipmi_si i2c_piix4 ipmi_devintf i2c_smbus k10temp wmi ipmi_msghandler mac_hid sch_fq_codel dm_multipath efi_pstore drm autofs4 btrfs blake2b_generic raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq raid1 raid0 ghash_clmulni_intel tg3 ahci libahci aesni_intel
[ 8374.431773] CPU: 73 UID: 0 PID: 459 Comm: migration/73 Tainted: G      D      L      6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997 #1 PREEMPT(voluntary) 
[ 8374.431778] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 8374.431779] Hardware name: AMD Corporation Titanite_4G/Titanite_4G, BIOS RTI100EB 12/05/2024
[ 8374.431781] Stopper: multi_cpu_stop+0x0/0x140 <- migrate_swap+0xa1/0x120
[ 8374.431790] RIP: 0010:srso_alias_return_thunk+0x0/0xfbef5
[ 8374.431794] Code: cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc 48 8d 64 24 08 c3 cc <e8> f4 ff ff ff 0f 0b cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc
[ 8374.431796] RSP: 0018:ff3457ee9aaafe20 EFLAGS: 00000246
[ 8374.431797] RAX: 0000000000000286 RBX: ff3457f05cb4f36c RCX: ff1897a34e261b10
[ 8374.431798] RDX: ff1897a34e261b10 RSI: 0000000000000282 RDI: ffffffff8c22d818
[ 8374.431799] RBP: ff3457ee9aaafe60 R08: 0000000000000001 R09: 000000000000021b
[ 8374.431801] R10: ff66572c4664dd80 R11: 0000000000000000 R12: 0000000000000001
[ 8374.431802] R13: ffffffff8c22d818 R14: ff3457f05cb4f348 R15: 0000000000000001
[ 8374.431803] FS:  0000000000000000(0000) GS:ff1897a3c0c9e000(0000) knlGS:0000000000000000
[ 8374.431804] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 8374.431805] CR2: 0000000000000000 CR3: 000800c1b0dbe025 CR4: 0000000000771ef0
[ 8374.431807] PKRU: 55555554
[ 8374.431808] Call Trace:
[ 8374.431809]  <TASK>
[ 8374.431810]  ? multi_cpu_stop+0x91/0x140
[ 8374.431815]  ? __pfx_multi_cpu_stop+0x10/0x10
[ 8374.431818]  cpu_stopper_thread+0xa0/0x160
[ 8374.431821]  ? __pfx_smpboot_thread_fn+0x10/0x10
[ 8374.431825]  smpboot_thread_fn+0x101/0x230
[ 8374.431827]  kthread+0x111/0x220
[ 8374.431831]  ? __pfx_kthread+0x10/0x10
[ 8374.431833]  ret_from_fork+0x8c/0x100
[ 8374.431837]  ? __pfx_kthread+0x10/0x10
[ 8374.431839]  ret_from_fork_asm+0x1a/0x30
[ 8374.431847]  </TASK>

[-- Attachment #3: Genoa_migrate_swap_stop_linux_next_20250617.log --]
[-- Type: application/octet-stream, Size: 264781 bytes --]

[-- Attachment #4: Milan_migrate_swap_stop_linux_next_20250617.log.log --]
[-- Type: text/plain, Size: 4602245 bytes --]

^[[c^[[2J^[[01;01H^[[=3h^[[2J^[[01;01HKEY MAPPING FOR CONSOLE REDIRECTION:

Use the <ESC><1> key sequence for <F1>
Use the <ESC><2> key sequence for <F2>
Use the <ESC><3> key sequence for <F3>
Use the <ESC><0> key sequence for <F10>
Use the <ESC><!> key sequence for <F11>
Use the <ESC><@> key sequence for <F12>

Use the <ESC><Ctrl><M> key sequence for <Ctrl><M>
Use the <ESC><Ctrl><H> key sequence for <Ctrl><H>
Use the <ESC><Ctrl><I> key sequence for <Ctrl><I>
Use the <ESC><Ctrl><J> key sequence for <Ctrl><J>

Use the <ESC><X><X> key sequence for <Alt><x>, where x is any letter
key, and X is the upper case of that key

Use the <ESC><R><ESC><r><ESC><R> key sequence for <Ctrl><Alt><Del>

Press the spacebar to pause...
Initializing PCIe, USB, and Video... Done
PowerEdge R6515
BIOS Version: 2.17.0
Console Redirection Enabled Requested by iDRAC

F2	 = System Setup
F10	 = Lifecycle Controller (Config
	   iDRAC, Update FW, Install OS)
F11	 = Boot Manager
F12	 = PXE Boot
iDRAC IPV4:  10.86.18.202 [Dedicated]
                                
Initializing Firmware Interfaces...
 





Enumerating Boot options...
Enumerating Boot options... Done
Loading Lifecycle Controller Drivers...
Loading Lifecycle Controller Drivers...Done
Lifecycle Controller: Collecting System Inventory...

iDRAC IPV4:  10.86.18.202 [Dedicated]

^[[2J^[[01;01HLifecycle Controller: Done
Booting...
^[[2J^[[01;01HBooting from Integrated Storage Controller 1: Red Hat Enterprise Linux
^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[02;32HGRUB version 2.06

\r^[[04;02H/----------------------------------------------------------------------------\^[[05;02H|^[[05;79H|^[[06;02H|^[[06;79H|^[[07;02H|^[[07;79H|^[[08;02H|^[[08;79H|^[[09;02H|^[[09;79H|^[[10;02H|^[[10;79H|^[[11;02H|^[[11;79H|^[[12;02H|^[[12;79H|^[[13;02H|^[[13;79H|^[[14;02H|^[[14;79H|^[[15;02H|^[[15;79H|^[[16;02H|^[[16;79H|^[[17;02H\----------------------------------------------------------------------------/^[[18;02H^[[19;02H     Use the ^ and v keys to select which entry is highlighted.          
\r      Press enter to boot the selected OS, `e' to edit the commands       
\r      before booting or `c' for a command-line. ESC to return previous    
\r      menu.                                                               ^[[05;80H ^[[0m^[[30m^[[47m^[[05;03H*Red Hat Enterprise Linux (6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e)>
\r^[[06;01H^[[0m^[[37m^[[40m^[[05;78H^[[06;03H Red Hat Enterprise Linux (6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997)>
\r^[[07;01H^[[06;78H^[[07;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250613-bc6e0ba6c9-dc42f4ece61)>
\r^[[08;01H^[[07;78H^[[08;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250612-0bb71d3018-d909e6968a1)>
\r^[[09;01H^[[08;78H^[[09;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250611-19a60293b9-72d7c68e20e)>
\r^[[10;01H^[[09;78H^[[10;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250610-b27cc623e0-9a3b1b1b837)>
\r^[[11;01H^[[10;78H^[[11;03H Red Hat Enterprise Linux (6.15.0-rc7-next-20250526-3be1a7a31f-22d449bcd69)>
\r^[[12;01H^[[11;78H^[[12;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250514-bdd609656f-ccb396cc166)>
\r^[[13;01H^[[12;78H^[[13;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250513-aa94665adc-e0bf3d3816b)>
\r^[[14;01H^[[13;78H^[[14;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250512-edef457004-450c56522a8)>
\r^[[15;01H^[[14;78H^[[15;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250508-f48887a98b-19c541fe872)>
\r^[[16;01H^[[15;78H^[[16;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250507-08710e6960-81586bd2ca8)>
\r^[[17;01H^[[16;78H^[[16;80Hv^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 5s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 4s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 3s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 2s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 1s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 0s.                 ^[[05;78H^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m  Booting `Red Hat Enterprise Linux
\r(6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e) 9.5 (Plow)'

\r[    0.000000] Linux version 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e (root@sharavati•amd.com) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-5), GNU ld version 2.35.2-63.el9) #1 SMP PREEMPT_DYNAMIC Tue Jun 17 12:09:52 IST 2025
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] SEV-SNP: RMP table physical range [0x0000000015e00000 - 0x00000000566fffff]
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000015dfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000015e00000-0x00000000566fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000056700000-0x00000000567fbfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000567fc000-0x00000000567fcfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000567fd000-0x000000005a142fff] usable
[    0.000000] BIOS-e820: [mem 0x000000005a143000-0x000000005a342fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005a343000-0x0000000067acefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000067acf000-0x000000006dfcefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006dfcf000-0x000000006edfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006edff000-0x000000006effefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000006efff000-0x000000006effffff] usable
[    0.000000] BIOS-e820: [mem 0x000000006f000000-0x000000006f00afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006f00b000-0x000000006fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000070000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa000000-0x00000000aaffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c5000000-0x00000000c5ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e0ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000207fcfffff] usable
[    0.000000] BIOS-e820: [mem 0x000000207fd00000-0x000000207fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000002080000000-0x000000407f1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000407f200000-0x000000407fffffff] reserved
[    0.000000] printk: legacy bootconsole [earlyser0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by Dell Inc.
[    0.000000] efi: ACPI=0x6effe000 ACPI 2.0=0x6effe014 MEMATTR=0x63f376a0 SMBIOS=0x6979e000 SMBIOS 3.0=0x6979c000 MOKvar=0x67bcc000 RNG=0x6efb4020 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem56: MMIO range=[0x80000000-0x8fffffff] (256MB) from e820 map
[    0.000000] efi: Remove mem57: MMIO range=[0xaa000000-0xaaffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem58: MMIO range=[0xc5000000-0xc5ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem59: MMIO range=[0xe0000000-0xe0ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem60: MMIO range=[0xfd000000-0xffffffff] (48MB) from e820 map
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[    0.000000] DMI: Memory slots populated: 8/16
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1996.129 MHz processor
[    0.000028] last_pfn = 0x407f200 max_arch_pfn = 0x400000000
[    0.005552] MTRR map: 7 entries (2 fixed + 5 variable; max 19), built from 9 variable MTRRs
[    0.013867] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Memory KASLR using RDRAND RDTSC...
[    0.023921] x2apic: enabled by BIOS, switching to x2apic ops
[    0.029590] last_pfn = 0x70000 max_arch_pfn = 0x400000000
[    0.039451] SEV-SNP: Reserving start/end of RMP table on a 2MB boundary [0x0000000056600000]
[    0.047719] Using GB pages for direct mapping
[    0.052672] Secure boot disabled
[    0.055719] RAMDISK: [mem 0x0bb2c000-0x0e0d4fff]
[    0.060317] ACPI: Early table checksum verification disabled
[    0.065949] ACPI: RSDP 0x000000006EFFE014 000024 (v02 DELL  )
[    0.071666] ACPI: XSDT 0x000000006EFB7188 0000DC (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.080163] ACPI: FACP 0x000000006EFF9000 000114 (v06 DELL   PE_SC3   00000002 DELL 00000001)
[    0.088656] ACPI: DSDT 0x000000006EFDA000 019528 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.097149] ACPI: FACS 0x000000006EDB9000 000040
[    0.101742] ACPI: BERT 0x000000006EFFC000 000030 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.110234] ACPI: ERST 0x000000006EFFB000 000230 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.118728] ACPI: HEST 0x000000006EFFA000 0007F4 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.127222] ACPI: HPET 0x000000006EFF8000 000038 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.135759] ACPI: APIC 0x000000006EFF6000 0018BE (v05 DELL   PE_SC3   00000002 DELL 00000001)
[    0.144253] ACPI: MCFG 0x000000006EFF5000 00003C (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.152747] ACPI: WSMT 0x000000006EFF4000 000028 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.161241] ACPI: SSDT 0x000000006EFD9000 000629 (v02 DELL   xhc_port 00000001 INTL 20210331)
[    0.169733] ACPI: SSDT 0x000000006EFD8000 000D6E (v02 AMD    CPMRAS   00000001 INTL 20210331)
[    0.178228] ACPI: EINJ 0x000000006EFD7000 000170 (v01 AMD    PE_SC3   00000001 AMD  00000001)
[    0.186721] ACPI: PCCT 0x000000006EFD6000 00006E (v02 DELL   AmdTable 00000001 AMD  00000001)
[    0.195215] ACPI: SSDT 0x000000006EFC7000 00E849 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.203708] ACPI: SRAT 0x000000006EFC6000 000CD0 (v03 DELL   PE_SC3   00000001 AMD  00000001)
[    0.212202] ACPI: MSCT 0x000000006EFC5000 00004E (v01 DELL   PE_SC3   00000000 AMD  00000001)
[    0.220696] ACPI: SLIT 0x000000006EFC4000 000030 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.229189] ACPI: CRAT 0x000000006EFBC000 0072F8 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.237683] ACPI: CDIT 0x000000006EFBB000 00002C (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.246185] ACPI: IVRS 0x000000006EFBA000 0001F0 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.254678] ACPI: SPCR 0x000000006EFB9000 000050 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.263172] ACPI: SLIC 0x000000006EFB8000 000176 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.271666] ACPI: SSDT 0x000000006EFFD000 000D66 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.280159] ACPI: SSDT 0x000000006EFB5000 00193C (v02 AMD    CPMCMN   00000001 INTL 20210331)
[    0.288653] ACPI: Reserving FACP table memory at [mem 0x6eff9000-0x6eff9113]
[    0.295672] ACPI: Reserving DSDT table memory at [mem 0x6efda000-0x6eff3527]
[    0.302693] ACPI: Reserving FACS table memory at [mem 0x6edb9000-0x6edb903f]
[    0.309713] ACPI: Reserving BERT table memory at [mem 0x6effc000-0x6effc02f]
[    0.316734] ACPI: Reserving ERST table memory at [mem 0x6effb000-0x6effb22f]
[    0.323754] ACPI: Reserving HEST table memory at [mem 0x6effa000-0x6effa7f3]
[    0.330774] ACPI: Reserving HPET table memory at [mem 0x6eff8000-0x6eff8037]
[    0.337795] ACPI: Reserving APIC table memory at [mem 0x6eff6000-0x6eff78bd]
[    0.344814] ACPI: Reserving MCFG table memory at [mem 0x6eff5000-0x6eff503b]
[    0.351835] ACPI: Reserving WSMT table memory at [mem 0x6eff4000-0x6eff4027]
[    0.358855] ACPI: Reserving SSDT table memory at [mem 0x6efd9000-0x6efd9628]
[    0.365875] ACPI: Reserving SSDT table memory at [mem 0x6efd8000-0x6efd8d6d]
[    0.372896] ACPI: Reserving EINJ table memory at [mem 0x6efd7000-0x6efd716f]
[    0.379915] ACPI: Reserving PCCT table memory at [mem 0x6efd6000-0x6efd606d]
[    0.386935] ACPI: Reserving SSDT table memory at [mem 0x6efc7000-0x6efd5848]
[    0.393957] ACPI: Reserving SRAT table memory at [mem 0x6efc6000-0x6efc6ccf]
[    0.400977] ACPI: Reserving MSCT table memory at [mem 0x6efc5000-0x6efc504d]
[    0.407997] ACPI: Reserving SLIT table memory at [mem 0x6efc4000-0x6efc402f]
[    0.415018] ACPI: Reserving CRAT table memory at [mem 0x6efbc000-0x6efc32f7]
[    0.422038] ACPI: Reserving CDIT table memory at [mem 0x6efbb000-0x6efbb02b]
[    0.429057] ACPI: Reserving IVRS table memory at [mem 0x6efba000-0x6efba1ef]
[    0.436079] ACPI: Reserving SPCR table memory at [mem 0x6efb9000-0x6efb904f]
[    0.443097] ACPI: Reserving SLIC table memory at [mem 0x6efb8000-0x6efb8175]
[    0.450119] ACPI: Reserving SSDT table memory at [mem 0x6effd000-0x6effdd65]
[    0.457138] ACPI: Reserving SSDT table memory at [mem 0x6efb5000-0x6efb693b]
[    0.464233] APIC: Switched APIC routing to: cluster x2apic
[    0.469635] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.475600] ACPI: SRAT: Node 0 PXM 0 [mem 0x000c0000-0x7fffffff]
[    0.481579] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.487820] ACPI: SRAT: Node 1 PXM 1 [mem 0x2080000000-0x407fffffff]
[    0.494153] NUMA: Node 0 [mem 0x00001000-0x0009ffff] + [mem 0x000c0000-0x7fffffff] -> [mem 0x00001000-0x7fffffff]
[    0.504374] NUMA: Node 0 [mem 0x00001000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00001000-0x207fffffff]
[    0.515041] NODE_DATA(0) allocated [mem 0x207fcd59c0-0x207fcfffff]
[    0.521196] NODE_DATA(1) allocated [mem 0x407f1d49c0-0x407f1fefff]
[    0.527481] cannot allocate crashkernel low memory (size:0x10800000).
[    0.534018] Zone ranges:
[    0.536372]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.542526]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.548678]   Normal   [mem 0x0000000100000000-0x000000407f1fffff]
[    0.554832]   Device   empty
[    0.557693] Movable zone start for each node
[    0.561940] Early memory node ranges
[    0.565493]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.571733]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.577973]   node   0: [mem 0x0000000000100000-0x0000000015dfffff]
[    0.584214]   node   0: [mem 0x0000000056700000-0x00000000567fbfff]
[    0.590455]   node   0: [mem 0x00000000567fd000-0x000000005a142fff]
[    0.596695]   node   0: [mem 0x000000005a343000-0x0000000067acefff]
[    0.602934]   node   0: [mem 0x000000006efff000-0x000000006effffff]
[    0.609175]   node   0: [mem 0x000000006f00b000-0x000000006fffffff]
[    0.615414]   node   0: [mem 0x0000000100000000-0x000000207fcfffff]
[    0.621666]   node   1: [mem 0x0000002080000000-0x000000407f1fffff]
[    0.627907] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fcfffff]
[    0.634917] Initmem setup node 1 [mem 0x0000002080000000-0x000000407f1fffff]
[    0.641938] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.647743] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.653562] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.659828] On node 0, zone DMA32: 35072 pages in unavailable ranges
[    0.666038] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.672132] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.678221] On node 0, zone DMA32: 30000 pages in unavailable ranges
[    0.684468] On node 0, zone DMA32: 11 pages in unavailable ranges
[    0.909468] On node 1, zone Normal: 768 pages in unavailable ranges
[    0.915567] On node 1, zone Normal: 3584 pages in unavailable ranges
[    0.922029] ACPI: PM-Timer IO Port: 0x408
[    0.925894] ACPI: X2APIC_NMI (uid[0xffffffff] high edge lint[0x1])
[    0.932021] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.937927] IOAPIC[0]: apic_id 240, version 33, address 0xfec00000, GSI 0-23
[    0.944937] IOAPIC[1]: apic_id 241, version 33, address 0xe0100000, GSI 120-151
[    0.952217] IOAPIC[2]: apic_id 242, version 33, address 0xc5100000, GSI 88-119
[    0.959412] IOAPIC[3]: apic_id 243, version 33, address 0xaa100000, GSI 56-87
[    0.966518] IOAPIC[4]: apic_id 244, version 33, address 0xfd100000, GSI 24-55
[    0.973625] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.979948] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.986456] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.992861] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.997977] ACPI: SPCR: console: uart,io,0x2f8,115200
[    1.003007] CPU topo: Max. logical packages:   1
[    1.007594] CPU topo: Max. logical dies:       1
[    1.012189] CPU topo: Max. dies per package:   1
[    1.016786] CPU topo: Max. threads per core:   2
[    1.021376] CPU topo: Num. cores per package:    64
[    1.026229] CPU topo: Num. threads per package: 128
[    1.031082] CPU topo: Allowing 128 present CPUs plus 0 hotplug CPUs
[    1.037357] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    1.044872] PM: hibernation: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    1.052413] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    1.059953] PM: hibernation: Registered nosave memory: [mem 0x15e00000-0x567fffff]
[    1.067494] PM: hibernation: Registered nosave memory: [mem 0x5a143000-0x5a342fff]
[    1.075033] PM: hibernation: Registered nosave memory: [mem 0x67acf000-0x6effefff]
[    1.082573] PM: hibernation: Registered nosave memory: [mem 0x6f000000-0x6f00afff]
[    1.090114] PM: hibernation: Registered nosave memory: [mem 0x70000000-0xffffffff]
[    1.097655] PM: hibernation: Registered nosave memory: [mem 0x207fd00000-0x207fffffff]
[    1.105542] [mem 0x56800000-0xffffffff] available for PCI devices
[    1.111608] Booting paravirtualized kernel on bare hardware
[    1.117155] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    1.127566] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:128 nr_cpu_ids:128 nr_node_ids:2
[    1.138442] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[    1.144940] Kernel command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    1.174268] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e biosdevname=0 mem_encrypt=off", will be passed to user space.
[    1.191119] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    1.198034] printk: log_buf_len total cpu_extra contributions: 520192 bytes
[    1.204969] printk: log_buf_len min size: 262144 bytes
[    1.210420] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[    1.217805] printk: early log buf free: 246352(93%)
[    1.224135] software IO TLB: area num 128.
[    1.228053] software IO TLB: swiotlb_memblock_alloc: Failed to allocate 268435456 bytes tlb structure
[    1.243107] software IO TLB: SWIOTLB bounce buffer size adjusted 131072 -> 65536 slabs
[    1.249215] Fallback order for Node 0: 0 1 
[    1.249220] Fallback order for Node 1: 1 0 
[    1.249233] Built 2 zonelists, mobility grouping on.  Total pages: 66743906
[    1.272215] Policy zone: Normal
[    1.275344] mem auto-init: stack:off, heap alloc:on, heap free:off
[    1.696444] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=128, Nodes=2
Poking KASLR using RDRAND RDTSC...
[    1.717058] ftrace: allocating 53763 entries in 212 pages
[    1.722274] ftrace: allocated 212 pages with 4 groups
[    1.728173] Dynamic Preempt: voluntary
[    1.732124] rcu: Preemptible hierarchical RCU implementation.
[    1.737684] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=128.
[    1.744617] 	Trampoline variant of Tasks RCU enabled.
[    1.749644] 	Rude variant of Tasks RCU enabled.
[    1.754150] 	Tracing variant of Tasks RCU enabled.
[    1.758917] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.766458] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=128
[    1.773344] RCU Tasks: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.782147] RCU Tasks Rude: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.791423] RCU Tasks Trace: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.804324] NR_IRQS: 524544, nr_irqs: 3624, preallocated irqs: 16
[    1.810511] rcu: srcu_init: Setting srcu_struct sizes to big.
[    1.816253] Console: colour dummy device 80x25
[    1.820531] printk: legacy console [ttyS0] enabled
[    1.820531] printk: legacy console [ttyS0] enabled
[    1.830066] printk: legacy bootconsole [earlyser0] disabled
[    1.830066] printk: legacy bootconsole [earlyser0] disabled
[    1.841251] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    1.852532] ACPI: Core revision 20250404
[    1.856684] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    1.865823] APIC: Switch to symmetric I/O mode setup
[    1.871223] AMD-Vi: Using global IVHD EFR:0x841f77e022094ace, EFR2:0x0
[    1.880162] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    1.905828] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x398bcaa7436, max_idle_ns: 881590480698 ns
[    1.916340] Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.25 BogoMIPS (lpj=7984516)
[    1.920352] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    1.924454] LVT offset 2 assigned for vector 0xf4
[    1.928372] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    1.932339] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    1.936340] process: using mwait in idle threads
[    1.940343] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    1.944339] Spectre V2 : Mitigation: Retpolines
[    1.948339] Spectre V2 : User space: Mitigation: STIBP always-on protection
[    1.952339] Speculative Return Stack Overflow: Mitigation: Safe RET
[    1.956339] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.960339] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
[    1.964338] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    1.968339] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    1.972342] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.976339] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.980338] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.984339] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    1.988339] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    1.992339] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    1.996339] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    2.000339] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    2.004339] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[    2.041875] Freeing SMP alternatives memory: 48K
[    2.044342] pid_max: default: 131072 minimum: 1024
[    2.055483] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm
[    2.056392] Yama: becoming mindful.
[    2.060463] AppArmor: AppArmor initialized
[    2.072694] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    2.080997] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    2.084490] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.088435] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.204769] smpboot: CPU0: AMD EPYC 7713 64-Core Processor (family: 0x19, model: 0x1, stepping: 0x1)
[    2.208693] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    2.212341] ... version:                0
[    2.216339] ... bit width:              48
[    2.220340] ... generic registers:      6
[    2.224339] ... value mask:             0000ffffffffffff
[    2.228339] ... max period:             00007fffffffffff
[    2.232339] ... fixed-purpose events:   0
[    2.236339] ... event mask:             000000000000003f
[    2.240773] signal: max sigframe size: 3376
[    2.244401] rcu: Hierarchical SRCU implementation.
[    2.248340] rcu: 	Max phase no-delay instances is 1000.
[    2.252395] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
[    2.264726] MCE: In-kernel MCE decoding enabled.
[    2.268389] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    2.273296] smp: Bringing up secondary CPUs ...
[    2.276492] smpboot: x86: Booting SMP configuration:
[    2.280342] .... node  #0, CPUs:          #1   #2   #3   #4   #5   #6   #7   #8   #9  #10  #11  #12  #13  #14  #15  #16  #17  #18  #19  #20  #21  #22  #23  #24  #25  #26  #27  #28  #29  #30  #31
[    2.292342] .... node  #1, CPUs:    #32  #33  #34  #35  #36  #37  #38  #39  #40  #41  #42  #43  #44  #45  #46  #47  #48  #49  #50  #51  #52  #53  #54  #55  #56  #57  #58  #59  #60  #61  #62  #63
[    2.444341] .... node  #0, CPUs:    #64  #65  #66  #67  #68  #69  #70  #71  #72  #73  #74  #75  #76  #77  #78  #79  #80  #81  #82  #83  #84  #85  #86  #87  #88  #89  #90  #91  #92  #93  #94  #95
[    2.452343] .... node  #1, CPUs:    #96  #97  #98  #99 #100 #101 #102 #103 #104 #105 #106 #107 #108 #109 #110 #111 #112 #113 #114 #115 #116 #117 #118 #119 #120 #121 #122 #123 #124 #125 #126 #127
[    2.460643] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[    2.612511] smp: Brought up 2 nodes, 128 CPUs
[    2.616344] smpboot: Total of 128 processors activated (511009.02 BogoMIPS)
[    2.630428] Memory: 262224988K/266975624K available (18401K kernel code, 3299K rwdata, 7944K rodata, 4760K init, 6092K bss, 4428288K reserved, 0K cma-reserved)
[    2.638266] devtmpfs: initialized
[    2.640445] x86/mm: Memory block size: 2048MB
[    2.654965] ACPI: PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    2.656342] ACPI: PM: Registering ACPI NVS region [mem 0x6dfcf000-0x6edfefff] (14876672 bytes)
[    2.660626] ACPI: PM: Registering ACPI NVS region [mem 0x6f000000-0x6f00afff] (45056 bytes)
[    2.664460] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    2.668402] posixtimers hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.672557] futex hash table entries: 16384 (1048576 bytes on 2 NUMA nodes, total 2048 KiB, linear).
[    2.676571] pinctrl core: initialized pinctrl subsystem
[    2.680489] PM: RTC time: 12:23:00, date: 2025-06-17
[    2.685119] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    2.688951] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    2.692523] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    2.696523] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    2.700346] audit: initializing netlink subsys (disabled)
[    2.704369] audit: type=2000 audit(1750162979.824:1): state=initialized audit_enabled=0 res=1
[    2.704546] thermal_sys: Registered thermal governor 'fair_share'
[    2.708341] thermal_sys: Registered thermal governor 'bang_bang'
[    2.712340] thermal_sys: Registered thermal governor 'step_wise'
[    2.716340] thermal_sys: Registered thermal governor 'user_space'
[    2.720362] cpuidle: using governor ladder
[    2.728350] cpuidle: using governor menu
[    2.732386] Detected 1 PCC Subspaces
[    2.736340] Registering PCC driver as Mailbox controller
[    2.744512] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    2.748343] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    2.752517] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    2.756350] PCI: Using configuration type 1 for base access
[    2.760349] PCI: Dell System detected, enabling pci=bfsort.
[    2.768360] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    2.772559] HugeTLB: allocation took 0ms with hugepage_allocation_threads=32
[    2.776365] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    2.780340] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    2.784340] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    2.788339] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    2.796896] ACPI: Added _OSI(Module Device)
[    2.800340] ACPI: Added _OSI(Processor Device)
[    2.804341] ACPI: Added _OSI(Processor Aggregator Device)
[    2.849536] ACPI: 6 ACPI AML tables successfully acquired and loaded
[    2.865474] ACPI: Interpreter enabled
[    2.868352] ACPI: PM: (supports S0 S5)
[    2.872340] ACPI: Using IOAPIC for interrupt routing
[    2.876956] HEST: Table parsing has been initialized.
[    2.880763] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    2.884343] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.888340] PCI: Ignoring E820 reservations for host bridge windows
[    2.896961] ACPI: Enabled 1 GPEs in block 00 to 1F
[    2.938883] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    2.940419] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    2.944417] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    2.948417] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    2.952418] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    2.956417] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    2.960416] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    2.964417] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    2.968840] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-3f])
[    2.972344] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.976505] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER DPC]
[    2.980655] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    2.984341] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.989333] PCI host bridge to bus 0000:00
[    2.992343] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    2.996340] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    3.000341] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000fffff window]
[    3.004340] pci_bus 0000:00: root bus resource [io  0x0d00-0x3fff window]
[    3.008340] pci_bus 0000:00: root bus resource [mem 0xe1000000-0xfebfffff window]
[    3.012340] pci_bus 0000:00: root bus resource [mem 0x63dc0000000-0x7fcffffffff window]
[    3.016340] pci_bus 0000:00: root bus resource [bus 00-3f]
[    3.020353] pci 0000:00:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.024492] pci 0000:00:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.028450] pci 0000:00:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.032433] pci 0000:00:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.036430] pci 0000:00:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.040434] pci 0000:00:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.044356] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.048343] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    3.052341] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    3.056409] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    3.061348] pci 0000:00:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.064435] pci 0000:00:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.068434] pci 0000:00:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.072434] pci 0000:00:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.076355] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.080344] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    3.084351] pci 0000:00:07.1: enabling Extended Tags
[    3.088388] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    3.092497] pci 0000:00:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.096433] pci 0000:00:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.100355] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.104345] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    3.108351] pci 0000:00:08.1: enabling Extended Tags
[    3.112389] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    3.116530] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
[    3.120455] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
[    3.124510] pci 0000:00:18.0: [1022:1650] type 00 class 0x060000 conventional PCI endpoint
[    3.128446] pci 0000:00:18.1: [1022:1651] type 00 class 0x060000 conventional PCI endpoint
[    3.132409] pci 0000:00:18.2: [1022:1652] type 00 class 0x060000 conventional PCI endpoint
[    3.136405] pci 0000:00:18.3: [1022:1653] type 00 class 0x060000 conventional PCI endpoint
[    3.140404] pci 0000:00:18.4: [1022:1654] type 00 class 0x060000 conventional PCI endpoint
[    3.144405] pci 0000:00:18.5: [1022:1655] type 00 class 0x060000 conventional PCI endpoint
[    3.148408] pci 0000:00:18.6: [1022:1656] type 00 class 0x060000 conventional PCI endpoint
[    3.152404] pci 0000:00:18.7: [1022:1657] type 00 class 0x060000 conventional PCI endpoint
[    3.156475] pci 0000:01:00.0: [1000:0097] type 00 class 0x010700 PCIe Endpoint
[    3.160370] pci 0000:01:00.0: BAR 0 [io  0x1000-0x10ff]
[    3.164342] pci 0000:01:00.0: BAR 1 [mem 0xf7400000-0xf740ffff 64bit]
[    3.168341] pci 0000:01:00.0: BAR 3 [mem 0xf7300000-0xf73fffff 64bit]
[    3.172342] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]
[    3.176345] pci 0000:01:00.0: enabling Extended Tags
[    3.180423] pci 0000:01:00.0: supports D1 D2
[    3.184381] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[    3.188340] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x000fffff 64bit]: contains BAR 0 for 16 VFs
[    3.192341] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x000fffff 64bit]
[    3.196340] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x00ffffff 64bit]: contains BAR 2 for 16 VFs
[    3.200491] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.204428] pci 0000:02:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.208373] pci 0000:02:00.0: enabling Extended Tags
[    3.212501] pci 0000:02:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.216367] pci 0000:02:00.2: BAR 2 [mem 0xf7200000-0xf727ffff]
[    3.220342] pci 0000:02:00.2: BAR 5 [mem 0xf7280000-0xf7281fff]
[    3.224345] pci 0000:02:00.2: enabling Extended Tags
[    3.228541] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.236346] pci 0000:03:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.240376] pci 0000:03:00.0: enabling Extended Tags
[    3.244552] pci 0000:03:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.248481] pci 0000:03:00.2: BAR 2 [mem 0xf7100000-0xf717ffff]
[    3.252343] pci 0000:03:00.2: BAR 5 [mem 0xf7180000-0xf7181fff]
[    3.256345] pci 0000:03:00.2: enabling Extended Tags
[    3.260536] pci 0000:03:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.264369] pci 0000:03:00.3: BAR 0 [mem 0xf7000000-0xf70fffff 64bit]
[    3.268348] pci 0000:03:00.3: enabling Extended Tags
[    3.272391] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
[    3.276522] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.284494] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 40-7f])
[    3.288342] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.292505] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.296656] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.300340] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.309214] PCI host bridge to bus 0000:40
[    3.312343] pci_bus 0000:40: root bus resource [io  0x4000-0x6fff window]
[    3.316340] pci_bus 0000:40: root bus resource [mem 0x90000000-0xaaffffff window]
[    3.320340] pci_bus 0000:40: root bus resource [mem 0x47e80000000-0x63dbfffffff window]
[    3.324340] pci_bus 0000:40: root bus resource [bus 40-7f]
[    3.328349] pci 0000:40:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.332438] pci 0000:40:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.336442] pci 0000:40:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.340424] pci 0000:40:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.344426] pci 0000:40:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.348434] pci 0000:40:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.352357] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.356345] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    3.360433] pci 0000:40:03.1: PME# supported from D0 D3hot D3cold
[    3.380376] pci 0000:40:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.384365] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.388347] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    3.392463] pci 0000:40:03.2: PME# supported from D0 D3hot D3cold
[    3.409958] pci 0000:40:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.412363] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.416346] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    3.420453] pci 0000:40:03.3: PME# supported from D0 D3hot D3cold
[    3.439713] pci 0000:40:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.440361] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.444345] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    3.448441] pci 0000:40:03.4: PME# supported from D0 D3hot D3cold
[    3.465698] pci 0000:40:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.468464] pci 0000:40:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.472429] pci 0000:40:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.476431] pci 0000:40:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.480359] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.484346] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    3.488353] pci 0000:40:07.1: enabling Extended Tags
[    3.492392] pci 0000:40:07.1: PME# supported from D0 D3hot D3cold
[    3.500421] pci 0000:40:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.508433] pci 0000:40:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.516356] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.520344] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    3.528352] pci 0000:40:08.1: enabling Extended Tags
[    3.532389] pci 0000:40:08.1: PME# supported from D0 D3hot D3cold
[    3.536595] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.544424] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.548421] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.552422] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.556430] pci 0000:45:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.564372] pci 0000:45:00.0: enabling Extended Tags
[    3.572500] pci 0000:45:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.576367] pci 0000:45:00.2: BAR 2 [mem 0xa5300000-0xa537ffff]
[    3.584342] pci 0000:45:00.2: BAR 5 [mem 0xa5380000-0xa5381fff]
[    3.588345] pci 0000:45:00.2: enabling Extended Tags
[    3.596538] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.600473] pci 0000:46:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.608376] pci 0000:46:00.0: enabling Extended Tags
[    3.612548] pci 0000:46:00.1: [1022:1486] type 00 class 0x108000 PCIe Endpoint
[    3.620369] pci 0000:46:00.1: BAR 2 [mem 0xa5100000-0xa51fffff]
[    3.624342] pci 0000:46:00.1: BAR 5 [mem 0xa5282000-0xa5283fff]
[    3.632345] pci 0000:46:00.1: enabling Extended Tags
[    3.636534] pci 0000:46:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.644369] pci 0000:46:00.2: BAR 2 [mem 0xa5200000-0xa527ffff]
[    3.648342] pci 0000:46:00.2: BAR 5 [mem 0xa5280000-0xa5281fff]
[    3.656345] pci 0000:46:00.2: enabling Extended Tags
[    3.660533] pci 0000:46:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.668368] pci 0000:46:00.3: BAR 0 [mem 0xa5000000-0xa50fffff 64bit]
[    3.676348] pci 0000:46:00.3: enabling Extended Tags
[    3.680389] pci 0000:46:00.3: PME# supported from D0 D3hot D3cold
[    3.684522] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.692751] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 80-bf])
[    3.696344] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.708500] acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.716379] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.724340] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.733257] PCI host bridge to bus 0000:80
[    3.736343] pci_bus 0000:80: root bus resource [io  0x7000-0x9fff window]
[    3.744340] pci_bus 0000:80: root bus resource [mem 0xab000000-0xc5ffffff window]
[    3.752340] pci_bus 0000:80: root bus resource [mem 0x2bf40000000-0x47e7fffffff window]
[    3.760341] pci_bus 0000:80: root bus resource [bus 80-bf]
[    3.764350] pci 0000:80:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.772440] pci 0000:80:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.780441] pci 0000:80:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.788434] pci 0000:80:01.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.796357] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.800347] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    3.808432] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    3.828743] pci 0000:80:01.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.836363] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.840347] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    3.848413] pci 0000:80:01.2: PME# supported from D0 D3hot D3cold
[    3.867849] pci 0000:80:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.868436] pci 0000:80:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.872442] pci 0000:80:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.876429] pci 0000:80:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.880497] pci 0000:80:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.884431] pci 0000:80:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.888357] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.892344] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    3.896351] pci 0000:80:07.1: enabling Extended Tags
[    3.900380] pci 0000:80:07.1: PME# supported from D0 D3hot D3cold
[    3.904496] pci 0000:80:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.916436] pci 0000:80:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.920355] pci 0000:80:08.1: PCI bridge to [bus 84]
[    3.928345] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    3.932351] pci 0000:80:08.1: enabling Extended Tags
[    3.940389] pci 0000:80:08.1: PME# supported from D0 D3hot D3cold
[    3.944506] pci 0000:80:08.2: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.952355] pci 0000:80:08.2: PCI bridge to [bus 85]
[    3.956344] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    3.964351] pci 0000:80:08.2: enabling Extended Tags
[    3.968389] pci 0000:80:08.2: PME# supported from D0 D3hot D3cold
[    3.976525] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.980424] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.984428] pci 0000:83:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.992374] pci 0000:83:00.0: enabling Extended Tags
[    3.996500] pci 0000:83:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.004367] pci 0000:83:00.2: BAR 2 [mem 0xbfa00000-0xbfa7ffff]
[    4.012342] pci 0000:83:00.2: BAR 5 [mem 0xbfa80000-0xbfa81fff]
[    4.016344] pci 0000:83:00.2: enabling Extended Tags
[    4.020539] pci 0000:80:07.1: PCI bridge to [bus 83]
[    4.028371] pci 0000:84:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.036376] pci 0000:84:00.0: enabling Extended Tags
[    4.040552] pci 0000:84:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.048369] pci 0000:84:00.2: BAR 2 [mem 0xbf900000-0xbf97ffff]
[    4.052343] pci 0000:84:00.2: BAR 5 [mem 0xbf980000-0xbf981fff]
[    4.060345] pci 0000:84:00.2: enabling Extended Tags
[    4.064545] pci 0000:80:08.1: PCI bridge to [bus 84]
[    4.068474] pci 0000:85:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[    4.076371] pci 0000:85:00.0: BAR 5 [mem 0xbf800000-0xbf8007ff]
[    4.080345] pci 0000:85:00.0: enabling Extended Tags
[    4.088403] pci 0000:85:00.0: PME# supported from D3hot D3cold
[    4.092516] pci 0000:80:08.2: PCI bridge to [bus 85]
[    4.097054] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus c0-ff])
[    4.104343] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    4.116505] acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug AER DPC]
[    4.120660] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    4.132340] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
[    4.140920] PCI host bridge to bus 0000:c0
[    4.144343] pci_bus 0000:c0: root bus resource [io  0xa000-0xffff window]
[    4.152340] pci_bus 0000:c0: root bus resource [mem 0xc6000000-0xe0ffffff window]
[    4.156340] pci_bus 0000:c0: root bus resource [mem 0x10000000000-0x2bf3fffffff window]
[    4.164340] pci_bus 0000:c0: root bus resource [io  0x03b0-0x03df window]
[    4.172340] pci_bus 0000:c0: root bus resource [mem 0x000a0000-0x000bffff window]
[    4.180341] pci_bus 0000:c0: root bus resource [bus c0-ff]
[    4.184349] pci 0000:c0:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    4.192438] pci 0000:c0:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    4.204439] pci 0000:c0:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.212427] pci 0000:c0:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.220424] pci 0000:c0:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.228430] pci 0000:c0:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.236357] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.240346] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    4.248430] pci 0000:c0:03.1: PME# supported from D0 D3hot D3cold
[    4.267549] pci 0000:c0:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.272362] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.280345] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    4.284410] pci 0000:c0:03.2: PME# supported from D0 D3hot D3cold
[    4.303073] pci 0000:c0:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.304362] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.308345] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    4.312449] pci 0000:c0:03.3: PME# supported from D0 D3hot D3cold
[    4.330154] pci 0000:c0:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.332363] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.336347] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    4.340461] pci 0000:c0:03.4: PME# supported from D0 D3hot D3cold
[    4.361511] pci 0000:c0:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.364432] pci 0000:c0:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.368432] pci 0000:c0:05.1: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.372356] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.376350] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    4.380385] pci 0000:c0:05.1: PME# supported from D0 D3hot D3cold
[    4.384493] pci 0000:c0:05.2: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.388355] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.392345] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    4.396345] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.400385] pci 0000:c0:05.2: PME# supported from D0 D3hot D3cold
[    4.404480] pci 0000:c0:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.408431] pci 0000:c0:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.412354] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.416344] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    4.420351] pci 0000:c0:07.1: enabling Extended Tags
[    4.424388] pci 0000:c0:07.1: PME# supported from D0 D3hot D3cold
[    4.428493] pci 0000:c0:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.432431] pci 0000:c0:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.436355] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.444349] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    4.448353] pci 0000:c0:08.1: enabling Extended Tags
[    4.452387] pci 0000:c0:08.1: PME# supported from D0 D3hot D3cold
[    4.456586] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.464426] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.468424] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.472422] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.476439] pci 0000:c1:00.0: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.484386] pci 0000:c1:00.0: BAR 0 [mem 0xc7030000-0xc703ffff 64bit pref]
[    4.492342] pci 0000:c1:00.0: BAR 2 [mem 0xc7040000-0xc704ffff 64bit pref]
[    4.500342] pci 0000:c1:00.0: BAR 4 [mem 0xc7050000-0xc705ffff 64bit pref]
[    4.504341] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.512428] pci 0000:c1:00.0: PME# supported from D0 D3hot D3cold
[    4.516394] pci 0000:c1:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:c0:05.1 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
[    4.533766] pci 0000:c1:00.1: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.540385] pci 0000:c1:00.1: BAR 0 [mem 0xc7000000-0xc700ffff 64bit pref]
[    4.548344] pci 0000:c1:00.1: BAR 2 [mem 0xc7010000-0xc701ffff 64bit pref]
[    4.556342] pci 0000:c1:00.1: BAR 4 [mem 0xc7020000-0xc702ffff 64bit pref]
[    4.560341] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.568433] pci 0000:c1:00.1: PME# supported from D0 D3hot D3cold
[    4.584364] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.588423] pci 0000:c2:00.0: [1556:be00] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    4.596366] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.600347] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    4.608349] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.624354] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.628376] pci_bus 0000:c3: extended config space not accessible
[    4.636368] pci 0000:c3:00.0: [102b:0536] type 00 class 0x030000 conventional PCI endpoint
[    4.644386] pci 0000:c3:00.0: BAR 0 [mem 0xc6000000-0xc6ffffff pref]
[    4.648341] pci 0000:c3:00.0: BAR 1 [mem 0xda808000-0xda80bfff]
[    4.656341] pci 0000:c3:00.0: BAR 2 [mem 0xda000000-0xda7fffff]
[    4.660359] pci 0000:c3:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    4.668468] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.676445] pci 0000:c8:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    4.680373] pci 0000:c8:00.0: enabling Extended Tags
[    4.688498] pci 0000:c8:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.692366] pci 0000:c8:00.2: BAR 2 [mem 0xdbb00000-0xdbb7ffff]
[    4.700342] pci 0000:c8:00.2: BAR 5 [mem 0xdbb80000-0xdbb81fff]
[    4.704344] pci 0000:c8:00.2: enabling Extended Tags
[    4.712420] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.716480] pci 0000:c9:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.724375] pci 0000:c9:00.0: enabling Extended Tags
[    4.728553] pci 0000:c9:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.736369] pci 0000:c9:00.2: BAR 2 [mem 0xdba00000-0xdba7ffff]
[    4.740342] pci 0000:c9:00.2: BAR 5 [mem 0xdba80000-0xdba81fff]
[    4.748346] pci 0000:c9:00.2: enabling Extended Tags
[    4.752544] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.763437] iommu: Default domain type: Translated
[    4.768340] iommu: DMA domain TLB invalidation policy: lazy mode
[    4.776635] SCSI subsystem initialized
[    4.780384] ACPI: bus type USB registered
[    4.784363] usbcore: registered new interface driver usbfs
[    4.788350] usbcore: registered new interface driver hub
[    4.796375] usbcore: registered new device driver usb
[    4.800371] pps_core: LinuxPPS API ver. 1 registered
[    4.804340] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux•it>
[    4.816343] PTP clock support registered
[    4.820420] EDAC MC: Ver: 3.0.0
[    4.820553] efivars: Registered efivars operations
[    4.828793] NetLabel: Initializing
[    4.832341] NetLabel:  domain hash size = 128
[    4.836341] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    4.840368] NetLabel:  unlabeled traffic allowed by default
[    4.844383] PCI: Using ACPI for IRQ routing
[    4.853281] pci 0000:c3:00.0: vgaarb: setting as boot VGA device
[    4.856338] pci 0000:c3:00.0: vgaarb: bridge control possible
[    4.856338] pci 0000:c3:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    4.856341] vgaarb: loaded
[    4.860487] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    4.864340] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    4.872545] clocksource: Switched to clocksource tsc-early
[    4.878158] VFS: Disk quotas dquot_6.6.0
[    4.882110] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.889229] AppArmor: AppArmor Filesystem Enabled
[    4.893952] pnp: PnP ACPI init
[    4.897258] system 00:00: [mem 0x80000000-0x8fffffff] has been reserved
[    4.903965] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[    4.912153] pnp: PnP ACPI: found 5 devices
[    4.923298] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    4.932275] NET: Registered PF_INET protocol family
[    4.937276] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.949011] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.957963] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    4.965992] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.975499] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.983878] TCP: Hash tables configured (established 524288 bind 65536)
[    4.990852] UDP hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.999277] UDP-Lite hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    5.008114] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    5.013783] NET: Registered PF_XDP protocol family
[    5.018583] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]: can't claim; no compatible bridge window
[    5.028413] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    5.038239] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    5.048059] pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
[    5.053728] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: can't assign; no space
[    5.061464] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: failed to assign
[    5.068683] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: can't assign; no space
[    5.076942] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: failed to assign
[    5.084683] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: can't assign; no space
[    5.092944] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: failed to assign
[    5.100684] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.105650] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    5.111744] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    5.118531] pci 0000:00:07.1: PCI bridge to [bus 02]
[    5.123496] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    5.130285] pci 0000:00:08.1: PCI bridge to [bus 03]
[    5.135257] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.142070] PCI: No. 2 try to assign unassigned res
[    5.146952] pci 0000:00:03.2: resource 14 [mem 0xf7300000-0xf74fffff] released
[    5.154173] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.159145] pci 0000:00:03.2: bridge window [mem 0x00100000-0x002fffff] to [bus 01] add_size 1200000 add_align 100000
[    5.169755] pci 0000:00:03.2: bridge window [mem 0xe1000000-0xe23fffff]: assigned
[    5.177241] pci 0000:01:00.0: BAR 3 [mem 0xe1000000-0xe10fffff 64bit]: assigned
[    5.184551] pci 0000:01:00.0: ROM [mem 0xe1100000-0xe11fffff pref]: assigned
[    5.191599] pci 0000:01:00.0: VF BAR 2 [mem 0xe1200000-0xe21fffff 64bit]: assigned
[    5.199166] pci 0000:01:00.0: BAR 1 [mem 0xe2200000-0xe220ffff 64bit]: assigned
[    5.206478] pci 0000:01:00.0: VF BAR 0 [mem 0xe2210000-0xe230ffff 64bit]: assigned
[    5.214049] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.219012] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    5.225107] pci 0000:00:03.2:   bridge window [mem 0xe1000000-0xe23fffff]
[    5.231896] pci 0000:00:07.1: PCI bridge to [bus 02]
[    5.236868] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    5.243666] pci 0000:00:08.1: PCI bridge to [bus 03]
[    5.248638] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.255427] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    5.261611] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    5.267790] pci_bus 0000:00: resource 6 [mem 0x000c0000-0x000fffff window]
[    5.274663] pci_bus 0000:00: resource 7 [io  0x0d00-0x3fff window]
[    5.280842] pci_bus 0000:00: resource 8 [mem 0xe1000000-0xfebfffff window]
[    5.287717] pci_bus 0000:00: resource 9 [mem 0x63dc0000000-0x7fcffffffff window]
[    5.295109] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[    5.300680] pci_bus 0000:01: resource 1 [mem 0xe1000000-0xe23fffff]
[    5.306946] pci_bus 0000:02: resource 1 [mem 0xf7200000-0xf72fffff]
[    5.313213] pci_bus 0000:03: resource 1 [mem 0xf7000000-0xf71fffff]
[    5.319556] pci 0000:40:03.1: bridge window [io  0x1000-0x0fff] to [bus 41] add_size 1000
[    5.327730] pci 0000:40:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 41] add_size 200000 add_align 100000
[    5.339201] pci 0000:40:03.2: bridge window [io  0x1000-0x0fff] to [bus 42] add_size 1000
[    5.347380] pci 0000:40:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 42] add_size 200000 add_align 100000
[    5.358846] pci 0000:40:03.3: bridge window [io  0x1000-0x0fff] to [bus 43] add_size 1000
[    5.367022] pci 0000:40:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 43] add_size 200000 add_align 100000
[    5.378494] pci 0000:40:03.4: bridge window [io  0x1000-0x0fff] to [bus 44] add_size 1000
[    5.386666] pci 0000:40:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 44] add_size 200000 add_align 100000
[    5.398140] pci 0000:40:03.1: bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]: assigned
[    5.407096] pci 0000:40:03.2: bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]: assigned
[    5.416047] pci 0000:40:03.3: bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]: assigned
[    5.425002] pci 0000:40:03.4: bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]: assigned
[    5.433955] pci 0000:40:03.1: bridge window [io  0x4000-0x4fff]: assigned
[    5.440740] pci 0000:40:03.2: bridge window [io  0x5000-0x5fff]: assigned
[    5.447524] pci 0000:40:03.3: bridge window [io  0x6000-0x6fff]: assigned
[    5.454311] pci 0000:40:03.4: bridge window [io  size 0x1000]: can't assign; no space
[    5.462137] pci 0000:40:03.4: bridge window [io  size 0x1000]: failed to assign
[    5.469449] pci 0000:40:03.4: bridge window [io  0x4000-0x4fff]: assigned
[    5.476241] pci 0000:40:03.3: bridge window [io  0x5000-0x5fff]: assigned
[    5.483025] pci 0000:40:03.2: bridge window [io  0x6000-0x6fff]: assigned
[    5.489814] pci 0000:40:03.1: bridge window [io  size 0x1000]: can't assign; no space
[    5.497639] pci 0000:40:03.1: bridge window [io  size 0x1000]: failed to assign
[    5.504944] pci 0000:40:03.1: PCI bridge to [bus 41]
[    5.509914] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    5.516699] pci 0000:40:03.1:   bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.524960] pci 0000:40:03.2: PCI bridge to [bus 42]
[    5.529922] pci 0000:40:03.2:   bridge window [io  0x6000-0x6fff]
[    5.536018] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    5.542804] pci 0000:40:03.2:   bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.551066] pci 0000:40:03.3: PCI bridge to [bus 43]
[    5.556053] pci 0000:40:03.3:   bridge window [io  0x5000-0x5fff]
[    5.562148] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    5.568933] pci 0000:40:03.3:   bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.577195] pci 0000:40:03.4: PCI bridge to [bus 44]
[    5.582160] pci 0000:40:03.4:   bridge window [io  0x4000-0x4fff]
[    5.588253] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    5.595039] pci 0000:40:03.4:   bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.603299] pci 0000:40:07.1: PCI bridge to [bus 45]
[    5.608266] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    5.615054] pci 0000:40:08.1: PCI bridge to [bus 46]
[    5.620027] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    5.626816] pci_bus 0000:40: Some PCI device resources are unassigned, try booting with pci=realloc
[    5.635860] pci_bus 0000:40: resource 4 [io  0x4000-0x6fff window]
[    5.642038] pci_bus 0000:40: resource 5 [mem 0x90000000-0xaaffffff window]
[    5.648911] pci_bus 0000:40: resource 6 [mem 0x47e80000000-0x63dbfffffff window]
[    5.656365] pci_bus 0000:41: resource 1 [mem 0xa4c00000-0xa4ffffff]
[    5.662633] pci_bus 0000:41: resource 2 [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.670373] pci_bus 0000:42: resource 0 [io  0x6000-0x6fff]
[    5.675944] pci_bus 0000:42: resource 1 [mem 0xa4800000-0xa4bfffff]
[    5.682211] pci_bus 0000:42: resource 2 [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.689950] pci_bus 0000:43: resource 0 [io  0x5000-0x5fff]
[    5.695522] pci_bus 0000:43: resource 1 [mem 0xa4400000-0xa47fffff]
[    5.701790] pci_bus 0000:43: resource 2 [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.709530] pci_bus 0000:44: resource 0 [io  0x4000-0x4fff]
[    5.715100] pci_bus 0000:44: resource 1 [mem 0xa4000000-0xa43fffff]
[    5.721373] pci_bus 0000:44: resource 2 [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.729116] pci_bus 0000:45: resource 1 [mem 0xa5300000-0xa53fffff]
[    5.735383] pci_bus 0000:46: resource 1 [mem 0xa5000000-0xa52fffff]
[    5.741901] pci 0000:80:01.1: bridge window [io  0x1000-0x0fff] to [bus 81] add_size 1000
[    5.750074] pci 0000:80:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 81] add_size 200000 add_align 100000
[    5.761548] pci 0000:80:01.2: bridge window [io  0x1000-0x0fff] to [bus 82] add_size 1000
[    5.769720] pci 0000:80:01.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 82] add_size 200000 add_align 100000
[    5.781193] pci 0000:80:01.1: bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]: assigned
[    5.790153] pci 0000:80:01.2: bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]: assigned
[    5.799111] pci 0000:80:01.1: bridge window [io  0x7000-0x7fff]: assigned
[    5.805895] pci 0000:80:01.2: bridge window [io  0x8000-0x8fff]: assigned
[    5.812685] pci 0000:80:01.1: PCI bridge to [bus 81]
[    5.817648] pci 0000:80:01.1:   bridge window [io  0x7000-0x7fff]
[    5.823744] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    5.830528] pci 0000:80:01.1:   bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.838791] pci 0000:80:01.2: PCI bridge to [bus 82]
[    5.843754] pci 0000:80:01.2:   bridge window [io  0x8000-0x8fff]
[    5.849853] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    5.856642] pci 0000:80:01.2:   bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.864941] pci 0000:80:07.1: PCI bridge to [bus 83]
[    5.869913] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    5.876699] pci 0000:80:08.1: PCI bridge to [bus 84]
[    5.881665] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    5.888454] pci 0000:80:08.2: PCI bridge to [bus 85]
[    5.893430] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    5.900222] pci_bus 0000:80: resource 4 [io  0x7000-0x9fff window]
[    5.906399] pci_bus 0000:80: resource 5 [mem 0xab000000-0xc5ffffff window]
[    5.913271] pci_bus 0000:80: resource 6 [mem 0x2bf40000000-0x47e7fffffff window]
[    5.920666] pci_bus 0000:81: resource 0 [io  0x7000-0x7fff]
[    5.926238] pci_bus 0000:81: resource 1 [mem 0xbf400000-0xbf7fffff]
[    5.932504] pci_bus 0000:81: resource 2 [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.940242] pci_bus 0000:82: resource 0 [io  0x8000-0x8fff]
[    5.945817] pci_bus 0000:82: resource 1 [mem 0xbf000000-0xbf3fffff]
[    5.952082] pci_bus 0000:82: resource 2 [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.959820] pci_bus 0000:83: resource 1 [mem 0xbfa00000-0xbfafffff]
[    5.966088] pci_bus 0000:84: resource 1 [mem 0xbf900000-0xbf9fffff]
[    5.972357] pci_bus 0000:85: resource 1 [mem 0xbf800000-0xbf8fffff]
[    5.978677] pci 0000:c0:03.1: bridge window [io  0x1000-0x0fff] to [bus c4] add_size 1000
[    5.986853] pci 0000:c0:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c4] add_size 200000 add_align 100000
[    5.998322] pci 0000:c0:03.2: bridge window [io  0x1000-0x0fff] to [bus c5] add_size 1000
[    6.006493] pci 0000:c0:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c5] add_size 200000 add_align 100000
[    6.017959] pci 0000:c0:03.3: bridge window [io  0x1000-0x0fff] to [bus c6] add_size 1000
[    6.026133] pci 0000:c0:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c6] add_size 200000 add_align 100000
[    6.037600] pci 0000:c0:03.4: bridge window [io  0x1000-0x0fff] to [bus c7] add_size 1000
[    6.045773] pci 0000:c0:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c7] add_size 200000 add_align 100000
[    6.057242] pci 0000:c0:05.1: bridge window [mem 0x00100000-0x000fffff] to [bus c1] add_size 100000 add_align 100000
[    6.067761] pci 0000:c0:03.1: bridge window [mem 0x10000000000-0x100001fffff 64bit pref]: assigned
[    6.076714] pci 0000:c0:03.2: bridge window [mem 0x10000200000-0x100003fffff 64bit pref]: assigned
[    6.085665] pci 0000:c0:03.3: bridge window [mem 0x10000400000-0x100005fffff 64bit pref]: assigned
[    6.094620] pci 0000:c0:03.4: bridge window [mem 0x10000600000-0x100007fffff 64bit pref]: assigned
[    6.103576] pci 0000:c0:05.1: bridge window [mem 0xc7100000-0xc71fffff]: assigned
[    6.111050] pci 0000:c0:03.1: bridge window [io  0xa000-0xafff]: assigned
[    6.117838] pci 0000:c0:03.2: bridge window [io  0xb000-0xbfff]: assigned
[    6.124624] pci 0000:c0:03.3: bridge window [io  0xc000-0xcfff]: assigned
[    6.131412] pci 0000:c0:03.4: bridge window [io  0xd000-0xdfff]: assigned
[    6.138201] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    6.143173] pci 0000:c0:03.1:   bridge window [io  0xa000-0xafff]
[    6.149268] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    6.156054] pci 0000:c0:03.1:   bridge window [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.164313] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    6.169276] pci 0000:c0:03.2:   bridge window [io  0xb000-0xbfff]
[    6.175370] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    6.182159] pci 0000:c0:03.2:   bridge window [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.190420] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    6.195391] pci 0000:c0:03.3:   bridge window [io  0xc000-0xcfff]
[    6.201485] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    6.208272] pci 0000:c0:03.3:   bridge window [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.216532] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    6.221497] pci 0000:c0:03.4:   bridge window [io  0xd000-0xdfff]
[    6.227590] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    6.234375] pci 0000:c0:03.4:   bridge window [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.242647] pci 0000:c1:00.0: ROM [mem 0xc7100000-0xc713ffff pref]: assigned
[    6.249704] pci 0000:c1:00.1: ROM [mem 0xc7140000-0xc717ffff pref]: assigned
[    6.256754] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    6.261722] pci 0000:c0:05.1:   bridge window [mem 0xc7100000-0xc71fffff]
[    6.268514] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.276258] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    6.281234] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    6.288026] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.295777] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    6.301009] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    6.307803] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.315543] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    6.320513] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    6.327309] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    6.332281] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    6.339079] pci_bus 0000:c0: resource 4 [io  0xa000-0xffff window]
[    6.345261] pci_bus 0000:c0: resource 5 [mem 0xc6000000-0xe0ffffff window]
[    6.352135] pci_bus 0000:c0: resource 6 [mem 0x10000000000-0x2bf3fffffff window]
[    6.359526] pci_bus 0000:c0: resource 7 [io  0x03b0-0x03df window]
[    6.365705] pci_bus 0000:c0: resource 8 [mem 0x000a0000-0x000bffff window]
[    6.372580] pci_bus 0000:c4: resource 0 [io  0xa000-0xafff]
[    6.378151] pci_bus 0000:c4: resource 1 [mem 0xdb600000-0xdb9fffff]
[    6.384419] pci_bus 0000:c4: resource 2 [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.392174] pci_bus 0000:c5: resource 0 [io  0xb000-0xbfff]
[    6.397747] pci_bus 0000:c5: resource 1 [mem 0xdb200000-0xdb5fffff]
[    6.404013] pci_bus 0000:c5: resource 2 [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.411755] pci_bus 0000:c6: resource 0 [io  0xc000-0xcfff]
[    6.417327] pci_bus 0000:c6: resource 1 [mem 0xdae00000-0xdb1fffff]
[    6.423593] pci_bus 0000:c6: resource 2 [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.431333] pci_bus 0000:c7: resource 0 [io  0xd000-0xdfff]
[    6.436906] pci_bus 0000:c7: resource 1 [mem 0xdaa00000-0xdadfffff]
[    6.443171] pci_bus 0000:c7: resource 2 [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.450912] pci_bus 0000:c1: resource 1 [mem 0xc7100000-0xc71fffff]
[    6.457179] pci_bus 0000:c1: resource 2 [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.464406] pci_bus 0000:c2: resource 1 [mem 0xda000000-0xda8fffff]
[    6.470672] pci_bus 0000:c2: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.477892] pci_bus 0000:c3: resource 1 [mem 0xda000000-0xda8fffff]
[    6.484157] pci_bus 0000:c3: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.491378] pci_bus 0000:c8: resource 1 [mem 0xdbb00000-0xdbbfffff]
[    6.497642] pci_bus 0000:c9: resource 1 [mem 0xdba00000-0xdbafffff]
[    6.504694] PCI: CLS 64 bytes, default 64
[    6.508796] Trying to unpack rootfs image as initramfs...
[    6.568360] AMD-Vi: IOMMU SNP support enabled.
[    6.572983] pci 0000:c0:00.2: AMD-Vi: IOMMU performance counters supported
[    6.580017] pci 0000:c0:01.0: Adding to iommu group 0
[    6.585131] pci 0000:c0:02.0: Adding to iommu group 1
[    6.590340] pci 0000:c0:03.0: Adding to iommu group 2
[    6.595444] pci 0000:c0:03.1: Adding to iommu group 2
[    6.600541] pci 0000:c0:03.2: Adding to iommu group 2
[    6.605646] pci 0000:c0:03.3: Adding to iommu group 2
[    6.610750] pci 0000:c0:03.4: Adding to iommu group 2
[    6.615854] pci 0000:c0:04.0: Adding to iommu group 3
[    6.621005] pci 0000:c0:05.0: Adding to iommu group 4
[    6.626106] pci 0000:c0:05.1: Adding to iommu group 4
[    6.631208] pci 0000:c0:05.2: Adding to iommu group 4
[    6.636317] pci 0000:c0:07.0: Adding to iommu group 5
[    6.641399] pci 0000:c0:07.1: Adding to iommu group 6
[    6.646511] pci 0000:c0:08.0: Adding to iommu group 7
[    6.651601] pci 0000:c0:08.1: Adding to iommu group 8
[    6.656663] pci 0000:c1:00.0: Adding to iommu group 4
[    6.661722] pci 0000:c1:00.1: Adding to iommu group 4
[    6.666785] pci 0000:c2:00.0: Adding to iommu group 4
[    6.671850] pci 0000:c3:00.0: Adding to iommu group 4
[    6.676937] pci 0000:c8:00.0: Adding to iommu group 9
[    6.682021] pci 0000:c8:00.2: Adding to iommu group 10
[    6.687199] pci 0000:c9:00.0: Adding to iommu group 11
[    6.692375] pci 0000:c9:00.2: Adding to iommu group 12
[    6.704099] pci 0000:80:00.2: AMD-Vi: IOMMU performance counters supported
[    6.711144] pci 0000:80:01.0: Adding to iommu group 13
[    6.716337] pci 0000:80:01.1: Adding to iommu group 13
[    6.721518] pci 0000:80:01.2: Adding to iommu group 13
[    6.726714] pci 0000:80:02.0: Adding to iommu group 14
[    6.731912] pci 0000:80:03.0: Adding to iommu group 15
[    6.737107] pci 0000:80:04.0: Adding to iommu group 16
[    6.742305] pci 0000:80:05.0: Adding to iommu group 17
[    6.747495] pci 0000:80:07.0: Adding to iommu group 18
[    6.752669] pci 0000:80:07.1: Adding to iommu group 19
[    6.757863] pci 0000:80:08.0: Adding to iommu group 20
[    6.763040] pci 0000:80:08.1: Adding to iommu group 21
[    6.768214] pci 0000:80:08.2: Adding to iommu group 22
[    6.773391] pci 0000:83:00.0: Adding to iommu group 23
[    6.778565] pci 0000:83:00.2: Adding to iommu group 24
[    6.783737] pci 0000:84:00.0: Adding to iommu group 25
[    6.788915] pci 0000:84:00.2: Adding to iommu group 26
[    6.794084] pci 0000:85:00.0: Adding to iommu group 27
[    6.806653] pci 0000:40:00.2: AMD-Vi: IOMMU performance counters supported
[    6.813657] pci 0000:40:01.0: Adding to iommu group 28
[    6.818857] pci 0000:40:02.0: Adding to iommu group 29
[    6.824148] pci 0000:40:03.0: Adding to iommu group 30
[    6.829322] pci 0000:40:03.1: Adding to iommu group 30
[    6.834496] pci 0000:40:03.2: Adding to iommu group 30
[    6.839670] pci 0000:40:03.3: Adding to iommu group 30
[    6.844845] pci 0000:40:03.4: Adding to iommu group 30
[    6.850044] pci 0000:40:04.0: Adding to iommu group 31
[    6.855240] pci 0000:40:05.0: Adding to iommu group 32
[    6.860438] pci 0000:40:07.0: Adding to iommu group 33
[    6.865617] pci 0000:40:07.1: Adding to iommu group 34
[    6.870813] pci 0000:40:08.0: Adding to iommu group 35
[    6.875992] pci 0000:40:08.1: Adding to iommu group 36
[    6.881167] pci 0000:45:00.0: Adding to iommu group 37
[    6.886337] pci 0000:45:00.2: Adding to iommu group 38
[    6.891513] pci 0000:46:00.0: Adding to iommu group 39
[    6.896685] pci 0000:46:00.1: Adding to iommu group 40
[    6.901859] pci 0000:46:00.2: Adding to iommu group 41
[    6.907082] pci 0000:46:00.3: Adding to iommu group 42
[    6.919358] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    6.926369] pci 0000:00:00.0: Adding to iommu group 43
[    6.931566] pci 0000:00:01.0: Adding to iommu group 44
[    6.936761] pci 0000:00:02.0: Adding to iommu group 45
[    6.941959] pci 0000:00:03.0: Adding to iommu group 46
[    6.944947] Freeing initrd memory: 38564K
[    6.947139] pci 0000:00:03.2: Adding to iommu group 47
[    6.956309] pci 0000:00:04.0: Adding to iommu group 48
[    6.961500] pci 0000:00:05.0: Adding to iommu group 49
[    6.966694] pci 0000:00:07.0: Adding to iommu group 50
[    6.971867] pci 0000:00:07.1: Adding to iommu group 51
[    6.977061] pci 0000:00:08.0: Adding to iommu group 52
[    6.982239] pci 0000:00:08.1: Adding to iommu group 53
[    6.987457] pci 0000:00:14.0: Adding to iommu group 54
[    6.992629] pci 0000:00:14.3: Adding to iommu group 54
[    6.997983] pci 0000:00:18.0: Adding to iommu group 55
[    7.003184] pci 0000:00:18.1: Adding to iommu group 55
[    7.008363] pci 0000:00:18.2: Adding to iommu group 55
[    7.013533] pci 0000:00:18.3: Adding to iommu group 55
[    7.018708] pci 0000:00:18.4: Adding to iommu group 55
[    7.023879] pci 0000:00:18.5: Adding to iommu group 55
[    7.029058] pci 0000:00:18.6: Adding to iommu group 55
[    7.034229] pci 0000:00:18.7: Adding to iommu group 55
[    7.039406] pci 0000:01:00.0: Adding to iommu group 56
[    7.044580] pci 0000:02:00.0: Adding to iommu group 57
[    7.049757] pci 0000:02:00.2: Adding to iommu group 58
[    7.054931] pci 0000:03:00.0: Adding to iommu group 59
[    7.060103] pci 0000:03:00.2: Adding to iommu group 60
[    7.065278] pci 0000:03:00.3: Adding to iommu group 61
[    7.079492] AMD-Vi: Extended features (0x841f77e022094ace, 0x0): PPR X2APIC NX IA GA PC SNP
[    7.087858] AMD-Vi: Interrupt remapping enabled
[    7.092386] AMD-Vi: X2APIC enabled
[    7.096755] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    7.103198] software IO TLB: mapped [mem 0x000000005bf37000-0x0000000063f37000] (128MB)
[    7.111364] LVT offset 0 assigned for vector 0x400
[    7.117567] perf: AMD IBS detected (0x000003ff)
[    7.123404] amd_uncore: 4 amd_df counters detected
[    7.128239] amd_uncore: 6 amd_l3 counters detected
[    7.134588] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    7.141744] perf/amd_iommu: Detected AMD IOMMU #1 (2 banks, 4 counters/bank).
[    7.148904] perf/amd_iommu: Detected AMD IOMMU #2 (2 banks, 4 counters/bank).
[    7.156059] perf/amd_iommu: Detected AMD IOMMU #3 (2 banks, 4 counters/bank).
[    7.166449] Initialise system trusted keyrings
[    7.170901] Key type blacklist registered
[    7.175024] workingset: timestamp_bits=36 max_order=26 bucket_order=0
[    7.181991] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    7.187981] fuse: init (API version 7.44)
[    7.192263] integrity: Platform Keyring initialized
[    7.208993] Key type asymmetric registered
[    7.213092] Asymmetric key parser 'x509' registered
[    7.218005] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    7.225515] io scheduler mq-deadline registered
[    7.232537] ledtrig-cpu: registered to indicate activity on CPUs
[    7.238842] pcieport 0000:00:03.2: PME: Signaling with IRQ 38
[    7.244989] pcieport 0000:00:07.1: PME: Signaling with IRQ 40
[    7.250971] pcieport 0000:00:08.1: PME: Signaling with IRQ 41
[    7.256962] pcieport 0000:40:03.1: PME: Signaling with IRQ 42
[    7.262773] pcieport 0000:40:03.1: pciehp: Slot #167 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.276812] pcieport 0000:40:03.2: PME: Signaling with IRQ 43
[    7.282612] pcieport 0000:40:03.2: pciehp: Slot #166 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.296615] pcieport 0000:40:03.3: PME: Signaling with IRQ 44
[    7.302416] pcieport 0000:40:03.3: pciehp: Slot #169 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.316417] pcieport 0000:40:03.4: PME: Signaling with IRQ 45
[    7.322219] pcieport 0000:40:03.4: pciehp: Slot #168 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.336338] pcieport 0000:40:07.1: PME: Signaling with IRQ 47
[    7.342299] pcieport 0000:40:08.1: PME: Signaling with IRQ 48
[    7.348411] pcieport 0000:80:01.1: PME: Signaling with IRQ 49
[    7.354219] pcieport 0000:80:01.1: pciehp: Slot #160 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.368230] pcieport 0000:80:01.2: PME: Signaling with IRQ 50
[    7.374034] pcieport 0000:80:01.2: pciehp: Slot #161 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.388168] pcieport 0000:80:07.1: PME: Signaling with IRQ 52
[    7.394203] pcieport 0000:80:08.1: PME: Signaling with IRQ 54
[    7.400220] pcieport 0000:80:08.2: PME: Signaling with IRQ 55
[    7.406161] pcieport 0000:c0:03.1: PME: Signaling with IRQ 56
[    7.411969] pcieport 0000:c0:03.1: pciehp: Slot #163 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.425937] pcieport 0000:c0:03.2: PME: Signaling with IRQ 57
[    7.431734] pcieport 0000:c0:03.2: pciehp: Slot #162 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.445700] pcieport 0000:c0:03.3: PME: Signaling with IRQ 58
[    7.451505] pcieport 0000:c0:03.3: pciehp: Slot #165 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.465475] pcieport 0000:c0:03.4: PME: Signaling with IRQ 59
[    7.471269] pcieport 0000:c0:03.4: pciehp: Slot #164 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.485247] pcieport 0000:c0:05.1: PME: Signaling with IRQ 60
[    7.491172] pcieport 0000:c0:05.2: PME: Signaling with IRQ 61
[    7.497204] pcieport 0000:c0:07.1: PME: Signaling with IRQ 63
[    7.503228] pcieport 0000:c0:08.1: PME: Signaling with IRQ 65
[    7.509714] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    7.517193] ACPI: button: Power Button [PWRF]
[    7.961559] Estimated ratio of average max frequency by base frequency (times 1024): 1464
[    7.970060] ERST: Error Record Serialization Table (ERST) support is initialized.
[    7.977569] pstore: Using crash dump compression: deflate
[    7.982971] pstore: Registered erst as persistent store backend
[    7.989041] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    7.995611] 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    8.003758] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    8.014864] Linux agpgart interface v0.103
[    8.045344] loop: module loaded
[    8.059771] ahci 0000:85:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[    8.067781] ahci 0000:85:00.0: 8/8 ports implemented (port mask 0xff)
[    8.074236] ahci 0000:85:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part sxs 
[    8.084538] scsi host0: ahci
[    8.087665] scsi host1: ahci
[    8.090783] scsi host2: ahci
[    8.093888] scsi host3: ahci
[    8.096995] scsi host4: ahci
[    8.100090] scsi host5: ahci
[    8.103182] scsi host6: ahci
[    8.106283] scsi host7: ahci
[    8.109240] ata1: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800100 irq 67 lpm-pol 0 ext
[    8.117849] ata2: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800180 irq 68 lpm-pol 0 ext
[    8.126451] ata3: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800200 irq 69 lpm-pol 0 ext
[    8.135060] ata4: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800280 irq 70 lpm-pol 0 ext
[    8.143669] ata5: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800300 irq 71 lpm-pol 0 ext
[    8.152281] ata6: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800380 irq 72 lpm-pol 0 ext
[    8.160886] ata7: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800400 irq 73 lpm-pol 0 ext
[    8.169494] ata8: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800480 irq 74 lpm-pol 0 ext
[    8.178447] tun: Universal TUN/TAP device driver, 1.6
[    8.183591] PPP generic driver version 2.4.2
[    8.187876] tsc: Refined TSC clocksource calibration: 1996.250 MHz
[    8.194107] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398caf77d7a, max_idle_ns: 881590459467 ns
[    8.194275] VFIO - User Level meta-driver version: 0.3
[    8.209283] clocksource: Switched to clocksource tsc
[    8.209602] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.219490] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 1
[    8.226991] xhci_hcd 0000:03:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.236559] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.241794] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 2
[    8.249192] xhci_hcd 0000:03:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.256292] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.264560] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.271779] usb usb1: Product: xHCI Host Controller
[    8.276658] usb usb1: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.285647] usb usb1: SerialNumber: 0000:03:00.3
[    8.290452] hub 1-0:1.0: USB hub found
[    8.294215] hub 1-0:1.0: 2 ports detected
[    8.299073] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.307197] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.315463] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.322691] usb usb2: Product: xHCI Host Controller
[    8.327572] usb usb2: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.336524] usb usb2: SerialNumber: 0000:03:00.3
[    8.341283] hub 2-0:1.0: USB hub found
[    8.345051] hub 2-0:1.0: 2 ports detected
[    8.349971] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.355207] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 3
[    8.362695] xhci_hcd 0000:46:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.372207] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.377440] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 4
[    8.384834] xhci_hcd 0000:46:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.391925] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.400188] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.407406] usb usb3: Product: xHCI Host Controller
[    8.412287] usb usb3: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.421241] usb usb3: SerialNumber: 0000:46:00.3
[    8.426010] hub 3-0:1.0: USB hub found
[    8.429776] hub 3-0:1.0: 2 ports detected
[    8.434577] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.442690] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.450950] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.458176] usb usb4: Product: xHCI Host Controller
[    8.463056] usb usb4: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.472009] usb usb4: SerialNumber: 0000:46:00.3
[    8.476764] hub 4-0:1.0: USB hub found
[    8.480524] hub 4-0:1.0: 2 ports detected
[    8.485589] usbcore: registered new interface driver uas
[    8.486589] ata5: SATA link down (SStatus 0 SControl 300)
[    8.490937] usbcore: registered new interface driver usb-storage
[    8.496331] ata7: SATA link down (SStatus 0 SControl 300)
[    8.502342] i8042: PNP: No PS/2 controller found.
[    8.507734] ata8: SATA link down (SStatus 0 SControl 300)
[    8.512507] mousedev: PS/2 mouse device common for all mice
[    8.517838] ata3: SATA link down (SStatus 0 SControl 300)
[    8.523502] rtc_cmos 00:02: RTC can wake from S4
[    8.528813] ata4: SATA link down (SStatus 0 SControl 300)
[    8.533766] rtc_cmos 00:02: registered as rtc0
[    8.538831] ata2: SATA link down (SStatus 0 SControl 300)
[    8.543329] rtc_cmos 00:02: setting system clock to 2025-06-17T12:23:06 UTC (1750162986)
[    8.544255] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[    8.548676] ata1: SATA link down (SStatus 0 SControl 300)
[    8.556775] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram
[    8.563287] ata6: SATA link down (SStatus 0 SControl 300)
[    8.568671] i2c_dev: i2c /dev entries driver
[    8.585049] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    8.597248] device-mapper: uevent: version 1.0.3
[    8.601959] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists•linux.dev
[    8.610832] amd_pstate: driver load is disabled, boot with specific mode to enable this
[    8.618875] efifb: probing for efifb
[    8.622468] efifb: No BGRT, not showing boot graphics
[    8.627526] efifb: framebuffer at 0xc6000000, using 3072k, total 3072k
[    8.634050] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    8.640057] efifb: scrolling: redraw
[    8.643633] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    8.649259] fbcon: Deferring console take-over
[    8.653706] fb0: EFI VGA frame buffer device
[    8.658083] drop_monitor: Initializing network drop monitor service
[    8.664516] NET: Registered PF_INET6 protocol family
[    8.676479] Segment Routing with IPv6
[    8.680156] In-situ OAM (IOAM) with IPv6
[    8.680255] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[    8.683141] usb 1-1: New USB device found, idVendor=0424, idProduct=2744, bcdDevice= 1.21
[    8.683144] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    8.683146] usb 1-1: Product: USB2734
[    8.683148] usb 1-1: Manufacturer: Microchip Tech
[    8.684104] NET: Registered PF_PACKET protocol family
[    8.719414] Key type dns_resolver registered
[    8.735569] x86/amd: Previous system reset reason [0x00080800]: software wrote 0x6 to reset control register 0xCF9
[    8.736718] hub 1-1:1.0: USB hub found
[    8.745928] microcode: Current revision: 0x0a0011d5
[    8.750019] hub 1-1:1.0: 4 ports detected
[    8.754548] microcode: Updated early from: 0x0a0011d5
[    8.766617] resctrl: L3 allocation detected
[    8.770809] resctrl: MB allocation detected
[    8.774993] resctrl: L3 monitoring detected
[    8.779342] IPI shorthand broadcast: enabled
[    8.787322] sched_clock: Marking stable (8720001289, 64235896)->(9551235563, -766998378)
[    8.796004] registered taskstats version 1
[    8.802419] Loading compiled-in X.509 certificates
[    8.807753] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.808562] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
[    8.824233] Demotion targets for Node 0: null
[    8.825203] usb 3-1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    8.828603] Demotion targets for Node 1: null
[    8.836776] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.840635] usb 2-1: New USB device found, idVendor=0424, idProduct=5744, bcdDevice= 1.21
[    8.840639] usb 2-1: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[    8.840642] usb 2-1: Product: USB5734
[    8.840644] usb 2-1: Manufacturer: Microchip Tech
[    8.841618] Key type .fscrypt registered
[    8.864633] hub 2-1:1.0: USB hub found
[    8.867254] Key type fscrypt-provisioning registered
[    8.871995] hub 2-1:1.0: 4 ports detected
[    8.892358] Key type encrypted registered
[    8.896377] AppArmor: AppArmor sha256 policy hashing enabled
[    8.902120] integrity: Loading X.509 certificate: UEFI:db
[    8.904395] hub 3-1:1.0: USB hub found
[    8.907542] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    8.911455] hub 3-1:1.0: 4 ports detected
[    8.922044] integrity: Loading X.509 certificate: UEFI:db
[    8.922061] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    8.922063] integrity: Loading X.509 certificate: UEFI:db
[    8.922161] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    8.956771] integrity: Loading X.509 certificate: UEFI:db
[    8.962303] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    8.973866] ima: No TPM chip found, activating TPM-bypass!
[    8.979358] Loading compiled-in module X.509 certificates
[    8.985169] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.995076] ima: Allocated hash algorithm: sha1
[    8.999614] ima: No architecture policies found
[    9.004165] evm: Initialising EVM extended attributes:
[    9.009306] evm: security.selinux
[    9.012627] evm: security.SMACK64
[    9.015943] evm: security.SMACK64EXEC
[    9.019721] evm: security.SMACK64TRANSMUTE
[    9.023823] evm: security.SMACK64MMAP
[    9.027488] evm: security.apparmor
[    9.030893] evm: security.ima
[    9.033867] evm: security.capability
[    9.037448] evm: HMAC attrs: 0x1
[    9.041053] PM:   Magic number: 13:372:380
[    9.045277] acpi ACPI0007:30: hash matches
[    9.049432] processor cpu109: hash matches
[    9.053947] RAS: Correctable Errors collector initialized.
[    9.059581] clk: Disabling unused clocks
[    9.063511] PM: genpd: Disabling unused power domains
[    9.070279] Freeing unused decrypted memory: 2028K
[    9.075825] Freeing unused kernel image (initmem) memory: 4760K
[    9.081761] Write protecting the kernel read-only data: 26624k
[    9.088030] Freeing unused kernel image (text/rodata gap) memory: 28K
[    9.094648] Freeing unused kernel image (rodata/data gap) memory: 248K
[    9.188011] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    9.194454] Run /init as init process
[    9.204857] systemd[1]: Inserted module 'autofs4'
[    9.431328] systemd[1]: systemd 252-46.el9_5.3 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)
[    9.463782] systemd[1]: Detected architecture x86-64.
[    9.468842] systemd[1]: Running in initrd.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow) dracut-057-80.git20250411.el9_5 (Initramfs)^[[0m!

[    9.492340] systemd[1]: Hostname set to <sharavati.amd.com>.
[    9.612974] systemd[1]: Queued start job for default target Initrd Default Target.
[    9.620662] systemd[1]: Reached target Initrd /usr File System.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd /usr File System^[[0m.
[    9.636310] systemd[1]: Reached target Local File Systems.
[^[[0;32m  OK  ^[[0m] Reached targ[    9.644257] usb 3-1.1: new high-speed USB device number 3 using xhci_hcd
et ^[[0;1;39mLocal File Systems^[[0m.
[    9.660313] systemd[1]: Reached target Slice Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSlice Units^[[0m.
[    9.676298] systemd[1]: Reached target Swaps.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwaps^[[0m.
[    9.692302] systemd[1]: Reached target Timer Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[    9.708425] systemd[1]: Listening on D-Bus System Message Bus Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[    9.728452] systemd[1]: Listening on Journal Socket (/dev/log).
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJourna[    9.737206] usb 3-1.1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
l Socket (/dev/l[    9.746912] usb 3-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
og)^[[0m.
[    9.760452] systemd[1]: Listening on Journal Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket^[[0m.
[    9.776461] systemd[1]: Listening on udev Control Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[    9.792398] systemd[1]: Listening on udev Kernel Socket.
[^[[0;32m  OK  ^[[0m] Listening on[    9.800417] hub 3-1.1:1.0: USB hub found
 ^[[0;1;39mudev K[    9.804706] hub 3-1.1:1.0: 4 ports detected
ernel Socket^[[0m.
[    9.816304] systemd[1]: Reached target Socket Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
[    9.858003] systemd[1]: Starting Create List of Static Device Nodes...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
[    9.878735] systemd[1]: Starting Journal Service...
         Startin[    9.884255] usb 3-1.4: new high-speed USB device number 4 using xhci_hcd
g ^[[0;1;39mJournal Service^[[0m...
[    9.901634] systemd[1]: Starting Load Kernel Modules...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
[    9.917332] systemd[1]: Starting Create System Users...
         Starting ^[[0;1;39mCreate System Users^[[0m...
[    9.933567] systemd[1]: Starting Setup Virtual Console...
         Starting ^[[0;1;39mSetup Virtual Console^[[0m...
[    9.949501] systemd[1]: Finished Create List of Static Device Nodes.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[    9.972437] systemd[1]: Started Journal Service.
[^[[0;32m  OK  ^[[[    9.977206] usb 3-1.4: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
0m] Started ^[[0;[    9.986904] usb 3-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSetup Virt[   10.024406] hub 3-1.4:1.0: USB hub found
ual Console^[[0m.[   10.029080] hub 3-1.4:1.0: 4 ports detected

         Starting ^[[0;1;39mdracut cmdline hook^[[0m...
         Starting ^[[0;1;39mApply Kernel Variables^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate System Users^[[0m.
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut cmdline hook^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Starting ^[[0;1;39mdracut pre-udev hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-udev hook^[[0m.
         Starting ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[   10.576978] wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQBC data block query control method not found
[^[[0;32m  OK  ^[[0m] Finished ^[[0[   10.588323] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
;1;39mColdplug A[   10.588955] ccp 0000:46:00.1: no command queues available
ll udev Devices^[[   10.595094] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[0m.
[   10.601932] ccp 0000:46:00.1: sev enabled
[   10.610473] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[   10.614819] ccp 0000:46:00.1: psp enabled
[   10.620515] tg3 0000:c1:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:90
[   10.636516] tg3 0000:c1:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.636520] tg3 0000:c1:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.636524] tg3 0000:c1:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[^[[0;32m  OK  ^[[[   10.661884] mpt3sas version 52.100.00.00 loaded
0m] Reached targ[   10.662696] ACPI: bus type drm_connector registered
et ^[[0;1;39mSyst[   10.667412] mpt3sas_cm0: 63 BIT PCI BUS DMA ADDRESSING SUPPORTED, total mem (262592976 kB)
em Initialization^[[0m.
[   10.688906] mgag200 0000:c3:00.0: vgaarb: deactivate vga console
[^[[0;32m  OK  ^[[[   10.695922] tg3 0000:c1:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:91
0m] Reached targ[   10.706961] tg3 0000:c1:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
et ^[[0;1;39mNetw[   10.718176] tg3 0000:c1:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.718179] tg3 0000:c1:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
ork^[[0m.
[   10.724289] [drm] Initialized mgag200 1.0.0 for 0000:c3:00.0 on minor 0
[   10.730799] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   10.749560] fbcon: mgag200drmfb (fb0) is primary device
[   10.749563] fbcon: Deferring console take-over
[   10.749565] mpt3sas_cm0: MSI-X vectors supported: 96
[   10.754794] mgag200 0000:c3:00.0: [drm] fb0: mgag200drmfb frame buffer device
[   10.759237] 	 no of cores: 128, max_msix_vectors: -1
[   10.776300] mpt3sas_cm0:  0 96 96
[   10.783500] mpt3sas_cm0: High IOPs queues : disabled
[   10.788470] mpt3sas0-msix0: PCI-MSI-X enabled: IRQ 108
[   10.793609] mpt3sas0-msix1: PCI-MSI-X enabled: IRQ 109
[   10.798748] mpt3sas0-msix2: PCI-MSI-X enabled: IRQ 110
[   10.803887] mpt3sas0-msix3: PCI-MSI-X enabled: IRQ 111
[   10.809026] mpt3sas0-msix4: PCI-MSI-X enabled: IRQ 112
[   10.814164] mpt3sas0-msix5: PCI-MSI-X enabled: IRQ 113
[   10.819305] mpt3sas0-msix6: PCI-MSI-X enabled: IRQ 114
[   10.824444] mpt3sas0-msix7: PCI-MSI-X enabled: IRQ 115
[   10.829581] mpt3sas0-msix8: PCI-MSI-X enabled: IRQ 116
[   10.834721] mpt3sas0-msix9: PCI-MSI-X enabled: IRQ 117
[   10.839860] mpt3sas0-msix10: PCI-MSI-X enabled: IRQ 118
[   10.845087] mpt3sas0-msix11: PCI-MSI-X enabled: IRQ 119
[   10.850311] mpt3sas0-msix12: PCI-MSI-X enabled: IRQ 120
[   10.855540] mpt3sas0-msix13: PCI-MSI-X enabled: IRQ 121
[   10.860765] mpt3sas0-msix14: PCI-MSI-X enabled: IRQ 122
[   10.865988] mpt3sas0-msix15: PCI-MSI-X enabled: IRQ 123
[   10.871216] mpt3sas0-msix16: PCI-MSI-X enabled: IRQ 124
[   10.876443] mpt3sas0-msix17: PCI-MSI-X enabled: IRQ 125
[   10.881666] mpt3sas0-msix18: PCI-MSI-X enabled: IRQ 126
[   10.886894] mpt3sas0-msix19: PCI-MSI-X enabled: IRQ 127
[   10.892121] mpt3sas0-msix20: PCI-MSI-X enabled: IRQ 128
[   10.897351] mpt3sas0-msix21: PCI-MSI-X enabled: IRQ 129
[   10.902581] mpt3sas0-msix22: PCI-MSI-X enabled: IRQ 130
[   10.907806] mpt3sas0-msix23: PCI-MSI-X enabled: IRQ 131
[   10.913033] mpt3sas0-msix24: PCI-MSI-X enabled: IRQ 132
[   10.918257] mpt3sas0-msix25: PCI-MSI-X enabled: IRQ 133
[   10.923484] mpt3sas0-msix26: PCI-MSI-X enabled: IRQ 134
[   10.928710] mpt3sas0-msix27: PCI-MSI-X enabled: IRQ 135
[   10.933934] mpt3sas0-msix28: PCI-MSI-X enabled: IRQ 136
[   10.939160] mpt3sas0-msix29: PCI-MSI-X enabled: IRQ 137
[   10.944387] mpt3sas0-msix30: PCI-MSI-X enabled: IRQ 138
[   10.949610] mpt3sas0-msix31: PCI-MSI-X enabled: IRQ 139
[   10.954838] mpt3sas0-msix32: PCI-MSI-X enabled: IRQ 140
[   10.960063] mpt3sas0-msix33: PCI-MSI-X enabled: IRQ 141
[   10.965288] mpt3sas0-msix34: PCI-MSI-X enabled: IRQ 142
[   10.970517] mpt3sas0-msix35: PCI-MSI-X enabled: IRQ 143
[   10.975742] mpt3sas0-msix36: PCI-MSI-X enabled: IRQ 144
[   10.980970] mpt3sas0-msix37: PCI-MSI-X enabled: IRQ 145
[   10.986193] mpt3sas0-msix38: PCI-MSI-X enabled: IRQ 146
[   10.991418] mpt3sas0-msix39: PCI-MSI-X enabled: IRQ 147
[   10.996647] mpt3sas0-msix40: PCI-MSI-X enabled: IRQ 148
[   11.001871] mpt3sas0-msix41: PCI-MSI-X enabled: IRQ 149
[   11.007112] mpt3sas0-msix42: PCI-MSI-X enabled: IRQ 150
[   11.007114] mpt3sas0-msix43: PCI-MSI-X enabled: IRQ 151
[   11.007115] mpt3sas0-msix44: PCI-MSI-X enabled: IRQ 152
[   11.007116] mpt3sas0-msix45: PCI-MSI-X enabled: IRQ 153
[   11.007117] mpt3sas0-msix46: PCI-MSI-X enabled: IRQ 154
[   11.007119] mpt3sas0-msix47: PCI-MSI-X enabled: IRQ 155
         Startin[   11.007120] mpt3sas0-msix48: PCI-MSI-X enabled: IRQ 156
[   11.045081] mpt3sas0-msix49: PCI-MSI-X enabled: IRQ 157
g ^[[0;1;39mdracu[   11.050307] mpt3sas0-msix50: PCI-MSI-X enabled: IRQ 158
t initqueue hook[   11.056911] mpt3sas0-msix51: PCI-MSI-X enabled: IRQ 159
^[[0m...
[   11.063524] mpt3sas0-msix52: PCI-MSI-X enabled: IRQ 160
[   11.069532] mpt3sas0-msix53: PCI-MSI-X enabled: IRQ 161
[   11.074759] mpt3sas0-msix54: PCI-MSI-X enabled: IRQ 162
[   11.074760] mpt3sas0-msix55: PCI-MSI-X enabled: IRQ 163
[   11.074762] mpt3sas0-msix56: PCI-MSI-X enabled: IRQ 164
[   11.074763] mpt3sas0-msix57: PCI-MSI-X enabled: IRQ 165
[   11.074764] mpt3sas0-msix58: PCI-MSI-X enabled: IRQ 166
[   11.074766] mpt3sas0-msix59: PCI-MSI-X enabled: IRQ 167
[   11.074767] mpt3sas0-msix60: PCI-MSI-X enabled: IRQ 168
[   11.074769] mpt3sas0-msix61: PCI-MSI-X enabled: IRQ 169
[   11.116572] mpt3sas0-msix62: PCI-MSI-X enabled: IRQ 170
[   11.116574] mpt3sas0-msix63: PCI-MSI-X enabled: IRQ 171
[   11.116575] mpt3sas0-msix64: PCI-MSI-X enabled: IRQ 172
[   11.116577] mpt3sas0-msix65: PCI-MSI-X enabled: IRQ 173
[   11.116578] mpt3sas0-msix66: PCI-MSI-X enabled: IRQ 174
[   11.116580] mpt3sas0-msix67: PCI-MSI-X enabled: IRQ 175
[   11.116581] mpt3sas0-msix68: PCI-MSI-X enabled: IRQ 176
[   11.116583] mpt3sas0-msix69: PCI-MSI-X enabled: IRQ 177
         Startin[   11.158386] mpt3sas0-msix70: PCI-MSI-X enabled: IRQ 178
g ^[[0;1;39mShow [   11.164995] mpt3sas0-msix71: PCI-MSI-X enabled: IRQ 179
Plymouth Boot Sc[   11.164996] mpt3sas0-msix72: PCI-MSI-X enabled: IRQ 180
reen^[[0m...
[   11.164998] mpt3sas0-msix73: PCI-MSI-X enabled: IRQ 181
[   11.164999] mpt3sas0-msix74: PCI-MSI-X enabled: IRQ 182
[   11.165001] mpt3sas0-msix75: PCI-MSI-X enabled: IRQ 183
[   11.165002] mpt3sas0-msix76: PCI-MSI-X enabled: IRQ 184
[   11.165003] mpt3sas0-msix77: PCI-MSI-X enabled: IRQ 185
[   11.165005] mpt3sas0-msix78: PCI-MSI-X enabled: IRQ 186
[   11.165006] mpt3sas0-msix79: PCI-MSI-X enabled: IRQ 187
[   11.165007] mpt3sas0-msix80: PCI-MSI-X enabled: IRQ 188
[   11.165008] mpt3sas0-msix81: PCI-MSI-X enabled: IRQ 189
[   11.165010] mpt3sas0-msix82: PCI-MSI-X enabled: IRQ 190
[   11.165011] mpt3sas0-msix83: PCI-MSI-X enabled: IRQ 191
[   11.165012] mpt3sas0-msix84: PCI-MSI-X enabled: IRQ 192
[^[[0;32m  OK  ^[[[   11.165013] mpt3sas0-msix85: PCI-MSI-X enabled: IRQ 193
[   11.165015] mpt3sas0-msix86: PCI-MSI-X enabled: IRQ 194
0m] Started ^[[0;[   11.165016] mpt3sas0-msix87: PCI-MSI-X enabled: IRQ 195
[   11.165017] mpt3sas0-msix88: PCI-MSI-X enabled: IRQ 196
1;39mShow Plymou[   11.165018] mpt3sas0-msix89: PCI-MSI-X enabled: IRQ 197
[   11.165020] mpt3sas0-msix90: PCI-MSI-X enabled: IRQ 198
th Boot Screen^[[[   11.165021] mpt3sas0-msix91: PCI-MSI-X enabled: IRQ 199
[   11.165023] mpt3sas0-msix92: PCI-MSI-X enabled: IRQ 200
0m.
[   11.165024] mpt3sas0-msix93: PCI-MSI-X enabled: IRQ 201
[   11.165025] mpt3sas0-msix94: PCI-MSI-X enabled: IRQ 202
[   11.165026] mpt3sas0-msix95: PCI-MSI-X enabled: IRQ 203
[   11.165028] mpt3sas_cm0: iomem(0x00000000e2200000), mapped(0x00000000491d7402), size(65536)
[   11.165031] mpt3sas_cm0: ioport(0x0000000000001000), size(256)
[   11.218130] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   11.327912] mpt3sas_cm0: sending message unit reset !!
[   11.329423] mpt3sas_cm0: message unit reset: SUCCESS
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mForward Password Requests to Plymouth Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[[   11.352148] mpt3sas_cm0: scatter gather: sge_in_main_msg(1), sge_per_chain(7), sge_per_io(128), chains_per_io(19)
0m] Reached targ[   11.364798] mpt3sas_cm0: request pool(0x000000009ad00d0d) - dma(0xe0600000): depth(9700), frame_size(128), pool_size(1212 kB)
et ^[[0;1;39mBasic System^[[0m.
[   11.401589] mpt3sas_cm0: sense pool(0x000000001f085b40) - dma(0xdef00000): depth(9463), element_size(96), pool_size (887 kB)
[   11.412900] mpt3sas_cm0: reply pool(0x000000001dd887b0) - dma(0xdec00000): depth(9764), frame_size(128), pool_size(1220 kB)
[   11.424036] mpt3sas_cm0: config page(0x00000000a66220e9) - dma(0xdebee000): size(512)
[   11.431866] mpt3sas_cm0: Allocated physical memory: size(40437 kB)
[   11.438044] mpt3sas_cm0: Current Controller Queue Depth(9460),Max Controller Queue Depth(9584)
[   11.446649] mpt3sas_cm0: Scatter Gather Elements per IO(128)
[   11.498108] mpt3sas_cm0: _base_display_fwpkg_version: complete
[   11.503945] mpt3sas_cm0: FW Package Ver(16.17.01.00)
[   11.509205] mpt3sas_cm0: LSISAS3008: FWVersion(16.00.11.00), ChipRevision(0x02)
[   11.516512] mpt3sas_cm0: Protocol=(Initiator,Target), Capabilities=(TLR,EEDP,Snapshot Buffer,Diag Trace Buffer,Task Set Full,NCQ)
[   11.528241] scsi host8: Fusion MPT SAS Host
[   11.534265] mpt3sas_cm0: sending port enable !!
[   11.539223] mpt3sas_cm0: hba_port entry: 000000000dc9a400, port: 255 is added to hba_port list
[   11.548975] mpt3sas_cm0: host_add: handle(0x0001), sas_addr(0x52cea7f0be87bf00), phys(8)
[   11.557401] mpt3sas_cm0: handle(0xa) sas_address(0x4433221100000000) port_type(0x1)
[   11.566410] scsi 8:0:0:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.574503] scsi 8:0:0:0: SATA: handle(0x000a), sas_addr(0x4433221100000000), phy(0), device_name(0x500a075131911ad0)
[   11.585103] scsi 8:0:0:0: enclosure logical id (0x52cea7f0be87bf00), slot(1) 
[   11.592235] scsi 8:0:0:0: enclosure level(0x0001), connector name(     )
[   11.599015] scsi 8:0:0:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.607450] scsi 8:0:0:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.622327]  end_device-8:0: add: handle(0x000a), sas_addr(0x4433221100000000)
[   11.629801] mpt3sas_cm0: handle(0xc) sas_address(0x58ce38ee219651a2) port_type(0x1)
[   11.638416] scsi 8:0:1:0: Direct-Access     KIOXIA   KPM6WVUG960G     BD08 PQ: 0 ANSI: 6
[   11.646506] scsi 8:0:1:0: SSP: handle(0x000c), sas_addr(0x58ce38ee219651a2), phy(4), device_name(0x58ce38ee219651a0)
[   11.657018] scsi 8:0:1:0: enclosure logical id (0x52cea7f0be87bf00), slot(0) 
[   11.664148] scsi 8:0:1:0: enclosure level(0x0001), connector name(     )
[   11.670872] scsi 8:0:1:0: qdepth(254), tagged(1), scsi_level(7), cmd_que(1)
[   11.679621]  end_device-8:1: add: handle(0x000c), sas_addr(0x58ce38ee219651a2)
[   11.686989] mpt3sas_cm0: handle(0xb) sas_address(0x4433221106000000) port_type(0x1)
[   11.695781] scsi 8:0:2:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.703877] scsi 8:0:2:0: SATA: handle(0x000b), sas_addr(0x4433221106000000), phy(6), device_name(0x500a075131911a6f)
[   11.714474] scsi 8:0:2:0: enclosure logical id (0x52cea7f0be87bf00), slot(2) 
[   11.721606] scsi 8:0:2:0: enclosure level(0x0001), connector name(     )
[   11.728378] scsi 8:0:2:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.736816] scsi 8:0:2:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.751713]  end_device-8:2: add: handle(0x000b), sas_addr(0x4433221106000000)
[   11.760251] mpt3sas_cm0: port enable: SUCCESS
[   11.764912] sd 8:0:0:0: Attached scsi generic sg0 type 0
[   11.765472] sd 8:0:0:0: [sda] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.770490] scsi 8:0:1:0: Attached scsi generic sg1 type 0
[   11.770773] sd 8:0:1:0: [sdb] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.770778] sd 8:0:1:0: [sdb] 4096-byte physical blocks
[   11.770964] sd 8:0:1:0: [sdb] Write Protect is off
[   11.771182] sd 8:0:1:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   11.777806] sd 8:0:0:0: [sda] 4096-byte physical blocks
[   11.779826] sd 8:0:0:0: [sda] Write Protect is off
[   11.783495] scsi 8:0:2:0: Attached scsi generic sg2 type 0
[   11.796103] sd 8:0:2:0: [sdc] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.801612] sd 8:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.810017] sd 8:0:2:0: [sdc] 4096-byte physical blocks
[   11.815268] sd 8:0:2:0: [sdc] Write Protect is off
[   11.852376] sd 8:0:2:0: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.857329]  sdb: sdb1 sdb2
[   11.863851] sd 8:0:1:0: [sdb] Attached SCSI disk
[   11.934179]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7
[   11.939559] sd 8:0:0:0: [sda] Attached SCSI disk
[   11.950405]  sdc: sdc1 sdc2
[   11.953333] sd 8:0:2:0: [sdc] Attached SCSI disk
[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39m/dev/mapper/rhel_sharavati-root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut initqueue hook^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m.
         Mounting ^[[0;1;39m/sysroot^[[0m...
[   12.670346] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled
[   12.680969] XFS (dm-1): Mounting V5 Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[   12.705610] XFS (dm-1): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/sysroot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root File System^[[0m.
         Starting ^[[0;1;39mMountpoints Configured in the Real Root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMountpoints Configured in the Real Root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Default Target^[[0m.
         Starting ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
         Starting ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Default Target^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd /usr File System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut initqueue hook^[[0m.
         Starting ^[[0;1;39mPlymouth switch root service^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stoppe[   12.985933] systemd-journald[1089]: Received SIGTERM from PID 1 (systemd).
d ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mColdplug All udev Devices^[[0m.
         Stopping ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Kernel Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-udev hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut cmdline hook^[[0m.
         Starting ^[[0;1;39mCleanup udev Database^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate System Users^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleanup udev Database^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwitch Root^[[0m.
         Starting ^[[0;1;39mSwitch Root^[[0m...\r\r[   13.099570] systemd[1]: RTC configured in localtime, applying delta of 330 minutes to system time.

[   13.125451] systemd[1]: systemd 252-46.el9_5.3 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)
[   13.157915] systemd[1]: Detected architecture x86-64.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow)^[[0m!

[   13.239622] systemd-rc-local-generator[1710]: /etc/rc.d/rc.local is not marked executable, skipping.
[   13.484630] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[   13.491955] systemd[1]: Stopped Switch Root.
[^[[0;32m  OK  ^[[[   13.496597] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
0m] Stopped ^[[0;[   13.507459] systemd[1]: Created slice Virtual Machine and Container Slice.
1;39mSwitch Root[   13.515721] systemd[1]: Created slice Slice /system/getty.
^[[0m.
[^[[0;32m[   13.522525] systemd[1]: Created slice Slice /system/modprobe.
  OK  ^[[0m] Crea[   13.529649] systemd[1]: Created slice Slice /system/serial-getty.
ted slice ^[[0;1;[   13.537132] systemd[1]: Created slice Slice /system/sshd-keygen.
39mVirtual Machi[   13.544768] systemd[1]: Created slice Slice /system/systemd-fsck.
ne and Container[   13.551869] systemd[1]: Created slice User and Session Slice.
 Slice^[[0m.
[^[[   13.558460] systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
[0;32m  OK  ^[[0m[   13.574785] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
] Created slice [   13.583868] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
^[[0;1;39mSlice /[   13.594515] systemd[1]: Reached target Local Encrypted Volumes.
system/getty^[[0m[   13.601810] systemd[1]: Stopped target Switch Root.
.
[^[[0;32m  OK[   13.608071] systemd[1]: Stopped target Initrd File Systems.
  ^[[0m] Created [   13.615022] systemd[1]: Stopped target Initrd Root File System.
slice ^[[0;1;39mS[   13.622332] systemd[1]: Reached target Local Integrity Protected Volumes.
lice /system/mod[   13.630516] systemd[1]: Reached target Path Units.
probe^[[0m.
[^[[[   13.636697] systemd[1]: Reached target Slice Units.
0;32m  OK  ^[[0m][   13.642960] systemd[1]: Reached target Local Verity Protected Volumes.
 Created slice ^[[   13.650924] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[0;1;39mSlice /s[   13.659013] systemd[1]: Listening on LVM2 poll daemon socket.
ystem/serial-get[   13.665951] systemd[1]: multipathd control socket was skipped because of an unmet condition check (ConditionPathExists=/etc/multipath.conf).
ty^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/sshd-keygen^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Se[   13.708975] systemd[1]: Listening on RPCbind Server Activation Socket.
t up automount ^[[   13.716985] systemd[1]: Reached target RPC Port Mapper.
[0;1;39mArbitrar[   13.724763] systemd[1]: Listening on Process Core Dump Socket.
y Executa…orma[   13.730822] systemd[1]: Listening on initctl Compatibility Named Pipe.
ts File System A[   13.739669] systemd[1]: Listening on udev Control Socket.
utomount Point^[[[   13.745583] systemd[1]: Listening on udev Kernel Socket.
0m.
[^[[0;32m  OK  ^[[0m] Reache[   13.753630] systemd[1]: Activating swap /dev/mapper/rhel_sharavati-swap...
d target ^[[0;1;3[   13.758654] Adding 7815164k swap on /dev/mapper/rhel_sharavati-swap.  Priority:-2 extents:1 across:7815164k SS
9mLocal Encrypted Volumes^[[0m.\r\r[   13.774789] systemd[1]: Mounting Huge Pages File System...

[^[[0;32m  OK  ^[[   13.782724] systemd[1]: Mounting POSIX Message Queue File System...
[0m] Stopped tar[   13.790376] systemd[1]: Mounting Kernel Debug File System...
get ^[[0;1;39mSwitch Root^[[0m.
[   13.797476] systemd[1]: Mounting Kernel Trace File System...
[^[[0;32m  OK  ^[[[   13.804674] systemd[1]: Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
0m] Stopped targ[   13.819526] systemd[1]: iscsi-starter.service was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes).
et ^[[0;1;39mInitrd File Systems^[[   13.834909] systemd[1]: Starting Create List of Static Device Nodes...
[0m.
[^[[0;32m  OK  ^[[0m] Stopp[   13.844367] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
ed target ^[[0;1;[   13.856998] systemd[1]: Starting Load Kernel Module configfs...
39mInitrd Root F[   13.864271] systemd[1]: Starting Load Kernel Module drm...
ile System^[[0m.\r[   13.871113] systemd[1]: Starting Load Kernel Module fuse...

[^[[0;32m  OK  ^[[0m] Reached ta[   13.878879] systemd[1]: Starting Read and set NIS domainname from /etc/sysconfig/network...
rget ^[[0;1;39mLo[   13.888123] systemd[1]: plymouth-switch-root.service: Deactivated successfully.
cal Integrity Pr[   13.896785] systemd[1]: Stopped Plymouth switch root service.
otected Volumes^[[   13.904038] systemd[1]: systemd-fsck-root.service: Deactivated successfully.
[0m.
[^[[0;32m [   13.912339] systemd[1]: Stopped File System Check on Root Device.
 OK  ^[[0m] Reach[   13.919874] systemd[1]: Stopped Journal Service.
ed target ^[[0;1;39mPath Units^[[0[   13.928101] systemd[1]: Starting Journal Service...
m.
[^[[0;32m  OK  ^[[0m] Reached[   13.935456] systemd[1]: Starting Load Kernel Modules...
 target ^[[0;1;39[   13.940224] systemd-journald[1740]: File /run/log/journal/8f37f8055146469d8baec3ad508b0084/system.journal corrupted or uncleanly shut down, renaming and replacing.
mSlice Units^[[0m.
[^[[0;32m  OK[   13.958804] systemd[1]: Starting Generate network units from Kernel command line...
  ^[[0m] Reached [   13.967919] systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
target ^[[0;1;39mLocal Verity Pro[   13.989092] systemd[1]: Starting Remount Root and Kernel File Systems...
tected Volumes^[[[   13.997295] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
0m.
[^[[0;32m  OK  ^[[0m] Listen[   14.009612] systemd[1]: Starting Coldplug All udev Devices...
ing on ^[[0;1;39mDevice-mapper event daemon FIFOs[   14.019699] systemd[1]: Activated swap /dev/mapper/rhel_sharavati-swap.
^[[0m.
[^[[0;32m[   14.027873] systemd[1]: Started Journal Service.
  OK  ^[[0m] Listening on ^[[0;1;39mLVM2 poll daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mRPCbind Server Activation Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mR[   14.048651] systemd-journald[1740]: Received client request to flush runtime journal.
PC Port Mapper^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mProcess Core Dump Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39minitctl Compatibility Named Pipe^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
         Activating swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m...
         Mounting ^[[0;1;39mHuge Pages File System^[[0m...
         Mounting ^[[0;1;39mPOSIX Message Queue File System^[[0m...
         Mounting ^[[0;1;39mKernel Debug File System^[[0m...
         Mounting ^[[0;1;39mKernel Trace File System^[[0m...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
         Starting ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module drm^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mJournal Service^[[0m.
         Starting ^[[0;1;39mJournal Service^[[0m...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
         Starting ^[[0;1;39mGenerate network units from Kernel command line^[[0m...
         Starting ^[[0;1;39mRemount Root and Kernel File Systems^[[0m...
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[^[[0;32m  OK  ^[[0m] Activated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mHuge Pages File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mPOSIX Message Queue File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Debug File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Trace File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMonitoring of LVM2 mirror…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module drm^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[   14.277469] IPMI message handler: version 39.2
[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel [   14.285889] ipmi device interface
Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mGenerate network units from Kernel command line^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRemount Root and Kernel File Systems^[[0m.
[^[[0;32m  OK  ^[[0m[   14.307255] ipmi_si: IPMI System Interface driver
] Reached target[   14.308188] pstore: backend 'erst' already in use: ignoring 'efi_pstore'
 ^[[0;1;39mSwaps^[[   14.310126] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[0m.
         [   14.310130] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
[   14.311121] input: PC Speaker as /devices/platform/pcspkr/input/input1
Mounting ^[[0;1;3[   14.312090] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
9mFUSE Control F[   14.312093] RAPL PMU: hw unit of domain package 2^-16 Joules
ile System^[[0m..[   14.312095] RAPL PMU: hw unit of domain core 2^-16 Joules
.
         Mou[   14.312877] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
nting ^[[0;1;39mK[   14.314657] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
ernel Configurat[   14.315309] i2c i2c-3: Successfully instantiated SPD at 0x50
ion File System^[[   14.315869] i2c i2c-3: Successfully instantiated SPD at 0x51
[0m...
       [   14.316320] i2c i2c-3: Successfully instantiated SPD at 0x52
  Starting ^[[0;1[   14.316890] i2c i2c-3: Successfully instantiated SPD at 0x53
;39mFlush Journa[   14.317478] i2c i2c-3: Successfully instantiated SPD at 0x54
l to Persistent [   14.318050] i2c i2c-3: Successfully instantiated SPD at 0x55
Storage^[[0m...\r\r[   14.319931] i2c i2c-3: Successfully instantiated SPD at 0x56

         Starti[   14.320297] i2c i2c-3: Successfully instantiated SPD at 0x57
ng ^[[0;1;39mLoad[   14.441017] ipmi_platform: ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 10
/Save OS Random [   14.441034] ipmi_si: Adding SMBIOS-specified kcs state machine
Seed^[[0m...
  [   14.457031] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
       Starting [   14.464258] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca8] regsize 1 spacing 4 irq 10
^[[0;1;39mApply K[   14.473754] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
ernel Variables^[[   14.483604] ipmi_si: Adding ACPI-specified kcs state machine
[0m...
       [   14.483698] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 10
  Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mFUSE Control File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Configuration File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad/Save OS Random Seed[   14.524607] ee1004 3-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
^[[0m.
[^[[0;32m  OK  ^[[0m] Fini[   14.534041] ee1004 3-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
shed ^[[0;1;39mFlush Journal to P[   14.543686] ee1004 3-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
ersistent Storag[   14.552979] kvm_amd: TSC scaling supported
e^[[0m.
[^[[0;32[   14.553334] ee1004 3-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
m  OK  ^[[0m] Fin[   14.557160] kvm_amd: Nested Virtualization enabled
ished ^[[0;1;39mA[   14.567082] ee1004 3-0054: 512 byte EE1004-compliant SPD EEPROM, read-only
pply Kernel Vari[   14.571596] kvm_amd: Nested Paging enabled
ables^[[0m.
[^[[[   14.571598] kvm_amd: LBR virtualization supported
0;32m  OK  ^[[0m] Finished ^[[0;1;[   14.593142] ee1004 3-0055: 512 byte EE1004-compliant SPD EEPROM, read-only
39mCreate Static Device Nodes in[   14.602733] ee1004 3-0056: 512 byte EE1004-compliant SPD EEPROM, read-only
 /dev^[[0m.
         Starting ^[[   14.612330] ee1004 3-0057: 512 byte EE1004-compliant SPD EEPROM, read-only
[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mColdplug All udev Devices^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mLoad/Save RF Kill Switch Status /dev/rfkill Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39m/usr/sbin/lvm vgchange -aa…utoactivation event rhel_sharavati^[[0m.
[   14.920266] ipmi_si IPI0001:00: The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.
[   14.992333] ipmi_si IPI0001:00: Using irq 10
[   15.030240] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20)
[   15.106404] ipmi_si IPI0001:00: IPMI kcs interface initialized
[   15.114743] ipmi_ssif: IPMI SSIF Interface driver
[   15.132290] power_meter ACPI000D:00: Found ACPI power meter.
[^[[0m^[[0;31m*     ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;1;31m*^[[0m^[[0;31m*    ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*   ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
[   18.131703] ccp 0000:46:00.1: SEV-SNP API:1.55 build:22
[   18.185850] ccp 0000:46:00.1: SEV API:1.55 build:22
[   18.192598] kvm_amd: SEV enabled (ASIDs 101 - 509)
[   18.197398] kvm_amd: SEV-ES enabled (ASIDs 1 - 100)
[   18.202277] kvm_amd: SEV-SNP enabled (ASIDs 1 - 100)
[   18.207413] kvm_amd: Virtual VMLOAD VMSAVE supported
[   18.212385] kvm_amd: Virtual GIF supported
[   18.239986] EDAC MC0: Giving out device to module amd64_edac controller F19h: DEV 0000:00:18.3 (INTERRUPT)
[   18.249646] EDAC amd64: F19h detected (node 0).
[   18.254200] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.258924] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.263652] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.268369] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.273099] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.277816] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.282546] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.287263] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.291990] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.296710] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.301437] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.306157] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.310884] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.315599] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.320324] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.325037] EDAC amd64: MC: 2: 16384MB 3: 16384MB
^[M\r^[[K[ ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*  ^[[0m] A start job is running for Wait fo[   18.337346] intel_rapl_common: Found RAPL domain package
r…ice Initiali[   18.338543] amd_atl: AMD Address Translation Library initialized
zation (4s / no [   18.343314] intel_rapl_common: Found RAPL domain core
limit)
^[M\r^[[K[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Wait for…ice Initialization (5s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Local File Systems^[[0m.
         Mounting ^[[0;1;39m/boot^[[0m...
      [   18.732077] XFS (sda6): Mounting V5 Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
   Mounting ^[[0;[   18.733728] XFS (dm-0): Mounting V5 Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
1;39m/home^[[0m...
         Starting ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m...
[   18.760290] XFS (sda6): Ending clean mount
[   18.765516] XFS (dm-0): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
         Mounting ^[[0;1;39m/boot/efi^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
         Starting ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Mounting ^[[0;1;39mRPC Pipe File System^[[0m...
         Starting ^[[0;1;39mSecurity Auditing Service^[[0m...
         Starting ^[[0;1;39mRPC Bind^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRPC Bind^[[0m.
[   18.877272] RPC: Registered named UNIX socket transport module.
[   18.883200] RPC: Registered udp transport module.
[   18.887905] RPC: Registered tcp transport module.
[   18.892613] RPC: Registered tcp-with-tls transport module.
[   18.898110] RPC: Registered tcp NFSv4.1 backchannel transport module.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mRPC Pipe File System^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mrpc_pipefs.target^[[0m.
         Starting ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdnf makecache --timer^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily rotation of log files^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUpdates mlocate database every day^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily Cleanup of Temporary Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdaily update of the root trust anchor for DNSSEC^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt interface daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt network daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nodedev daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nwfilter daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt proxy daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt secret daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt storage daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
         Starting ^[[0;1;39mD-Bus System Message Bus^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mBasic System^[[0m.
         Starting ^[[0;1;39mNTP client/server^[[0m...
         Starting ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m...
         Starting ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mirqbalance daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mlibstoragemgmt plug-in server daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mMachine Check Exception Logging Daemon^[[0m.
         Starting ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msshd-keygen.target^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUser and Group Name Lookups^[[0m.
         Starting ^[[0;1;39mUser Login Management^[[0m...
         Starting ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNTP client/server^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Network^[[0m.
         Starting ^[[0;1;39mNetwork Manager^[[0m...
         Starting ^[[0;1;39mHostname Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mHostname Service^[[0m.
         Starting ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork^[[0m.
         Starting ^[[0;1;39mNetwork Manager Wait Online^[[0m...
         Starting ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
         Starting ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m...
         Starting ^[[0;1;39mOpenSSH server daemon^[[0m...
         Starting ^[[0;1;39mDynamic System Tuning Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNFS client services^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mOpenSSH server daemon^[[0m.
         Starting ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
[   23.101798] tg3 0000:c1:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   23.108421] tg3 0000:c1:00.0 eth0: Flow control is off for TX and off for RX
[   23.115463] tg3 0000:c1:00.0 eth0: EEE is disabled
^[M\r^[[K[     ^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[ ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*  ^[[0m] A start job is running for Network …nager Wait Online (12s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mNetwork Manager Wait Online^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork is Online^[[0m.
         Starting ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m...
         Starting ^[[0;1;39mNotify NFS peers of a restart^[[0m...
         Starting ^[[0;1;39mSystem Logging Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNotify NFS peers of a restart^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mCrash recovery kernel arming^[[0m...
         Starting ^[[0;1;39mPermit User Sessions^[[0m...
         Starting ^[[0;1;39mlibvirt QEMU daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDeferred execution scheduler^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mCommand Scheduler^[[0m.
         Starting ^[[0;1;39mHold until boot process finishes up^[[0m...
         Starting ^[[0;1;39mTerminate Plymouth Boot Screen^[[0m...
[^[[0;1;31mFAILED^[[0m] Failed to start ^[[0;1;39mCrash recovery kernel arming^[[0m.
See 'systemctl status kdump.service' for details.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSystem Logging Service^[[0m.
[   25.839014] fbcon: Taking over console
[   25.859092] Console: switching to colour frame buffer device 128x48

Red Hat Enterprise Linux 9.5 (Plow)
Kernel 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e on an x86_64

Activate the web console with: systemctl enable --now cockpit.socket

sharavati login: [  146.273426] /proc/cgroups lists only v1 controllers, use cgroup.controllers of root cgroup for v2 info
[  360.070686] JFS: nTxBlock = 8192, nTxLock = 65536
[  360.109953] QNX4 filesystem 0.2.3 registered.
[  360.193318] raid6: avx2x4   gen() 28991 MB/s
[  360.265316] raid6: avx2x2   gen() 29785 MB/s
[  360.337314] raid6: avx2x1   gen() 20563 MB/s
[  360.341590] raid6: using algorithm avx2x2 gen() 29785 MB/s
[  360.413313] raid6: .... xor() 27389 MB/s, rmw enabled
[  360.418365] raid6: using avx2x2 recovery algorithm
[  360.425190] xor: automatically using best checksumming function   avx       
[  360.522902] Btrfs loaded, zoned=yes, fsverity=yes
[  364.930304] sda6: Can't mount, would change RO state
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNFS client services^[[0m.
         Stopping ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Runtime Directory /run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser Slice of UID 0^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mShow Plymouth Reboot Screen^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mUser and Group Name Lookups^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSystem Logging Service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork is Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager Wait Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
         Stopping ^[[0;1;39mNetwork Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Network^[[0m.
         Stopping ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGenerate network units from Kernel command line^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
         Stopping ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Plymouth Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mVirtual Machine and Container Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt interface daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Clo[  366.413326] audit: type=1305 audit(1750143544.728:197): op=set audit_pid=0 old=2293 auid=4294967295 ses=4294967295 subj=unconfined res=1
sed ^[[0;1;39mlib[  366.426631] audit: type=1131 audit(1750143544.740:198): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=auditd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
virt locking dae[  366.446591] audit: type=1131 audit(1750143544.760:199): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
mon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt network daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt nodedev daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt nwfilter daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt proxy daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt QEMU daemon admin socke[  366.514340] XFS (dm-0): Unmounting Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
t^[[0m.
[^[[0;32m  OK  ^[[0m] Clo[  366.524758] audit: type=1131 audit(1750143544.836:200): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-fsck@dev-disk-by\x2duuid-FBE5\x2d86EF comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
sed ^[[0;1;39mlib[  366.548783] XFS (sda6): Unmounting Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
virt QEMU daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Clo[  366.560873] audit: type=1131 audit(1750143544.872:201): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
sed ^[[0;1;39mlib[  366.582697] audit: type=1131 audit(1750143544.896:202): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
virt QEMU daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt secret daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt storage daemon socket^[[0m.
         Stopping ^[[0;1;39mD-Bus System Message Bus^[[0m...
         Starting ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Unset automount ^[[0;1;39mArbitrary Executab…ormats File System Automount Point^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Encrypted Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Integrity Protected Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[  366.686462] audit: type=1131 audit(1750143545.000:203): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[^[[0;32m  OK  ^[[[  366.707215] audit: type=1130 audit(1750143545.020:204): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
0m] Stopped targ[  366.728468] audit: type=1131 audit(1750143545.020:205): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
et ^[[0;1;39mLocal Verity Protect[  366.752430] audit: type=1334 audit(1750143545.068:206): prog-id=20 op=UNLOAD
ed Volumes^[[0m.
         Deactivating swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[[  366.785602] watchdog: watchdog0: watchdog did not stop!
0;1;39mLoad Kernel Modules^[[0m.
         Stopping ^[[0;1;39mRec[  366.796813] systemd-shutdown[1]: Using hardware watchdog 'SP5100 TCO timer', version 0, device /dev/watchdog0
ord System Boot/[  366.806858] systemd-shutdown[1]: Watchdog running with a timeout of 10min.
Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-sysctl.service^[[0m.
[  366.823926] systemd-shutdown[1]: Syncing filesystems and block devices.
[^[[0;32m  OK  ^[[[  366.831469] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
0m] Finished ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
         Stopping ^[[0;1;39mSecurity Auditing Service^[[0m...
[^[[0;32m  OK  ^[[0m[  366.858863] systemd-journald[1740]: Received SIGTERM from PID 1 (systemd-shutdow).
] Deactivated swap ^[[0;1;39m/dev/rhel_sharavati/swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-uuid…8d2e1f-0fb1-4c94-97ac-38505613fcbf^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/d…kEo36yeb12DWUnp5czhD1hrKFNCXkJMetK^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/dm-2^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
         Unmounting ^[[0;1;39m/boot/efi^[[0m...
         Unmounting ^[[0;1;39m/home^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m.
         Unmounting ^[[0;1;39m/boot^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Local File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUnmount All Filesystems^[[0m.
         Stopping ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRemount Root and Kernel File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mMonitoring of LVM2 mirrors…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLate Shutdown Services^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSystem Reboot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Reboot^[[0m.
[  367.077700] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
[  367.102193] systemd-shutdown[1]: Unmounting file systems.
[  367.108332] [6456]: Remounting '/' read-only with options 'attr2,inode64,logbufs=8,logbsize=32k,noquota'.
[  367.127244] systemd-shutdown[1]: All filesystems unmounted.
[  367.132839] systemd-shutdown[1]: Deactivating swaps.
[  367.137847] systemd-shutdown[1]: All swaps deactivated.
[  367.143077] systemd-shutdown[1]: Detaching loop devices.
[  367.148882] systemd-shutdown[1]: All loop devices detached.
[  367.154458] systemd-shutdown[1]: Stopping MD devices.
[  367.159566] systemd-shutdown[1]: All MD devices stopped.
[  367.164880] systemd-shutdown[1]: Detaching DM devices.
[  367.170374] systemd-shutdown[1]: Detaching DM /dev/dm-2 (253:2).
[  367.201306] systemd-shutdown[1]: Detaching DM /dev/dm-0 (253:0).
[  367.249284] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  367.255780] systemd-shutdown[1]: Detaching DM devices.
[  367.261106] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  367.267552] systemd-shutdown[1]: Cannot finalize remaining DM devices, continuing.
[  367.275116] watchdog: watchdog0: watchdog did not stop!
[  367.370268] systemd-shutdown[1]: Successfully changed into root pivot.
[  367.376805] systemd-shutdown[1]: Returning to initrd...
[  367.427987] dracut Warning: Killing all remaining processes
dracut Warning: Killing all remaining processes
[  367.499660] XFS (dm-1): Unmounting Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[  367.515353] dracut Warning: Unmounted /oldroot.
dracut Warning: Unmounted /oldroot.
[  367.531839] dracut: Disassembling device-mapper devices
Rebooting.
[  367.771182] sd 8:0:2:0: [sdc] Synchronizing SCSI cache
[  367.776458] sd 8:0:0:0: [sda] Synchronizing SCSI cache
[  369.238808] mpt3sas_cm0: sending message unit reset !!
[  369.246631] mpt3sas_cm0: message unit reset: SUCCESS
[  369.254139] ACPI: PM: Preparing to enter system sleep state S5
[  369.260074] kvm: exiting hardware virtualization
[  369.264738] reboot: Restarting system
[  369.268411] reboot: machine restart
^[[c^[[2J^[[01;01H^[[=3h^[[2J^[[01;01HKEY MAPPING FOR CONSOLE REDIRECTION:

Use the <ESC><1> key sequence for <F1>
Use the <ESC><2> key sequence for <F2>
Use the <ESC><3> key sequence for <F3>
Use the <ESC><0> key sequence for <F10>
Use the <ESC><!> key sequence for <F11>
Use the <ESC><@> key sequence for <F12>

Use the <ESC><Ctrl><M> key sequence for <Ctrl><M>
Use the <ESC><Ctrl><H> key sequence for <Ctrl><H>
Use the <ESC><Ctrl><I> key sequence for <Ctrl><I>
Use the <ESC><Ctrl><J> key sequence for <Ctrl><J>

Use the <ESC><X><X> key sequence for <Alt><x>, where x is any letter
key, and X is the upper case of that key

Use the <ESC><R><ESC><r><ESC><R> key sequence for <Ctrl><Alt><Del>

Press the spacebar to pause...
Initializing PCIe, USB, and Video... Done
PowerEdge R6515
BIOS Version: 2.17.0
Console Redirection Enabled Requested by iDRAC

F2	 = System Setup
F10	 = Lifecycle Controller (Config
	   iDRAC, Update FW, Install OS)
F11	 = Boot Manager
F12	 = PXE Boot
iDRAC IPV4:  10.86.18.202 [Dedicated]
                                
Initializing Firmware Interfaces...
 





Enumerating Boot options...
Enumerating Boot options... Done
Loading Lifecycle Controller Drivers...
Loading Lifecycle Controller Drivers...Done
Lifecycle Controller: Collecting System Inventory...

iDRAC IPV4:  10.86.18.202 [Dedicated]

^[[2J^[[01;01HLifecycle Controller: Done
Booting...
^[[2J^[[01;01HBooting from Integrated Storage Controller 1: Red Hat Enterprise Linux
^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[02;32HGRUB version 2.06

\r^[[04;02H/----------------------------------------------------------------------------\^[[05;02H|^[[05;79H|^[[06;02H|^[[06;79H|^[[07;02H|^[[07;79H|^[[08;02H|^[[08;79H|^[[09;02H|^[[09;79H|^[[10;02H|^[[10;79H|^[[11;02H|^[[11;79H|^[[12;02H|^[[12;79H|^[[13;02H|^[[13;79H|^[[14;02H|^[[14;79H|^[[15;02H|^[[15;79H|^[[16;02H|^[[16;79H|^[[17;02H\----------------------------------------------------------------------------/^[[18;02H^[[19;02H     Use the ^ and v keys to select which entry is highlighted.          
\r      Press enter to boot the selected OS, `e' to edit the commands       
\r      before booting or `c' for a command-line. ESC to return previous    
\r      menu.                                                               ^[[05;80H ^[[0m^[[30m^[[47m^[[05;03H*Red Hat Enterprise Linux (6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e)>
\r^[[06;01H^[[0m^[[37m^[[40m^[[05;78H^[[06;03H Red Hat Enterprise Linux (6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997)>
\r^[[07;01H^[[06;78H^[[07;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250613-bc6e0ba6c9-dc42f4ece61)>
\r^[[08;01H^[[07;78H^[[08;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250612-0bb71d3018-d909e6968a1)>
\r^[[09;01H^[[08;78H^[[09;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250611-19a60293b9-72d7c68e20e)>
\r^[[10;01H^[[09;78H^[[10;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250610-b27cc623e0-9a3b1b1b837)>
\r^[[11;01H^[[10;78H^[[11;03H Red Hat Enterprise Linux (6.15.0-rc7-next-20250526-3be1a7a31f-22d449bcd69)>
\r^[[12;01H^[[11;78H^[[12;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250514-bdd609656f-ccb396cc166)>
\r^[[13;01H^[[12;78H^[[13;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250513-aa94665adc-e0bf3d3816b)>
\r^[[14;01H^[[13;78H^[[14;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250512-edef457004-450c56522a8)>
\r^[[15;01H^[[14;78H^[[15;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250508-f48887a98b-19c541fe872)>
\r^[[16;01H^[[15;78H^[[16;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250507-08710e6960-81586bd2ca8)>
\r^[[17;01H^[[16;78H^[[16;80Hv^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 5s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 4s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 3s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 2s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 1s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 0s.                 ^[[05;78H^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m  Booting `Red Hat Enterprise Linux
\r(6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e) 9.5 (Plow)'

\r[    0.000000] Linux version 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e (root@sharavati•amd.com) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-5), GNU ld version 2.35.2-63.el9) #1 SMP PREEMPT_DYNAMIC Tue Jun 17 12:09:52 IST 2025
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] SEV-SNP: RMP table physical range [0x0000000015e00000 - 0x00000000566fffff]
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000015dfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000015e00000-0x00000000566fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000056700000-0x00000000567fbfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000567fc000-0x00000000567fcfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000567fd000-0x000000005a142fff] usable
[    0.000000] BIOS-e820: [mem 0x000000005a143000-0x000000005a342fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005a343000-0x0000000067acefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000067acf000-0x000000006dfcefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006dfcf000-0x000000006edfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006edff000-0x000000006effefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000006efff000-0x000000006effffff] usable
[    0.000000] BIOS-e820: [mem 0x000000006f000000-0x000000006f00afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006f00b000-0x000000006fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000070000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa000000-0x00000000aaffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c5000000-0x00000000c5ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e0ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000207fcfffff] usable
[    0.000000] BIOS-e820: [mem 0x000000207fd00000-0x000000207fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000002080000000-0x000000407f1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000407f200000-0x000000407fffffff] reserved
[    0.000000] printk: legacy bootconsole [earlyser0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by Dell Inc.
[    0.000000] efi: ACPI=0x6effe000 ACPI 2.0=0x6effe014 MEMATTR=0x63f376a0 SMBIOS=0x6979e000 SMBIOS 3.0=0x6979c000 MOKvar=0x67bcc000 RNG=0x6efb4020 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem56: MMIO range=[0x80000000-0x8fffffff] (256MB) from e820 map
[    0.000000] efi: Remove mem57: MMIO range=[0xaa000000-0xaaffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem58: MMIO range=[0xc5000000-0xc5ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem59: MMIO range=[0xe0000000-0xe0ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem60: MMIO range=[0xfd000000-0xffffffff] (48MB) from e820 map
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[    0.000000] DMI: Memory slots populated: 8/16
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1996.378 MHz processor
[    0.000028] last_pfn = 0x407f200 max_arch_pfn = 0x400000000
[    0.005552] MTRR map: 7 entries (2 fixed + 5 variable; max 19), built from 9 variable MTRRs
[    0.013866] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Memory KASLR using RDRAND RDTSC...
[    0.023945] x2apic: enabled by BIOS, switching to x2apic ops
[    0.029579] last_pfn = 0x70000 max_arch_pfn = 0x400000000
[    0.039410] SEV-SNP: Reserving start/end of RMP table on a 2MB boundary [0x0000000056600000]
[    0.047680] Using GB pages for direct mapping
[    0.052653] Secure boot disabled
[    0.055704] RAMDISK: [mem 0x0bb2c000-0x0e0d4fff]
[    0.060302] ACPI: Early table checksum verification disabled
[    0.065932] ACPI: RSDP 0x000000006EFFE014 000024 (v02 DELL  )
[    0.071651] ACPI: XSDT 0x000000006EFB7188 0000DC (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.080144] ACPI: FACP 0x000000006EFF9000 000114 (v06 DELL   PE_SC3   00000002 DELL 00000001)
[    0.088637] ACPI: DSDT 0x000000006EFDA000 019528 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.097128] ACPI: FACS 0x000000006EDB9000 000040
[    0.101721] ACPI: BERT 0x000000006EFFC000 000030 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.110213] ACPI: ERST 0x000000006EFFB000 000230 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.118705] ACPI: HEST 0x000000006EFFA000 0007F4 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.127199] ACPI: HPET 0x000000006EFF8000 000038 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.135726] ACPI: APIC 0x000000006EFF6000 0018BE (v05 DELL   PE_SC3   00000002 DELL 00000001)
[    0.144218] ACPI: MCFG 0x000000006EFF5000 00003C (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.152711] ACPI: WSMT 0x000000006EFF4000 000028 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.161205] ACPI: SSDT 0x000000006EFD9000 000629 (v02 DELL   xhc_port 00000001 INTL 20210331)
[    0.169696] ACPI: SSDT 0x000000006EFD8000 000D6E (v02 AMD    CPMRAS   00000001 INTL 20210331)
[    0.178189] ACPI: EINJ 0x000000006EFD7000 000170 (v01 AMD    PE_SC3   00000001 AMD  00000001)
[    0.186682] ACPI: PCCT 0x000000006EFD6000 00006E (v02 DELL   AmdTable 00000001 AMD  00000001)
[    0.195174] ACPI: SSDT 0x000000006EFC7000 00E849 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.203666] ACPI: SRAT 0x000000006EFC6000 000CD0 (v03 DELL   PE_SC3   00000001 AMD  00000001)
[    0.212158] ACPI: MSCT 0x000000006EFC5000 00004E (v01 DELL   PE_SC3   00000000 AMD  00000001)
[    0.220651] ACPI: SLIT 0x000000006EFC4000 000030 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.229144] ACPI: CRAT 0x000000006EFBC000 0072F8 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.237637] ACPI: CDIT 0x000000006EFBB000 00002C (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.246129] ACPI: IVRS 0x000000006EFBA000 0001F0 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.254622] ACPI: SPCR 0x000000006EFB9000 000050 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.263115] ACPI: SLIC 0x000000006EFB8000 000176 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.271607] ACPI: SSDT 0x000000006EFFD000 000D66 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.280100] ACPI: SSDT 0x000000006EFB5000 00193C (v02 AMD    CPMCMN   00000001 INTL 20210331)
[    0.288592] ACPI: Reserving FACP table memory at [mem 0x6eff9000-0x6eff9113]
[    0.295611] ACPI: Reserving DSDT table memory at [mem 0x6efda000-0x6eff3527]
[    0.302631] ACPI: Reserving FACS table memory at [mem 0x6edb9000-0x6edb903f]
[    0.309650] ACPI: Reserving BERT table memory at [mem 0x6effc000-0x6effc02f]
[    0.316668] ACPI: Reserving ERST table memory at [mem 0x6effb000-0x6effb22f]
[    0.323688] ACPI: Reserving HEST table memory at [mem 0x6effa000-0x6effa7f3]
[    0.330707] ACPI: Reserving HPET table memory at [mem 0x6eff8000-0x6eff8037]
[    0.337726] ACPI: Reserving APIC table memory at [mem 0x6eff6000-0x6eff78bd]
[    0.344745] ACPI: Reserving MCFG table memory at [mem 0x6eff5000-0x6eff503b]
[    0.351810] ACPI: Reserving WSMT table memory at [mem 0x6eff4000-0x6eff4027]
[    0.358828] ACPI: Reserving SSDT table memory at [mem 0x6efd9000-0x6efd9628]
[    0.365848] ACPI: Reserving SSDT table memory at [mem 0x6efd8000-0x6efd8d6d]
[    0.372866] ACPI: Reserving EINJ table memory at [mem 0x6efd7000-0x6efd716f]
[    0.379887] ACPI: Reserving PCCT table memory at [mem 0x6efd6000-0x6efd606d]
[    0.386907] ACPI: Reserving SSDT table memory at [mem 0x6efc7000-0x6efd5848]
[    0.393926] ACPI: Reserving SRAT table memory at [mem 0x6efc6000-0x6efc6ccf]
[    0.400944] ACPI: Reserving MSCT table memory at [mem 0x6efc5000-0x6efc504d]
[    0.407963] ACPI: Reserving SLIT table memory at [mem 0x6efc4000-0x6efc402f]
[    0.414984] ACPI: Reserving CRAT table memory at [mem 0x6efbc000-0x6efc32f7]
[    0.422003] ACPI: Reserving CDIT table memory at [mem 0x6efbb000-0x6efbb02b]
[    0.429022] ACPI: Reserving IVRS table memory at [mem 0x6efba000-0x6efba1ef]
[    0.436042] ACPI: Reserving SPCR table memory at [mem 0x6efb9000-0x6efb904f]
[    0.443061] ACPI: Reserving SLIC table memory at [mem 0x6efb8000-0x6efb8175]
[    0.450081] ACPI: Reserving SSDT table memory at [mem 0x6effd000-0x6effdd65]
[    0.457100] ACPI: Reserving SSDT table memory at [mem 0x6efb5000-0x6efb693b]
[    0.464196] APIC: Switched APIC routing to: cluster x2apic
[    0.469597] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.475558] ACPI: SRAT: Node 0 PXM 0 [mem 0x000c0000-0x7fffffff]
[    0.481537] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.487777] ACPI: SRAT: Node 1 PXM 1 [mem 0x2080000000-0x407fffffff]
[    0.494110] NUMA: Node 0 [mem 0x00001000-0x0009ffff] + [mem 0x000c0000-0x7fffffff] -> [mem 0x00001000-0x7fffffff]
[    0.504328] NUMA: Node 0 [mem 0x00001000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00001000-0x207fffffff]
[    0.514995] NODE_DATA(0) allocated [mem 0x207fcd59c0-0x207fcfffff]
[    0.521149] NODE_DATA(1) allocated [mem 0x407f1d49c0-0x407f1fefff]
[    0.527434] cannot allocate crashkernel low memory (size:0x10800000).
[    0.533948] Zone ranges:
[    0.536306]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.542458]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.548612]   Normal   [mem 0x0000000100000000-0x000000407f1fffff]
[    0.554764]   Device   empty
[    0.557623] Movable zone start for each node
[    0.561881] Early memory node ranges
[    0.565433]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.571672]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.577910]   node   0: [mem 0x0000000000100000-0x0000000015dfffff]
[    0.584149]   node   0: [mem 0x0000000056700000-0x00000000567fbfff]
[    0.590389]   node   0: [mem 0x00000000567fd000-0x000000005a142fff]
[    0.596629]   node   0: [mem 0x000000005a343000-0x0000000067acefff]
[    0.602868]   node   0: [mem 0x000000006efff000-0x000000006effffff]
[    0.609107]   node   0: [mem 0x000000006f00b000-0x000000006fffffff]
[    0.615347]   node   0: [mem 0x0000000100000000-0x000000207fcfffff]
[    0.621597]   node   1: [mem 0x0000002080000000-0x000000407f1fffff]
[    0.627837] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fcfffff]
[    0.634847] Initmem setup node 1 [mem 0x0000002080000000-0x000000407f1fffff]
[    0.641868] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.647671] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.653489] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.659721] On node 0, zone DMA32: 35072 pages in unavailable ranges
[    0.665937] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.672032] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.678122] On node 0, zone DMA32: 30000 pages in unavailable ranges
[    0.684375] On node 0, zone DMA32: 11 pages in unavailable ranges
[    0.909790] On node 1, zone Normal: 768 pages in unavailable ranges
[    0.915894] On node 1, zone Normal: 3584 pages in unavailable ranges
[    0.922384] ACPI: PM-Timer IO Port: 0x408
[    0.926256] ACPI: X2APIC_NMI (uid[0xffffffff] high edge lint[0x1])
[    0.932382] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.938288] IOAPIC[0]: apic_id 240, version 33, address 0xfec00000, GSI 0-23
[    0.945296] IOAPIC[1]: apic_id 241, version 33, address 0xe0100000, GSI 120-151
[    0.952576] IOAPIC[2]: apic_id 242, version 33, address 0xc5100000, GSI 88-119
[    0.959768] IOAPIC[3]: apic_id 243, version 33, address 0xaa100000, GSI 56-87
[    0.966875] IOAPIC[4]: apic_id 244, version 33, address 0xfd100000, GSI 24-55
[    0.973979] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.980303] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.986810] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.993216] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.998330] ACPI: SPCR: console: uart,io,0x2f8,115200
[    1.003358] CPU topo: Max. logical packages:   1
[    1.007946] CPU topo: Max. logical dies:       1
[    1.012540] CPU topo: Max. dies per package:   1
[    1.017136] CPU topo: Max. threads per core:   2
[    1.021727] CPU topo: Num. cores per package:    64
[    1.026685] CPU topo: Num. threads per package: 128
[    1.031466] CPU topo: Allowing 128 present CPUs plus 0 hotplug CPUs
[    1.037732] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    1.045246] PM: hibernation: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    1.052785] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    1.060325] PM: hibernation: Registered nosave memory: [mem 0x15e00000-0x567fffff]
[    1.067863] PM: hibernation: Registered nosave memory: [mem 0x5a143000-0x5a342fff]
[    1.075403] PM: hibernation: Registered nosave memory: [mem 0x67acf000-0x6effefff]
[    1.082943] PM: hibernation: Registered nosave memory: [mem 0x6f000000-0x6f00afff]
[    1.090481] PM: hibernation: Registered nosave memory: [mem 0x70000000-0xffffffff]
[    1.098022] PM: hibernation: Registered nosave memory: [mem 0x207fd00000-0x207fffffff]
[    1.105907] [mem 0x56800000-0xffffffff] available for PCI devices
[    1.111972] Booting paravirtualized kernel on bare hardware
[    1.117519] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    1.127930] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:128 nr_cpu_ids:128 nr_node_ids:2
[    1.138787] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[    1.145266] Kernel command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    1.174592] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e biosdevname=0 mem_encrypt=off", will be passed to user space.
[    1.191439] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    1.198354] printk: log_buf_len total cpu_extra contributions: 520192 bytes
[    1.205286] printk: log_buf_len min size: 262144 bytes
[    1.210739] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[    1.218120] printk: early log buf free: 246352(93%)
[    1.224477] software IO TLB: area num 128.
[    1.228394] software IO TLB: swiotlb_memblock_alloc: Failed to allocate 268435456 bytes tlb structure
[    1.243491] software IO TLB: SWIOTLB bounce buffer size adjusted 131072 -> 65536 slabs
[    1.249588] Fallback order for Node 0: 0 1 
[    1.249592] Fallback order for Node 1: 1 0 
[    1.249607] Built 2 zonelists, mobility grouping on.  Total pages: 66743906
[    1.272586] Policy zone: Normal
[    1.275714] mem auto-init: stack:off, heap alloc:on, heap free:off
[    1.697264] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=128, Nodes=2
Poking KASLR using RDRAND RDTSC...
[    1.718500] ftrace: allocating 53763 entries in 212 pages
[    1.723715] ftrace: allocated 212 pages with 4 groups
[    1.729649] Dynamic Preempt: voluntary
[    1.733594] rcu: Preemptible hierarchical RCU implementation.
[    1.739157] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=128.
[    1.746091] 	Trampoline variant of Tasks RCU enabled.
[    1.751117] 	Rude variant of Tasks RCU enabled.
[    1.755622] 	Tracing variant of Tasks RCU enabled.
[    1.760389] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.768047] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=128
[    1.774857] RCU Tasks: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.783660] RCU Tasks Rude: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.792934] RCU Tasks Trace: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.805812] NR_IRQS: 524544, nr_irqs: 3624, preallocated irqs: 16
[    1.812005] rcu: srcu_init: Setting srcu_struct sizes to big.
[    1.817745] Console: colour dummy device 80x25
[    1.822029] printk: legacy console [ttyS0] enabled
[    1.822029] printk: legacy console [ttyS0] enabled
[    1.831562] printk: legacy bootconsole [earlyser0] disabled
[    1.831562] printk: legacy bootconsole [earlyser0] disabled
[    1.842748] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    1.854027] ACPI: Core revision 20250404
[    1.858176] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    1.867315] APIC: Switch to symmetric I/O mode setup
[    1.872735] AMD-Vi: Using global IVHD EFR:0x841f77e022094ace, EFR2:0x0
[    1.881705] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    1.907315] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x398da13fe4d, max_idle_ns: 881590633619 ns
[    1.917826] Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.75 BogoMIPS (lpj=7985512)
[    1.921838] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    1.925940] LVT offset 2 assigned for vector 0xf4
[    1.929855] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    1.933825] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    1.937826] process: using mwait in idle threads
[    1.941829] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    1.945825] Spectre V2 : Mitigation: Retpolines
[    1.949825] Spectre V2 : User space: Mitigation: STIBP always-on protection
[    1.953825] Speculative Return Stack Overflow: Mitigation: Safe RET
[    1.957825] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.961825] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
[    1.965825] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    1.969826] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    1.973829] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.977825] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.981825] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.985825] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    1.989825] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    1.993825] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    1.997825] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    2.001825] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    2.005825] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[    2.044326] Freeing SMP alternatives memory: 48K
[    2.045827] pid_max: default: 131072 minimum: 1024
[    2.057873] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm
[    2.061877] Yama: becoming mindful.
[    2.065952] AppArmor: AppArmor initialized
[    2.079026] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    2.087316] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    2.089977] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.093922] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.207114] smpboot: CPU0: AMD EPYC 7713 64-Core Processor (family: 0x19, model: 0x1, stepping: 0x1)
[    2.210299] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    2.213827] ... version:                0
[    2.217826] ... bit width:              48
[    2.221827] ... generic registers:      6
[    2.225826] ... value mask:             0000ffffffffffff
[    2.229826] ... max period:             00007fffffffffff
[    2.233826] ... fixed-purpose events:   0
[    2.237826] ... event mask:             000000000000003f
[    2.242265] signal: max sigframe size: 3376
[    2.245888] rcu: Hierarchical SRCU implementation.
[    2.249827] rcu: 	Max phase no-delay instances is 1000.
[    2.253882] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
[    2.266353] MCE: In-kernel MCE decoding enabled.
[    2.269878] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    2.274793] smp: Bringing up secondary CPUs ...
[    2.277994] smpboot: x86: Booting SMP configuration:
[    2.281829] .... node  #0, CPUs:          #1   #2   #3   #4   #5   #6   #7   #8   #9  #10  #11  #12  #13  #14  #15  #16  #17  #18  #19  #20  #21  #22  #23  #24  #25  #26  #27  #28  #29  #30  #31
[    2.293828] .... node  #1, CPUs:    #32  #33  #34  #35  #36  #37  #38  #39  #40  #41  #42  #43  #44  #45  #46  #47  #48  #49  #50  #51  #52  #53  #54  #55  #56  #57  #58  #59  #60  #61  #62  #63
[    2.445827] .... node  #0, CPUs:    #64  #65  #66  #67  #68  #69  #70  #71  #72  #73  #74  #75  #76  #77  #78  #79  #80  #81  #82  #83  #84  #85  #86  #87  #88  #89  #90  #91  #92  #93  #94  #95
[    2.453828] .... node  #1, CPUs:    #96  #97  #98  #99 #100 #101 #102 #103 #104 #105 #106 #107 #108 #109 #110 #111 #112 #113 #114 #115 #116 #117 #118 #119 #120 #121 #122 #123 #124 #125 #126 #127
[    2.462130] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[    2.613996] smp: Brought up 2 nodes, 128 CPUs
[    2.617829] smpboot: Total of 128 processors activated (511072.76 BogoMIPS)
[    2.628318] Memory: 262225180K/266975624K available (18401K kernel code, 3299K rwdata, 7944K rodata, 4760K init, 6092K bss, 4428316K reserved, 0K cma-reserved)
[    2.636559] devtmpfs: initialized
[    2.637933] x86/mm: Memory block size: 2048MB
[    2.653217] ACPI: PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    2.653828] ACPI: PM: Registering ACPI NVS region [mem 0x6dfcf000-0x6edfefff] (14876672 bytes)
[    2.658118] ACPI: PM: Registering ACPI NVS region [mem 0x6f000000-0x6f00afff] (45056 bytes)
[    2.661945] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    2.665890] posixtimers hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.670052] futex hash table entries: 16384 (1048576 bytes on 2 NUMA nodes, total 2048 KiB, linear).
[    2.674058] pinctrl core: initialized pinctrl subsystem
[    2.677979] PM: RTC time: 12:31:20, date: 2025-06-17
[    2.682611] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    2.686415] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    2.690008] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    2.694010] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    2.697833] audit: initializing netlink subsys (disabled)
[    2.701855] audit: type=2000 audit(1750163478.820:1): state=initialized audit_enabled=0 res=1
[    2.702033] thermal_sys: Registered thermal governor 'fair_share'
[    2.705827] thermal_sys: Registered thermal governor 'bang_bang'
[    2.709826] thermal_sys: Registered thermal governor 'step_wise'
[    2.713827] thermal_sys: Registered thermal governor 'user_space'
[    2.717851] cpuidle: using governor ladder
[    2.725836] cpuidle: using governor menu
[    2.729873] Detected 1 PCC Subspaces
[    2.733827] Registering PCC driver as Mailbox controller
[    2.738005] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    2.741828] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    2.746010] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    2.749837] PCI: Using configuration type 1 for base access
[    2.753838] PCI: Dell System detected, enabling pci=bfsort.
[    2.758033] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    2.762045] HugeTLB: allocation took 0ms with hugepage_allocation_threads=32
[    2.765868] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    2.769826] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    2.773827] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    2.777826] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    2.786442] ACPI: Added _OSI(Module Device)
[    2.789827] ACPI: Added _OSI(Processor Device)
[    2.793826] ACPI: Added _OSI(Processor Aggregator Device)
[    2.839780] ACPI: 6 ACPI AML tables successfully acquired and loaded
[    2.851832] ACPI: Interpreter enabled
[    2.853838] ACPI: PM: (supports S0 S5)
[    2.857826] ACPI: Using IOAPIC for interrupt routing
[    2.862441] HEST: Table parsing has been initialized.
[    2.866245] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    2.869828] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.873826] PCI: Ignoring E820 reservations for host bridge windows
[    2.883318] ACPI: Enabled 1 GPEs in block 00 to 1F
[    2.925263] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    2.925905] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    2.929904] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    2.933903] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    2.937905] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    2.941904] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    2.945903] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    2.949903] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    2.954331] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-3f])
[    2.957830] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.961991] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER DPC]
[    2.966142] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    2.969826] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.978459] PCI host bridge to bus 0000:00
[    2.981830] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    2.985826] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    2.989828] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000fffff window]
[    2.993826] pci_bus 0000:00: root bus resource [io  0x0d00-0x3fff window]
[    2.997826] pci_bus 0000:00: root bus resource [mem 0xe1000000-0xfebfffff window]
[    3.001826] pci_bus 0000:00: root bus resource [mem 0x63dc0000000-0x7fcffffffff window]
[    3.005826] pci_bus 0000:00: root bus resource [bus 00-3f]
[    3.009840] pci 0000:00:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.013983] pci 0000:00:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.017935] pci 0000:00:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.021921] pci 0000:00:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.025916] pci 0000:00:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.029920] pci 0000:00:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.033842] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.037829] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    3.041828] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    3.045895] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    3.050839] pci 0000:00:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.053921] pci 0000:00:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.057920] pci 0000:00:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.061919] pci 0000:00:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.065841] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.069830] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    3.073838] pci 0000:00:07.1: enabling Extended Tags
[    3.077874] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    3.081982] pci 0000:00:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.085919] pci 0000:00:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.089842] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.093831] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    3.097838] pci 0000:00:08.1: enabling Extended Tags
[    3.101876] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    3.106018] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
[    3.109943] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
[    3.113999] pci 0000:00:18.0: [1022:1650] type 00 class 0x060000 conventional PCI endpoint
[    3.117933] pci 0000:00:18.1: [1022:1651] type 00 class 0x060000 conventional PCI endpoint
[    3.121895] pci 0000:00:18.2: [1022:1652] type 00 class 0x060000 conventional PCI endpoint
[    3.125892] pci 0000:00:18.3: [1022:1653] type 00 class 0x060000 conventional PCI endpoint
[    3.129890] pci 0000:00:18.4: [1022:1654] type 00 class 0x060000 conventional PCI endpoint
[    3.133891] pci 0000:00:18.5: [1022:1655] type 00 class 0x060000 conventional PCI endpoint
[    3.137894] pci 0000:00:18.6: [1022:1656] type 00 class 0x060000 conventional PCI endpoint
[    3.141890] pci 0000:00:18.7: [1022:1657] type 00 class 0x060000 conventional PCI endpoint
[    3.145962] pci 0000:01:00.0: [1000:0097] type 00 class 0x010700 PCIe Endpoint
[    3.149856] pci 0000:01:00.0: BAR 0 [io  0x1000-0x10ff]
[    3.153828] pci 0000:01:00.0: BAR 1 [mem 0xf7400000-0xf740ffff 64bit]
[    3.157828] pci 0000:01:00.0: BAR 3 [mem 0xf7300000-0xf73fffff 64bit]
[    3.161828] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]
[    3.165831] pci 0000:01:00.0: enabling Extended Tags
[    3.169911] pci 0000:01:00.0: supports D1 D2
[    3.173868] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[    3.177826] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x000fffff 64bit]: contains BAR 0 for 16 VFs
[    3.181827] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x000fffff 64bit]
[    3.185826] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x00ffffff 64bit]: contains BAR 2 for 16 VFs
[    3.189977] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.193915] pci 0000:02:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.197860] pci 0000:02:00.0: enabling Extended Tags
[    3.201988] pci 0000:02:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.205854] pci 0000:02:00.2: BAR 2 [mem 0xf7200000-0xf727ffff]
[    3.209828] pci 0000:02:00.2: BAR 5 [mem 0xf7280000-0xf7281fff]
[    3.213831] pci 0000:02:00.2: enabling Extended Tags
[    3.218028] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.221964] pci 0000:03:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.225862] pci 0000:03:00.0: enabling Extended Tags
[    3.230038] pci 0000:03:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.233856] pci 0000:03:00.2: BAR 2 [mem 0xf7100000-0xf717ffff]
[    3.237828] pci 0000:03:00.2: BAR 5 [mem 0xf7180000-0xf7181fff]
[    3.241831] pci 0000:03:00.2: enabling Extended Tags
[    3.246019] pci 0000:03:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.249856] pci 0000:03:00.3: BAR 0 [mem 0xf7000000-0xf70fffff 64bit]
[    3.253835] pci 0000:03:00.3: enabling Extended Tags
[    3.257877] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
[    3.262008] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.270717] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 40-7f])
[    3.273829] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.277989] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.282141] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.285826] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.290763] PCI host bridge to bus 0000:40
[    3.293830] pci_bus 0000:40: root bus resource [io  0x4000-0x6fff window]
[    3.297826] pci_bus 0000:40: root bus resource [mem 0x90000000-0xaaffffff window]
[    3.301827] pci_bus 0000:40: root bus resource [mem 0x47e80000000-0x63dbfffffff window]
[    3.305826] pci_bus 0000:40: root bus resource [bus 40-7f]
[    3.309835] pci 0000:40:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.313926] pci 0000:40:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.317927] pci 0000:40:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.321910] pci 0000:40:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.325910] pci 0000:40:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.329919] pci 0000:40:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.333844] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.337831] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    3.341917] pci 0000:40:03.1: PME# supported from D0 D3hot D3cold
[    3.358543] pci 0000:40:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.361850] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.365833] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    3.369948] pci 0000:40:03.2: PME# supported from D0 D3hot D3cold
[    3.387453] pci 0000:40:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.393844] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.397833] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    3.405919] pci 0000:40:03.3: PME# supported from D0 D3hot D3cold
[    3.425187] pci 0000:40:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.429849] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.437834] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    3.441901] pci 0000:40:03.4: PME# supported from D0 D3hot D3cold
[    3.459763] pci 0000:40:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.461928] pci 0000:40:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.465932] pci 0000:40:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.469921] pci 0000:40:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.473846] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.477832] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    3.481839] pci 0000:40:07.1: enabling Extended Tags
[    3.485867] pci 0000:40:07.1: PME# supported from D0 D3hot D3cold
[    3.493986] pci 0000:40:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.501919] pci 0000:40:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.509843] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.513830] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    3.521838] pci 0000:40:08.1: enabling Extended Tags
[    3.525875] pci 0000:40:08.1: PME# supported from D0 D3hot D3cold
[    3.530078] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.537911] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.541908] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.545916] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.553915] pci 0000:45:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.557859] pci 0000:45:00.0: enabling Extended Tags
[    3.565915] pci 0000:45:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.569855] pci 0000:45:00.2: BAR 2 [mem 0xa5300000-0xa537ffff]
[    3.577828] pci 0000:45:00.2: BAR 5 [mem 0xa5380000-0xa5381fff]
[    3.581831] pci 0000:45:00.2: enabling Extended Tags
[    3.590024] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.593959] pci 0000:46:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.601862] pci 0000:46:00.0: enabling Extended Tags
[    3.606035] pci 0000:46:00.1: [1022:1486] type 00 class 0x108000 PCIe Endpoint
[    3.613855] pci 0000:46:00.1: BAR 2 [mem 0xa5100000-0xa51fffff]
[    3.617828] pci 0000:46:00.1: BAR 5 [mem 0xa5282000-0xa5283fff]
[    3.625831] pci 0000:46:00.1: enabling Extended Tags
[    3.630021] pci 0000:46:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.637855] pci 0000:46:00.2: BAR 2 [mem 0xa5200000-0xa527ffff]
[    3.641828] pci 0000:46:00.2: BAR 5 [mem 0xa5280000-0xa5281fff]
[    3.649831] pci 0000:46:00.2: enabling Extended Tags
[    3.654023] pci 0000:46:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.661854] pci 0000:46:00.3: BAR 0 [mem 0xa5000000-0xa50fffff 64bit]
[    3.669834] pci 0000:46:00.3: enabling Extended Tags
[    3.673876] pci 0000:46:00.3: PME# supported from D0 D3hot D3cold
[    3.678010] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.686499] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 80-bf])
[    3.689830] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.701992] acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.710154] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.717826] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.726767] PCI host bridge to bus 0000:80
[    3.729830] pci_bus 0000:80: root bus resource [io  0x7000-0x9fff window]
[    3.737826] pci_bus 0000:80: root bus resource [mem 0xab000000-0xc5ffffff window]
[    3.745826] pci_bus 0000:80: root bus resource [mem 0x2bf40000000-0x47e7fffffff window]
[    3.753828] pci_bus 0000:80: root bus resource [bus 80-bf]
[    3.757836] pci 0000:80:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.765926] pci 0000:80:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.773927] pci 0000:80:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.781920] pci 0000:80:01.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.789844] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.793831] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    3.801920] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    3.822850] pci 0000:80:01.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.829849] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.833833] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    3.841898] pci 0000:80:01.2: PME# supported from D0 D3hot D3cold
[    3.861925] pci 0000:80:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.865930] pci 0000:80:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.869920] pci 0000:80:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.873983] pci 0000:80:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.877913] pci 0000:80:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.881934] pci 0000:80:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.885841] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.889830] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    3.893837] pci 0000:80:07.1: enabling Extended Tags
[    3.897874] pci 0000:80:07.1: PME# supported from D0 D3hot D3cold
[    3.901980] pci 0000:80:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.905919] pci 0000:80:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.909842] pci 0000:80:08.1: PCI bridge to [bus 84]
[    3.913830] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    3.917838] pci 0000:80:08.1: enabling Extended Tags
[    3.921875] pci 0000:80:08.1: PME# supported from D0 D3hot D3cold
[    3.925992] pci 0000:80:08.2: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.929843] pci 0000:80:08.2: PCI bridge to [bus 85]
[    3.933830] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    3.937838] pci 0000:80:08.2: enabling Extended Tags
[    3.941875] pci 0000:80:08.2: PME# supported from D0 D3hot D3cold
[    3.946067] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.949909] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.953914] pci 0000:83:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.957859] pci 0000:83:00.0: enabling Extended Tags
[    3.961989] pci 0000:83:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.965853] pci 0000:83:00.2: BAR 2 [mem 0xbfa00000-0xbfa7ffff]
[    3.969828] pci 0000:83:00.2: BAR 5 [mem 0xbfa80000-0xbfa81fff]
[    3.973831] pci 0000:83:00.2: enabling Extended Tags
[    3.978025] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.981960] pci 0000:84:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.985862] pci 0000:84:00.0: enabling Extended Tags
[    3.990038] pci 0000:84:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.993856] pci 0000:84:00.2: BAR 2 [mem 0xbf900000-0xbf97ffff]
[    3.997828] pci 0000:84:00.2: BAR 5 [mem 0xbf980000-0xbf981fff]
[    4.001832] pci 0000:84:00.2: enabling Extended Tags
[    4.006035] pci 0000:80:08.1: PCI bridge to [bus 84]
[    4.009959] pci 0000:85:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[    4.013858] pci 0000:85:00.0: BAR 5 [mem 0xbf800000-0xbf8007ff]
[    4.017831] pci 0000:85:00.0: enabling Extended Tags
[    4.021889] pci 0000:85:00.0: PME# supported from D3hot D3cold
[    4.026000] pci 0000:80:08.2: PCI bridge to [bus 85]
[    4.030545] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus c0-ff])
[    4.033829] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    4.037992] acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug AER DPC]
[    4.042143] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    4.045826] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
[    4.050852] PCI host bridge to bus 0000:c0
[    4.053830] pci_bus 0000:c0: root bus resource [io  0xa000-0xffff window]
[    4.057826] pci_bus 0000:c0: root bus resource [mem 0xc6000000-0xe0ffffff window]
[    4.061826] pci_bus 0000:c0: root bus resource [mem 0x10000000000-0x2bf3fffffff window]
[    4.065826] pci_bus 0000:c0: root bus resource [io  0x03b0-0x03df window]
[    4.069826] pci_bus 0000:c0: root bus resource [mem 0x000a0000-0x000bffff window]
[    4.073826] pci_bus 0000:c0: root bus resource [bus c0-ff]
[    4.077836] pci 0000:c0:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    4.081924] pci 0000:c0:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    4.085927] pci 0000:c0:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.089910] pci 0000:c0:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.093912] pci 0000:c0:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.097919] pci 0000:c0:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.101843] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.105831] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    4.109922] pci 0000:c0:03.1: PME# supported from D0 D3hot D3cold
[    4.130476] pci 0000:c0:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.133845] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.137836] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    4.141986] pci 0000:c0:03.2: PME# supported from D0 D3hot D3cold
[    4.161312] pci 0000:c0:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.161849] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.165832] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    4.169936] pci 0000:c0:03.3: PME# supported from D0 D3hot D3cold
[    4.188338] pci 0000:c0:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.189849] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.193833] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    4.197940] pci 0000:c0:03.4: PME# supported from D0 D3hot D3cold
[    4.219684] pci 0000:c0:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.221954] pci 0000:c0:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.225919] pci 0000:c0:05.1: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.229847] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.233838] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    4.237920] pci 0000:c0:05.1: PME# supported from D0 D3hot D3cold
[    4.241985] pci 0000:c0:05.2: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.245841] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.249830] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    4.253832] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.257871] pci 0000:c0:05.2: PME# supported from D0 D3hot D3cold
[    4.261972] pci 0000:c0:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.265918] pci 0000:c0:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.269841] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.273830] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    4.277837] pci 0000:c0:07.1: enabling Extended Tags
[    4.281874] pci 0000:c0:07.1: PME# supported from D0 D3hot D3cold
[    4.285973] pci 0000:c0:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.289918] pci 0000:c0:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.293842] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.297830] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    4.301837] pci 0000:c0:08.1: enabling Extended Tags
[    4.305873] pci 0000:c0:08.1: PME# supported from D0 D3hot D3cold
[    4.310063] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.313910] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.317907] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.321907] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.329914] pci 0000:c1:00.0: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.333871] pci 0000:c1:00.0: BAR 0 [mem 0xc7030000-0xc703ffff 64bit pref]
[    4.337828] pci 0000:c1:00.0: BAR 2 [mem 0xc7040000-0xc704ffff 64bit pref]
[    4.341828] pci 0000:c1:00.0: BAR 4 [mem 0xc7050000-0xc705ffff 64bit pref]
[    4.345827] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.349915] pci 0000:c1:00.0: PME# supported from D0 D3hot D3cold
[    4.353881] pci 0000:c1:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:c0:05.1 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
[    4.362515] pci 0000:c1:00.1: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.365872] pci 0000:c1:00.1: BAR 0 [mem 0xc7000000-0xc700ffff 64bit pref]
[    4.369828] pci 0000:c1:00.1: BAR 2 [mem 0xc7010000-0xc701ffff 64bit pref]
[    4.373828] pci 0000:c1:00.1: BAR 4 [mem 0xc7020000-0xc702ffff 64bit pref]
[    4.377827] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.381914] pci 0000:c1:00.1: PME# supported from D0 D3hot D3cold
[    4.393861] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.397908] pci 0000:c2:00.0: [1556:be00] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    4.401853] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.405833] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    4.409835] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.421847] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.425863] pci_bus 0000:c3: extended config space not accessible
[    4.429855] pci 0000:c3:00.0: [102b:0536] type 00 class 0x030000 conventional PCI endpoint
[    4.433872] pci 0000:c3:00.0: BAR 0 [mem 0xc6000000-0xc6ffffff pref]
[    4.437827] pci 0000:c3:00.0: BAR 1 [mem 0xda808000-0xda80bfff]
[    4.441828] pci 0000:c3:00.0: BAR 2 [mem 0xda000000-0xda7fffff]
[    4.445851] pci 0000:c3:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    4.449956] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.453930] pci 0000:c8:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    4.457859] pci 0000:c8:00.0: enabling Extended Tags
[    4.461986] pci 0000:c8:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.465852] pci 0000:c8:00.2: BAR 2 [mem 0xdbb00000-0xdbb7ffff]
[    4.469828] pci 0000:c8:00.2: BAR 5 [mem 0xdbb80000-0xdbb81fff]
[    4.473831] pci 0000:c8:00.2: enabling Extended Tags
[    4.481938] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.485961] pci 0000:c9:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.489861] pci 0000:c9:00.0: enabling Extended Tags
[    4.494035] pci 0000:c9:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.497856] pci 0000:c9:00.2: BAR 2 [mem 0xdba00000-0xdba7ffff]
[    4.501828] pci 0000:c9:00.2: BAR 5 [mem 0xdba80000-0xdba81fff]
[    4.505831] pci 0000:c9:00.2: enabling Extended Tags
[    4.510030] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.520940] iommu: Default domain type: Translated
[    4.521827] iommu: DMA domain TLB invalidation policy: lazy mode
[    4.530131] SCSI subsystem initialized
[    4.533870] ACPI: bus type USB registered
[    4.537852] usbcore: registered new interface driver usbfs
[    4.541836] usbcore: registered new interface driver hub
[    4.545861] usbcore: registered new device driver usb
[    4.549858] pps_core: LinuxPPS API ver. 1 registered
[    4.553826] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux•it>
[    4.557831] PTP clock support registered
[    4.561906] EDAC MC: Ver: 3.0.0
[    4.566040] efivars: Registered efivars operations
[    4.574279] NetLabel: Initializing
[    4.577688] NetLabel:  domain hash size = 128
[    4.577828] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    4.581849] NetLabel:  unlabeled traffic allowed by default
[    4.585876] PCI: Using ACPI for IRQ routing
[    4.598017] pci 0000:c3:00.0: vgaarb: setting as boot VGA device
[    4.601824] pci 0000:c3:00.0: vgaarb: bridge control possible
[    4.601824] pci 0000:c3:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    4.601827] vgaarb: loaded
[    4.604539] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    4.605826] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    4.614043] clocksource: Switched to clocksource tsc-early
[    4.619649] VFS: Disk quotas dquot_6.6.0
[    4.623601] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.630723] AppArmor: AppArmor Filesystem Enabled
[    4.635451] pnp: PnP ACPI init
[    4.638762] system 00:00: [mem 0x80000000-0x8fffffff] has been reserved
[    4.645472] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[    4.653687] pnp: PnP ACPI: found 5 devices
[    4.664806] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    4.673776] NET: Registered PF_INET protocol family
[    4.678789] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.690533] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.699487] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    4.707518] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.717027] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.725405] TCP: Hash tables configured (established 524288 bind 65536)
[    4.732688] UDP hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.741118] UDP-Lite hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.749959] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    4.755624] NET: Registered PF_XDP protocol family
[    4.760423] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.770248] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.780066] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.789885] pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
[    4.795553] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: can't assign; no space
[    4.803290] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: failed to assign
[    4.810507] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: can't assign; no space
[    4.818765] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: failed to assign
[    4.826508] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: can't assign; no space
[    4.834765] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: failed to assign
[    4.842504] pci 0000:00:03.2: PCI bridge to [bus 01]
[    4.847470] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    4.853563] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    4.860362] pci 0000:00:07.1: PCI bridge to [bus 02]
[    4.865333] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    4.872125] pci 0000:00:08.1: PCI bridge to [bus 03]
[    4.877089] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    4.883895] PCI: No. 2 try to assign unassigned res
[    4.888817] pci 0000:00:03.2: resource 14 [mem 0xf7300000-0xf74fffff] released
[    4.896038] pci 0000:00:03.2: PCI bridge to [bus 01]
[    4.901015] pci 0000:00:03.2: bridge window [mem 0x00100000-0x002fffff] to [bus 01] add_size 1200000 add_align 100000
[    4.911616] pci 0000:00:03.2: bridge window [mem 0xe1000000-0xe23fffff]: assigned
[    4.919102] pci 0000:01:00.0: BAR 3 [mem 0xe1000000-0xe10fffff 64bit]: assigned
[    4.926411] pci 0000:01:00.0: ROM [mem 0xe1100000-0xe11fffff pref]: assigned
[    4.933460] pci 0000:01:00.0: VF BAR 2 [mem 0xe1200000-0xe21fffff 64bit]: assigned
[    4.941026] pci 0000:01:00.0: BAR 1 [mem 0xe2200000-0xe220ffff 64bit]: assigned
[    4.948336] pci 0000:01:00.0: VF BAR 0 [mem 0xe2210000-0xe230ffff 64bit]: assigned
[    4.955914] pci 0000:00:03.2: PCI bridge to [bus 01]
[    4.960879] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    4.966971] pci 0000:00:03.2:   bridge window [mem 0xe1000000-0xe23fffff]
[    4.973762] pci 0000:00:07.1: PCI bridge to [bus 02]
[    4.978732] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    4.985522] pci 0000:00:08.1: PCI bridge to [bus 03]
[    4.990518] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    4.997308] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    5.003488] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    5.009669] pci_bus 0000:00: resource 6 [mem 0x000c0000-0x000fffff window]
[    5.016540] pci_bus 0000:00: resource 7 [io  0x0d00-0x3fff window]
[    5.022719] pci_bus 0000:00: resource 8 [mem 0xe1000000-0xfebfffff window]
[    5.029589] pci_bus 0000:00: resource 9 [mem 0x63dc0000000-0x7fcffffffff window]
[    5.036983] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[    5.042555] pci_bus 0000:01: resource 1 [mem 0xe1000000-0xe23fffff]
[    5.048822] pci_bus 0000:02: resource 1 [mem 0xf7200000-0xf72fffff]
[    5.055085] pci_bus 0000:03: resource 1 [mem 0xf7000000-0xf71fffff]
[    5.061447] pci 0000:40:03.1: bridge window [io  0x1000-0x0fff] to [bus 41] add_size 1000
[    5.069622] pci 0000:40:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 41] add_size 200000 add_align 100000
[    5.081102] pci 0000:40:03.2: bridge window [io  0x1000-0x0fff] to [bus 42] add_size 1000
[    5.089285] pci 0000:40:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 42] add_size 200000 add_align 100000
[    5.100756] pci 0000:40:03.3: bridge window [io  0x1000-0x0fff] to [bus 43] add_size 1000
[    5.108927] pci 0000:40:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 43] add_size 200000 add_align 100000
[    5.120391] pci 0000:40:03.4: bridge window [io  0x1000-0x0fff] to [bus 44] add_size 1000
[    5.128565] pci 0000:40:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 44] add_size 200000 add_align 100000
[    5.140035] pci 0000:40:03.1: bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]: assigned
[    5.148989] pci 0000:40:03.2: bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]: assigned
[    5.157939] pci 0000:40:03.3: bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]: assigned
[    5.166892] pci 0000:40:03.4: bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]: assigned
[    5.175844] pci 0000:40:03.1: bridge window [io  0x4000-0x4fff]: assigned
[    5.182628] pci 0000:40:03.2: bridge window [io  0x5000-0x5fff]: assigned
[    5.189424] pci 0000:40:03.3: bridge window [io  0x6000-0x6fff]: assigned
[    5.196211] pci 0000:40:03.4: bridge window [io  size 0x1000]: can't assign; no space
[    5.204033] pci 0000:40:03.4: bridge window [io  size 0x1000]: failed to assign
[    5.211341] pci 0000:40:03.4: bridge window [io  0x4000-0x4fff]: assigned
[    5.218125] pci 0000:40:03.3: bridge window [io  0x5000-0x5fff]: assigned
[    5.224910] pci 0000:40:03.2: bridge window [io  0x6000-0x6fff]: assigned
[    5.231695] pci 0000:40:03.1: bridge window [io  size 0x1000]: can't assign; no space
[    5.239521] pci 0000:40:03.1: bridge window [io  size 0x1000]: failed to assign
[    5.246828] pci 0000:40:03.1: PCI bridge to [bus 41]
[    5.251796] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    5.258586] pci 0000:40:03.1:   bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.266847] pci 0000:40:03.2: PCI bridge to [bus 42]
[    5.271812] pci 0000:40:03.2:   bridge window [io  0x6000-0x6fff]
[    5.277904] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    5.284688] pci 0000:40:03.2:   bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.292949] pci 0000:40:03.3: PCI bridge to [bus 43]
[    5.297913] pci 0000:40:03.3:   bridge window [io  0x5000-0x5fff]
[    5.304004] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    5.310791] pci 0000:40:03.3:   bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.319050] pci 0000:40:03.4: PCI bridge to [bus 44]
[    5.324013] pci 0000:40:03.4:   bridge window [io  0x4000-0x4fff]
[    5.330108] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    5.336902] pci 0000:40:03.4:   bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.345163] pci 0000:40:07.1: PCI bridge to [bus 45]
[    5.350136] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    5.356923] pci 0000:40:08.1: PCI bridge to [bus 46]
[    5.361895] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    5.368681] pci_bus 0000:40: Some PCI device resources are unassigned, try booting with pci=realloc
[    5.377717] pci_bus 0000:40: resource 4 [io  0x4000-0x6fff window]
[    5.383896] pci_bus 0000:40: resource 5 [mem 0x90000000-0xaaffffff window]
[    5.390768] pci_bus 0000:40: resource 6 [mem 0x47e80000000-0x63dbfffffff window]
[    5.398158] pci_bus 0000:41: resource 1 [mem 0xa4c00000-0xa4ffffff]
[    5.404425] pci_bus 0000:41: resource 2 [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.412162] pci_bus 0000:42: resource 0 [io  0x6000-0x6fff]
[    5.417734] pci_bus 0000:42: resource 1 [mem 0xa4800000-0xa4bfffff]
[    5.424000] pci_bus 0000:42: resource 2 [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.431740] pci_bus 0000:43: resource 0 [io  0x5000-0x5fff]
[    5.437312] pci_bus 0000:43: resource 1 [mem 0xa4400000-0xa47fffff]
[    5.443575] pci_bus 0000:43: resource 2 [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.451317] pci_bus 0000:44: resource 0 [io  0x4000-0x4fff]
[    5.456886] pci_bus 0000:44: resource 1 [mem 0xa4000000-0xa43fffff]
[    5.463153] pci_bus 0000:44: resource 2 [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.470892] pci_bus 0000:45: resource 1 [mem 0xa5300000-0xa53fffff]
[    5.477156] pci_bus 0000:46: resource 1 [mem 0xa5000000-0xa52fffff]
[    5.483503] pci 0000:80:01.1: bridge window [io  0x1000-0x0fff] to [bus 81] add_size 1000
[    5.491674] pci 0000:80:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 81] add_size 200000 add_align 100000
[    5.503198] pci 0000:80:01.2: bridge window [io  0x1000-0x0fff] to [bus 82] add_size 1000
[    5.511373] pci 0000:80:01.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 82] add_size 200000 add_align 100000
[    5.522840] pci 0000:80:01.1: bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]: assigned
[    5.531797] pci 0000:80:01.2: bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]: assigned
[    5.540747] pci 0000:80:01.1: bridge window [io  0x7000-0x7fff]: assigned
[    5.547535] pci 0000:80:01.2: bridge window [io  0x8000-0x8fff]: assigned
[    5.554318] pci 0000:80:01.1: PCI bridge to [bus 81]
[    5.559284] pci 0000:80:01.1:   bridge window [io  0x7000-0x7fff]
[    5.565378] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    5.572162] pci 0000:80:01.1:   bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.580423] pci 0000:80:01.2: PCI bridge to [bus 82]
[    5.585385] pci 0000:80:01.2:   bridge window [io  0x8000-0x8fff]
[    5.591478] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    5.598262] pci 0000:80:01.2:   bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.606525] pci 0000:80:07.1: PCI bridge to [bus 83]
[    5.611488] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    5.618275] pci 0000:80:08.1: PCI bridge to [bus 84]
[    5.623241] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    5.630027] pci 0000:80:08.2: PCI bridge to [bus 85]
[    5.634989] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    5.641779] pci_bus 0000:80: resource 4 [io  0x7000-0x9fff window]
[    5.647961] pci_bus 0000:80: resource 5 [mem 0xab000000-0xc5ffffff window]
[    5.654835] pci_bus 0000:80: resource 6 [mem 0x2bf40000000-0x47e7fffffff window]
[    5.662225] pci_bus 0000:81: resource 0 [io  0x7000-0x7fff]
[    5.667797] pci_bus 0000:81: resource 1 [mem 0xbf400000-0xbf7fffff]
[    5.674062] pci_bus 0000:81: resource 2 [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.681801] pci_bus 0000:82: resource 0 [io  0x8000-0x8fff]
[    5.687375] pci_bus 0000:82: resource 1 [mem 0xbf000000-0xbf3fffff]
[    5.693645] pci_bus 0000:82: resource 2 [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.701387] pci_bus 0000:83: resource 1 [mem 0xbfa00000-0xbfafffff]
[    5.707670] pci_bus 0000:84: resource 1 [mem 0xbf900000-0xbf9fffff]
[    5.713935] pci_bus 0000:85: resource 1 [mem 0xbf800000-0xbf8fffff]
[    5.720280] pci 0000:c0:03.1: bridge window [io  0x1000-0x0fff] to [bus c4] add_size 1000
[    5.728453] pci 0000:c0:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c4] add_size 200000 add_align 100000
[    5.739917] pci 0000:c0:03.2: bridge window [io  0x1000-0x0fff] to [bus c5] add_size 1000
[    5.748088] pci 0000:c0:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c5] add_size 200000 add_align 100000
[    5.759554] pci 0000:c0:03.3: bridge window [io  0x1000-0x0fff] to [bus c6] add_size 1000
[    5.767726] pci 0000:c0:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c6] add_size 200000 add_align 100000
[    5.779190] pci 0000:c0:03.4: bridge window [io  0x1000-0x0fff] to [bus c7] add_size 1000
[    5.787361] pci 0000:c0:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c7] add_size 200000 add_align 100000
[    5.798829] pci 0000:c0:05.1: bridge window [mem 0x00100000-0x000fffff] to [bus c1] add_size 100000 add_align 100000
[    5.809391] pci 0000:c0:03.1: bridge window [mem 0x10000000000-0x100001fffff 64bit pref]: assigned
[    5.818341] pci 0000:c0:03.2: bridge window [mem 0x10000200000-0x100003fffff 64bit pref]: assigned
[    5.827295] pci 0000:c0:03.3: bridge window [mem 0x10000400000-0x100005fffff 64bit pref]: assigned
[    5.836247] pci 0000:c0:03.4: bridge window [mem 0x10000600000-0x100007fffff 64bit pref]: assigned
[    5.845199] pci 0000:c0:05.1: bridge window [mem 0xc7100000-0xc71fffff]: assigned
[    5.852682] pci 0000:c0:03.1: bridge window [io  0xa000-0xafff]: assigned
[    5.859472] pci 0000:c0:03.2: bridge window [io  0xb000-0xbfff]: assigned
[    5.866255] pci 0000:c0:03.3: bridge window [io  0xc000-0xcfff]: assigned
[    5.873043] pci 0000:c0:03.4: bridge window [io  0xd000-0xdfff]: assigned
[    5.879829] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    5.884792] pci 0000:c0:03.1:   bridge window [io  0xa000-0xafff]
[    5.890886] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    5.897669] pci 0000:c0:03.1:   bridge window [mem 0x10000000000-0x100001fffff 64bit pref]
[    5.905931] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    5.910894] pci 0000:c0:03.2:   bridge window [io  0xb000-0xbfff]
[    5.917006] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    5.923788] pci 0000:c0:03.2:   bridge window [mem 0x10000200000-0x100003fffff 64bit pref]
[    5.932049] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    5.937015] pci 0000:c0:03.3:   bridge window [io  0xc000-0xcfff]
[    5.943107] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    5.949894] pci 0000:c0:03.3:   bridge window [mem 0x10000400000-0x100005fffff 64bit pref]
[    5.958153] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    5.963124] pci 0000:c0:03.4:   bridge window [io  0xd000-0xdfff]
[    5.969217] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    5.976003] pci 0000:c0:03.4:   bridge window [mem 0x10000600000-0x100007fffff 64bit pref]
[    5.984271] pci 0000:c1:00.0: ROM [mem 0xc7100000-0xc713ffff pref]: assigned
[    5.991325] pci 0000:c1:00.1: ROM [mem 0xc7140000-0xc717ffff pref]: assigned
[    5.998368] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    6.003333] pci 0000:c0:05.1:   bridge window [mem 0xc7100000-0xc71fffff]
[    6.010119] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.017862] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    6.022834] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    6.029620] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.037358] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    6.042582] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    6.049366] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.057107] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    6.062072] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    6.068859] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    6.073831] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    6.080619] pci_bus 0000:c0: resource 4 [io  0xa000-0xffff window]
[    6.086801] pci_bus 0000:c0: resource 5 [mem 0xc6000000-0xe0ffffff window]
[    6.093673] pci_bus 0000:c0: resource 6 [mem 0x10000000000-0x2bf3fffffff window]
[    6.101068] pci_bus 0000:c0: resource 7 [io  0x03b0-0x03df window]
[    6.107243] pci_bus 0000:c0: resource 8 [mem 0x000a0000-0x000bffff window]
[    6.114117] pci_bus 0000:c4: resource 0 [io  0xa000-0xafff]
[    6.119699] pci_bus 0000:c4: resource 1 [mem 0xdb600000-0xdb9fffff]
[    6.125963] pci_bus 0000:c4: resource 2 [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.133704] pci_bus 0000:c5: resource 0 [io  0xb000-0xbfff]
[    6.139275] pci_bus 0000:c5: resource 1 [mem 0xdb200000-0xdb5fffff]
[    6.145539] pci_bus 0000:c5: resource 2 [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.153279] pci_bus 0000:c6: resource 0 [io  0xc000-0xcfff]
[    6.158851] pci_bus 0000:c6: resource 1 [mem 0xdae00000-0xdb1fffff]
[    6.165115] pci_bus 0000:c6: resource 2 [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.172853] pci_bus 0000:c7: resource 0 [io  0xd000-0xdfff]
[    6.178428] pci_bus 0000:c7: resource 1 [mem 0xdaa00000-0xdadfffff]
[    6.184692] pci_bus 0000:c7: resource 2 [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.192429] pci_bus 0000:c1: resource 1 [mem 0xc7100000-0xc71fffff]
[    6.198697] pci_bus 0000:c1: resource 2 [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.205915] pci_bus 0000:c2: resource 1 [mem 0xda000000-0xda8fffff]
[    6.212179] pci_bus 0000:c2: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.219400] pci_bus 0000:c3: resource 1 [mem 0xda000000-0xda8fffff]
[    6.225664] pci_bus 0000:c3: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.232884] pci_bus 0000:c8: resource 1 [mem 0xdbb00000-0xdbbfffff]
[    6.239148] pci_bus 0000:c9: resource 1 [mem 0xdba00000-0xdbafffff]
[    6.246088] PCI: CLS 64 bytes, default 64
[    6.250190] Trying to unpack rootfs image as initramfs...
[    6.313047] AMD-Vi: IOMMU SNP support enabled.
[    6.317670] pci 0000:c0:00.2: AMD-Vi: IOMMU performance counters supported
[    6.324702] pci 0000:c0:01.0: Adding to iommu group 0
[    6.329807] pci 0000:c0:02.0: Adding to iommu group 1
[    6.335017] pci 0000:c0:03.0: Adding to iommu group 2
[    6.340118] pci 0000:c0:03.1: Adding to iommu group 2
[    6.345214] pci 0000:c0:03.2: Adding to iommu group 2
[    6.350309] pci 0000:c0:03.3: Adding to iommu group 2
[    6.355404] pci 0000:c0:03.4: Adding to iommu group 2
[    6.360507] pci 0000:c0:04.0: Adding to iommu group 3
[    6.365658] pci 0000:c0:05.0: Adding to iommu group 4
[    6.370762] pci 0000:c0:05.1: Adding to iommu group 4
[    6.375868] pci 0000:c0:05.2: Adding to iommu group 4
[    6.380978] pci 0000:c0:07.0: Adding to iommu group 5
[    6.386060] pci 0000:c0:07.1: Adding to iommu group 6
[    6.391172] pci 0000:c0:08.0: Adding to iommu group 7
[    6.396269] pci 0000:c0:08.1: Adding to iommu group 8
[    6.401330] pci 0000:c1:00.0: Adding to iommu group 4
[    6.406404] pci 0000:c1:00.1: Adding to iommu group 4
[    6.411472] pci 0000:c2:00.0: Adding to iommu group 4
[    6.416532] pci 0000:c3:00.0: Adding to iommu group 4
[    6.421631] pci 0000:c8:00.0: Adding to iommu group 9
[    6.426723] pci 0000:c8:00.2: Adding to iommu group 10
[    6.431895] pci 0000:c9:00.0: Adding to iommu group 11
[    6.437067] pci 0000:c9:00.2: Adding to iommu group 12
[    6.448606] pci 0000:80:00.2: AMD-Vi: IOMMU performance counters supported
[    6.455653] pci 0000:80:01.0: Adding to iommu group 13
[    6.460839] pci 0000:80:01.1: Adding to iommu group 13
[    6.466019] pci 0000:80:01.2: Adding to iommu group 13
[    6.471215] pci 0000:80:02.0: Adding to iommu group 14
[    6.476408] pci 0000:80:03.0: Adding to iommu group 15
[    6.481606] pci 0000:80:04.0: Adding to iommu group 16
[    6.486796] pci 0000:80:05.0: Adding to iommu group 17
[    6.491989] pci 0000:80:07.0: Adding to iommu group 18
[    6.497156] pci 0000:80:07.1: Adding to iommu group 19
[    6.502354] pci 0000:80:08.0: Adding to iommu group 20
[    6.507530] pci 0000:80:08.1: Adding to iommu group 21
[    6.512702] pci 0000:80:08.2: Adding to iommu group 22
[    6.517878] pci 0000:83:00.0: Adding to iommu group 23
[    6.523050] pci 0000:83:00.2: Adding to iommu group 24
[    6.528224] pci 0000:84:00.0: Adding to iommu group 25
[    6.533401] pci 0000:84:00.2: Adding to iommu group 26
[    6.538659] pci 0000:85:00.0: Adding to iommu group 27
[    6.551066] pci 0000:40:00.2: AMD-Vi: IOMMU performance counters supported
[    6.558195] pci 0000:40:01.0: Adding to iommu group 28
[    6.563388] pci 0000:40:02.0: Adding to iommu group 29
[    6.568684] pci 0000:40:03.0: Adding to iommu group 30
[    6.573865] pci 0000:40:03.1: Adding to iommu group 30
[    6.579047] pci 0000:40:03.2: Adding to iommu group 30
[    6.584229] pci 0000:40:03.3: Adding to iommu group 30
[    6.589416] pci 0000:40:03.4: Adding to iommu group 30
[    6.594609] pci 0000:40:04.0: Adding to iommu group 31
[    6.599802] pci 0000:40:05.0: Adding to iommu group 32
[    6.605003] pci 0000:40:07.0: Adding to iommu group 33
[    6.610178] pci 0000:40:07.1: Adding to iommu group 34
[    6.615375] pci 0000:40:08.0: Adding to iommu group 35
[    6.620552] pci 0000:40:08.1: Adding to iommu group 36
[    6.625727] pci 0000:45:00.0: Adding to iommu group 37
[    6.630903] pci 0000:45:00.2: Adding to iommu group 38
[    6.636082] pci 0000:46:00.0: Adding to iommu group 39
[    6.641255] pci 0000:46:00.1: Adding to iommu group 40
[    6.646428] pci 0000:46:00.2: Adding to iommu group 41
[    6.651603] pci 0000:46:00.3: Adding to iommu group 42
[    6.663961] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    6.670970] pci 0000:00:00.0: Adding to iommu group 43
[    6.676164] pci 0000:00:01.0: Adding to iommu group 44
[    6.681356] pci 0000:00:02.0: Adding to iommu group 45
[    6.686169] Freeing initrd memory: 38564K
[    6.686548] pci 0000:00:03.0: Adding to iommu group 46
[    6.695678] pci 0000:00:03.2: Adding to iommu group 47
[    6.700873] pci 0000:00:04.0: Adding to iommu group 48
[    6.706073] pci 0000:00:05.0: Adding to iommu group 49
[    6.711275] pci 0000:00:07.0: Adding to iommu group 50
[    6.716451] pci 0000:00:07.1: Adding to iommu group 51
[    6.721644] pci 0000:00:08.0: Adding to iommu group 52
[    6.726822] pci 0000:00:08.1: Adding to iommu group 53
[    6.732039] pci 0000:00:14.0: Adding to iommu group 54
[    6.737212] pci 0000:00:14.3: Adding to iommu group 54
[    6.742564] pci 0000:00:18.0: Adding to iommu group 55
[    6.747750] pci 0000:00:18.1: Adding to iommu group 55
[    6.752957] pci 0000:00:18.2: Adding to iommu group 55
[    6.758130] pci 0000:00:18.3: Adding to iommu group 55
[    6.763307] pci 0000:00:18.4: Adding to iommu group 55
[    6.768478] pci 0000:00:18.5: Adding to iommu group 55
[    6.773651] pci 0000:00:18.6: Adding to iommu group 55
[    6.778825] pci 0000:00:18.7: Adding to iommu group 55
[    6.783999] pci 0000:01:00.0: Adding to iommu group 56
[    6.789175] pci 0000:02:00.0: Adding to iommu group 57
[    6.794350] pci 0000:02:00.2: Adding to iommu group 58
[    6.799521] pci 0000:03:00.0: Adding to iommu group 59
[    6.804694] pci 0000:03:00.2: Adding to iommu group 60
[    6.809868] pci 0000:03:00.3: Adding to iommu group 61
[    6.824337] AMD-Vi: Extended features (0x841f77e022094ace, 0x0): PPR X2APIC NX IA GA PC SNP
[    6.832699] AMD-Vi: Interrupt remapping enabled
[    6.837234] AMD-Vi: X2APIC enabled
[    6.841626] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    6.848071] software IO TLB: mapped [mem 0x000000005bf37000-0x0000000063f37000] (128MB)
[    6.856220] LVT offset 0 assigned for vector 0x400
[    6.862573] perf: AMD IBS detected (0x000003ff)
[    6.868436] amd_uncore: 4 amd_df counters detected
[    6.873292] amd_uncore: 6 amd_l3 counters detected
[    6.879760] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    6.886915] perf/amd_iommu: Detected AMD IOMMU #1 (2 banks, 4 counters/bank).
[    6.894077] perf/amd_iommu: Detected AMD IOMMU #2 (2 banks, 4 counters/bank).
[    6.901226] perf/amd_iommu: Detected AMD IOMMU #3 (2 banks, 4 counters/bank).
[    6.911636] Initialise system trusted keyrings
[    6.916096] Key type blacklist registered
[    6.920226] workingset: timestamp_bits=36 max_order=26 bucket_order=0
[    6.927199] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    6.933192] fuse: init (API version 7.44)
[    6.937466] integrity: Platform Keyring initialized
[    6.954224] Key type asymmetric registered
[    6.958321] Asymmetric key parser 'x509' registered
[    6.963350] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    6.970841] io scheduler mq-deadline registered
[    6.977965] ledtrig-cpu: registered to indicate activity on CPUs
[    6.984294] pcieport 0000:00:03.2: PME: Signaling with IRQ 38
[    6.990431] pcieport 0000:00:07.1: PME: Signaling with IRQ 40
[    6.996416] pcieport 0000:00:08.1: PME: Signaling with IRQ 41
[    7.002398] pcieport 0000:40:03.1: PME: Signaling with IRQ 42
[    7.008195] pcieport 0000:40:03.1: pciehp: Slot #167 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.022232] pcieport 0000:40:03.2: PME: Signaling with IRQ 43
[    7.028040] pcieport 0000:40:03.2: pciehp: Slot #166 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.042036] pcieport 0000:40:03.3: PME: Signaling with IRQ 44
[    7.047835] pcieport 0000:40:03.3: pciehp: Slot #169 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.061838] pcieport 0000:40:03.4: PME: Signaling with IRQ 45
[    7.067632] pcieport 0000:40:03.4: pciehp: Slot #168 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.081707] pcieport 0000:40:07.1: PME: Signaling with IRQ 47
[    7.087676] pcieport 0000:40:08.1: PME: Signaling with IRQ 48
[    7.093771] pcieport 0000:80:01.1: PME: Signaling with IRQ 49
[    7.099585] pcieport 0000:80:01.1: pciehp: Slot #160 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.113570] pcieport 0000:80:01.2: PME: Signaling with IRQ 50
[    7.119370] pcieport 0000:80:01.2: pciehp: Slot #161 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.133501] pcieport 0000:80:07.1: PME: Signaling with IRQ 52
[    7.139540] pcieport 0000:80:08.1: PME: Signaling with IRQ 54
[    7.145557] pcieport 0000:80:08.2: PME: Signaling with IRQ 55
[    7.151503] pcieport 0000:c0:03.1: PME: Signaling with IRQ 56
[    7.157302] pcieport 0000:c0:03.1: pciehp: Slot #163 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.171288] pcieport 0000:c0:03.2: PME: Signaling with IRQ 57
[    7.177100] pcieport 0000:c0:03.2: pciehp: Slot #162 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.191068] pcieport 0000:c0:03.3: PME: Signaling with IRQ 58
[    7.196871] pcieport 0000:c0:03.3: pciehp: Slot #165 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.210840] pcieport 0000:c0:03.4: PME: Signaling with IRQ 59
[    7.216634] pcieport 0000:c0:03.4: pciehp: Slot #164 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.230604] pcieport 0000:c0:05.1: PME: Signaling with IRQ 60
[    7.236533] pcieport 0000:c0:05.2: PME: Signaling with IRQ 61
[    7.242573] pcieport 0000:c0:07.1: PME: Signaling with IRQ 63
[    7.248595] pcieport 0000:c0:08.1: PME: Signaling with IRQ 65
[    7.255119] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    7.262594] ACPI: button: Power Button [PWRF]
[    7.703687] Estimated ratio of average max frequency by base frequency (times 1024): 1464
[    7.712193] ERST: Error Record Serialization Table (ERST) support is initialized.
[    7.719697] pstore: Using crash dump compression: deflate
[    7.725099] pstore: Registered erst as persistent store backend
[    7.731156] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    7.737719] 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    7.745870] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    7.756963] Linux agpgart interface v0.103
[    7.787595] loop: module loaded
[    7.801982] ahci 0000:85:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[    7.809984] ahci 0000:85:00.0: 8/8 ports implemented (port mask 0xff)
[    7.816431] ahci 0000:85:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part sxs 
[    7.826730] scsi host0: ahci
[    7.829848] scsi host1: ahci
[    7.832954] scsi host2: ahci
[    7.836052] scsi host3: ahci
[    7.839152] scsi host4: ahci
[    7.842263] scsi host5: ahci
[    7.845367] scsi host6: ahci
[    7.848471] scsi host7: ahci
[    7.851425] ata1: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800100 irq 67 lpm-pol 0 ext
[    7.860038] ata2: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800180 irq 68 lpm-pol 0 ext
[    7.868642] ata3: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800200 irq 69 lpm-pol 0 ext
[    7.877245] ata4: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800280 irq 70 lpm-pol 0 ext
[    7.885850] ata5: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800300 irq 71 lpm-pol 0 ext
[    7.894456] ata6: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800380 irq 72 lpm-pol 0 ext
[    7.903068] ata7: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800400 irq 73 lpm-pol 0 ext
[    7.911679] ata8: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800480 irq 74 lpm-pol 0 ext
[    7.920637] tun: Universal TUN/TAP device driver, 1.6
[    7.925791] PPP generic driver version 2.4.2
[    7.930071] tsc: Refined TSC clocksource calibration: 1996.250 MHz
[    7.936306] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398caf77d7a, max_idle_ns: 881590459467 ns
[    7.936470] VFIO - User Level meta-driver version: 0.3
[    7.951474] clocksource: Switched to clocksource tsc
[    7.951803] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    7.961674] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 1
[    7.969184] xhci_hcd 0000:03:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    7.978732] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    7.983963] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 2
[    7.991361] xhci_hcd 0000:03:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    7.998454] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.006720] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.013943] usb usb1: Product: xHCI Host Controller
[    8.018825] usb usb1: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.027778] usb usb1: SerialNumber: 0000:03:00.3
[    8.032584] hub 1-0:1.0: USB hub found
[    8.036377] hub 1-0:1.0: 2 ports detected
[    8.041252] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.049368] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.057637] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.064864] usb usb2: Product: xHCI Host Controller
[    8.069747] usb usb2: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.078703] usb usb2: SerialNumber: 0000:03:00.3
[    8.083466] hub 2-0:1.0: USB hub found
[    8.087228] hub 2-0:1.0: 2 ports detected
[    8.092175] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.097410] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 3
[    8.104903] xhci_hcd 0000:46:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.114429] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.119662] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 4
[    8.127060] xhci_hcd 0000:46:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.134150] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.142408] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.149629] usb usb3: Product: xHCI Host Controller
[    8.154507] usb usb3: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.163459] usb usb3: SerialNumber: 0000:46:00.3
[    8.168245] hub 3-0:1.0: USB hub found
[    8.172010] hub 3-0:1.0: 2 ports detected
[    8.176846] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.184961] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.193226] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.200454] usb usb4: Product: xHCI Host Controller
[    8.205334] usb usb4: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.214293] usb usb4: SerialNumber: 0000:46:00.3
[    8.219064] hub 4-0:1.0: USB hub found
[    8.222828] hub 4-0:1.0: 2 ports detected
[    8.227892] usbcore: registered new interface driver uas
[    8.233238] usbcore: registered new interface driver usb-storage
[    8.234526] ata4: SATA link down (SStatus 0 SControl 300)
[    8.239282] i8042: PNP: No PS/2 controller found.
[    8.244679] ata5: SATA link down (SStatus 0 SControl 300)
[    8.249465] mousedev: PS/2 mouse device common for all mice
[    8.254793] ata8: SATA link down (SStatus 0 SControl 300)
[    8.260462] rtc_cmos 00:02: RTC can wake from S4
[    8.265791] ata3: SATA link down (SStatus 0 SControl 300)
[    8.270760] rtc_cmos 00:02: registered as rtc0
[    8.275810] ata1: SATA link down (SStatus 0 SControl 300)
[    8.280304] rtc_cmos 00:02: setting system clock to 2025-06-17T12:31:26 UTC (1750163486)
[    8.285653] ata7: SATA link down (SStatus 0 SControl 300)
[    8.288248] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[    8.293755] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram
[    8.299140] ata2: SATA link down (SStatus 0 SControl 300)
[    8.305649] i2c_dev: i2c /dev entries driver
[    8.312364] ata6: SATA link down (SStatus 0 SControl 300)
[    8.317753] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    8.339595] device-mapper: uevent: version 1.0.3
[    8.344327] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists•linux.dev
[    8.353202] amd_pstate: driver load is disabled, boot with specific mode to enable this
[    8.361245] efifb: probing for efifb
[    8.364842] efifb: No BGRT, not showing boot graphics
[    8.369894] efifb: framebuffer at 0xc6000000, using 3072k, total 3072k
[    8.376417] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    8.382425] efifb: scrolling: redraw
[    8.386006] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    8.391637] fbcon: Deferring console take-over
[    8.396085] fb0: EFI VGA frame buffer device
[    8.400458] drop_monitor: Initializing network drop monitor service
[    8.406882] NET: Registered PF_INET6 protocol family
[    8.418718] Segment Routing with IPv6
[    8.422400] In-situ OAM (IOAM) with IPv6
[    8.426351] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[    8.426355] NET: Registered PF_PACKET protocol family
[    8.426439] Key type dns_resolver registered
[    8.435426] usb 1-1: New USB device found, idVendor=0424, idProduct=2744, bcdDevice= 1.21
[    8.450380] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    8.457514] usb 1-1: Product: USB2734
[    8.461179] usb 1-1: Manufacturer: Microchip Tech
[    8.468920] x86/amd: Previous system reset reason [0x00080800]: software wrote 0x6 to reset control register 0xCF9
[    8.479321] microcode: Current revision: 0x0a0011d5
[    8.484204] microcode: Updated early from: 0x0a0011d5
[    8.492620] resctrl: L3 allocation detected
[    8.496806] resctrl: MB allocation detected
[    8.500989] resctrl: L3 monitoring detected
[    8.505342] IPI shorthand broadcast: enabled
[    8.510903] hub 1-1:1.0: USB hub found
[    8.513357] sched_clock: Marking stable (8448001529, 64231389)->(9539273849, -1027040931)
[    8.514932] hub 1-1:1.0: 4 ports detected
[    8.527405] registered taskstats version 1
[    8.534059] Loading compiled-in X.509 certificates
[    8.539399] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.553893] Demotion targets for Node 0: null
[    8.558262] Demotion targets for Node 1: null
[    8.563122] Key type .fscrypt registered
[    8.567046] Key type fscrypt-provisioning registered
[    8.573172] usb 3-1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    8.581380] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.588060] Key type encrypted registered
[    8.588568] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
[    8.592524] AppArmor: AppArmor sha256 policy hashing enabled
[    8.592603] integrity: Loading X.509 certificate: UEFI:db
[    8.610130] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    8.612718] usb 2-1: New USB device found, idVendor=0424, idProduct=5744, bcdDevice= 1.21
[    8.620905] integrity: Loading X.509 certificate: UEFI:db
[    8.620922] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    8.629096] usb 2-1: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[    8.634478] integrity: Loading X.509 certificate: UEFI:db
[    8.634599] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    8.645514] usb 2-1: Product: USB5734
[    8.652644] integrity: Loading X.509 certificate: UEFI:db
[    8.652781] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    8.658042] usb 2-1: Manufacturer: Microchip Tech
[    8.667201] ima: No TPM chip found, activating TPM-bypass!
[    8.678609] hub 3-1:1.0: USB hub found
[    8.687293] Loading compiled-in module X.509 certificates
[    8.687719] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.692175] hub 3-1:1.0: 4 ports detected
[    8.697485] ima: Allocated hash algorithm: sha1
[    8.703395] hub 2-1:1.0: USB hub found
[    8.706644] ima: No architecture policies found
[    8.716585] hub 2-1:1.0: 4 ports detected
[    8.720580] evm: Initialising EVM extended attributes:
[    8.742530] evm: security.selinux
[    8.745851] evm: security.SMACK64
[    8.749170] evm: security.SMACK64EXEC
[    8.752836] evm: security.SMACK64TRANSMUTE
[    8.756936] evm: security.SMACK64MMAP
[    8.760600] evm: security.apparmor
[    8.764005] evm: security.ima
[    8.766980] evm: security.capability
[    8.770558] evm: HMAC attrs: 0x1
[    8.774165] PM:   Magic number: 13:28:532
[    8.778214] tty ttyS12: hash matches
[    8.781801] port serial8250:0.11: hash matches
[    8.786283] thermal cooling_device96: hash matches
[    8.791741] RAS: Correctable Errors collector initialized.
[    8.797370] clk: Disabling unused clocks
[    8.801300] PM: genpd: Disabling unused power domains
[    8.808080] Freeing unused decrypted memory: 2028K
[    8.813666] Freeing unused kernel image (initmem) memory: 4760K
[    8.819601] Write protecting the kernel read-only data: 26624k
[    8.825876] Freeing unused kernel image (text/rodata gap) memory: 28K
[    8.832511] Freeing unused kernel image (rodata/data gap) memory: 248K
[    8.926019] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    8.932473] Run /init as init process
[    8.942943] systemd[1]: Inserted module 'autofs4'
[    9.170263] systemd[1]: systemd 252-46.el9_5.3 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)
[    9.202713] systemd[1]: Detected architecture x86-64.
[    9.207767] systemd[1]: Running in initrd.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow) dracut-057-80.git20250411.el9_5 (Initramfs)^[[0m!

[    9.232334] systemd[1]: Hostname set to <sharavati.amd.com>.
[    9.347096] systemd[1]: Queued start job for default target Initrd Default Target.
[    9.354782] systemd[1]: Reached target Initrd /usr File System.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd /usr File System^[[0m.
[    9.372302] systemd[1]: Reached target Local File Systems.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
[    9.388357] systemd[1]: Reached target Slice Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSlice Units^[[0m.
[    9.404302] systemd[1]: Reached target Swaps.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwaps^[[0m.
[    9.416249] usb 3-1.1: new high-speed USB device number 3 using xhci_hcd
[    9.422987] systemd[1]: Reached target Timer Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[    9.436423] systemd[1]: Listening on D-Bus System Message Bus Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[    9.456447] systemd[1]: Listening on Journal Socket (/dev/log).
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket (/dev/log)^[[0m.
[    9.472446] systemd[1]: Listening on Journal Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket^[[0m.
[    9.488452] systemd[1]: Listening on udev Control Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[    9.504399] systemd[1]: Listening on udev Kernel Socket.
[^[[0;32m  OK  ^[[[    9.510678] usb 3-1.1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
0m] Listening on[    9.519472] usb 3-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
 ^[[0;1;39mudev Kernel Socket^[[0m.
[    9.536299] systemd[1]: Reached target Socket Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
[    9.574618] hub 3-1.1:1.0: USB hub found
[    9.577616] systemd[1]: Starting Create List of Static Device Nodes...
[    9.578801] hub 3-1.1:1.0: 4 ports detected
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
[    9.602710] systemd[1]: Starting Journal Service...
         Starting ^[[0;1;39mJournal Service^[[0m...
[    9.617588] systemd[1]: Starting Load Kernel Modules...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
[    9.633518] systemd[1]: Starting Create System Users...
         Starting ^[[0;1;39mCreate System Users^[[0m...
[    9.649511] systemd[1]: Starting Setup Virtual Console...
         Starting ^[[0;1;39mSetup Virtual Console^[[0m...
[    9.664251] usb 3-1.4: new high-speed USB device number 4 using xhci_hcd
[    9.665682] systemd[1]: Finished Create List of Static Device Nodes.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[    9.692790] systemd[1]: Finished Load Kernel Modules.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[    9.708479] systemd[1]: Started Journal Service.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSetup Virtual Console^[[0m.
[    9.761182] usb 3-1.4: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    9.769532] usb 3-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
         Starting ^[[0;1;39mdracut cmdline hook^[[0m...
         Starting ^[[0;1;39mApply Kernel Variables^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate System Users^[[0m.
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0[    9.830527] hub 3-1.4:1.0: USB hub found
m...
[    9.835425] hub 3-1.4:1.0: 4 ports detected
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut cmdline hook^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Starting ^[[0;1;39mdracut pre-udev hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-udev hook^[[0m.
         Starting ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[   10.216462] wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQBC data block query control method not found
[^[[0;32m  OK  ^[[0m] Finished ^[[0[   10.227999] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
;1;39mColdplug A[   10.228825] ccp 0000:46:00.1: no command queues available
ll udev Devices^[[   10.234625] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[0m.
[   10.241321] ccp 0000:46:00.1: sev enabled
[   10.249984] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[   10.254292] ccp 0000:46:00.1: psp enabled
[^[[0;32m  OK  ^[[0m] Reached targ[   10.267331] ACPI: bus type drm_connector registered
et ^[[0;1;39mSyst[   10.268875] tg3 0000:c1:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:90
em Initializatio[   10.285058] tg3 0000:c1:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
n^[[0m.
[   10.285345] mpt3sas version 52.100.00.00 loaded
[   10.296279] tg3 0000:c1:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.301959] mpt3sas_cm0: 63 BIT PCI BUS DMA ADDRESSING SUPPORTED, total mem (262592948 kB)
[   10.309320] tg3 0000:c1:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[   10.324545] mgag200 0000:c3:00.0: vgaarb: deactivate vga console
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork^[[0m.
[   10.337219] [drm] Initialized mgag200 1.0.0 for 0000:c3:00.0 on minor 0
[   10.351405] fbcon: mgag200drmfb (fb0) is primary device
[   10.351407] fbcon: Deferring console take-over
[   10.361293] mgag200 0000:c3:00.0: [drm] fb0: mgag200drmfb frame buffer device
[   10.368239] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   10.376456] mpt3sas_cm0: MSI-X vectors supported: 96
[   10.381432] 	 no of cores: 128, max_msix_vectors: -1
[   10.381434] mpt3sas_cm0:  0 96 96
[   10.381933] tg3 0000:c1:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:91
[   10.385457] mpt3sas_cm0: High IOPs queues : disabled
[   10.385460] mpt3sas0-msix0: PCI-MSI-X enabled: IRQ 108
[   10.385462] mpt3sas0-msix1: PCI-MSI-X enabled: IRQ 109
[   10.385463] mpt3sas0-msix2: PCI-MSI-X enabled: IRQ 110
[   10.385465] mpt3sas0-msix3: PCI-MSI-X enabled: IRQ 111
[   10.385466] mpt3sas0-msix4: PCI-MSI-X enabled: IRQ 112
[   10.385468] mpt3sas0-msix5: PCI-MSI-X enabled: IRQ 113
[   10.385469] mpt3sas0-msix6: PCI-MSI-X enabled: IRQ 114
[   10.385471] mpt3sas0-msix7: PCI-MSI-X enabled: IRQ 115
[   10.385472] mpt3sas0-msix8: PCI-MSI-X enabled: IRQ 116
[   10.385474] mpt3sas0-msix9: PCI-MSI-X enabled: IRQ 117
[   10.385475] mpt3sas0-msix10: PCI-MSI-X enabled: IRQ 118
[   10.385476] mpt3sas0-msix11: PCI-MSI-X enabled: IRQ 119
[   10.385478] mpt3sas0-msix12: PCI-MSI-X enabled: IRQ 120
[   10.385479] mpt3sas0-msix13: PCI-MSI-X enabled: IRQ 121
[   10.385481] mpt3sas0-msix14: PCI-MSI-X enabled: IRQ 122
[   10.385482] mpt3sas0-msix15: PCI-MSI-X enabled: IRQ 123
[   10.385483] mpt3sas0-msix16: PCI-MSI-X enabled: IRQ 124
[   10.385485] mpt3sas0-msix17: PCI-MSI-X enabled: IRQ 125
[   10.385486] mpt3sas0-msix18: PCI-MSI-X enabled: IRQ 126
[   10.385487] mpt3sas0-msix19: PCI-MSI-X enabled: IRQ 127
[   10.385489] mpt3sas0-msix20: PCI-MSI-X enabled: IRQ 128
[   10.385490] mpt3sas0-msix21: PCI-MSI-X enabled: IRQ 129
[   10.385492] mpt3sas0-msix22: PCI-MSI-X enabled: IRQ 130
[   10.385493] mpt3sas0-msix23: PCI-MSI-X enabled: IRQ 131
[   10.385494] mpt3sas0-msix24: PCI-MSI-X enabled: IRQ 132
[   10.385496] mpt3sas0-msix25: PCI-MSI-X enabled: IRQ 133
[   10.385497] mpt3sas0-msix26: PCI-MSI-X enabled: IRQ 134
[   10.385498] mpt3sas0-msix27: PCI-MSI-X enabled: IRQ 135
[   10.385500] mpt3sas0-msix28: PCI-MSI-X enabled: IRQ 136
[   10.385501] mpt3sas0-msix29: PCI-MSI-X enabled: IRQ 137
[   10.385503] mpt3sas0-msix30: PCI-MSI-X enabled: IRQ 138
[   10.385504] mpt3sas0-msix31: PCI-MSI-X enabled: IRQ 139
[   10.385505] mpt3sas0-msix32: PCI-MSI-X enabled: IRQ 140
[   10.385507] mpt3sas0-msix33: PCI-MSI-X enabled: IRQ 141
[   10.385508] mpt3sas0-msix34: PCI-MSI-X enabled: IRQ 142
[   10.385509] mpt3sas0-msix35: PCI-MSI-X enabled: IRQ 143
[   10.385511] mpt3sas0-msix36: PCI-MSI-X enabled: IRQ 144
[   10.385512] mpt3sas0-msix37: PCI-MSI-X enabled: IRQ 145
[   10.385514] mpt3sas0-msix38: PCI-MSI-X enabled: IRQ 146
[   10.385515] mpt3sas0-msix39: PCI-MSI-X enabled: IRQ 147
[   10.385516] mpt3sas0-msix40: PCI-MSI-X enabled: IRQ 148
[   10.385518] mpt3sas0-msix41: PCI-MSI-X enabled: IRQ 149
[   10.385519] mpt3sas0-msix42: PCI-MSI-X enabled: IRQ 150
[   10.385520] mpt3sas0-msix43: PCI-MSI-X enabled: IRQ 151
[   10.385522] mpt3sas0-msix44: PCI-MSI-X enabled: IRQ 152
[   10.385523] mpt3sas0-msix45: PCI-MSI-X enabled: IRQ 153
[   10.385524] mpt3sas0-msix46: PCI-MSI-X enabled: IRQ 154
[   10.385526] mpt3sas0-msix47: PCI-MSI-X enabled: IRQ 155
[   10.385527] mpt3sas0-msix48: PCI-MSI-X enabled: IRQ 156
[   10.385529] mpt3sas0-msix49: PCI-MSI-X enabled: IRQ 157
[   10.385530] mpt3sas0-msix50: PCI-MSI-X enabled: IRQ 158
[   10.385531] mpt3sas0-msix51: PCI-MSI-X enabled: IRQ 159
[   10.385533] mpt3sas0-msix52: PCI-MSI-X enabled: IRQ 160
[   10.385534] mpt3sas0-msix53: PCI-MSI-X enabled: IRQ 161
[   10.385535] mpt3sas0-msix54: PCI-MSI-X enabled: IRQ 162
[   10.385537] mpt3sas0-msix55: PCI-MSI-X enabled: IRQ 163
[   10.385539] mpt3sas0-msix56: PCI-MSI-X enabled: IRQ 164
[   10.385540] mpt3sas0-msix57: PCI-MSI-X enabled: IRQ 165
[   10.385542] mpt3sas0-msix58: PCI-MSI-X enabled: IRQ 166
[   10.385543] mpt3sas0-msix59: PCI-MSI-X enabled: IRQ 167
[   10.385545] mpt3sas0-msix60: PCI-MSI-X enabled: IRQ 168
[   10.385546] mpt3sas0-msix61: PCI-MSI-X enabled: IRQ 169
[   10.385547] mpt3sas0-msix62: PCI-MSI-X enabled: IRQ 170
[   10.385549] mpt3sas0-msix63: PCI-MSI-X enabled: IRQ 171
[   10.385550] mpt3sas0-msix64: PCI-MSI-X enabled: IRQ 172
[   10.385551] mpt3sas0-msix65: PCI-MSI-X enabled: IRQ 173
[   10.385553] mpt3sas0-msix66: PCI-MSI-X enabled: IRQ 174
[   10.385554] mpt3sas0-msix67: PCI-MSI-X enabled: IRQ 175
[   10.385556] mpt3sas0-msix68: PCI-MSI-X enabled: IRQ 176
[   10.385557] mpt3sas0-msix69: PCI-MSI-X enabled: IRQ 177
[   10.385558] mpt3sas0-msix70: PCI-MSI-X enabled: IRQ 178
[   10.385560] mpt3sas0-msix71: PCI-MSI-X enabled: IRQ 179
[   10.385561] mpt3sas0-msix72: PCI-MSI-X enabled: IRQ 180
[   10.385562] mpt3sas0-msix73: PCI-MSI-X enabled: IRQ 181
[   10.385564] mpt3sas0-msix74: PCI-MSI-X enabled: IRQ 182
[   10.385565] mpt3sas0-msix75: PCI-MSI-X enabled: IRQ 183
[   10.385567] mpt3sas0-msix76: PCI-MSI-X enabled: IRQ 184
[   10.385568] mpt3sas0-msix77: PCI-MSI-X enabled: IRQ 185
[   10.385569] mpt3sas0-msix78: PCI-MSI-X enabled: IRQ 186
[   10.385571] mpt3sas0-msix79: PCI-MSI-X enabled: IRQ 187
[   10.385572] mpt3sas0-msix80: PCI-MSI-X enabled: IRQ 188
[   10.385574] mpt3sas0-msix81: PCI-MSI-X enabled: IRQ 189
[   10.385575] mpt3sas0-msix82: PCI-MSI-X enabled: IRQ 190
[   10.385576] mpt3sas0-msix83: PCI-MSI-X enabled: IRQ 191
[   10.385578] mpt3sas0-msix84: PCI-MSI-X enabled: IRQ 192
[   10.385579] mpt3sas0-msix85: PCI-MSI-X enabled: IRQ 193
[   10.385580] mpt3sas0-msix86: PCI-MSI-X enabled: IRQ 194
[   10.385582] mpt3sas0-msix87: PCI-MSI-X enabled: IRQ 195
[   10.385583] mpt3sas0-msix88: PCI-MSI-X enabled: IRQ 196
[   10.385585] mpt3sas0-msix89: PCI-MSI-X enabled: IRQ 197
[   10.385586] mpt3sas0-msix90: PCI-MSI-X enabled: IRQ 198
[   10.385587] mpt3sas0-msix91: PCI-MSI-X enabled: IRQ 199
[   10.385589] mpt3sas0-msix92: PCI-MSI-X enabled: IRQ 200
[   10.385590] mpt3sas0-msix93: PCI-MSI-X enabled: IRQ 201
[   10.385591] mpt3sas0-msix94: PCI-MSI-X enabled: IRQ 202
[   10.385593] mpt3sas0-msix95: PCI-MSI-X enabled: IRQ 203
[   10.385594] mpt3sas_cm0: iomem(0x00000000e2200000), mapped(0x000000009d6c86c1), size(65536)
[   10.385597] mpt3sas_cm0: ioport(0x0000000000001000), size(256)
[   10.426273] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   10.430919] tg3 0000:c1:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.436061] mpt3sas_cm0: sending message unit reset !!
[   10.441203] tg3 0000:c1:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.447844] mpt3sas_cm0: message unit reset: SUCCESS
[   10.451477] tg3 0000:c1:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[   10.480763] mpt3sas_cm0: scatter gather: sge_in_main_msg(1), sge_per_chain(7), sge_per_io(128), chains_per_io(19)
         Startin[   10.974196] mpt3sas_cm0: request pool(0x00000000fbff6701) - dma(0xe0600000): depth(9700), frame_size(128), pool_size(1212 kB)
g ^[[0;1;39mdracut initqueue hook^[[0m...
         Starting ^[[0;1;39mShow Plymouth Boot Screen^[[0m...
[   11.011387] mpt3sas_cm0: sense pool(0x00000000544860b6) - dma(0xdef00000): depth(9463), element_size(96), pool_size (887 kB)
[^[[0;32m  OK  ^[[[   11.022702] mpt3sas_cm0: reply pool(0x0000000018343d16) - dma(0xdec00000): depth(9764), frame_size(128), pool_size(1220 kB)
0m] Started ^[[0;[   11.035212] mpt3sas_cm0: config page(0x00000000324f89dd) - dma(0xdebee000): size(512)
1;39mShow Plymou[   11.044404] mpt3sas_cm0: Allocated physical memory: size(40437 kB)
th Boot Screen^[[[   11.044405] mpt3sas_cm0: Current Controller Queue Depth(9460),Max Controller Queue Depth(9584)
0m.
[^[[0;32m  [   11.044407] mpt3sas_cm0: Scatter Gather Elements per IO(128)
OK  ^[[0m] Started ^[[0;1;39mForward Password Requests to Plymouth Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  [   11.082660] mpt3sas_cm0: _base_display_fwpkg_version: complete
OK  ^[[0m] Reache[   11.088721] mpt3sas_cm0: FW Package Ver(16.17.01.00)
d target ^[[0;1;3[   11.095364] mpt3sas_cm0: LSISAS3008: FWVersion(16.00.11.00), ChipRevision(0x02)
9mBasic System^[[[   11.103769] mpt3sas_cm0: Protocol=(Initiator,Target), Capabilities=(TLR,EEDP,Snapshot Buffer,Diag Trace Buffer,Task Set Full,NCQ)
0m.
[   11.116858] scsi host8: Fusion MPT SAS Host
[   11.123325] mpt3sas_cm0: sending port enable !!
[   11.128292] mpt3sas_cm0: hba_port entry: 000000006e0a3b2b, port: 255 is added to hba_port list
[   11.138030] mpt3sas_cm0: host_add: handle(0x0001), sas_addr(0x52cea7f0be87bf00), phys(8)
[   11.146462] mpt3sas_cm0: handle(0xa) sas_address(0x4433221100000000) port_type(0x1)
[   11.155465] scsi 8:0:0:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.163562] scsi 8:0:0:0: SATA: handle(0x000a), sas_addr(0x4433221100000000), phy(0), device_name(0x500a075131911ad0)
[   11.174161] scsi 8:0:0:0: enclosure logical id (0x52cea7f0be87bf00), slot(1) 
[   11.181292] scsi 8:0:0:0: enclosure level(0x0001), connector name(     )
[   11.188061] scsi 8:0:0:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.196502] scsi 8:0:0:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.211309]  end_device-8:0: add: handle(0x000a), sas_addr(0x4433221100000000)
[   11.218662] mpt3sas_cm0: handle(0xc) sas_address(0x58ce38ee219651a2) port_type(0x1)
[   11.226815] scsi 8:0:1:0: Direct-Access     KIOXIA   KPM6WVUG960G     BD08 PQ: 0 ANSI: 6
[   11.234908] scsi 8:0:1:0: SSP: handle(0x000c), sas_addr(0x58ce38ee219651a2), phy(4), device_name(0x58ce38ee219651a0)
[   11.245416] scsi 8:0:1:0: enclosure logical id (0x52cea7f0be87bf00), slot(0) 
[   11.252550] scsi 8:0:1:0: enclosure level(0x0001), connector name(     )
[   11.259265] scsi 8:0:1:0: qdepth(254), tagged(1), scsi_level(7), cmd_que(1)
[   11.267721]  end_device-8:1: add: handle(0x000c), sas_addr(0x58ce38ee219651a2)
[   11.275066] mpt3sas_cm0: handle(0xb) sas_address(0x4433221106000000) port_type(0x1)
[   11.283849] scsi 8:0:2:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.291944] scsi 8:0:2:0: SATA: handle(0x000b), sas_addr(0x4433221106000000), phy(6), device_name(0x500a075131911a6f)
[   11.302536] scsi 8:0:2:0: enclosure logical id (0x52cea7f0be87bf00), slot(2) 
[   11.309670] scsi 8:0:2:0: enclosure level(0x0001), connector name(     )
[   11.316462] scsi 8:0:2:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.324901] scsi 8:0:2:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.339719]  end_device-8:2: add: handle(0x000b), sas_addr(0x4433221106000000)
[   11.348254] mpt3sas_cm0: port enable: SUCCESS
[   11.352903] scsi 8:0:0:0: Attached scsi generic sg0 type 0
[   11.353559] sd 8:0:0:0: [sda] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.358692] scsi 8:0:1:0: Attached scsi generic sg1 type 0
[   11.358942] sd 8:0:1:0: [sdb] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.358946] sd 8:0:1:0: [sdb] 4096-byte physical blocks
[   11.359133] sd 8:0:1:0: [sdb] Write Protect is off
[   11.359354] sd 8:0:1:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   11.365962] sd 8:0:0:0: [sda] 4096-byte physical blocks
[   11.367978] sd 8:0:0:0: [sda] Write Protect is off
[   11.371697] sd 8:0:2:0: Attached scsi generic sg2 type 0
[   11.379733] sd 8:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.384261] sd 8:0:2:0: [sdc] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.429592] sd 8:0:2:0: [sdc] 4096-byte physical blocks
[   11.436850] sd 8:0:2:0: [sdc] Write Protect is off
[   11.442386] sd 8:0:2:0: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.453427]  sdb: sdb1 sdb2
[   11.456393] sd 8:0:1:0: [sdb] Attached SCSI disk
[   11.502167]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7
[   11.507562] sd 8:0:0:0: [sda] Attached SCSI disk
[   11.538477]  sdc: sdc1 sdc2
[   11.541422] sd 8:0:2:0: [sdc] Attached SCSI disk
[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39m/dev/mapper/rhel_sharavati-root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut initqueue hook^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m.
         Mounting ^[[0;1;39m/sysroot^[[0m...
[   12.267882] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled
[   12.278231] XFS (dm-1): Mounting V5 Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[   12.304111] XFS (dm-1): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/sysroot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root File System^[[0m.
         Starting ^[[0;1;39mMountpoints Configured in the Real Root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMountpoints Configured in the Real Root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Default Target^[[0m.
         Starting ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
         Starting ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Default Target^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd /usr File System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut initqueue hook^[[0m.
         Starting ^[[0;1;39mPlymouth switch root service^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
[[   12.546133] systemd-journald[1088]: Received SIGTERM from PID 1 (systemd).
^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mColdplug All udev Devices^[[0m.
         Stopping ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Kernel Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-udev hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut cmdline hook^[[0m.
         Starting ^[[0;1;39mCleanup udev Database^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate System Users^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleanup udev Database^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwitch Root^[[0m.
         Starting ^[[0;1;39mSwitch Root^[[0m...
[   12.659065] systemd[1]: RTC configured in localtime, applying delta of 330 minutes to system time.
[   12.683927] systemd[1]: systemd 252-46.el9_5.3 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)
[   12.716402] systemd[1]: Detected architecture x86-64.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow)^[[0m!

[   12.790887] systemd-rc-local-generator[1696]: /etc/rc.d/rc.local is not marked executable, skipping.
[   13.048811] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[   13.056128] systemd[1]: Stopped Switch Root.
[^[[0;32m  OK  ^[[[   13.060693] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
0m] Stopped ^[[0;[   13.071424] systemd[1]: Created slice Virtual Machine and Container Slice.
1;39mSwitch Root[   13.079751] systemd[1]: Created slice Slice /system/getty.
^[[0m.
[^[[0;32m[   13.086658] systemd[1]: Created slice Slice /system/modprobe.
  OK  ^[[0m] Crea[   13.093910] systemd[1]: Created slice Slice /system/serial-getty.
ted slice ^[[0;1;[   13.101257] systemd[1]: Created slice Slice /system/sshd-keygen.
39mVirtual Machi[   13.108646] systemd[1]: Created slice Slice /system/systemd-fsck.
ne and Container[   13.116148] systemd[1]: Created slice User and Session Slice.
 Slice^[[0m.
[^[[   13.122575] systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
[0;32m  OK  ^[[0m[   13.138903] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
] Created slice [   13.147999] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
^[[0;1;39mSlice /[   13.158633] systemd[1]: Reached target Local Encrypted Volumes.
system/getty^[[0m[   13.165923] systemd[1]: Stopped target Switch Root.
.
[^[[0;32m  OK[   13.172186] systemd[1]: Stopped target Initrd File Systems.
  ^[[0m] Created [   13.179140] systemd[1]: Stopped target Initrd Root File System.
slice ^[[0;1;39mS[   13.186447] systemd[1]: Reached target Local Integrity Protected Volumes.
lice /system/mod[   13.194629] systemd[1]: Reached target Path Units.
probe^[[0m.
[^[[[   13.200802] systemd[1]: Reached target Slice Units.
0;32m  OK  ^[[0m][   13.207064] systemd[1]: Reached target Local Verity Protected Volumes.
 Created slice ^[[   13.215033] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[0;1;39mSlice /s[   13.223133] systemd[1]: Listening on LVM2 poll daemon socket.
ystem/serial-get[   13.230060] systemd[1]: multipathd control socket was skipped because of an unmet condition check (ConditionPathExists=/etc/multipath.conf).
ty^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/sshd-keygen^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Set up automount ^[[0;1;39mArbitrary Executa…ormats File System Automount Point^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal Encrypted Volumes^[[0m.
[^[[0;32m  OK  ^[[   13.288905] systemd[1]: Listening on RPCbind Server Activation Socket.
[0m] Stopped tar[   13.296349] systemd[1]: Reached target RPC Port Mapper.
get ^[[0;1;39mSwi[   13.304046] systemd[1]: Listening on Process Core Dump Socket.
tch Root^[[0m.
[   13.310173] systemd[1]: Listening on initctl Compatibility Named Pipe.
[^[[0;32m  OK  ^[[[   13.319153] systemd[1]: Listening on udev Control Socket.
0m] Stopped targ[   13.324897] systemd[1]: Listening on udev Kernel Socket.
et ^[[0;1;39mInitrd File Systems^[[   13.332889] systemd[1]: Activating swap /dev/mapper/rhel_sharavati-swap...
[0m.
[^[[0;32m [   13.338135] Adding 7815164k swap on /dev/mapper/rhel_sharavati-swap.  Priority:-2 extents:1 across:7815164k SS
 OK  ^[[0m] Stopped target ^[[0;1;[   13.354001] systemd[1]: Mounting Huge Pages File System...
39mInitrd Root F[   13.362035] systemd[1]: Mounting POSIX Message Queue File System...
ile System^[[0m.
[^[[0;32m  OK  [   13.369849] systemd[1]: Mounting Kernel Debug File System...
^[[0m] Reached ta[   13.378089] systemd[1]: Mounting Kernel Trace File System...
rget ^[[0;1;39mLo[   13.383982] systemd[1]: Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
cal Integrity Pr[   13.398814] systemd[1]: iscsi-starter.service was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes).
otected Volumes^[[0m.
[^[[0;32m [   13.414228] systemd[1]: Starting Create List of Static Device Nodes...
 OK  ^[[0m] Reached target ^[[0;1;[   13.423467] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
39mPath Units^[[0[   13.436303] systemd[1]: Starting Load Kernel Module configfs...
m.
[^[[0;32m  OK  ^[[0m] Reached[   13.443823] systemd[1]: Starting Load Kernel Module drm...
 target ^[[0;1;39[   13.451802] systemd[1]: Starting Load Kernel Module fuse...
mSlice Units^[[0m.
[^[[0;32m  OK[   13.459431] systemd[1]: Starting Read and set NIS domainname from /etc/sysconfig/network...
  ^[[0m] Reached [   13.468840] systemd[1]: plymouth-switch-root.service: Deactivated successfully.
target ^[[0;1;39m[   13.477502] systemd[1]: Stopped Plymouth switch root service.
Local Verity Pro[   13.484750] systemd[1]: systemd-fsck-root.service: Deactivated successfully.
tected Volumes^[[[   13.493049] systemd[1]: Stopped File System Check on Root Device.
0m.
[^[[0;32m  [   13.500588] systemd[1]: Stopped Journal Service.
OK  ^[[0m] Listening on ^[[0;1;39m[   13.508832] systemd[1]: Starting Journal Service...
Device-mapper event daemon FIFOs[   13.516312] systemd[1]: Starting Load Kernel Modules...
[   13.521742] systemd-journald[1726]: File /run/log/journal/8f37f8055146469d8baec3ad508b0084/system.journal corrupted or uncleanly shut down, renaming and replacing.
^[[0m.
[^[[0;32m  OK  ^[[0m] List[   13.538278] systemd[1]: Starting Generate network units from Kernel command line...
ening on ^[[0;1;3[   13.547192] systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
9mLVM2 poll daemon socket^[[0m.\r\r[   13.568364] systemd[1]: Starting Remount Root and Kernel File Systems...

[^[[0;32m  OK  ^[[   13.576571] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
[0m] Listening on ^[[0;1;39mRPCbi[   13.588625] systemd[1]: Starting Coldplug All udev Devices...
nd Server Activation Socket^[[0m.
[^[[0;32m  OK [   13.598905] systemd[1]: Activated swap /dev/mapper/rhel_sharavati-swap.
 ^[[0m] Reached t[   13.607161] systemd[1]: Started Journal Service.
arget ^[[0;1;39mRPC Port Mapper^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mProcess Core Dump Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39minitctl Compatibility [   13.627527] systemd-journald[1726]: Received client request to flush runtime journal.
Named Pipe^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
         Activating swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m...
         Mounting ^[[0;1;39mHuge Pages File System^[[0m...
         Mounting ^[[0;1;39mPOSIX Message Queue File System^[[0m...
         Mounting ^[[0;1;39mKernel Debug File System^[[0m...
         Mounting ^[[0;1;39mKernel Trace File System^[[0m...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
         Starting ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module drm^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mJournal Service^[[0m.
         Starting ^[[0;1;39mJournal Service^[[0m...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
         Starting ^[[0;1;39mGenerate network units from Kernel command line^[[0m...
         Starting ^[[0;1;39mRemount Root and Kernel File Systems^[[0m...
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[^[[0;32m  OK  ^[[0m] Activated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mHuge Pages File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mPOSIX Message Queue File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Debug File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Trace File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMonitoring of LVM2 mirror…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module drm^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mGenerate network units from Kernel command [   13.854563] IPMI message handler: version 39.2
line^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;3[   13.862097] ipmi device interface
9mRemount Root and Kernel File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwaps^[[0m.
         Mounting ^[[0;1;3[   13.877645] ipmi_si: IPMI System Interface driver
9mFUSE Control F[   13.882525] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
ile System^[[0m..[   13.887127] pstore: backend 'erst' already in use: ignoring 'efi_pstore'
.
         Mou[   13.887141] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
nting ^[[0;1;39mK[   13.887146] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
ernel Configurat[   13.890078] input: PC Speaker as /devices/platform/pcspkr/input/input1
ion File System^[[   13.890182] ipmi_platform: ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 10
[0m...
       [   13.891031] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
  Starting ^[[0;1[   13.891035] RAPL PMU: hw unit of domain package 2^-16 Joules
;39mFlush Journa[   13.891037] RAPL PMU: hw unit of domain core 2^-16 Joules
l to Persistent [   13.892972] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
Storage^[[0m...\r\r[   13.893637] i2c i2c-3: Successfully instantiated SPD at 0x50

         Starti[   13.894202] i2c i2c-3: Successfully instantiated SPD at 0x51
ng ^[[0;1;39mLoad[   13.896370] i2c i2c-3: Successfully instantiated SPD at 0x52
/Save OS Random [   13.896945] i2c i2c-3: Successfully instantiated SPD at 0x53
Seed^[[0m...
  [   13.897540] i2c i2c-3: Successfully instantiated SPD at 0x54
       Starting [   13.898132] i2c i2c-3: Successfully instantiated SPD at 0x55
^[[0;1;39mApply K[   13.898716] i2c i2c-3: Successfully instantiated SPD at 0x56
ernel Variables^[[   13.907033] ipmi_si: Adding SMBIOS-specified kcs state machine
[0m...
       [   13.907122] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
  Starting ^[[0;1[   13.918394] i2c i2c-3: Successfully instantiated SPD at 0x57
;39mCreate Stati[   13.923926] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca8] regsize 1 spacing 4 irq 10
c Device Nodes i[   14.044869] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
n /dev^[[0m...
[   14.054604] ipmi_si: Adding ACPI-specified kcs state machine
[^[[0;32m  OK  ^[[[   14.054684] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 10
0m] Mounted ^[[0;1;39mFUSE Control File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Configuration File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad/Save OS Random Seed^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFl[   14.093603] ee1004 3-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
ush Journal to Persistent Storag[   14.102282] ee1004 3-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
e^[[0m.
[^[[0;32m  OK  ^[[0m] Fin[   14.111910] ee1004 3-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
ished ^[[0;1;39mA[   14.120774] kvm_amd: TSC scaling supported
pply Kernel Vari[   14.121364] ee1004 3-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
ables^[[0m.
[^[[[   14.125382] kvm_amd: Nested Virtualization enabled
0;32m  OK  ^[[0m][   14.135307] ee1004 3-0054: 512 byte EE1004-compliant SPD EEPROM, read-only
 Finished ^[[0;1;[   14.139823] kvm_amd: Nested Paging enabled
39mCreate Static[   14.149749] ee1004 3-0055: 512 byte EE1004-compliant SPD EEPROM, read-only
 Device Nodes in[   14.153570] kvm_amd: LBR virtualization supported
 /dev^[[0m.
   [   14.163486] ee1004 3-0056: 512 byte EE1004-compliant SPD EEPROM, read-only
      Starting ^[[0;1;39mRule-bas[   14.178898] ee1004 3-0057: 512 byte EE1004-compliant SPD EEPROM, read-only
ed Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mColdplug All udev Devices^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mLoad/Save RF Kill Switch Status /dev/rfkill Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39m/usr/sbin/lvm vgchange -aa…utoactivation event rhel_sharavati^[[0m.
[   14.532262] ipmi_si IPI0001:00: The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.
[   14.604330] ipmi_si IPI0001:00: Using irq 10
[   14.628424] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20)
[   14.685926] ipmi_si IPI0001:00: IPMI kcs interface initialized
[   14.694391] ipmi_ssif: IPMI SSIF Interface driver
[   14.709173] power_meter ACPI000D:00: Found ACPI power meter.
[^[[0m^[[0;31m*     ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;1;31m*^[[0m^[[0;31m*    ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*   ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
[   17.723385] ccp 0000:46:00.1: SEV-SNP API:1.55 build:22
[   17.778549] ccp 0000:46:00.1: SEV API:1.55 build:22
[   17.785323] kvm_amd: SEV enabled (ASIDs 101 - 509)
[   17.790137] kvm_amd: SEV-ES enabled (ASIDs 1 - 100)
[   17.795017] kvm_amd: SEV-SNP enabled (ASIDs 1 - 100)
[   17.800146] kvm_amd: Virtual VMLOAD VMSAVE supported
[   17.805114] kvm_amd: Virtual GIF supported
[   17.831065] EDAC MC0: Giving out device to module amd64_edac controller F19h: DEV 0000:00:18.3 (INTERRUPT)
[   17.840719] EDAC amd64: F19h detected (node 0).
[   17.845276] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.849990] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.854711] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.859428] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.864149] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.868867] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.873596] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.878311] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.883038] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.887763] EDAC amd64: MC: 2: 16384MB 3: 16384MB
^[M\r^[[K[ ^[[0;31m*[   17.892490] EDAC amd64: MC: 0:     0MB 1:     0MB
^[[0;1;31m*^[[0m^[[[   17.898583] EDAC amd64: MC: 2: 16384MB 3: 16384MB
0;31m*  ^[[0m] A [   17.904683] EDAC amd64: MC: 0:     0MB 1:     0MB
start job is run[   17.910768] EDAC amd64: MC: 2: 16384MB 3: 16384MB
ning for Wait fo[   17.916867] EDAC amd64: MC: 0:     0MB 1:     0MB
r…ice Initiali[   17.922953] EDAC amd64: MC: 2: 16384MB 3: 16384MB
zation (4s / no limit)
[   17.936085] intel_rapl_common: Found RAPL domain package
[   17.937287] amd_atl: AMD Address Translation Library initialized
[   17.941408] intel_rapl_common: Found RAPL domain core
^[M\r^[[K[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Wait for…ice Initialization (5s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Local File Systems^[[0m.
         Mounting ^[[0;1;39m/boot^[[0m...
      [   18.308035] XFS (sda6): Mounting V5 Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
   Mounting ^[[0;[   18.310342] XFS (dm-0): Mounting V5 Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
1;39m/home^[[0m...
         Starting ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m...
[   18.335608] XFS (sda6): Ending clean mount
[   18.341371] XFS (dm-0): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
         Mounting ^[[0;1;39m/boot/efi^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
         Starting ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Mounting ^[[0;1;39mRPC Pipe File System^[[0m...
         Starting ^[[0;1;39mSecurity Auditing Service^[[0m...
         Starting ^[[0;1;39mRPC Bind^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRPC Bind^[[0m.
[   18.455224] RPC: Registered named UNIX socket transport module.
[   18.461149] RPC: Registered udp transport module.
[   18.465860] RPC: Registered tcp transport module.
[   18.470565] RPC: Registered tcp-with-tls transport module.
[   18.476054] RPC: Registered tcp NFSv4.1 backchannel transport module.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mRPC Pipe File System^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mrpc_pipefs.target^[[0m.
         Starting ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdnf makecache --timer^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily rotation of log files^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUpdates mlocate database every day^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily Cleanup of Temporary Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdaily update of the root trust anchor for DNSSEC^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt interface daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt network daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nodedev daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nwfilter daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt proxy daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt secret daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt storage daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
         Starting ^[[0;1;39mD-Bus System Message Bus^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mBasic System^[[0m.
         Starting ^[[0;1;39mNTP client/server^[[0m...
         Starting ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m...
         Starting ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mirqbalance daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mlibstoragemgmt plug-in server daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mMachine Check Exception Logging Daemon^[[0m.
         Starting ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msshd-keygen.target^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUser and Group Name Lookups^[[0m.
         Starting ^[[0;1;39mUser Login Management^[[0m...
         Starting ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNTP client/server^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Network^[[0m.
         Starting ^[[0;1;39mNetwork Manager^[[0m...
         Starting ^[[0;1;39mHostname Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mHostname Service^[[0m.
         Starting ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork^[[0m.
         Starting ^[[0;1;39mNetwork Manager Wait Online^[[0m...
         Starting ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
         Starting ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m...
         Starting ^[[0;1;39mOpenSSH server daemon^[[0m...
         Starting ^[[0;1;39mDynamic System Tuning Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNFS client services^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mOpenSSH server daemon^[[0m.
         Starting ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
[   22.569734] tg3 0000:c1:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   22.576356] tg3 0000:c1:00.0 eth0: Flow control is off for TX and off for RX
[   22.583408] tg3 0000:c1:00.0 eth0: EEE is disabled
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
^[M\r^[[K[     ^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[ ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*  ^[[0m] A start job is running for Network …nager Wait Online (12s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mNetwork Manager Wait Online^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork is Online^[[0m.
         Starting ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m...
         Starting ^[[0;1;39mNotify NFS peers of a restart^[[0m...
         Starting ^[[0;1;39mSystem Logging Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNotify NFS peers of a restart^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mCrash recovery kernel arming^[[0m...
         Starting ^[[0;1;39mPermit User Sessions^[[0m...
         Starting ^[[0;1;39mlibvirt QEMU daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDeferred execution scheduler^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mCommand Scheduler^[[0m.
         Starting ^[[0;1;39mHold until boot process finishes up^[[0m...
         Starting ^[[0;1;39mTerminate Plymouth Boot Screen^[[0m...
[^[[0;1;31mFAILED^[[0m] Failed to start ^[[0;1;39mCrash recovery kernel arming^[[0m.
See 'systemctl status kdump.service' for details.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSystem Logging Service^[[0m.
[   25.446857] fbcon: Taking over console
[   25.466761] Console: switching to colour frame buffer device 128x48

Red Hat Enterprise Linux 9.5 (Plow)
Kernel 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e on an x86_64

Activate the web console with: systemctl enable --now cockpit.socket

sharavati login: [   66.357724] /proc/cgroups lists only v1 controllers, use cgroup.controllers of root cgroup for v2 info
[  288.752937] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[  288.821532] systemd-rc-local-generator[3146]: /etc/rc.d/rc.local is not marked executable, skipping.
[  310.705250] virbr0: port 1(t0-YBcHsF) entered blocking state
[  310.710928] virbr0: port 1(t0-YBcHsF) entered disabled state
[  310.716635] t0-YBcHsF: entered allmulticast mode
[  310.721340] t0-YBcHsF: entered promiscuous mode
[  310.729881] virbr0: port 1(t0-YBcHsF) entered blocking state
[  310.735545] virbr0: port 1(t0-YBcHsF) entered listening state
[  312.758585] virbr0: port 1(t0-YBcHsF) entered learning state
[  314.778542] virbr0: port 1(t0-YBcHsF) entered forwarding state
[  314.784388] virbr0: topology change detected, propagating
[  331.157404] hrtimer: interrupt took 21731 ns
[  339.775550] virbr0: port 1(t0-YBcHsF) entered disabled state
[  339.782368] t0-YBcHsF (unregistering): left allmulticast mode
[  339.788131] t0-YBcHsF (unregistering): left promiscuous mode
[  339.793805] virbr0: port 1(t0-YBcHsF) entered disabled state
[  344.116550] virbr0: port 1(t0-F5FQ9b) entered blocking state
[  344.122233] virbr0: port 1(t0-F5FQ9b) entered disabled state
[  344.127938] t0-F5FQ9b: entered allmulticast mode
[  344.132645] t0-F5FQ9b: entered promiscuous mode
[  344.141377] virbr0: port 1(t0-F5FQ9b) entered blocking state
[  344.147040] virbr0: port 1(t0-F5FQ9b) entered listening state
[  346.169921] virbr0: port 1(t0-F5FQ9b) entered learning state
[  348.181880] virbr0: port 1(t0-F5FQ9b) entered forwarding state
[  348.187720] virbr0: topology change detected, propagating
[  370.451924] virbr0: port 1(t0-F5FQ9b) entered disabled state
[  370.458847] t0-F5FQ9b (unregistering): left allmulticast mode
[  370.464606] t0-F5FQ9b (unregistering): left promiscuous mode
[  370.470281] virbr0: port 1(t0-F5FQ9b) entered disabled state
[  412.321996] JFS: nTxBlock = 8192, nTxLock = 65536
[  412.361248] QNX4 filesystem 0.2.3 registered.
[  412.444526] raid6: avx2x4   gen() 28387 MB/s
[  412.516525] raid6: avx2x2   gen() 28037 MB/s
[  412.588524] raid6: avx2x1   gen() 20126 MB/s
[  412.592801] raid6: using algorithm avx2x4 gen() 28387 MB/s
[  412.664520] raid6: .... xor() 5238 MB/s, rmw enabled
[  412.669493] raid6: using avx2x2 recovery algorithm
[  412.676372] xor: automatically using best checksumming function   avx       
[  412.773927] Btrfs loaded, zoned=yes, fsverity=yes
[  417.174013] sda6: Can't mount, would change RO state
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNFS client services^[[0m.
         Stopping ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Runtime Directory /run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser Slice of UID 0^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mShow Plymouth Reboot Screen^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mUser and Group Name Lookups^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSystem Logging Service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork is Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager Wait Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
         Stopping ^[[0;1;39mNetwork Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Network^[[0m.
         Stopping ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGenerate network units from Kernel command line^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
         Stopping ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Plymouth Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mVirtual Machine and Container Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m[  418.636842] audit: type=1305 audit(1750144096.698:289): op=set audit_pid=0 old=2270 auid=4294967295 ses=4294967295 subj=unconfined res=1
  OK  ^[[0m] Clos[  418.651142] audit: type=1131 audit(1750144096.710:290): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=auditd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
ed ^[[0;1;39mlibv[  418.671176] audit: type=1131 audit(1750144096.730:291): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
irt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon socket^[[0m.
         Stopping ^[[0;1;39mD-Bus System Message Bus^[[0m...
         Starting ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem I[  418.743247] audit: type=1131 audit(1750144096.802:292): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-fsck@dev-disk-by\x2duuid-FBE5\x2d86EF comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
nitialization^[[0[  418.758754] XFS (dm-0): Unmounting Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
m.
[^[[0;32m  O[  418.768271] XFS (sda6): Unmounting Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
K  ^[[0m] Unset automount ^[[0;1;39mArbitrary Executab…ormats Fi[  418.789646] audit: type=1131 audit(1750144096.850:293): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
le System Automo[  418.811431] audit: type=1131 audit(1750144096.870:294): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
unt Point^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Encrypted Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Integrity Protected Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Verity Protected Volumes^[[0m.
         Deactivating swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
         Stopping ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-sysctl.service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m.
[^[[0;32m[  418.917974] audit: type=1131 audit(1750144096.978:295): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
  OK  ^[[0m] Stop[  418.938851] audit: type=1130 audit(1750144096.998:296): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
ped ^[[0;1;39mRec[  418.959981] audit: type=1131 audit(1750144096.998:297): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
ord System Boot/Shutdown in UTMP^[[0m.
         Stopping ^[[0;1;39mSecurity Auditing Service^[[0m[  418.989719] audit: type=1334 audit(1750144097.050:298): prog-id=47 op=UNLOAD
...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
         Unmounting ^[[0;1;39m/boot/efi^[[0m...
         Unmounting ^[[0;1;39m/home^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m...
         U[  419.032827] watchdog: watchdog0: watchdog did not stop!
nmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.s[  419.043543] systemd-shutdown[1]: Using hardware watchdog 'SP5100 TCO timer', version 0, device /dev/watchdog0
ervice^[[0m...
[  419.053698] systemd-shutdown[1]: Watchdog running with a timeout of 10min.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-uuid…8d2e1f-0fb1-4c94-97ac-38505613fcbf^[[0m.
[^[[0[  419.070730] systemd-shutdown[1]: Syncing filesystems and block devices.
;32m  OK  ^[[0m] [  419.078220] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
Deactivated swap ^[[0;1;39m/dev/disk/by-id/d…kEo36yeb12DWUnp5czhD1hrKFNCXkJMetK^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[[  419.105636] systemd-journald[1726]: Received SIGTERM from PID 1 (systemd-shutdow).
0;1;39m/dev/rhel_sharavati/swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/dm-2^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m.
         Unmounting ^[[0;1;39m/boot^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Local File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUnmount All Filesystems^[[0m.
         Stopping ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRemount Root and Kernel File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mMonitoring of LVM2 mirrors…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLate Shutdown Services^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSystem Reboot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Reboot^[[0m.
[  419.252889] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
[  419.277116] systemd-shutdown[1]: Unmounting file systems.
[  419.283248] [9099]: Remounting '/' read-only with options 'attr2,inode64,logbufs=8,logbsize=32k,noquota'.
[  419.302335] systemd-shutdown[1]: All filesystems unmounted.
[  419.307920] systemd-shutdown[1]: Deactivating swaps.
[  419.313440] systemd-shutdown[1]: All swaps deactivated.
[  419.318672] systemd-shutdown[1]: Detaching loop devices.
[  419.324754] systemd-shutdown[1]: All loop devices detached.
[  419.330351] systemd-shutdown[1]: Stopping MD devices.
[  419.335504] systemd-shutdown[1]: All MD devices stopped.
[  419.340820] systemd-shutdown[1]: Detaching DM devices.
[  419.346340] systemd-shutdown[1]: Detaching DM /dev/dm-2 (253:2).
[  419.376802] systemd-shutdown[1]: Detaching DM /dev/dm-0 (253:0).
[  419.432543] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  419.439042] systemd-shutdown[1]: Detaching DM devices.
[  419.444390] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  419.450834] systemd-shutdown[1]: Cannot finalize remaining DM devices, continuing.
[  419.458431] watchdog: watchdog0: watchdog did not stop!
[  419.551400] systemd-shutdown[1]: Successfully changed into root pivot.
[  419.557976] systemd-shutdown[1]: Returning to initrd...
[  419.611886] dracut Warning: Killing all remaining processes
dracut Warning: Killing all remaining processes
[  419.693002] XFS (dm-1): Unmounting Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[  419.707636] dracut Warning: Unmounted /oldroot.
dracut Warning: Unmounted /oldroot.
[  419.723318] dracut: Disassembling device-mapper devices
Rebooting.
[  419.959169] sd 8:0:2:0: [sdc] Synchronizing SCSI cache
[  419.964431] sd 8:0:0:0: [sda] Synchronizing SCSI cache
[  421.433938] mpt3sas_cm0: sending message unit reset !!
[  421.440342] mpt3sas_cm0: message unit reset: SUCCESS
[  421.447927] ACPI: PM: Preparing to enter system sleep state S5
[  421.453903] kvm: exiting hardware virtualization
[  421.458564] reboot: Restarting system
[  421.462227] reboot: machine restart
^[[c^[[2J^[[01;01H^[[=3h^[[2J^[[01;01HKEY MAPPING FOR CONSOLE REDIRECTION:

Use the <ESC><1> key sequence for <F1>
Use the <ESC><2> key sequence for <F2>
Use the <ESC><3> key sequence for <F3>
Use the <ESC><0> key sequence for <F10>
Use the <ESC><!> key sequence for <F11>
Use the <ESC><@> key sequence for <F12>

Use the <ESC><Ctrl><M> key sequence for <Ctrl><M>
Use the <ESC><Ctrl><H> key sequence for <Ctrl><H>
Use the <ESC><Ctrl><I> key sequence for <Ctrl><I>
Use the <ESC><Ctrl><J> key sequence for <Ctrl><J>

Use the <ESC><X><X> key sequence for <Alt><x>, where x is any letter
key, and X is the upper case of that key

Use the <ESC><R><ESC><r><ESC><R> key sequence for <Ctrl><Alt><Del>

Press the spacebar to pause...
Initializing PCIe, USB, and Video... Done
PowerEdge R6515
BIOS Version: 2.17.0
Console Redirection Enabled Requested by iDRAC

F2	 = System Setup
F10	 = Lifecycle Controller (Config
	   iDRAC, Update FW, Install OS)
F11	 = Boot Manager
F12	 = PXE Boot
iDRAC IPV4:  10.86.18.202 [Dedicated]
                                
Initializing Firmware Interfaces...
 





Enumerating Boot options...
Enumerating Boot options... Done
Loading Lifecycle Controller Drivers...
Loading Lifecycle Controller Drivers...Done
Lifecycle Controller: Collecting System Inventory...

iDRAC IPV4:  10.86.18.202 [Dedicated]

^[[2J^[[01;01HLifecycle Controller: Done
Booting...
^[[2J^[[01;01HBooting from Integrated Storage Controller 1: Red Hat Enterprise Linux
^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[02;32HGRUB version 2.06

\r^[[04;02H/----------------------------------------------------------------------------\^[[05;02H|^[[05;79H|^[[06;02H|^[[06;79H|^[[07;02H|^[[07;79H|^[[08;02H|^[[08;79H|^[[09;02H|^[[09;79H|^[[10;02H|^[[10;79H|^[[11;02H|^[[11;79H|^[[12;02H|^[[12;79H|^[[13;02H|^[[13;79H|^[[14;02H|^[[14;79H|^[[15;02H|^[[15;79H|^[[16;02H|^[[16;79H|^[[17;02H\----------------------------------------------------------------------------/^[[18;02H^[[19;02H     Use the ^ and v keys to select which entry is highlighted.          
\r      Press enter to boot the selected OS, `e' to edit the commands       
\r      before booting or `c' for a command-line. ESC to return previous    
\r      menu.                                                               ^[[05;80H ^[[0m^[[30m^[[47m^[[05;03H*Red Hat Enterprise Linux (6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e)>
\r^[[06;01H^[[0m^[[37m^[[40m^[[05;78H^[[06;03H Red Hat Enterprise Linux (6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997)>
\r^[[07;01H^[[06;78H^[[07;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250613-bc6e0ba6c9-dc42f4ece61)>
\r^[[08;01H^[[07;78H^[[08;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250612-0bb71d3018-d909e6968a1)>
\r^[[09;01H^[[08;78H^[[09;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250611-19a60293b9-72d7c68e20e)>
\r^[[10;01H^[[09;78H^[[10;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250610-b27cc623e0-9a3b1b1b837)>
\r^[[11;01H^[[10;78H^[[11;03H Red Hat Enterprise Linux (6.15.0-rc7-next-20250526-3be1a7a31f-22d449bcd69)>
\r^[[12;01H^[[11;78H^[[12;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250514-bdd609656f-ccb396cc166)>
\r^[[13;01H^[[12;78H^[[13;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250513-aa94665adc-e0bf3d3816b)>
\r^[[14;01H^[[13;78H^[[14;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250512-edef457004-450c56522a8)>
\r^[[15;01H^[[14;78H^[[15;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250508-f48887a98b-19c541fe872)>
\r^[[16;01H^[[15;78H^[[16;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250507-08710e6960-81586bd2ca8)>
\r^[[17;01H^[[16;78H^[[16;80Hv^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 5s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 4s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 3s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 2s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 1s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 0s.                 ^[[05;78H^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m  Booting `Red Hat Enterprise Linux
\r(6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e) 9.5 (Plow)'

\r[    0.000000] Linux version 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e (root@sharavati•amd.com) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-5), GNU ld version 2.35.2-63.el9) #1 SMP PREEMPT_DYNAMIC Tue Jun 17 12:09:52 IST 2025
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] SEV-SNP: RMP table physical range [0x0000000015e00000 - 0x00000000566fffff]
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000015dfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000015e00000-0x00000000566fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000056700000-0x00000000567fbfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000567fc000-0x00000000567fcfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000567fd000-0x000000005a142fff] usable
[    0.000000] BIOS-e820: [mem 0x000000005a143000-0x000000005a342fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005a343000-0x0000000067acefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000067acf000-0x000000006dfcefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006dfcf000-0x000000006edfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006edff000-0x000000006effefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000006efff000-0x000000006effffff] usable
[    0.000000] BIOS-e820: [mem 0x000000006f000000-0x000000006f00afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006f00b000-0x000000006fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000070000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa000000-0x00000000aaffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c5000000-0x00000000c5ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e0ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000207fcfffff] usable
[    0.000000] BIOS-e820: [mem 0x000000207fd00000-0x000000207fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000002080000000-0x000000407f1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000407f200000-0x000000407fffffff] reserved
[    0.000000] printk: legacy bootconsole [earlyser0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by Dell Inc.
[    0.000000] efi: ACPI=0x6effe000 ACPI 2.0=0x6effe014 MEMATTR=0x63f376a0 SMBIOS=0x6979e000 SMBIOS 3.0=0x6979c000 MOKvar=0x67bcc000 RNG=0x6efb4020 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem56: MMIO range=[0x80000000-0x8fffffff] (256MB) from e820 map
[    0.000000] efi: Remove mem57: MMIO range=[0xaa000000-0xaaffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem58: MMIO range=[0xc5000000-0xc5ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem59: MMIO range=[0xe0000000-0xe0ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem60: MMIO range=[0xfd000000-0xffffffff] (48MB) from e820 map
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[    0.000000] DMI: Memory slots populated: 8/16
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1996.178 MHz processor
[    0.000027] last_pfn = 0x407f200 max_arch_pfn = 0x400000000
[    0.005552] MTRR map: 7 entries (2 fixed + 5 variable; max 19), built from 9 variable MTRRs
[    0.013866] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Memory KASLR using RDRAND RDTSC...
[    0.023929] x2apic: enabled by BIOS, switching to x2apic ops
[    0.029564] last_pfn = 0x70000 max_arch_pfn = 0x400000000
[    0.039394] SEV-SNP: Reserving start/end of RMP table on a 2MB boundary [0x0000000056600000]
[    0.047665] Using GB pages for direct mapping
[    0.052539] Secure boot disabled
[    0.055587] RAMDISK: [mem 0x0bb2c000-0x0e0d4fff]
[    0.060185] ACPI: Early table checksum verification disabled
[    0.065816] ACPI: RSDP 0x000000006EFFE014 000024 (v02 DELL  )
[    0.071535] ACPI: XSDT 0x000000006EFB7188 0000DC (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.080031] ACPI: FACP 0x000000006EFF9000 000114 (v06 DELL   PE_SC3   00000002 DELL 00000001)
[    0.088524] ACPI: DSDT 0x000000006EFDA000 019528 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.097016] ACPI: FACS 0x000000006EDB9000 000040
[    0.101609] ACPI: BERT 0x000000006EFFC000 000030 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.110102] ACPI: ERST 0x000000006EFFB000 000230 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.118596] ACPI: HEST 0x000000006EFFA000 0007F4 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.127089] ACPI: HPET 0x000000006EFF8000 000038 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.135582] ACPI: APIC 0x000000006EFF6000 0018BE (v05 DELL   PE_SC3   00000002 DELL 00000001)
[    0.144076] ACPI: MCFG 0x000000006EFF5000 00003C (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.152569] ACPI: WSMT 0x000000006EFF4000 000028 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.161065] ACPI: SSDT 0x000000006EFD9000 000629 (v02 DELL   xhc_port 00000001 INTL 20210331)
[    0.169556] ACPI: SSDT 0x000000006EFD8000 000D6E (v02 AMD    CPMRAS   00000001 INTL 20210331)
[    0.178050] ACPI: EINJ 0x000000006EFD7000 000170 (v01 AMD    PE_SC3   00000001 AMD  00000001)
[    0.186543] ACPI: PCCT 0x000000006EFD6000 00006E (v02 DELL   AmdTable 00000001 AMD  00000001)
[    0.195037] ACPI: SSDT 0x000000006EFC7000 00E849 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.203530] ACPI: SRAT 0x000000006EFC6000 000CD0 (v03 DELL   PE_SC3   00000001 AMD  00000001)
[    0.212023] ACPI: MSCT 0x000000006EFC5000 00004E (v01 DELL   PE_SC3   00000000 AMD  00000001)
[    0.220517] ACPI: SLIT 0x000000006EFC4000 000030 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.229010] ACPI: CRAT 0x000000006EFBC000 0072F8 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.237530] ACPI: CDIT 0x000000006EFBB000 00002C (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.246022] ACPI: IVRS 0x000000006EFBA000 0001F0 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.254517] ACPI: SPCR 0x000000006EFB9000 000050 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.263010] ACPI: SLIC 0x000000006EFB8000 000176 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.271503] ACPI: SSDT 0x000000006EFFD000 000D66 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.279997] ACPI: SSDT 0x000000006EFB5000 00193C (v02 AMD    CPMCMN   00000001 INTL 20210331)
[    0.288490] ACPI: Reserving FACP table memory at [mem 0x6eff9000-0x6eff9113]
[    0.295511] ACPI: Reserving DSDT table memory at [mem 0x6efda000-0x6eff3527]
[    0.302529] ACPI: Reserving FACS table memory at [mem 0x6edb9000-0x6edb903f]
[    0.309549] ACPI: Reserving BERT table memory at [mem 0x6effc000-0x6effc02f]
[    0.316570] ACPI: Reserving ERST table memory at [mem 0x6effb000-0x6effb22f]
[    0.323591] ACPI: Reserving HEST table memory at [mem 0x6effa000-0x6effa7f3]
[    0.330611] ACPI: Reserving HPET table memory at [mem 0x6eff8000-0x6eff8037]
[    0.337630] ACPI: Reserving APIC table memory at [mem 0x6eff6000-0x6eff78bd]
[    0.344650] ACPI: Reserving MCFG table memory at [mem 0x6eff5000-0x6eff503b]
[    0.351670] ACPI: Reserving WSMT table memory at [mem 0x6eff4000-0x6eff4027]
[    0.358690] ACPI: Reserving SSDT table memory at [mem 0x6efd9000-0x6efd9628]
[    0.365711] ACPI: Reserving SSDT table memory at [mem 0x6efd8000-0x6efd8d6d]
[    0.372730] ACPI: Reserving EINJ table memory at [mem 0x6efd7000-0x6efd716f]
[    0.379751] ACPI: Reserving PCCT table memory at [mem 0x6efd6000-0x6efd606d]
[    0.386771] ACPI: Reserving SSDT table memory at [mem 0x6efc7000-0x6efd5848]
[    0.393790] ACPI: Reserving SRAT table memory at [mem 0x6efc6000-0x6efc6ccf]
[    0.400811] ACPI: Reserving MSCT table memory at [mem 0x6efc5000-0x6efc504d]
[    0.407830] ACPI: Reserving SLIT table memory at [mem 0x6efc4000-0x6efc402f]
[    0.414850] ACPI: Reserving CRAT table memory at [mem 0x6efbc000-0x6efc32f7]
[    0.421871] ACPI: Reserving CDIT table memory at [mem 0x6efbb000-0x6efbb02b]
[    0.428891] ACPI: Reserving IVRS table memory at [mem 0x6efba000-0x6efba1ef]
[    0.435911] ACPI: Reserving SPCR table memory at [mem 0x6efb9000-0x6efb904f]
[    0.442931] ACPI: Reserving SLIC table memory at [mem 0x6efb8000-0x6efb8175]
[    0.449952] ACPI: Reserving SSDT table memory at [mem 0x6effd000-0x6effdd65]
[    0.456971] ACPI: Reserving SSDT table memory at [mem 0x6efb5000-0x6efb693b]
[    0.464065] APIC: Switched APIC routing to: cluster x2apic
[    0.469468] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.475431] ACPI: SRAT: Node 0 PXM 0 [mem 0x000c0000-0x7fffffff]
[    0.481411] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.487652] ACPI: SRAT: Node 1 PXM 1 [mem 0x2080000000-0x407fffffff]
[    0.493984] NUMA: Node 0 [mem 0x00001000-0x0009ffff] + [mem 0x000c0000-0x7fffffff] -> [mem 0x00001000-0x7fffffff]
[    0.504206] NUMA: Node 0 [mem 0x00001000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00001000-0x207fffffff]
[    0.514873] NODE_DATA(0) allocated [mem 0x207fcd59c0-0x207fcfffff]
[    0.521028] NODE_DATA(1) allocated [mem 0x407f1d49c0-0x407f1fefff]
[    0.527312] cannot allocate crashkernel low memory (size:0x10800000).
[    0.533828] Zone ranges:
[    0.536185]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.542339]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.548493]   Normal   [mem 0x0000000100000000-0x000000407f1fffff]
[    0.554646]   Device   empty
[    0.557506] Movable zone start for each node
[    0.561754] Early memory node ranges
[    0.565306]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.571547]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.577787]   node   0: [mem 0x0000000000100000-0x0000000015dfffff]
[    0.584027]   node   0: [mem 0x0000000056700000-0x00000000567fbfff]
[    0.590267]   node   0: [mem 0x00000000567fd000-0x000000005a142fff]
[    0.596506]   node   0: [mem 0x000000005a343000-0x0000000067acefff]
[    0.602746]   node   0: [mem 0x000000006efff000-0x000000006effffff]
[    0.608987]   node   0: [mem 0x000000006f00b000-0x000000006fffffff]
[    0.615227]   node   0: [mem 0x0000000100000000-0x000000207fcfffff]
[    0.621477]   node   1: [mem 0x0000002080000000-0x000000407f1fffff]
[    0.627718] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fcfffff]
[    0.634729] Initmem setup node 1 [mem 0x0000002080000000-0x000000407f1fffff]
[    0.641750] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.647553] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.653390] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.659621] On node 0, zone DMA32: 35072 pages in unavailable ranges
[    0.665831] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.671926] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.678015] On node 0, zone DMA32: 30000 pages in unavailable ranges
[    0.684261] On node 0, zone DMA32: 11 pages in unavailable ranges
[    0.909470] On node 1, zone Normal: 768 pages in unavailable ranges
[    0.915569] On node 1, zone Normal: 3584 pages in unavailable ranges
[    0.922068] ACPI: PM-Timer IO Port: 0x408
[    0.925933] ACPI: X2APIC_NMI (uid[0xffffffff] high edge lint[0x1])
[    0.932085] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.937991] IOAPIC[0]: apic_id 240, version 33, address 0xfec00000, GSI 0-23
[    0.945000] IOAPIC[1]: apic_id 241, version 33, address 0xe0100000, GSI 120-151
[    0.952282] IOAPIC[2]: apic_id 242, version 33, address 0xc5100000, GSI 88-119
[    0.959474] IOAPIC[3]: apic_id 243, version 33, address 0xaa100000, GSI 56-87
[    0.966581] IOAPIC[4]: apic_id 244, version 33, address 0xfd100000, GSI 24-55
[    0.973687] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.980011] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.986519] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.992924] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.998041] ACPI: SPCR: console: uart,io,0x2f8,115200
[    1.003069] CPU topo: Max. logical packages:   1
[    1.007657] CPU topo: Max. logical dies:       1
[    1.012251] CPU topo: Max. dies per package:   1
[    1.016848] CPU topo: Max. threads per core:   2
[    1.021438] CPU topo: Num. cores per package:    64
[    1.026291] CPU topo: Num. threads per package: 128
[    1.031145] CPU topo: Allowing 128 present CPUs plus 0 hotplug CPUs
[    1.037411] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    1.044925] PM: hibernation: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    1.052466] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    1.060005] PM: hibernation: Registered nosave memory: [mem 0x15e00000-0x567fffff]
[    1.067546] PM: hibernation: Registered nosave memory: [mem 0x5a143000-0x5a342fff]
[    1.075086] PM: hibernation: Registered nosave memory: [mem 0x67acf000-0x6effefff]
[    1.082626] PM: hibernation: Registered nosave memory: [mem 0x6f000000-0x6f00afff]
[    1.090167] PM: hibernation: Registered nosave memory: [mem 0x70000000-0xffffffff]
[    1.097706] PM: hibernation: Registered nosave memory: [mem 0x207fd00000-0x207fffffff]
[    1.105592] [mem 0x56800000-0xffffffff] available for PCI devices
[    1.111660] Booting paravirtualized kernel on bare hardware
[    1.117207] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    1.127616] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:128 nr_cpu_ids:128 nr_node_ids:2
[    1.138557] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[    1.145034] Kernel command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    1.174361] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e biosdevname=0 mem_encrypt=off", will be passed to user space.
[    1.191212] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    1.198126] printk: log_buf_len total cpu_extra contributions: 520192 bytes
[    1.205061] printk: log_buf_len min size: 262144 bytes
[    1.210505] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[    1.217887] printk: early log buf free: 246352(93%)
[    1.224208] software IO TLB: area num 128.
[    1.228128] software IO TLB: swiotlb_memblock_alloc: Failed to allocate 268435456 bytes tlb structure
[    1.243571] software IO TLB: SWIOTLB bounce buffer size adjusted 131072 -> 65536 slabs
[    1.249646] Fallback order for Node 0: 0 1 
[    1.249650] Fallback order for Node 1: 1 0 
[    1.249663] Built 2 zonelists, mobility grouping on.  Total pages: 66743906
[    1.272653] Policy zone: Normal
[    1.275780] mem auto-init: stack:off, heap alloc:on, heap free:off
[    1.698127] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=128, Nodes=2
Poking KASLR using RDRAND RDTSC...
[    1.718753] ftrace: allocating 53763 entries in 212 pages
[    1.723973] ftrace: allocated 212 pages with 4 groups
[    1.729877] Dynamic Preempt: voluntary
[    1.733822] rcu: Preemptible hierarchical RCU implementation.
[    1.739384] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=128.
[    1.746317] 	Trampoline variant of Tasks RCU enabled.
[    1.751344] 	Rude variant of Tasks RCU enabled.
[    1.755850] 	Tracing variant of Tasks RCU enabled.
[    1.760618] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.768157] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=128
[    1.775044] RCU Tasks: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.783849] RCU Tasks Rude: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.793156] RCU Tasks Trace: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.806020] NR_IRQS: 524544, nr_irqs: 3624, preallocated irqs: 16
[    1.812213] rcu: srcu_init: Setting srcu_struct sizes to big.
[    1.817954] Console: colour dummy device 80x25
[    1.822238] printk: legacy console [ttyS0] enabled
[    1.822238] printk: legacy console [ttyS0] enabled
[    1.831771] printk: legacy bootconsole [earlyser0] disabled
[    1.831771] printk: legacy bootconsole [earlyser0] disabled
[    1.842959] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    1.854239] ACPI: Core revision 20250404
[    1.858387] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    1.867519] APIC: Switch to symmetric I/O mode setup
[    1.872920] AMD-Vi: Using global IVHD EFR:0x841f77e022094ace, EFR2:0x0
[    1.881859] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    1.907523] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x398c27a19c0, max_idle_ns: 881590765256 ns
[    1.918035] Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.35 BogoMIPS (lpj=7984712)
[    1.922047] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    1.926148] LVT offset 2 assigned for vector 0xf4
[    1.930067] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    1.934034] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    1.938035] process: using mwait in idle threads
[    1.942038] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    1.946034] Spectre V2 : Mitigation: Retpolines
[    1.950034] Spectre V2 : User space: Mitigation: STIBP always-on protection
[    1.954034] Speculative Return Stack Overflow: Mitigation: Safe RET
[    1.958034] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.962034] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
[    1.966034] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    1.970034] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    1.974037] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.978034] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.982034] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.986034] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    1.990034] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    1.994034] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    1.998034] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    2.002034] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    2.006034] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[    2.043370] Freeing SMP alternatives memory: 48K
[    2.046036] pid_max: default: 131072 minimum: 1024
[    2.057047] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm
[    2.058086] Yama: becoming mindful.
[    2.062158] AppArmor: AppArmor initialized
[    2.074246] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    2.082530] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    2.086185] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.090130] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.206316] smpboot: CPU0: AMD EPYC 7713 64-Core Processor (family: 0x19, model: 0x1, stepping: 0x1)
[    2.210394] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    2.218035] ... version:                0
[    2.222035] ... bit width:              48
[    2.226035] ... generic registers:      6
[    2.230035] ... value mask:             0000ffffffffffff
[    2.234035] ... max period:             00007fffffffffff
[    2.238035] ... fixed-purpose events:   0
[    2.242035] ... event mask:             000000000000003f
[    2.246464] signal: max sigframe size: 3376
[    2.250095] rcu: Hierarchical SRCU implementation.
[    2.254035] rcu: 	Max phase no-delay instances is 1000.
[    2.258092] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
[    2.270416] MCE: In-kernel MCE decoding enabled.
[    2.274082] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    2.279005] smp: Bringing up secondary CPUs ...
[    2.282184] smpboot: x86: Booting SMP configuration:
[    2.286038] .... node  #0, CPUs:          #1   #2   #3   #4   #5   #6   #7   #8   #9  #10  #11  #12  #13  #14  #15  #16  #17  #18  #19  #20  #21  #22  #23  #24  #25  #26  #27  #28  #29  #30  #31
[    2.298037] .... node  #1, CPUs:    #32  #33  #34  #35  #36  #37  #38  #39  #40  #41  #42  #43  #44  #45  #46  #47  #48  #49  #50  #51  #52  #53  #54  #55  #56  #57  #58  #59  #60  #61  #62  #63
[    2.450037] .... node  #0, CPUs:    #64  #65  #66  #67  #68  #69  #70  #71  #72  #73  #74  #75  #76  #77  #78  #79  #80  #81  #82  #83  #84  #85  #86  #87  #88  #89  #90  #91  #92  #93  #94  #95
[    2.458038] .... node  #1, CPUs:    #96  #97  #98  #99 #100 #101 #102 #103 #104 #105 #106 #107 #108 #109 #110 #111 #112 #113 #114 #115 #116 #117 #118 #119 #120 #121 #122 #123 #124 #125 #126 #127
[    2.466338] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[    2.618204] smp: Brought up 2 nodes, 128 CPUs
[    2.622039] smpboot: Total of 128 processors activated (511021.56 BogoMIPS)
[    2.636524] Memory: 262225000K/266975624K available (18401K kernel code, 3299K rwdata, 7944K rodata, 4760K init, 6092K bss, 4428272K reserved, 0K cma-reserved)
[    2.644365] devtmpfs: initialized
[    2.646139] x86/mm: Memory block size: 2048MB
[    2.661017] ACPI: PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    2.662037] ACPI: PM: Registering ACPI NVS region [mem 0x6dfcf000-0x6edfefff] (14876672 bytes)
[    2.666321] ACPI: PM: Registering ACPI NVS region [mem 0x6f000000-0x6f00afff] (45056 bytes)
[    2.670156] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    2.674098] posixtimers hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.678251] futex hash table entries: 16384 (1048576 bytes on 2 NUMA nodes, total 2048 KiB, linear).
[    2.682271] pinctrl core: initialized pinctrl subsystem
[    2.686186] PM: RTC time: 12:40:31, date: 2025-06-17
[    2.690819] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    2.694639] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    2.698216] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    2.702218] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    2.706042] audit: initializing netlink subsys (disabled)
[    2.710064] audit: type=2000 audit(1750164030.828:1): state=initialized audit_enabled=0 res=1
[    2.710237] thermal_sys: Registered thermal governor 'fair_share'
[    2.714036] thermal_sys: Registered thermal governor 'bang_bang'
[    2.718035] thermal_sys: Registered thermal governor 'step_wise'
[    2.722036] thermal_sys: Registered thermal governor 'user_space'
[    2.726058] cpuidle: using governor ladder
[    2.734045] cpuidle: using governor menu
[    2.738082] Detected 1 PCC Subspaces
[    2.742036] Registering PCC driver as Mailbox controller
[    2.746210] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    2.750037] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    2.758125] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    2.762045] PCI: Using configuration type 1 for base access
[    2.766044] PCI: Dell System detected, enabling pci=bfsort.
[    2.774193] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    2.778257] HugeTLB: allocation took 0ms with hugepage_allocation_threads=32
[    2.782059] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    2.786037] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    2.790035] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    2.794035] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    2.802135] ACPI: Added _OSI(Module Device)
[    2.806035] ACPI: Added _OSI(Processor Device)
[    2.810035] ACPI: Added _OSI(Processor Aggregator Device)
[    2.855282] ACPI: 6 ACPI AML tables successfully acquired and loaded
[    2.871963] ACPI: Interpreter enabled
[    2.874047] ACPI: PM: (supports S0 S5)
[    2.878035] ACPI: Using IOAPIC for interrupt routing
[    2.882654] HEST: Table parsing has been initialized.
[    2.886442] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    2.890037] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.894035] PCI: Ignoring E820 reservations for host bridge windows
[    2.903436] ACPI: Enabled 1 GPEs in block 00 to 1F
[    2.945438] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    2.946115] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    2.950113] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    2.954113] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    2.958113] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    2.962112] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    2.966112] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    2.970113] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    2.974537] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-3f])
[    2.978039] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.982205] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER DPC]
[    2.986355] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    2.990035] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.998627] PCI host bridge to bus 0000:00
[    3.002039] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    3.006035] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    3.010036] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000fffff window]
[    3.014035] pci_bus 0000:00: root bus resource [io  0x0d00-0x3fff window]
[    3.018035] pci_bus 0000:00: root bus resource [mem 0xe1000000-0xfebfffff window]
[    3.022036] pci_bus 0000:00: root bus resource [mem 0x63dc0000000-0x7fcffffffff window]
[    3.026036] pci_bus 0000:00: root bus resource [bus 00-3f]
[    3.030050] pci 0000:00:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.034186] pci 0000:00:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.038149] pci 0000:00:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.042129] pci 0000:00:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.046127] pci 0000:00:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.050130] pci 0000:00:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.054051] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.058038] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    3.062036] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    3.066105] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    3.071050] pci 0000:00:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.074131] pci 0000:00:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.078129] pci 0000:00:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.082127] pci 0000:00:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.086051] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.090039] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    3.094046] pci 0000:00:07.1: enabling Extended Tags
[    3.098083] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    3.102194] pci 0000:00:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.106131] pci 0000:00:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.110051] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.114039] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    3.118047] pci 0000:00:08.1: enabling Extended Tags
[    3.122085] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    3.126227] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
[    3.130151] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
[    3.134207] pci 0000:00:18.0: [1022:1650] type 00 class 0x060000 conventional PCI endpoint
[    3.138140] pci 0000:00:18.1: [1022:1651] type 00 class 0x060000 conventional PCI endpoint
[    3.142101] pci 0000:00:18.2: [1022:1652] type 00 class 0x060000 conventional PCI endpoint
[    3.146098] pci 0000:00:18.3: [1022:1653] type 00 class 0x060000 conventional PCI endpoint
[    3.154097] pci 0000:00:18.4: [1022:1654] type 00 class 0x060000 conventional PCI endpoint
[    3.158101] pci 0000:00:18.5: [1022:1655] type 00 class 0x060000 conventional PCI endpoint
[    3.162100] pci 0000:00:18.6: [1022:1656] type 00 class 0x060000 conventional PCI endpoint
[    3.166101] pci 0000:00:18.7: [1022:1657] type 00 class 0x060000 conventional PCI endpoint
[    3.170171] pci 0000:01:00.0: [1000:0097] type 00 class 0x010700 PCIe Endpoint
[    3.174065] pci 0000:01:00.0: BAR 0 [io  0x1000-0x10ff]
[    3.178037] pci 0000:01:00.0: BAR 1 [mem 0xf7400000-0xf740ffff 64bit]
[    3.182037] pci 0000:01:00.0: BAR 3 [mem 0xf7300000-0xf73fffff 64bit]
[    3.186037] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]
[    3.190040] pci 0000:01:00.0: enabling Extended Tags
[    3.194121] pci 0000:01:00.0: supports D1 D2
[    3.198077] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[    3.202035] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x000fffff 64bit]: contains BAR 0 for 16 VFs
[    3.206036] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x000fffff 64bit]
[    3.210035] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x00ffffff 64bit]: contains BAR 2 for 16 VFs
[    3.214187] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.218126] pci 0000:02:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.222068] pci 0000:02:00.0: enabling Extended Tags
[    3.226199] pci 0000:02:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.230063] pci 0000:02:00.2: BAR 2 [mem 0xf7200000-0xf727ffff]
[    3.234037] pci 0000:02:00.2: BAR 5 [mem 0xf7280000-0xf7281fff]
[    3.238040] pci 0000:02:00.2: enabling Extended Tags
[    3.242235] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.246172] pci 0000:03:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.250071] pci 0000:03:00.0: enabling Extended Tags
[    3.254250] pci 0000:03:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.258065] pci 0000:03:00.2: BAR 2 [mem 0xf7100000-0xf717ffff]
[    3.262037] pci 0000:03:00.2: BAR 5 [mem 0xf7180000-0xf7181fff]
[    3.266040] pci 0000:03:00.2: enabling Extended Tags
[    3.270229] pci 0000:03:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.274064] pci 0000:03:00.3: BAR 0 [mem 0xf7000000-0xf70fffff 64bit]
[    3.278043] pci 0000:03:00.3: enabling Extended Tags
[    3.282087] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
[    3.286223] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.294913] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 40-7f])
[    3.298038] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.302200] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.306353] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.310035] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.314972] PCI host bridge to bus 0000:40
[    3.318039] pci_bus 0000:40: root bus resource [io  0x4000-0x6fff window]
[    3.322035] pci_bus 0000:40: root bus resource [mem 0x90000000-0xaaffffff window]
[    3.326035] pci_bus 0000:40: root bus resource [mem 0x47e80000000-0x63dbfffffff window]
[    3.330035] pci_bus 0000:40: root bus resource [bus 40-7f]
[    3.334045] pci 0000:40:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.338132] pci 0000:40:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.342140] pci 0000:40:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.346123] pci 0000:40:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.350119] pci 0000:40:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.354128] pci 0000:40:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.358052] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.362040] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    3.366126] pci 0000:40:03.1: PME# supported from D0 D3hot D3cold
[    3.382830] pci 0000:40:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.386053] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.390040] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    3.398080] pci 0000:40:03.2: PME# supported from D0 D3hot D3cold
[    3.416543] pci 0000:40:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.418053] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.422040] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    3.426127] pci 0000:40:03.3: PME# supported from D0 D3hot D3cold
[    3.446365] pci 0000:40:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.450059] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.454042] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    3.458163] pci 0000:40:03.4: PME# supported from D0 D3hot D3cold
[    3.476474] pci 0000:40:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.478127] pci 0000:40:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.482122] pci 0000:40:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.486126] pci 0000:40:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.490057] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.494041] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    3.498048] pci 0000:40:07.1: enabling Extended Tags
[    3.502077] pci 0000:40:07.1: PME# supported from D0 D3hot D3cold
[    3.510197] pci 0000:40:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.518129] pci 0000:40:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.526052] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.530040] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    3.538047] pci 0000:40:08.1: enabling Extended Tags
[    3.542083] pci 0000:40:08.1: PME# supported from D0 D3hot D3cold
[    3.550286] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.554120] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.558117] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.562116] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.570123] pci 0000:45:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.578069] pci 0000:45:00.0: enabling Extended Tags
[    3.582196] pci 0000:45:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.590063] pci 0000:45:00.2: BAR 2 [mem 0xa5300000-0xa537ffff]
[    3.594037] pci 0000:45:00.2: BAR 5 [mem 0xa5380000-0xa5381fff]
[    3.602040] pci 0000:45:00.2: enabling Extended Tags
[    3.606237] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.610170] pci 0000:46:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.618071] pci 0000:46:00.0: enabling Extended Tags
[    3.622247] pci 0000:46:00.1: [1022:1486] type 00 class 0x108000 PCIe Endpoint
[    3.630064] pci 0000:46:00.1: BAR 2 [mem 0xa5100000-0xa51fffff]
[    3.638037] pci 0000:46:00.1: BAR 5 [mem 0xa5282000-0xa5283fff]
[    3.642040] pci 0000:46:00.1: enabling Extended Tags
[    3.646230] pci 0000:46:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.654065] pci 0000:46:00.2: BAR 2 [mem 0xa5200000-0xa527ffff]
[    3.662037] pci 0000:46:00.2: BAR 5 [mem 0xa5280000-0xa5281fff]
[    3.666040] pci 0000:46:00.2: enabling Extended Tags
[    3.670230] pci 0000:46:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.678063] pci 0000:46:00.3: BAR 0 [mem 0xa5000000-0xa50fffff 64bit]
[    3.686043] pci 0000:46:00.3: enabling Extended Tags
[    3.690085] pci 0000:46:00.3: PME# supported from D0 D3hot D3cold
[    3.698216] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.702730] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 80-bf])
[    3.710045] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.718204] acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.726354] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.734035] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.742948] PCI host bridge to bus 0000:80
[    3.746039] pci_bus 0000:80: root bus resource [io  0x7000-0x9fff window]
[    3.754035] pci_bus 0000:80: root bus resource [mem 0xab000000-0xc5ffffff window]
[    3.762035] pci_bus 0000:80: root bus resource [mem 0x2bf40000000-0x47e7fffffff window]
[    3.770035] pci_bus 0000:80: root bus resource [bus 80-bf]
[    3.774044] pci 0000:80:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.782139] pci 0000:80:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.790137] pci 0000:80:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.798129] pci 0000:80:01.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.806055] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.814040] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    3.818127] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    3.839606] pci 0000:80:01.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.846060] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.850042] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    3.858108] pci 0000:80:01.2: PME# supported from D0 D3hot D3cold
[    3.878805] pci 0000:80:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.882132] pci 0000:80:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.886125] pci 0000:80:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.890127] pci 0000:80:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.894153] pci 0000:80:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.898128] pci 0000:80:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.902050] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.906044] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    3.910048] pci 0000:80:07.1: enabling Extended Tags
[    3.914131] pci 0000:80:07.1: PME# supported from D0 D3hot D3cold
[    3.918192] pci 0000:80:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.922129] pci 0000:80:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.926051] pci 0000:80:08.1: PCI bridge to [bus 84]
[    3.930039] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    3.934047] pci 0000:80:08.1: enabling Extended Tags
[    3.938084] pci 0000:80:08.1: PME# supported from D0 D3hot D3cold
[    3.942201] pci 0000:80:08.2: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.946052] pci 0000:80:08.2: PCI bridge to [bus 85]
[    3.950039] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    3.954047] pci 0000:80:08.2: enabling Extended Tags
[    3.958084] pci 0000:80:08.2: PME# supported from D0 D3hot D3cold
[    3.962279] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.966120] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.970125] pci 0000:83:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.974068] pci 0000:83:00.0: enabling Extended Tags
[    3.978197] pci 0000:83:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.982062] pci 0000:83:00.2: BAR 2 [mem 0xbfa00000-0xbfa7ffff]
[    3.986037] pci 0000:83:00.2: BAR 5 [mem 0xbfa80000-0xbfa81fff]
[    3.990040] pci 0000:83:00.2: enabling Extended Tags
[    3.994235] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.998168] pci 0000:84:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.002071] pci 0000:84:00.0: enabling Extended Tags
[    4.006249] pci 0000:84:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.010065] pci 0000:84:00.2: BAR 2 [mem 0xbf900000-0xbf97ffff]
[    4.014037] pci 0000:84:00.2: BAR 5 [mem 0xbf980000-0xbf981fff]
[    4.018040] pci 0000:84:00.2: enabling Extended Tags
[    4.022241] pci 0000:80:08.1: PCI bridge to [bus 84]
[    4.026168] pci 0000:85:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[    4.030067] pci 0000:85:00.0: BAR 5 [mem 0xbf800000-0xbf8007ff]
[    4.034040] pci 0000:85:00.0: enabling Extended Tags
[    4.038098] pci 0000:85:00.0: PME# supported from D3hot D3cold
[    4.046072] pci 0000:80:08.2: PCI bridge to [bus 85]
[    4.050750] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus c0-ff])
[    4.054038] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    4.058201] acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug AER DPC]
[    4.062354] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    4.066036] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
[    4.071059] PCI host bridge to bus 0000:c0
[    4.074038] pci_bus 0000:c0: root bus resource [io  0xa000-0xffff window]
[    4.078035] pci_bus 0000:c0: root bus resource [mem 0xc6000000-0xe0ffffff window]
[    4.082035] pci_bus 0000:c0: root bus resource [mem 0x10000000000-0x2bf3fffffff window]
[    4.086035] pci_bus 0000:c0: root bus resource [io  0x03b0-0x03df window]
[    4.090035] pci_bus 0000:c0: root bus resource [mem 0x000a0000-0x000bffff window]
[    4.094035] pci_bus 0000:c0: root bus resource [bus c0-ff]
[    4.098045] pci 0000:c0:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    4.102135] pci 0000:c0:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    4.106136] pci 0000:c0:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.110121] pci 0000:c0:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.114120] pci 0000:c0:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.118127] pci 0000:c0:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.122057] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.126041] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    4.130152] pci 0000:c0:03.1: PME# supported from D0 D3hot D3cold
[    4.151453] pci 0000:c0:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.154052] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.158040] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    4.162165] pci 0000:c0:03.2: PME# supported from D0 D3hot D3cold
[    4.182477] pci 0000:c0:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.186054] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.190040] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    4.194126] pci 0000:c0:03.3: PME# supported from D0 D3hot D3cold
[    4.213627] pci 0000:c0:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.214052] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.218040] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    4.222127] pci 0000:c0:03.4: PME# supported from D0 D3hot D3cold
[    4.241047] pci 0000:c0:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.242125] pci 0000:c0:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.246179] pci 0000:c0:05.1: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.250050] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.254045] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    4.258081] pci 0000:c0:05.1: PME# supported from D0 D3hot D3cold
[    4.262188] pci 0000:c0:05.2: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.266055] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.270041] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    4.274042] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.278074] pci 0000:c0:05.2: PME# supported from D0 D3hot D3cold
[    4.282184] pci 0000:c0:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.290129] pci 0000:c0:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.298050] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.306041] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    4.310046] pci 0000:c0:07.1: enabling Extended Tags
[    4.314082] pci 0000:c0:07.1: PME# supported from D0 D3hot D3cold
[    4.322187] pci 0000:c0:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.330127] pci 0000:c0:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.338051] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.342039] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    4.350046] pci 0000:c0:08.1: enabling Extended Tags
[    4.354083] pci 0000:c0:08.1: PME# supported from D0 D3hot D3cold
[    4.362283] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.366118] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.370118] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.378120] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.382134] pci 0000:c1:00.0: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.390082] pci 0000:c1:00.0: BAR 0 [mem 0xc7030000-0xc703ffff 64bit pref]
[    4.394037] pci 0000:c1:00.0: BAR 2 [mem 0xc7040000-0xc704ffff 64bit pref]
[    4.402037] pci 0000:c1:00.0: BAR 4 [mem 0xc7050000-0xc705ffff 64bit pref]
[    4.410036] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.414125] pci 0000:c1:00.0: PME# supported from D0 D3hot D3cold
[    4.422093] pci 0000:c1:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:c0:05.1 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
[    4.439215] pci 0000:c1:00.1: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.446081] pci 0000:c1:00.1: BAR 0 [mem 0xc7000000-0xc700ffff 64bit pref]
[    4.454037] pci 0000:c1:00.1: BAR 2 [mem 0xc7010000-0xc701ffff 64bit pref]
[    4.458037] pci 0000:c1:00.1: BAR 4 [mem 0xc7020000-0xc702ffff 64bit pref]
[    4.466036] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.470123] pci 0000:c1:00.1: PME# supported from D0 D3hot D3cold
[    4.486062] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.490117] pci 0000:c2:00.0: [1556:be00] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    4.498064] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.502042] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    4.510044] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.526060] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.530071] pci_bus 0000:c3: extended config space not accessible
[    4.538064] pci 0000:c3:00.0: [102b:0536] type 00 class 0x030000 conventional PCI endpoint
[    4.546081] pci 0000:c3:00.0: BAR 0 [mem 0xc6000000-0xc6ffffff pref]
[    4.550037] pci 0000:c3:00.0: BAR 1 [mem 0xda808000-0xda80bfff]
[    4.558036] pci 0000:c3:00.0: BAR 2 [mem 0xda000000-0xda7fffff]
[    4.562055] pci 0000:c3:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    4.570161] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.578135] pci 0000:c8:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    4.582067] pci 0000:c8:00.0: enabling Extended Tags
[    4.590194] pci 0000:c8:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.594061] pci 0000:c8:00.2: BAR 2 [mem 0xdbb00000-0xdbb7ffff]
[    4.602037] pci 0000:c8:00.2: BAR 5 [mem 0xdbb80000-0xdbb81fff]
[    4.606040] pci 0000:c8:00.2: enabling Extended Tags
[    4.614176] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.618168] pci 0000:c9:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.626070] pci 0000:c9:00.0: enabling Extended Tags
[    4.630244] pci 0000:c9:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.638064] pci 0000:c9:00.2: BAR 2 [mem 0xdba00000-0xdba7ffff]
[    4.642037] pci 0000:c9:00.2: BAR 5 [mem 0xdba80000-0xdba81fff]
[    4.650041] pci 0000:c9:00.2: enabling Extended Tags
[    4.654239] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.665181] iommu: Default domain type: Translated
[    4.670035] iommu: DMA domain TLB invalidation policy: lazy mode
[    4.678339] SCSI subsystem initialized
[    4.682080] ACPI: bus type USB registered
[    4.686059] usbcore: registered new interface driver usbfs
[    4.690045] usbcore: registered new interface driver hub
[    4.698069] usbcore: registered new device driver usb
[    4.702066] pps_core: LinuxPPS API ver. 1 registered
[    4.706035] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux•it>
[    4.718037] PTP clock support registered
[    4.722116] EDAC MC: Ver: 3.0.0
[    4.726104] efivars: Registered efivars operations
[    4.732680] NetLabel: Initializing
[    4.734037] NetLabel:  domain hash size = 128
[    4.738036] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    4.746064] NetLabel:  unlabeled traffic allowed by default
[    4.750084] PCI: Using ACPI for IRQ routing
[    4.760971] pci 0000:c3:00.0: vgaarb: setting as boot VGA device
[    4.762033] pci 0000:c3:00.0: vgaarb: bridge control possible
[    4.762033] pci 0000:c3:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    4.762036] vgaarb: loaded
[    4.766179] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    4.770035] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    4.776252] clocksource: Switched to clocksource tsc-early
[    4.779864] VFS: Disk quotas dquot_6.6.0
[    4.783816] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.790938] AppArmor: AppArmor Filesystem Enabled
[    4.795666] pnp: PnP ACPI init
[    4.798973] system 00:00: [mem 0x80000000-0x8fffffff] has been reserved
[    4.805681] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[    4.813879] pnp: PnP ACPI: found 5 devices
[    4.825039] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    4.834022] NET: Registered PF_INET protocol family
[    4.839025] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.850810] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.859764] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    4.867791] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.877294] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.885674] TCP: Hash tables configured (established 524288 bind 65536)
[    4.892654] UDP hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.901070] UDP-Lite hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.909903] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    4.915566] NET: Registered PF_XDP protocol family
[    4.920365] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.930192] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.940009] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.949832] pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
[    4.955537] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: can't assign; no space
[    4.963281] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: failed to assign
[    4.970498] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: can't assign; no space
[    4.978758] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: failed to assign
[    4.986497] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: can't assign; no space
[    4.994756] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: failed to assign
[    5.002496] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.007462] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    5.013559] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    5.020346] pci 0000:00:07.1: PCI bridge to [bus 02]
[    5.025319] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    5.032105] pci 0000:00:08.1: PCI bridge to [bus 03]
[    5.037070] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.043857] PCI: No. 2 try to assign unassigned res
[    5.048798] pci 0000:00:03.2: resource 14 [mem 0xf7300000-0xf74fffff] released
[    5.056047] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.061018] pci 0000:00:03.2: bridge window [mem 0x00100000-0x002fffff] to [bus 01] add_size 1200000 add_align 100000
[    5.071628] pci 0000:00:03.2: bridge window [mem 0xe1000000-0xe23fffff]: assigned
[    5.079115] pci 0000:01:00.0: BAR 3 [mem 0xe1000000-0xe10fffff 64bit]: assigned
[    5.086433] pci 0000:01:00.0: ROM [mem 0xe1100000-0xe11fffff pref]: assigned
[    5.093481] pci 0000:01:00.0: VF BAR 2 [mem 0xe1200000-0xe21fffff 64bit]: assigned
[    5.101049] pci 0000:01:00.0: BAR 1 [mem 0xe2200000-0xe220ffff 64bit]: assigned
[    5.108358] pci 0000:01:00.0: VF BAR 0 [mem 0xe2210000-0xe230ffff 64bit]: assigned
[    5.115930] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.120892] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    5.126988] pci 0000:00:03.2:   bridge window [mem 0xe1000000-0xe23fffff]
[    5.133777] pci 0000:00:07.1: PCI bridge to [bus 02]
[    5.138748] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    5.145538] pci 0000:00:08.1: PCI bridge to [bus 03]
[    5.150511] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.157297] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    5.163482] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    5.169664] pci_bus 0000:00: resource 6 [mem 0x000c0000-0x000fffff window]
[    5.176533] pci_bus 0000:00: resource 7 [io  0x0d00-0x3fff window]
[    5.182712] pci_bus 0000:00: resource 8 [mem 0xe1000000-0xfebfffff window]
[    5.189585] pci_bus 0000:00: resource 9 [mem 0x63dc0000000-0x7fcffffffff window]
[    5.196979] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[    5.202550] pci_bus 0000:01: resource 1 [mem 0xe1000000-0xe23fffff]
[    5.208819] pci_bus 0000:02: resource 1 [mem 0xf7200000-0xf72fffff]
[    5.215082] pci_bus 0000:03: resource 1 [mem 0xf7000000-0xf71fffff]
[    5.221424] pci 0000:40:03.1: bridge window [io  0x1000-0x0fff] to [bus 41] add_size 1000
[    5.229601] pci 0000:40:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 41] add_size 200000 add_align 100000
[    5.241067] pci 0000:40:03.2: bridge window [io  0x1000-0x0fff] to [bus 42] add_size 1000
[    5.249240] pci 0000:40:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 42] add_size 200000 add_align 100000
[    5.260706] pci 0000:40:03.3: bridge window [io  0x1000-0x0fff] to [bus 43] add_size 1000
[    5.268941] pci 0000:40:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 43] add_size 200000 add_align 100000
[    5.280407] pci 0000:40:03.4: bridge window [io  0x1000-0x0fff] to [bus 44] add_size 1000
[    5.288577] pci 0000:40:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 44] add_size 200000 add_align 100000
[    5.300051] pci 0000:40:03.1: bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]: assigned
[    5.309005] pci 0000:40:03.2: bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]: assigned
[    5.317958] pci 0000:40:03.3: bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]: assigned
[    5.326911] pci 0000:40:03.4: bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]: assigned
[    5.335864] pci 0000:40:03.1: bridge window [io  0x4000-0x4fff]: assigned
[    5.342654] pci 0000:40:03.2: bridge window [io  0x5000-0x5fff]: assigned
[    5.349445] pci 0000:40:03.3: bridge window [io  0x6000-0x6fff]: assigned
[    5.356229] pci 0000:40:03.4: bridge window [io  size 0x1000]: can't assign; no space
[    5.364055] pci 0000:40:03.4: bridge window [io  size 0x1000]: failed to assign
[    5.371365] pci 0000:40:03.4: bridge window [io  0x4000-0x4fff]: assigned
[    5.378148] pci 0000:40:03.3: bridge window [io  0x5000-0x5fff]: assigned
[    5.384938] pci 0000:40:03.2: bridge window [io  0x6000-0x6fff]: assigned
[    5.391719] pci 0000:40:03.1: bridge window [io  size 0x1000]: can't assign; no space
[    5.399548] pci 0000:40:03.1: bridge window [io  size 0x1000]: failed to assign
[    5.406853] pci 0000:40:03.1: PCI bridge to [bus 41]
[    5.411822] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    5.418605] pci 0000:40:03.1:   bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.426868] pci 0000:40:03.2: PCI bridge to [bus 42]
[    5.431830] pci 0000:40:03.2:   bridge window [io  0x6000-0x6fff]
[    5.437924] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    5.444711] pci 0000:40:03.2:   bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.452972] pci 0000:40:03.3: PCI bridge to [bus 43]
[    5.457936] pci 0000:40:03.3:   bridge window [io  0x5000-0x5fff]
[    5.464029] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    5.470850] pci 0000:40:03.3:   bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.479111] pci 0000:40:03.4: PCI bridge to [bus 44]
[    5.484075] pci 0000:40:03.4:   bridge window [io  0x4000-0x4fff]
[    5.490172] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    5.496964] pci 0000:40:03.4:   bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.505224] pci 0000:40:07.1: PCI bridge to [bus 45]
[    5.510188] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    5.516977] pci 0000:40:08.1: PCI bridge to [bus 46]
[    5.521941] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    5.528728] pci_bus 0000:40: Some PCI device resources are unassigned, try booting with pci=realloc
[    5.537764] pci_bus 0000:40: resource 4 [io  0x4000-0x6fff window]
[    5.543944] pci_bus 0000:40: resource 5 [mem 0x90000000-0xaaffffff window]
[    5.550816] pci_bus 0000:40: resource 6 [mem 0x47e80000000-0x63dbfffffff window]
[    5.558209] pci_bus 0000:41: resource 1 [mem 0xa4c00000-0xa4ffffff]
[    5.564477] pci_bus 0000:41: resource 2 [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.572215] pci_bus 0000:42: resource 0 [io  0x6000-0x6fff]
[    5.577786] pci_bus 0000:42: resource 1 [mem 0xa4800000-0xa4bfffff]
[    5.584053] pci_bus 0000:42: resource 2 [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.591792] pci_bus 0000:43: resource 0 [io  0x5000-0x5fff]
[    5.597367] pci_bus 0000:43: resource 1 [mem 0xa4400000-0xa47fffff]
[    5.603633] pci_bus 0000:43: resource 2 [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.611371] pci_bus 0000:44: resource 0 [io  0x4000-0x4fff]
[    5.616943] pci_bus 0000:44: resource 1 [mem 0xa4000000-0xa43fffff]
[    5.623210] pci_bus 0000:44: resource 2 [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.630952] pci_bus 0000:45: resource 1 [mem 0xa5300000-0xa53fffff]
[    5.637217] pci_bus 0000:46: resource 1 [mem 0xa5000000-0xa52fffff]
[    5.643545] pci 0000:80:01.1: bridge window [io  0x1000-0x0fff] to [bus 81] add_size 1000
[    5.651713] pci 0000:80:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 81] add_size 200000 add_align 100000
[    5.663180] pci 0000:80:01.2: bridge window [io  0x1000-0x0fff] to [bus 82] add_size 1000
[    5.671353] pci 0000:80:01.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 82] add_size 200000 add_align 100000
[    5.682850] pci 0000:80:01.1: bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]: assigned
[    5.691810] pci 0000:80:01.2: bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]: assigned
[    5.700761] pci 0000:80:01.1: bridge window [io  0x7000-0x7fff]: assigned
[    5.707547] pci 0000:80:01.2: bridge window [io  0x8000-0x8fff]: assigned
[    5.714333] pci 0000:80:01.1: PCI bridge to [bus 81]
[    5.719301] pci 0000:80:01.1:   bridge window [io  0x7000-0x7fff]
[    5.725396] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    5.732186] pci 0000:80:01.1:   bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.740447] pci 0000:80:01.2: PCI bridge to [bus 82]
[    5.745411] pci 0000:80:01.2:   bridge window [io  0x8000-0x8fff]
[    5.751510] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    5.758301] pci 0000:80:01.2:   bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.766562] pci 0000:80:07.1: PCI bridge to [bus 83]
[    5.771525] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    5.778315] pci 0000:80:08.1: PCI bridge to [bus 84]
[    5.783287] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    5.790074] pci 0000:80:08.2: PCI bridge to [bus 85]
[    5.795040] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    5.801828] pci_bus 0000:80: resource 4 [io  0x7000-0x9fff window]
[    5.808014] pci_bus 0000:80: resource 5 [mem 0xab000000-0xc5ffffff window]
[    5.814885] pci_bus 0000:80: resource 6 [mem 0x2bf40000000-0x47e7fffffff window]
[    5.822278] pci_bus 0000:81: resource 0 [io  0x7000-0x7fff]
[    5.827851] pci_bus 0000:81: resource 1 [mem 0xbf400000-0xbf7fffff]
[    5.834115] pci_bus 0000:81: resource 2 [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.841856] pci_bus 0000:82: resource 0 [io  0x8000-0x8fff]
[    5.847427] pci_bus 0000:82: resource 1 [mem 0xbf000000-0xbf3fffff]
[    5.853697] pci_bus 0000:82: resource 2 [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.861435] pci_bus 0000:83: resource 1 [mem 0xbfa00000-0xbfafffff]
[    5.867701] pci_bus 0000:84: resource 1 [mem 0xbf900000-0xbf9fffff]
[    5.873965] pci_bus 0000:85: resource 1 [mem 0xbf800000-0xbf8fffff]
[    5.880312] pci 0000:c0:03.1: bridge window [io  0x1000-0x0fff] to [bus c4] add_size 1000
[    5.888533] pci 0000:c0:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c4] add_size 200000 add_align 100000
[    5.900007] pci 0000:c0:03.2: bridge window [io  0x1000-0x0fff] to [bus c5] add_size 1000
[    5.908182] pci 0000:c0:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c5] add_size 200000 add_align 100000
[    5.919648] pci 0000:c0:03.3: bridge window [io  0x1000-0x0fff] to [bus c6] add_size 1000
[    5.927820] pci 0000:c0:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c6] add_size 200000 add_align 100000
[    5.939287] pci 0000:c0:03.4: bridge window [io  0x1000-0x0fff] to [bus c7] add_size 1000
[    5.947462] pci 0000:c0:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c7] add_size 200000 add_align 100000
[    5.958927] pci 0000:c0:05.1: bridge window [mem 0x00100000-0x000fffff] to [bus c1] add_size 100000 add_align 100000
[    5.969451] pci 0000:c0:03.1: bridge window [mem 0x10000000000-0x100001fffff 64bit pref]: assigned
[    5.978408] pci 0000:c0:03.2: bridge window [mem 0x10000200000-0x100003fffff 64bit pref]: assigned
[    5.987362] pci 0000:c0:03.3: bridge window [mem 0x10000400000-0x100005fffff 64bit pref]: assigned
[    5.996316] pci 0000:c0:03.4: bridge window [mem 0x10000600000-0x100007fffff 64bit pref]: assigned
[    6.005268] pci 0000:c0:05.1: bridge window [mem 0xc7100000-0xc71fffff]: assigned
[    6.012745] pci 0000:c0:03.1: bridge window [io  0xa000-0xafff]: assigned
[    6.019533] pci 0000:c0:03.2: bridge window [io  0xb000-0xbfff]: assigned
[    6.026318] pci 0000:c0:03.3: bridge window [io  0xc000-0xcfff]: assigned
[    6.033103] pci 0000:c0:03.4: bridge window [io  0xd000-0xdfff]: assigned
[    6.039891] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    6.044856] pci 0000:c0:03.1:   bridge window [io  0xa000-0xafff]
[    6.050952] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    6.057738] pci 0000:c0:03.1:   bridge window [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.065999] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    6.070970] pci 0000:c0:03.2:   bridge window [io  0xb000-0xbfff]
[    6.077064] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    6.083848] pci 0000:c0:03.2:   bridge window [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.092110] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    6.097135] pci 0000:c0:03.3:   bridge window [io  0xc000-0xcfff]
[    6.103230] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    6.110013] pci 0000:c0:03.3:   bridge window [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.118277] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    6.123239] pci 0000:c0:03.4:   bridge window [io  0xd000-0xdfff]
[    6.129335] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    6.136119] pci 0000:c0:03.4:   bridge window [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.144386] pci 0000:c1:00.0: ROM [mem 0xc7100000-0xc713ffff pref]: assigned
[    6.151432] pci 0000:c1:00.1: ROM [mem 0xc7140000-0xc717ffff pref]: assigned
[    6.158480] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    6.163445] pci 0000:c0:05.1:   bridge window [mem 0xc7100000-0xc71fffff]
[    6.170232] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.177975] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    6.182947] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    6.189734] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.197492] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    6.202722] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    6.209511] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.217253] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    6.222223] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    6.229012] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    6.233976] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    6.240763] pci_bus 0000:c0: resource 4 [io  0xa000-0xffff window]
[    6.246939] pci_bus 0000:c0: resource 5 [mem 0xc6000000-0xe0ffffff window]
[    6.253812] pci_bus 0000:c0: resource 6 [mem 0x10000000000-0x2bf3fffffff window]
[    6.261205] pci_bus 0000:c0: resource 7 [io  0x03b0-0x03df window]
[    6.267383] pci_bus 0000:c0: resource 8 [mem 0x000a0000-0x000bffff window]
[    6.274259] pci_bus 0000:c4: resource 0 [io  0xa000-0xafff]
[    6.279831] pci_bus 0000:c4: resource 1 [mem 0xdb600000-0xdb9fffff]
[    6.286096] pci_bus 0000:c4: resource 2 [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.293836] pci_bus 0000:c5: resource 0 [io  0xb000-0xbfff]
[    6.299450] pci_bus 0000:c5: resource 1 [mem 0xdb200000-0xdb5fffff]
[    6.305719] pci_bus 0000:c5: resource 2 [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.313461] pci_bus 0000:c6: resource 0 [io  0xc000-0xcfff]
[    6.319029] pci_bus 0000:c6: resource 1 [mem 0xdae00000-0xdb1fffff]
[    6.325297] pci_bus 0000:c6: resource 2 [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.333037] pci_bus 0000:c7: resource 0 [io  0xd000-0xdfff]
[    6.338610] pci_bus 0000:c7: resource 1 [mem 0xdaa00000-0xdadfffff]
[    6.344875] pci_bus 0000:c7: resource 2 [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.352616] pci_bus 0000:c1: resource 1 [mem 0xc7100000-0xc71fffff]
[    6.358880] pci_bus 0000:c1: resource 2 [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.366101] pci_bus 0000:c2: resource 1 [mem 0xda000000-0xda8fffff]
[    6.372367] pci_bus 0000:c2: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.379584] pci_bus 0000:c3: resource 1 [mem 0xda000000-0xda8fffff]
[    6.385851] pci_bus 0000:c3: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.393073] pci_bus 0000:c8: resource 1 [mem 0xdbb00000-0xdbbfffff]
[    6.399432] pci_bus 0000:c9: resource 1 [mem 0xdba00000-0xdbafffff]
[    6.406630] PCI: CLS 64 bytes, default 64
[    6.410838] Trying to unpack rootfs image as initramfs...
[    6.474103] AMD-Vi: IOMMU SNP support enabled.
[    6.478722] pci 0000:c0:00.2: AMD-Vi: IOMMU performance counters supported
[    6.485766] pci 0000:c0:01.0: Adding to iommu group 0
[    6.490878] pci 0000:c0:02.0: Adding to iommu group 1
[    6.496077] pci 0000:c0:03.0: Adding to iommu group 2
[    6.501175] pci 0000:c0:03.1: Adding to iommu group 2
[    6.506270] pci 0000:c0:03.2: Adding to iommu group 2
[    6.511367] pci 0000:c0:03.3: Adding to iommu group 2
[    6.516476] pci 0000:c0:03.4: Adding to iommu group 2
[    6.521585] pci 0000:c0:04.0: Adding to iommu group 3
[    6.526731] pci 0000:c0:05.0: Adding to iommu group 4
[    6.531831] pci 0000:c0:05.1: Adding to iommu group 4
[    6.536935] pci 0000:c0:05.2: Adding to iommu group 4
[    6.542049] pci 0000:c0:07.0: Adding to iommu group 5
[    6.547138] pci 0000:c0:07.1: Adding to iommu group 6
[    6.552252] pci 0000:c0:08.0: Adding to iommu group 7
[    6.557340] pci 0000:c0:08.1: Adding to iommu group 8
[    6.562401] pci 0000:c1:00.0: Adding to iommu group 4
[    6.567461] pci 0000:c1:00.1: Adding to iommu group 4
[    6.572521] pci 0000:c2:00.0: Adding to iommu group 4
[    6.577587] pci 0000:c3:00.0: Adding to iommu group 4
[    6.582672] pci 0000:c8:00.0: Adding to iommu group 9
[    6.587761] pci 0000:c8:00.2: Adding to iommu group 10
[    6.592935] pci 0000:c9:00.0: Adding to iommu group 11
[    6.598109] pci 0000:c9:00.2: Adding to iommu group 12
[    6.609818] pci 0000:80:00.2: AMD-Vi: IOMMU performance counters supported
[    6.616887] pci 0000:80:01.0: Adding to iommu group 13
[    6.622075] pci 0000:80:01.1: Adding to iommu group 13
[    6.627255] pci 0000:80:01.2: Adding to iommu group 13
[    6.632453] pci 0000:80:02.0: Adding to iommu group 14
[    6.637650] pci 0000:80:03.0: Adding to iommu group 15
[    6.642843] pci 0000:80:04.0: Adding to iommu group 16
[    6.648040] pci 0000:80:05.0: Adding to iommu group 17
[    6.653238] pci 0000:80:07.0: Adding to iommu group 18
[    6.658413] pci 0000:80:07.1: Adding to iommu group 19
[    6.663609] pci 0000:80:08.0: Adding to iommu group 20
[    6.668789] pci 0000:80:08.1: Adding to iommu group 21
[    6.673961] pci 0000:80:08.2: Adding to iommu group 22
[    6.679136] pci 0000:83:00.0: Adding to iommu group 23
[    6.684311] pci 0000:83:00.2: Adding to iommu group 24
[    6.689483] pci 0000:84:00.0: Adding to iommu group 25
[    6.694659] pci 0000:84:00.2: Adding to iommu group 26
[    6.699830] pci 0000:85:00.0: Adding to iommu group 27
[    6.712295] pci 0000:40:00.2: AMD-Vi: IOMMU performance counters supported
[    6.719304] pci 0000:40:01.0: Adding to iommu group 28
[    6.724506] pci 0000:40:02.0: Adding to iommu group 29
[    6.729796] pci 0000:40:03.0: Adding to iommu group 30
[    6.734981] pci 0000:40:03.1: Adding to iommu group 30
[    6.740159] pci 0000:40:03.2: Adding to iommu group 30
[    6.745336] pci 0000:40:03.3: Adding to iommu group 30
[    6.750519] pci 0000:40:03.4: Adding to iommu group 30
[    6.755719] pci 0000:40:04.0: Adding to iommu group 31
[    6.760923] pci 0000:40:05.0: Adding to iommu group 32
[    6.766119] pci 0000:40:07.0: Adding to iommu group 33
[    6.771297] pci 0000:40:07.1: Adding to iommu group 34
[    6.776497] pci 0000:40:08.0: Adding to iommu group 35
[    6.781672] pci 0000:40:08.1: Adding to iommu group 36
[    6.786849] pci 0000:45:00.0: Adding to iommu group 37
[    6.792029] pci 0000:45:00.2: Adding to iommu group 38
[    6.797204] pci 0000:46:00.0: Adding to iommu group 39
[    6.802375] pci 0000:46:00.1: Adding to iommu group 40
[    6.807552] pci 0000:46:00.2: Adding to iommu group 41
[    6.812727] pci 0000:46:00.3: Adding to iommu group 42
[    6.824965] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    6.831984] pci 0000:00:00.0: Adding to iommu group 43
[    6.837184] pci 0000:00:01.0: Adding to iommu group 44
[    6.842377] pci 0000:00:02.0: Adding to iommu group 45
[    6.847343] Freeing initrd memory: 38564K
[    6.847579] pci 0000:00:03.0: Adding to iommu group 46
[    6.856710] pci 0000:00:03.2: Adding to iommu group 47
[    6.861903] pci 0000:00:04.0: Adding to iommu group 48
[    6.867106] pci 0000:00:05.0: Adding to iommu group 49
[    6.872312] pci 0000:00:07.0: Adding to iommu group 50
[    6.877489] pci 0000:00:07.1: Adding to iommu group 51
[    6.882691] pci 0000:00:08.0: Adding to iommu group 52
[    6.887867] pci 0000:00:08.1: Adding to iommu group 53
[    6.893085] pci 0000:00:14.0: Adding to iommu group 54
[    6.898257] pci 0000:00:14.3: Adding to iommu group 54
[    6.903612] pci 0000:00:18.0: Adding to iommu group 55
[    6.908789] pci 0000:00:18.1: Adding to iommu group 55
[    6.913957] pci 0000:00:18.2: Adding to iommu group 55
[    6.919135] pci 0000:00:18.3: Adding to iommu group 55
[    6.924311] pci 0000:00:18.4: Adding to iommu group 55
[    6.929481] pci 0000:00:18.5: Adding to iommu group 55
[    6.934655] pci 0000:00:18.6: Adding to iommu group 55
[    6.939829] pci 0000:00:18.7: Adding to iommu group 55
[    6.945005] pci 0000:01:00.0: Adding to iommu group 56
[    6.950180] pci 0000:02:00.0: Adding to iommu group 57
[    6.955356] pci 0000:02:00.2: Adding to iommu group 58
[    6.960535] pci 0000:03:00.0: Adding to iommu group 59
[    6.965713] pci 0000:03:00.2: Adding to iommu group 60
[    6.970920] pci 0000:03:00.3: Adding to iommu group 61
[    6.985020] AMD-Vi: Extended features (0x841f77e022094ace, 0x0): PPR X2APIC NX IA GA PC SNP
[    6.993386] AMD-Vi: Interrupt remapping enabled
[    6.997915] AMD-Vi: X2APIC enabled
[    7.002385] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    7.008832] software IO TLB: mapped [mem 0x000000005bf37000-0x0000000063f37000] (128MB)
[    7.016978] LVT offset 0 assigned for vector 0x400
[    7.023460] perf: AMD IBS detected (0x000003ff)
[    7.029592] amd_uncore: 4 amd_df counters detected
[    7.034444] amd_uncore: 6 amd_l3 counters detected
[    7.041023] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    7.048179] perf/amd_iommu: Detected AMD IOMMU #1 (2 banks, 4 counters/bank).
[    7.055344] perf/amd_iommu: Detected AMD IOMMU #2 (2 banks, 4 counters/bank).
[    7.062493] perf/amd_iommu: Detected AMD IOMMU #3 (2 banks, 4 counters/bank).
[    7.072898] Initialise system trusted keyrings
[    7.077357] Key type blacklist registered
[    7.081501] workingset: timestamp_bits=36 max_order=26 bucket_order=0
[    7.088445] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    7.094440] fuse: init (API version 7.44)
[    7.098704] integrity: Platform Keyring initialized
[    7.115526] Key type asymmetric registered
[    7.119621] Asymmetric key parser 'x509' registered
[    7.124535] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    7.132028] io scheduler mq-deadline registered
[    7.139087] ledtrig-cpu: registered to indicate activity on CPUs
[    7.145397] pcieport 0000:00:03.2: PME: Signaling with IRQ 38
[    7.151542] pcieport 0000:00:07.1: PME: Signaling with IRQ 40
[    7.157519] pcieport 0000:00:08.1: PME: Signaling with IRQ 41
[    7.163503] pcieport 0000:40:03.1: PME: Signaling with IRQ 42
[    7.169299] pcieport 0000:40:03.1: pciehp: Slot #167 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.183312] pcieport 0000:40:03.2: PME: Signaling with IRQ 43
[    7.189116] pcieport 0000:40:03.2: pciehp: Slot #166 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.203131] pcieport 0000:40:03.3: PME: Signaling with IRQ 44
[    7.208936] pcieport 0000:40:03.3: pciehp: Slot #169 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.222938] pcieport 0000:40:03.4: PME: Signaling with IRQ 45
[    7.228741] pcieport 0000:40:03.4: pciehp: Slot #168 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.242826] pcieport 0000:40:07.1: PME: Signaling with IRQ 47
[    7.248799] pcieport 0000:40:08.1: PME: Signaling with IRQ 48
[    7.254939] pcieport 0000:80:01.1: PME: Signaling with IRQ 49
[    7.260756] pcieport 0000:80:01.1: pciehp: Slot #160 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.274765] pcieport 0000:80:01.2: PME: Signaling with IRQ 50
[    7.280566] pcieport 0000:80:01.2: pciehp: Slot #161 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.294702] pcieport 0000:80:07.1: PME: Signaling with IRQ 52
[    7.300754] pcieport 0000:80:08.1: PME: Signaling with IRQ 54
[    7.306798] pcieport 0000:80:08.2: PME: Signaling with IRQ 55
[    7.312760] pcieport 0000:c0:03.1: PME: Signaling with IRQ 56
[    7.318559] pcieport 0000:c0:03.1: pciehp: Slot #163 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.332562] pcieport 0000:c0:03.2: PME: Signaling with IRQ 57
[    7.338369] pcieport 0000:c0:03.2: pciehp: Slot #162 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.352366] pcieport 0000:c0:03.3: PME: Signaling with IRQ 58
[    7.358168] pcieport 0000:c0:03.3: pciehp: Slot #165 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.372160] pcieport 0000:c0:03.4: PME: Signaling with IRQ 59
[    7.377964] pcieport 0000:c0:03.4: pciehp: Slot #164 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.391955] pcieport 0000:c0:05.1: PME: Signaling with IRQ 60
[    7.397901] pcieport 0000:c0:05.2: PME: Signaling with IRQ 61
[    7.403953] pcieport 0000:c0:07.1: PME: Signaling with IRQ 63
[    7.409999] pcieport 0000:c0:08.1: PME: Signaling with IRQ 65
[    7.416782] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    7.424264] ACPI: button: Power Button [PWRF]
[    7.868323] Estimated ratio of average max frequency by base frequency (times 1024): 1464
[    7.876846] ERST: Error Record Serialization Table (ERST) support is initialized.
[    7.884348] pstore: Using crash dump compression: deflate
[    7.889753] pstore: Registered erst as persistent store backend
[    7.895819] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    7.902385] 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    7.910564] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    7.921648] Linux agpgart interface v0.103
[    7.952027] loop: module loaded
[    7.966650] ahci 0000:85:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[    7.974664] ahci 0000:85:00.0: 8/8 ports implemented (port mask 0xff)
[    7.981111] ahci 0000:85:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part sxs 
[    7.991426] scsi host0: ahci
[    7.994566] scsi host1: ahci
[    7.997673] scsi host2: ahci
[    8.000778] scsi host3: ahci
[    8.003880] scsi host4: ahci
[    8.007011] scsi host5: ahci
[    8.010109] scsi host6: ahci
[    8.013205] scsi host7: ahci
[    8.016159] ata1: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800100 irq 67 lpm-pol 0 ext
[    8.024775] ata2: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800180 irq 68 lpm-pol 0 ext
[    8.033385] ata3: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800200 irq 69 lpm-pol 0 ext
[    8.041993] ata4: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800280 irq 70 lpm-pol 0 ext
[    8.050597] ata5: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800300 irq 71 lpm-pol 0 ext
[    8.059202] ata6: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800380 irq 72 lpm-pol 0 ext
[    8.067812] ata7: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800400 irq 73 lpm-pol 0 ext
[    8.076417] ata8: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800480 irq 74 lpm-pol 0 ext
[    8.085504] tun: Universal TUN/TAP device driver, 1.6
[    8.090573] tsc: Refined TSC clocksource calibration: 1996.250 MHz
[    8.096813] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398caf77d7a, max_idle_ns: 881590459467 ns
[    8.096929] PPP generic driver version 2.4.2
[    8.111126] clocksource: Switched to clocksource tsc
[    8.111310] VFIO - User Level meta-driver version: 0.3
[    8.121654] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.126893] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 1
[    8.134391] xhci_hcd 0000:03:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.143941] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.149174] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 2
[    8.156567] xhci_hcd 0000:03:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.163656] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.171915] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.179136] usb usb1: Product: xHCI Host Controller
[    8.184022] usb usb1: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.192990] usb usb1: SerialNumber: 0000:03:00.3
[    8.197791] hub 1-0:1.0: USB hub found
[    8.201554] hub 1-0:1.0: 2 ports detected
[    8.206421] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.214539] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.222806] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.230035] usb usb2: Product: xHCI Host Controller
[    8.234917] usb usb2: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.243875] usb usb2: SerialNumber: 0000:03:00.3
[    8.248645] hub 2-0:1.0: USB hub found
[    8.252406] hub 2-0:1.0: 2 ports detected
[    8.257329] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.262561] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 3
[    8.270053] xhci_hcd 0000:46:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.279564] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.284798] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 4
[    8.292194] xhci_hcd 0000:46:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.299281] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.307545] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.314767] usb usb3: Product: xHCI Host Controller
[    8.319650] usb usb3: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.328606] usb usb3: SerialNumber: 0000:46:00.3
[    8.333380] hub 3-0:1.0: USB hub found
[    8.337141] hub 3-0:1.0: 2 ports detected
[    8.341943] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.350064] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.358329] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.365553] usb usb4: Product: xHCI Host Controller
[    8.370435] usb usb4: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.379391] usb usb4: SerialNumber: 0000:46:00.3
[    8.384135] hub 4-0:1.0: USB hub found
[    8.387899] hub 4-0:1.0: 2 ports detected
[    8.392944] usbcore: registered new interface driver uas
[    8.398423] ata6: SATA link down (SStatus 0 SControl 300)
[    8.398433] usbcore: registered new interface driver usb-storage
[    8.403852] ata4: SATA link down (SStatus 0 SControl 300)
[    8.409865] i8042: PNP: No PS/2 controller found.
[    8.415255] ata7: SATA link down (SStatus 0 SControl 300)
[    8.420039] mousedev: PS/2 mouse device common for all mice
[    8.425362] ata3: SATA link down (SStatus 0 SControl 300)
[    8.431025] rtc_cmos 00:02: RTC can wake from S4
[    8.436332] ata2: SATA link down (SStatus 0 SControl 300)
[    8.441305] rtc_cmos 00:02: registered as rtc0
[    8.446351] ata1: SATA link down (SStatus 0 SControl 300)
[    8.450845] rtc_cmos 00:02: setting system clock to 2025-06-17T12:40:38 UTC (1750164038)
[    8.452248] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[    8.456197] ata5: SATA link down (SStatus 0 SControl 300)
[    8.464297] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram
[    8.470806] ata8: SATA link down (SStatus 0 SControl 300)
[    8.476193] i2c_dev: i2c /dev entries driver
[    8.492568] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    8.504766] device-mapper: uevent: version 1.0.3
[    8.509490] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists•linux.dev
[    8.518359] amd_pstate: driver load is disabled, boot with specific mode to enable this
[    8.526420] efifb: probing for efifb
[    8.530015] efifb: No BGRT, not showing boot graphics
[    8.535076] efifb: framebuffer at 0xc6000000, using 3072k, total 3072k
[    8.541607] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    8.547614] efifb: scrolling: redraw
[    8.551193] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    8.556813] fbcon: Deferring console take-over
[    8.561263] fb0: EFI VGA frame buffer device
[    8.565634] drop_monitor: Initializing network drop monitor service
[    8.572079] NET: Registered PF_INET6 protocol family
[    8.584071] Segment Routing with IPv6
[    8.587747] In-situ OAM (IOAM) with IPv6
[    8.591683] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[    8.591698] NET: Registered PF_PACKET protocol family
[    8.601007] usb 1-1: New USB device found, idVendor=0424, idProduct=2744, bcdDevice= 1.21
[    8.603344] Key type dns_resolver registered
[    8.611442] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    8.622849] usb 1-1: Product: USB2734
[    8.626521] usb 1-1: Manufacturer: Microchip Tech
[    8.639843] x86/amd: Previous system reset reason [0x00080800]: software wrote 0x6 to reset control register 0xCF9
[    8.650204] microcode: Current revision: 0x0a0011d5
[    8.655083] microcode: Updated early from: 0x0a0011d5
[    8.663472] resctrl: L3 allocation detected
[    8.667659] resctrl: MB allocation detected
[    8.671843] resctrl: L3 monitoring detected
[    8.676084] hub 1-1:1.0: USB hub found
[    8.676200] IPI shorthand broadcast: enabled
[    8.680009] hub 1-1:1.0: 4 ports detected
[    8.687815] sched_clock: Marking stable (8620001271, 64231483)->(9553141949, -868909195)
[    8.696820] registered taskstats version 1
[    8.703190] Loading compiled-in X.509 certificates
[    8.708530] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.723129] Demotion targets for Node 0: null
[    8.727496] Demotion targets for Node 1: null
[    8.732376] Key type .fscrypt registered
[    8.736327] Key type fscrypt-provisioning registered
[    8.737303] usb 3-1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    8.749466] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.756614] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
[    8.757395] Key type encrypted registered
[    8.767153] AppArmor: AppArmor sha256 policy hashing enabled
[    8.772890] integrity: Loading X.509 certificate: UEFI:db
[    8.776640] usb 2-1: New USB device found, idVendor=0424, idProduct=5744, bcdDevice= 1.21
[    8.778309] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    8.786462] usb 2-1: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[    8.797232] integrity: Loading X.509 certificate: UEFI:db
[    8.797247] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    8.797249] integrity: Loading X.509 certificate: UEFI:db
[    8.804381] usb 2-1: Product: USB5734
[    8.809884] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    8.820813] usb 2-1: Manufacturer: Microchip Tech
[    8.843475] integrity: Loading X.509 certificate: UEFI:db
[    8.843734] hub 3-1:1.0: USB hub found
[    8.849009] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    8.852861] hub 2-1:1.0: USB hub found
[    8.864207] ima: No TPM chip found, activating TPM-bypass!
[    8.867684] hub 3-1:1.0: 4 ports detected
[    8.873168] Loading compiled-in module X.509 certificates
[    8.877213] hub 2-1:1.0: 4 ports detected
[    8.882998] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.896499] ima: Allocated hash algorithm: sha1
[    8.901034] ima: No architecture policies found
[    8.905586] evm: Initialising EVM extended attributes:
[    8.910726] evm: security.selinux
[    8.914048] evm: security.SMACK64
[    8.917365] evm: security.SMACK64EXEC
[    8.921030] evm: security.SMACK64TRANSMUTE
[    8.925131] evm: security.SMACK64MMAP
[    8.928796] evm: security.apparmor
[    8.932200] evm: security.ima
[    8.935174] evm: security.capability
[    8.938773] evm: HMAC attrs: 0x1
[    8.942382] PM:   Magic number: 13:681:683
[    8.947094] RAS: Correctable Errors collector initialized.
[    8.952737] clk: Disabling unused clocks
[    8.956660] PM: genpd: Disabling unused power domains
[    8.963424] Freeing unused decrypted memory: 2028K
[    8.968964] Freeing unused kernel image (initmem) memory: 4760K
[    8.974902] Write protecting the kernel read-only data: 26624k
[    8.981170] Freeing unused kernel image (text/rodata gap) memory: 28K
[    8.987819] Freeing unused kernel image (rodata/data gap) memory: 248K
[    9.081106] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    9.087552] Run /init as init process
[    9.097979] systemd[1]: Inserted module 'autofs4'
[    9.323294] systemd[1]: systemd 252-46.el9_5.3 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)
[    9.355750] systemd[1]: Detected architecture x86-64.
[    9.360802] systemd[1]: Running in initrd.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow) dracut-057-80.git20250411.el9_5 (Initramfs)^[[0m!

[    9.380341] systemd[1]: Hostname set to <sharavati.amd.com>.
[    9.481947] systemd[1]: Queued start job for default target Initrd Default Target.
[    9.489640] systemd[1]: Reached target Initrd /usr File System.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd /usr File System^[[0m.
[    9.512292] systemd[1]: Reached target Local File Systems.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
[    9.532311] systemd[1]: Reached target Slice Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSlice Units^[[0m.
[    9.548297] systemd[1]: Reached target Swaps.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwaps^[[0m.
[    9.564296] systemd[1]: Reached target Timer Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[    9.580459] systemd[1]: Listening on D-Bus System Message Bus Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[    9.600459] systemd[1]: Listening on Journal Socket (/dev/log).
[^[[0;32m  OK  ^[[0m] Listening on[    9.608242] usb 3-1.1: new high-speed USB device number 3 using xhci_hcd
 ^[[0;1;39mJournal Socket (/dev/log)^[[0m.
[    9.624451] systemd[1]: Listening on Journal Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket^[[0m.
[    9.640492] systemd[1]: Listening on udev Control Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[    9.656396] systemd[1]: Listening on udev Kernel Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
[    9.672298] systemd[1]: Reached target Socket Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
[    9.705178] usb 3-1.1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    9.713529] usb 3-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    9.717810] systemd[1]: Starting Create List of Static Device Nodes...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
[    9.742667] systemd[1]: Starting Journal Service...
         Starting ^[[0;1;39mJournal Service^[[0m...
[    9.757820] systemd[1]: Starting Load Kernel Modules...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
[    9.771690] hub 3-1.1:1.0: USB hub found
[    9.775800] hub 3-1.1:1.0: 4 ports detected
[    9.776631] systemd[1]: Starting Create System Users...
         Starting ^[[0;1;39mCreate System Users^[[0m...
[    9.797372] systemd[1]: Starting Setup Virtual Console...
         Starting ^[[0;1;39mSetup Virtual Console^[[0m...
[    9.813270] systemd[1]: Finished Create List of Static Device Nodes.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[    9.836431] systemd[1]: Started Journal Service.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kerne[    9.860250] usb 3-1.4: new high-speed USB device number 4 using xhci_hcd
l Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSetup Virtual Console^[[0m.
         Starting ^[[0;1;39mdracut cmdline hook^[[0m...
         Starting ^[[0;1;39mApply Kernel Variables^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate System Users^[[0m.
[    9.961298] usb 3-1.4: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    9.969649] usb 3-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
[   10.027743] hub 3-1.4:1.0: USB hub found
[   10.031926] hub 3-1.4:1.0: 4 ports detected
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut cmdline hook^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Starting ^[[0;1;39mdracut pre-udev hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-udev hook^[[0m.
         Starting ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[   10.425705] wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQBC data block query control method not found
[^[[0;32m  OK  ^[[0m] Finished ^[[0[   10.437096] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
;1;39mColdplug A[   10.443804] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
ll udev Devices^[[   10.452432] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[0m.
[   10.452888] ccp 0000:46:00.1: no command queues available
[   10.456674] tg3 0000:c1:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:90
[   10.456679] tg3 0000:c1:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.456682] tg3 0000:c1:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.456685] tg3 0000:c1:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[   10.485893] tg3 0000:c1:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:91
[   10.487101] ccp 0000:46:00.1: sev enabled
[   10.494810] tg3 0000:c1:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.501508] ccp 0000:46:00.1: psp enabled
[   10.529882] tg3 0000:c1:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.529885] tg3 0000:c1:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[^[[0;32m  OK  ^[[[   10.545389] ACPI: bus type drm_connector registered
0m] Reached targ[   10.546604] mpt3sas version 52.100.00.00 loaded
et ^[[0;1;39mSyst[   10.557230] mpt3sas_cm0: 63 BIT PCI BUS DMA ADDRESSING SUPPORTED, total mem (262592992 kB)
em Initialization^[[0m.
[^[[0;32m  OK  ^[[[   10.572435] mgag200 0000:c3:00.0: vgaarb: deactivate vga console
0m] Reached target ^[[0;1;39mNetwork^[[0m.
[   10.585924] [drm] Initialized mgag200 1.0.0 for 0000:c3:00.0 on minor 0
[   10.596587] fbcon: mgag200drmfb (fb0) is primary device
[   10.596590] fbcon: Deferring console take-over
[   10.606268] mgag200 0000:c3:00.0: [drm] fb0: mgag200drmfb frame buffer device
[   10.613359] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   10.621407] mpt3sas_cm0: MSI-X vectors supported: 96
[   10.626375] 	 no of cores: 128, max_msix_vectors: -1
[   10.631339] mpt3sas_cm0:  0 96 96
[   10.638537] mpt3sas_cm0: High IOPs queues : disabled
[   10.643512] mpt3sas0-msix0: PCI-MSI-X enabled: IRQ 108
[   10.643514] mpt3sas0-msix1: PCI-MSI-X enabled: IRQ 109
[   10.643515] mpt3sas0-msix2: PCI-MSI-X enabled: IRQ 110
[   10.643516] mpt3sas0-msix3: PCI-MSI-X enabled: IRQ 111
[   10.643518] mpt3sas0-msix4: PCI-MSI-X enabled: IRQ 112
         Startin[   10.643519] mpt3sas0-msix5: PCI-MSI-X enabled: IRQ 113
g ^[[0;1;39mdracu[   10.675727] mpt3sas0-msix6: PCI-MSI-X enabled: IRQ 114
t initqueue hook[   10.682255] mpt3sas0-msix7: PCI-MSI-X enabled: IRQ 115
^[[0m...
[   10.688779] mpt3sas0-msix8: PCI-MSI-X enabled: IRQ 116
[   10.694701] mpt3sas0-msix9: PCI-MSI-X enabled: IRQ 117
[   10.699840] mpt3sas0-msix10: PCI-MSI-X enabled: IRQ 118
[   10.699841] mpt3sas0-msix11: PCI-MSI-X enabled: IRQ 119
[   10.699843] mpt3sas0-msix12: PCI-MSI-X enabled: IRQ 120
[   10.699844] mpt3sas0-msix13: PCI-MSI-X enabled: IRQ 121
[   10.699846] mpt3sas0-msix14: PCI-MSI-X enabled: IRQ 122
[   10.699847] mpt3sas0-msix15: PCI-MSI-X enabled: IRQ 123
[   10.699849] mpt3sas0-msix16: PCI-MSI-X enabled: IRQ 124
[   10.699850] mpt3sas0-msix17: PCI-MSI-X enabled: IRQ 125
[   10.741654] mpt3sas0-msix18: PCI-MSI-X enabled: IRQ 126
[   10.741656] mpt3sas0-msix19: PCI-MSI-X enabled: IRQ 127
[   10.741658] mpt3sas0-msix20: PCI-MSI-X enabled: IRQ 128
[   10.741659] mpt3sas0-msix21: PCI-MSI-X enabled: IRQ 129
[   10.741660] mpt3sas0-msix22: PCI-MSI-X enabled: IRQ 130
[   10.741662] mpt3sas0-msix23: PCI-MSI-X enabled: IRQ 131
[   10.773018] mpt3sas0-msix24: PCI-MSI-X enabled: IRQ 132
         Startin[   10.778245] mpt3sas0-msix25: PCI-MSI-X enabled: IRQ 133
g ^[[0;1;39mShow [   10.784855] mpt3sas0-msix26: PCI-MSI-X enabled: IRQ 134
Plymouth Boot Sc[   10.791461] mpt3sas0-msix27: PCI-MSI-X enabled: IRQ 135
reen^[[0m...
[   10.791462] mpt3sas0-msix28: PCI-MSI-X enabled: IRQ 136
[   10.791463] mpt3sas0-msix29: PCI-MSI-X enabled: IRQ 137
[   10.791465] mpt3sas0-msix30: PCI-MSI-X enabled: IRQ 138
[   10.791466] mpt3sas0-msix31: PCI-MSI-X enabled: IRQ 139
[^[[0;32m  OK  ^[[[   10.791467] mpt3sas0-msix32: PCI-MSI-X enabled: IRQ 140
0m] Started ^[[0;[   10.791469] mpt3sas0-msix33: PCI-MSI-X enabled: IRQ 141
[   10.791470] mpt3sas0-msix34: PCI-MSI-X enabled: IRQ 142
1;39mShow Plymou[   10.838622] mpt3sas0-msix35: PCI-MSI-X enabled: IRQ 143
th Boot Screen^[[[   10.838624] mpt3sas0-msix36: PCI-MSI-X enabled: IRQ 144
0m.
[   10.838626] mpt3sas0-msix37: PCI-MSI-X enabled: IRQ 145
[   10.838627] mpt3sas0-msix38: PCI-MSI-X enabled: IRQ 146
[   10.838628] mpt3sas0-msix39: PCI-MSI-X enabled: IRQ 147
[^[[0;32m  OK  ^[[[   10.838630] mpt3sas0-msix40: PCI-MSI-X enabled: IRQ 148
[   10.838631] mpt3sas0-msix41: PCI-MSI-X enabled: IRQ 149
0m] Started ^[[0;[   10.838632] mpt3sas0-msix42: PCI-MSI-X enabled: IRQ 150
1;39mForward Pas[   10.886479] mpt3sas0-msix43: PCI-MSI-X enabled: IRQ 151
sword Requests t[   10.886481] mpt3sas0-msix44: PCI-MSI-X enabled: IRQ 152
o Plymouth Direc[   10.886483] mpt3sas0-msix45: PCI-MSI-X enabled: IRQ 153
tory Watch^[[0m.\r[   10.886484] mpt3sas0-msix46: PCI-MSI-X enabled: IRQ 154

[^[[0;32m  OK  [   10.886486] mpt3sas0-msix47: PCI-MSI-X enabled: IRQ 155
^[[0m] Reached ta[   10.886487] mpt3sas0-msix48: PCI-MSI-X enabled: IRQ 156
rget ^[[0;1;39mPa[   10.926134] mpt3sas0-msix49: PCI-MSI-X enabled: IRQ 157
th Units^[[0m.
[   10.926135] mpt3sas0-msix50: PCI-MSI-X enabled: IRQ 158
[   10.926137] mpt3sas0-msix51: PCI-MSI-X enabled: IRQ 159
[   10.926138] mpt3sas0-msix52: PCI-MSI-X enabled: IRQ 160
[^[[0;32m  OK  ^[[[   10.949802] mpt3sas0-msix53: PCI-MSI-X enabled: IRQ 161
0m] Reached targ[   10.956410] mpt3sas0-msix54: PCI-MSI-X enabled: IRQ 162
et ^[[0;1;39mBasi[   10.963020] mpt3sas0-msix55: PCI-MSI-X enabled: IRQ 163
c System^[[0m.
[   10.969624] mpt3sas0-msix56: PCI-MSI-X enabled: IRQ 164
[   10.976238] mpt3sas0-msix57: PCI-MSI-X enabled: IRQ 165
[   10.981462] mpt3sas0-msix58: PCI-MSI-X enabled: IRQ 166
[   10.986690] mpt3sas0-msix59: PCI-MSI-X enabled: IRQ 167
[   10.991914] mpt3sas0-msix60: PCI-MSI-X enabled: IRQ 168
[   10.997142] mpt3sas0-msix61: PCI-MSI-X enabled: IRQ 169
[   11.002368] mpt3sas0-msix62: PCI-MSI-X enabled: IRQ 170
[   11.007593] mpt3sas0-msix63: PCI-MSI-X enabled: IRQ 171
[   11.012819] mpt3sas0-msix64: PCI-MSI-X enabled: IRQ 172
[   11.018045] mpt3sas0-msix65: PCI-MSI-X enabled: IRQ 173
[   11.023269] mpt3sas0-msix66: PCI-MSI-X enabled: IRQ 174
[   11.028495] mpt3sas0-msix67: PCI-MSI-X enabled: IRQ 175
[   11.033722] mpt3sas0-msix68: PCI-MSI-X enabled: IRQ 176
[   11.038946] mpt3sas0-msix69: PCI-MSI-X enabled: IRQ 177
[   11.044175] mpt3sas0-msix70: PCI-MSI-X enabled: IRQ 178
[   11.049401] mpt3sas0-msix71: PCI-MSI-X enabled: IRQ 179
[   11.054625] mpt3sas0-msix72: PCI-MSI-X enabled: IRQ 180
[   11.059851] mpt3sas0-msix73: PCI-MSI-X enabled: IRQ 181
[   11.065077] mpt3sas0-msix74: PCI-MSI-X enabled: IRQ 182
[   11.070306] mpt3sas0-msix75: PCI-MSI-X enabled: IRQ 183
[   11.075530] mpt3sas0-msix76: PCI-MSI-X enabled: IRQ 184
[   11.080757] mpt3sas0-msix77: PCI-MSI-X enabled: IRQ 185
[   11.085982] mpt3sas0-msix78: PCI-MSI-X enabled: IRQ 186
[   11.091206] mpt3sas0-msix79: PCI-MSI-X enabled: IRQ 187
[   11.096435] mpt3sas0-msix80: PCI-MSI-X enabled: IRQ 188
[   11.101659] mpt3sas0-msix81: PCI-MSI-X enabled: IRQ 189
[   11.106886] mpt3sas0-msix82: PCI-MSI-X enabled: IRQ 190
[   11.112110] mpt3sas0-msix83: PCI-MSI-X enabled: IRQ 191
[   11.117338] mpt3sas0-msix84: PCI-MSI-X enabled: IRQ 192
[   11.122562] mpt3sas0-msix85: PCI-MSI-X enabled: IRQ 193
[   11.127788] mpt3sas0-msix86: PCI-MSI-X enabled: IRQ 194
[   11.133014] mpt3sas0-msix87: PCI-MSI-X enabled: IRQ 195
[   11.138240] mpt3sas0-msix88: PCI-MSI-X enabled: IRQ 196
[   11.143466] mpt3sas0-msix89: PCI-MSI-X enabled: IRQ 197
[   11.148691] mpt3sas0-msix90: PCI-MSI-X enabled: IRQ 198
[   11.153916] mpt3sas0-msix91: PCI-MSI-X enabled: IRQ 199
[   11.159145] mpt3sas0-msix92: PCI-MSI-X enabled: IRQ 200
[   11.164371] mpt3sas0-msix93: PCI-MSI-X enabled: IRQ 201
[   11.169596] mpt3sas0-msix94: PCI-MSI-X enabled: IRQ 202
[   11.174821] mpt3sas0-msix95: PCI-MSI-X enabled: IRQ 203
[   11.180048] mpt3sas_cm0: iomem(0x00000000e2200000), mapped(0x00000000ec706487), size(65536)
[   11.188392] mpt3sas_cm0: ioport(0x0000000000001000), size(256)
[   11.252227] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   11.260231] mpt3sas_cm0: sending message unit reset !!
[   11.266888] mpt3sas_cm0: message unit reset: SUCCESS
[   11.299590] mpt3sas_cm0: scatter gather: sge_in_main_msg(1), sge_per_chain(7), sge_per_io(128), chains_per_io(19)
[   11.311065] mpt3sas_cm0: request pool(0x00000000be991e60) - dma(0xe0600000): depth(9700), frame_size(128), pool_size(1212 kB)
[   11.347762] mpt3sas_cm0: sense pool(0x00000000150e3d07) - dma(0xdef00000): depth(9463), element_size(96), pool_size (887 kB)
[   11.359073] mpt3sas_cm0: reply pool(0x00000000a373c46c) - dma(0xdec00000): depth(9764), frame_size(128), pool_size(1220 kB)
[   11.370211] mpt3sas_cm0: config page(0x000000005ff58b31) - dma(0xdebee000): size(512)
[   11.378042] mpt3sas_cm0: Allocated physical memory: size(40437 kB)
[   11.384220] mpt3sas_cm0: Current Controller Queue Depth(9460),Max Controller Queue Depth(9584)
[   11.392828] mpt3sas_cm0: Scatter Gather Elements per IO(128)
[   11.444272] mpt3sas_cm0: _base_display_fwpkg_version: complete
[   11.450113] mpt3sas_cm0: FW Package Ver(16.17.01.00)
[   11.455367] mpt3sas_cm0: LSISAS3008: FWVersion(16.00.11.00), ChipRevision(0x02)
[   11.462678] mpt3sas_cm0: Protocol=(Initiator,Target), Capabilities=(TLR,EEDP,Snapshot Buffer,Diag Trace Buffer,Task Set Full,NCQ)
[   11.474401] scsi host8: Fusion MPT SAS Host
[   11.480439] mpt3sas_cm0: sending port enable !!
[   11.485365] mpt3sas_cm0: hba_port entry: 00000000eb45c96c, port: 255 is added to hba_port list
[   11.495099] mpt3sas_cm0: host_add: handle(0x0001), sas_addr(0x52cea7f0be87bf00), phys(8)
[   11.503529] mpt3sas_cm0: handle(0xa) sas_address(0x4433221100000000) port_type(0x1)
[   11.512380] scsi 8:0:0:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.520471] scsi 8:0:0:0: SATA: handle(0x000a), sas_addr(0x4433221100000000), phy(0), device_name(0x500a075131911ad0)
[   11.531068] scsi 8:0:0:0: enclosure logical id (0x52cea7f0be87bf00), slot(1) 
[   11.538200] scsi 8:0:0:0: enclosure level(0x0001), connector name(     )
[   11.544947] scsi 8:0:0:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.553382] scsi 8:0:0:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.568190]  end_device-8:0: add: handle(0x000a), sas_addr(0x4433221100000000)
[   11.575533] mpt3sas_cm0: handle(0xc) sas_address(0x58ce38ee219651a2) port_type(0x1)
[   11.584175] scsi 8:0:1:0: Direct-Access     KIOXIA   KPM6WVUG960G     BD08 PQ: 0 ANSI: 6
[   11.592274] scsi 8:0:1:0: SSP: handle(0x000c), sas_addr(0x58ce38ee219651a2), phy(4), device_name(0x58ce38ee219651a0)
[   11.602785] scsi 8:0:1:0: enclosure logical id (0x52cea7f0be87bf00), slot(0) 
[   11.609916] scsi 8:0:1:0: enclosure level(0x0001), connector name(     )
[   11.616624] scsi 8:0:1:0: qdepth(254), tagged(1), scsi_level(7), cmd_que(1)
[   11.625315]  end_device-8:1: add: handle(0x000c), sas_addr(0x58ce38ee219651a2)
[   11.632666] mpt3sas_cm0: handle(0xb) sas_address(0x4433221106000000) port_type(0x1)
[   11.641439] scsi 8:0:2:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.649535] scsi 8:0:2:0: SATA: handle(0x000b), sas_addr(0x4433221106000000), phy(6), device_name(0x500a075131911a6f)
[   11.660130] scsi 8:0:2:0: enclosure logical id (0x52cea7f0be87bf00), slot(2) 
[   11.667261] scsi 8:0:2:0: enclosure level(0x0001), connector name(     )
[   11.674030] scsi 8:0:2:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.682468] scsi 8:0:2:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.697292]  end_device-8:2: add: handle(0x000b), sas_addr(0x4433221106000000)
[   11.720247] mpt3sas_cm0: port enable: SUCCESS
[   11.724912] sd 8:0:0:0: Attached scsi generic sg0 type 0
[   11.725468] sd 8:0:0:0: [sda] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.730480] scsi 8:0:1:0: Attached scsi generic sg1 type 0
[   11.730762] sd 8:0:1:0: [sdb] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.730767] sd 8:0:1:0: [sdb] 4096-byte physical blocks
[   11.730948] sd 8:0:1:0: [sdb] Write Protect is off
[   11.731165] sd 8:0:1:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   11.737796] sd 8:0:0:0: [sda] 4096-byte physical blocks
[   11.739804] sd 8:0:0:0: [sda] Write Protect is off
[   11.743505] scsi 8:0:2:0: Attached scsi generic sg2 type 0
[   11.744135] sd 8:0:2:0: [sdc] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.744140] sd 8:0:2:0: [sdc] 4096-byte physical blocks
[   11.746146] sd 8:0:2:0: [sdc] Write Protect is off
[   11.747435] sd 8:0:2:0: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.751576] sd 8:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.845415]  sdb: sdb1 sdb2
[   11.848387] sd 8:0:1:0: [sdb] Attached SCSI disk
[   11.862506]  sdc: sdc1 sdc2
[   11.865485] sd 8:0:2:0: [sdc] Attached SCSI disk
[   11.890179]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7
[   11.895611] sd 8:0:0:0: [sda] Attached SCSI disk
[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39m/dev/mapper/rhel_sharavati-root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut initqueue hook^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m.
         Mounting ^[[0;1;39m/sysroot^[[0m...
[   12.621102] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled
[   12.631679] XFS (dm-1): Mounting V5 Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[   12.657896] XFS (dm-1): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/sysroot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root File System^[[0m.
         Starting ^[[0;1;39mMountpoints Configured in the Real Root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMountpoints Configured in the Real Root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Default Target^[[0m.
         Starting ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
         Starting ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Default Target^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd /usr File System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut initqueue h[   12.885864] systemd-journald[1091]: Received SIGTERM from PID 1 (systemd).
ook^[[0m.
         Starting ^[[0;1;39mPlymouth switch root service^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mColdplug All udev Devices^[[0m.
         Stopping ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Kernel Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-udev hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut cmdline hook^[[0m.
         Starting ^[[0;1;39mCleanup udev Database^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate System Users^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPlymouth swi[   12.998013] systemd[1]: RTC configured in localtime, applying delta of 330 minutes to system time.
tch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleanup udev Database^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwitch Root^[[0m.
         Starting ^[[0;1;39mSwitch Root[   13.022791] systemd[1]: systemd 252-46.el9_5.3 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)
[   13.056164] systemd[1]: Detected architecture x86-64.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow)^[[0m!

[   13.134320] systemd-rc-local-generator[1704]: /etc/rc.d/rc.local is not marked executable, skipping.
[   13.389097] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[   13.396425] systemd[1]: Stopped Switch Root.
[^[[0;32m  OK  ^[[[   13.400980] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
0m] Stopped ^[[0;[   13.411692] systemd[1]: Created slice Virtual Machine and Container Slice.
1;39mSwitch Root[   13.420012] systemd[1]: Created slice Slice /system/getty.
^[[0m.
[^[[0;32m[   13.426913] systemd[1]: Created slice Slice /system/modprobe.
  OK  ^[[0m] Crea[   13.434016] systemd[1]: Created slice Slice /system/serial-getty.
ted slice ^[[0;1;[   13.441491] systemd[1]: Created slice Slice /system/sshd-keygen.
39mVirtual Machi[   13.448890] systemd[1]: Created slice Slice /system/systemd-fsck.
ne and Container[   13.456299] systemd[1]: Created slice User and Session Slice.
 Slice^[[0m.
[^[[   13.462837] systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
[0;32m  OK  ^[[0m[   13.479153] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
] Created slice [   13.488688] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
^[[0;1;39mSlice /[   13.498896] systemd[1]: Reached target Local Encrypted Volumes.
system/getty^[[0m[   13.506189] systemd[1]: Stopped target Switch Root.
.
[^[[0;32m  OK[   13.512445] systemd[1]: Stopped target Initrd File Systems.
  ^[[0m] Created [   13.519398] systemd[1]: Stopped target Initrd Root File System.
slice ^[[0;1;39mS[   13.526703] systemd[1]: Reached target Local Integrity Protected Volumes.
lice /system/mod[   13.534891] systemd[1]: Reached target Path Units.
probe^[[0m.
[^[[[   13.541063] systemd[1]: Reached target Slice Units.
0;32m  OK  ^[[0m][   13.547327] systemd[1]: Reached target Local Verity Protected Volumes.
 Created slice ^[[   13.555294] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[0;1;39mSlice /s[   13.563381] systemd[1]: Listening on LVM2 poll daemon socket.
ystem/serial-get[   13.570323] systemd[1]: multipathd control socket was skipped because of an unmet condition check (ConditionPathExists=/etc/multipath.conf).
ty^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/sshd-keygen^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Set up automount ^[[0;1;39mArbitrary Executa…ormats File System Automount Point^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;3[   13.625421] systemd[1]: Listening on RPCbind Server Activation Socket.
9mLocal Encrypte[   13.632429] systemd[1]: Reached target RPC Port Mapper.
d Volumes^[[0m.\r\r[   13.640171] systemd[1]: Listening on Process Core Dump Socket.

[^[[0;32m  OK  ^[[   13.646283] systemd[1]: Listening on initctl Compatibility Named Pipe.
[0m] Stopped tar[   13.655256] systemd[1]: Listening on udev Control Socket.
get ^[[0;1;39mSwi[   13.660994] systemd[1]: Listening on udev Kernel Socket.
tch Root^[[0m.
[^[[0;32m  OK  ^[[[   13.669010] systemd[1]: Activating swap /dev/mapper/rhel_sharavati-swap...
0m] Stopped targ[   13.673812] Adding 7815164k swap on /dev/mapper/rhel_sharavati-swap.  Priority:-2 extents:1 across:7815164k SS
et ^[[0;1;39mInitrd File Systems^[[   13.690129] systemd[1]: Mounting Huge Pages File System...
[0m.
[^[[0;32m [   13.698139] systemd[1]: Mounting POSIX Message Queue File System...
 OK  ^[[0m] Stopped target ^[[0;1;[   13.705960] systemd[1]: Mounting Kernel Debug File System...
39mInitrd Root F[   13.714182] systemd[1]: Mounting Kernel Trace File System...
ile System^[[0m.\r[   13.720089] systemd[1]: Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).

[^[[0;32m  OK  [   13.734918] systemd[1]: iscsi-starter.service was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes).
^[[0m] Reached target ^[[0;1;39mLo[   13.750297] systemd[1]: Starting Create List of Static Device Nodes...
cal Integrity Protected Volumes^[[   13.759561] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[0m.
[^[[0;32m [   13.772429] systemd[1]: Starting Load Kernel Module configfs...
 OK  ^[[0m] Reached target ^[[0;1;[   13.779859] systemd[1]: Starting Load Kernel Module drm...
39mPath Units^[[0[   13.787936] systemd[1]: Starting Load Kernel Module fuse...
m.
[^[[0;32m  OK  ^[[0m] Reached[   13.795505] systemd[1]: Starting Read and set NIS domainname from /etc/sysconfig/network...
 target ^[[0;1;39[   13.804936] systemd[1]: plymouth-switch-root.service: Deactivated successfully.
mSlice Units^[[0m[   13.813605] systemd[1]: Stopped Plymouth switch root service.
.
[^[[0;32m  OK[   13.820847] systemd[1]: systemd-fsck-root.service: Deactivated successfully.
  ^[[0m] Reached [   13.829157] systemd[1]: Stopped File System Check on Root Device.
target ^[[0;1;39m[   13.836700] systemd[1]: Stopped Journal Service.
Local Verity Protected Volumes^[[[   13.844949] systemd[1]: Starting Journal Service...
0m.
[^[[0;32m  OK  ^[[0m] Listen[   13.852553] systemd[1]: Starting Load Kernel Modules...
ing on ^[[0;1;39m[   13.858254] systemd-journald[1734]: File /run/log/journal/8f37f8055146469d8baec3ad508b0084/system.journal corrupted or uncleanly shut down, renaming and replacing.
Device-mapper event daemon FIFOs[   13.875633] systemd[1]: Starting Generate network units from Kernel command line...
^[[0m.
[^[[0;32m[   13.884717] systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
  OK  ^[[0m] Listening on ^[[0;1;3[   13.905899] systemd[1]: Starting Remount Root and Kernel File Systems...
9mLVM2 poll daem[   13.914094] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
on socket^[[0m.
[^[[0;32m  OK  ^[[   13.926148] systemd[1]: Starting Coldplug All udev Devices...
[0m] Listening on ^[[0;1;39mRPCbind Server Activa[   13.936656] systemd[1]: Activated swap /dev/mapper/rhel_sharavati-swap.
tion Socket^[[0m.[   13.944748] systemd[1]: Started Journal Service.

[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRPC Port Mapper^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mProcess Core Dump Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39minitct[   13.966453] systemd-journald[1734]: Received client request to flush runtime journal.
l Compatibility Named Pipe^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
         Activating swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m...
         Mounting ^[[0;1;39mHuge Pages File System^[[0m...
         Mounting ^[[0;1;39mPOSIX Message Queue File System^[[0m...
         Mounting ^[[0;1;39mKernel Debug File System^[[0m...
         Mounting ^[[0;1;39mKernel Trace File System^[[0m...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
         Starting ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module drm^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mJournal Service^[[0m.
         Starting ^[[0;1;39mJournal Service^[[0m...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
         Starting ^[[0;1;39mGenerate network units from Kernel command line^[[0m...
         Starting ^[[0;1;39mRemount Root and Kernel File Systems^[[0m...
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[^[[0;32m  OK  ^[[0m] Activated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mHuge Pages File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mPOSIX Message Queue File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Debug File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Trace File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMonitoring of LVM2 mirror…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module drm^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mGenerate ne[   14.191900] IPMI message handler: version 39.2
twork units from Kernel command line^[[0m.
[^[[0[   14.200609] ipmi device interface
;32m  OK  ^[[0m] Finished ^[[0;1;39mRemount Root and Kernel File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwaps^[[0m.
         Mounting ^[[0;1;39mFUSE Control F[   14.219317] ipmi_si: IPMI System Interface driver
ile System^[[0m..[   14.224675] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
.
         Mou[   14.231865] ipmi_platform: ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 10
nting ^[[0;1;39mK[   14.240554] ipmi_si: Adding SMBIOS-specified kcs state machine
ernel Configurat[   14.247850] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
ion File System^[[   14.255107] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca8] regsize 1 spacing 4 irq 10
[0m...
       [   14.264741] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
  Starting ^[[0;1[   14.274457] ipmi_si: Adding ACPI-specified kcs state machine
;39mFlush Journa[   14.281582] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 10
l to Persistent [   14.293916] pstore: backend 'erst' already in use: ignoring 'efi_pstore'
Storage^[[0m...\r\r[   14.294701] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0

         Starti[   14.295253] input: PC Speaker as /devices/platform/pcspkr/input/input1
ng ^[[0;1;39mLoad[   14.295733] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
[   14.295737] RAPL PMU: hw unit of domain package 2^-16 Joules
/Save OS Random [   14.295740] RAPL PMU: hw unit of domain core 2^-16 Joules
Seed^[[0m...
  [   14.339300] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
       Starting [   14.344125] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
^[[0;1;39mApply K[   14.357499] i2c i2c-3: Successfully instantiated SPD at 0x50
ernel Variables^[[   14.364288] i2c i2c-3: Successfully instantiated SPD at 0x51
[0m...
       [   14.371516] i2c i2c-3: Successfully instantiated SPD at 0x52
  Starting ^[[0;1[   14.378568] i2c i2c-3: Successfully instantiated SPD at 0x53
;39mCreate Stati[   14.385595] i2c i2c-3: Successfully instantiated SPD at 0x54
c Device Nodes i[   14.392638] i2c i2c-3: Successfully instantiated SPD at 0x55
n /dev^[[0m...
[   14.399687] i2c i2c-3: Successfully instantiated SPD at 0x56
[^[[0;32m  OK  ^[[[   14.406733] i2c i2c-3: Successfully instantiated SPD at 0x57
0m] Mounted ^[[0;1;39mFUSE Control File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Configuration File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad/Save OS Random Seed^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFlush Journal to Persistent Storage^[[0m.
[^[[0;32m  OK  ^[[0m] Fin[   14.438619] ee1004 3-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
ished ^[[0;1;39mApply Kernel Vari[   14.448074] ee1004 3-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
ables^[[0m.
[^[[[   14.456868] kvm_amd: TSC scaling supported
0;32m  OK  ^[[0m][   14.457723] ee1004 3-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
 Finished ^[[0;1;[   14.461551] kvm_amd: Nested Virtualization enabled
39mCreate Static[   14.461553] kvm_amd: Nested Paging enabled
 Device Nodes in[   14.461555] kvm_amd: LBR virtualization supported
 /dev^[[0m.
         Starting ^[[   14.489327] ee1004 3-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
[0;1;39mRule-based Manager for D[   14.498856] ee1004 3-0054: 512 byte EE1004-compliant SPD EEPROM, read-only
evice Events and Files^[[0m...
[   14.508539] ee1004 3-0055: 512 byte EE1004-compliant SPD EEPROM, read-only
[^[[0;32m  OK  ^[[0m] Started ^[[0;[   14.518153] ee1004 3-0056: 512 byte EE1004-compliant SPD EEPROM, read-only
1;39mRule-based Manager for Devi[   14.527828] ee1004 3-0057: 512 byte EE1004-compliant SPD EEPROM, read-only
ce Events and Files^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mColdplug All udev Devices^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mLoad/Save RF Kill Switch Status /dev/rfkill Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39m/usr/sbin/lvm vgchange -aa…utoactivation event rhel_sharavati^[[0m.
[   14.748256] ipmi_si IPI0001:00: The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.
[   14.820334] ipmi_si IPI0001:00: Using irq 10
[   14.856681] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20)
[   14.914918] ipmi_si IPI0001:00: IPMI kcs interface initialized
[   14.923334] ipmi_ssif: IPMI SSIF Interface driver
[   14.940113] power_meter ACPI000D:00: Found ACPI power meter.
[^[[0m^[[0;31m*     ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;1;31m*^[[0m^[[0;31m*    ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
^[M\r^[[K[^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*   ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
[   18.023338] ccp 0000:46:00.1: SEV-SNP API:1.55 build:22
[   18.077489] ccp 0000:46:00.1: SEV API:1.55 build:22
[   18.084231] kvm_amd: SEV enabled (ASIDs 101 - 509)
[   18.089035] kvm_amd: SEV-ES enabled (ASIDs 1 - 100)
[   18.093917] kvm_amd: SEV-SNP enabled (ASIDs 1 - 100)
[   18.099055] kvm_amd: Virtual VMLOAD VMSAVE supported
[   18.104021] kvm_amd: Virtual GIF supported
[   18.129783] EDAC MC0: Giving out device to module amd64_edac controller F19h: DEV 0000:00:18.3 (INTERRUPT)
[   18.139437] EDAC amd64: F19h detected (node 0).
[   18.143993] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.148710] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.153439] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.158153] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.162874] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.167592] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.172323] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.177037] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.181759] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.186475] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.191201] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.195922] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.200645] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.205360] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.210082] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.214799] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.227003] intel_rapl_common: Found RAPL domain package
[   18.228154] amd_atl: AMD Address Translation Library initialized
[   18.232321] intel_rapl_common: Found RAPL domain core
^[M\r^[[K[ ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*  ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Local File Systems^[[0m.
         Mounting ^[[0;1;39m/boot^[[0m...
      [   18.604055] XFS (sda6): Mounting V5 Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
   Mounting ^[[0;[   18.606019] XFS (dm-0): Mounting V5 Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
1;39m/home^[[0m...
         Starting ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m...
[   18.635134] XFS (sda6): Ending clean mount
[   18.641512] XFS (dm-0): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
         Mounting ^[[0;1;39m/boot/efi^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
         Starting ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Mounting ^[[0;1;39mRPC Pipe File System^[[0m...
         Starting ^[[0;1;39mSecurity Auditing Service^[[0m...
         Starting ^[[0;1;39mRPC Bind^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRPC Bind^[[0m.
[   18.750848] RPC: Registered named UNIX socket transport module.
[   18.756772] RPC: Registered udp transport module.
[   18.761487] RPC: Registered tcp transport module.
[   18.766203] RPC: Registered tcp-with-tls transport module.
[   18.771697] RPC: Registered tcp NFSv4.1 backchannel transport module.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mRPC Pipe File System^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mrpc_pipefs.target^[[0m.
         Starting ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdnf makecache --timer^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily rotation of log files^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUpdates mlocate database every day^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily Cleanup of Temporary Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdaily update of the root trust anchor for DNSSEC^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt interface daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt network daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nodedev daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nwfilter daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt proxy daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt secret daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt storage daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
         Starting ^[[0;1;39mD-Bus System Message Bus^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mBasic System^[[0m.
         Starting ^[[0;1;39mNTP client/server^[[0m...
         Starting ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m...
         Starting ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mirqbalance daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mlibstoragemgmt plug-in server daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mMachine Check Exception Logging Daemon^[[0m.
         Starting ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msshd-keygen.target^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUser and Group Name Lookups^[[0m.
         Starting ^[[0;1;39mUser Login Management^[[0m...
         Starting ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNTP client/server^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Network^[[0m.
         Starting ^[[0;1;39mNetwork Manager^[[0m...
         Starting ^[[0;1;39mHostname Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mHostname Service^[[0m.
         Starting ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork^[[0m.
         Starting ^[[0;1;39mNetwork Manager Wait Online^[[0m...
         Starting ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
         Starting ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m...
         Starting ^[[0;1;39mOpenSSH server daemon^[[0m...
         Starting ^[[0;1;39mDynamic System Tuning Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNFS client services^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mOpenSSH server daemon^[[0m.
         Starting ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
[   22.953853] tg3 0000:c1:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   22.960476] tg3 0000:c1:00.0 eth0: Flow control is off for TX and off for RX
[   22.967526] tg3 0000:c1:00.0 eth0: EEE is disabled
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[     ^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (12s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mNetwork Manager Wait Online^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork is Online^[[0m.
         Starting ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m...
         Starting ^[[0;1;39mNotify NFS peers of a restart^[[0m...
         Starting ^[[0;1;39mSystem Logging Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNotify NFS peers of a restart^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mCrash recovery kernel arming^[[0m...
         Starting ^[[0;1;39mPermit User Sessions^[[0m...
         Starting ^[[0;1;39mlibvirt QEMU daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDeferred execution scheduler^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mCommand Scheduler^[[0m.
         Starting ^[[0;1;39mHold until boot process finishes up^[[0m...
         Starting ^[[0;1;39mTerminate Plymouth Boot Screen^[[0m...
[^[[0;1;31mFAILED^[[0m] Failed to start ^[[0;1;39mCrash recovery kernel arming^[[0m.
See 'systemctl status kdump.service' for details.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSystem Logging Service^[[0m.
[   25.726825] fbcon: Taking over console
[   25.746576] Console: switching to colour frame buffer device 128x48

Red Hat Enterprise Linux 9.5 (Plow)
Kernel 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e on an x86_64

Activate the web console with: systemctl enable --now cockpit.socket

sharavati login: [  114.663945] /proc/cgroups lists only v1 controllers, use cgroup.controllers of root cgroup for v2 info
[  304.672810] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[  304.732677] systemd-rc-local-generator[3163]: /etc/rc.d/rc.local is not marked executable, skipping.
[  326.152647] virbr0: port 1(t0-okB8hj) entered blocking state
[  326.158326] virbr0: port 1(t0-okB8hj) entered disabled state
[  326.164033] t0-okB8hj: entered allmulticast mode
[  326.168721] t0-okB8hj: entered promiscuous mode
[  326.177638] virbr0: port 1(t0-okB8hj) entered blocking state
[  326.183301] virbr0: port 1(t0-okB8hj) entered listening state
[  328.197696] virbr0: port 1(t0-okB8hj) entered learning state
[  330.213663] virbr0: port 1(t0-okB8hj) entered forwarding state
[  330.219509] virbr0: topology change detected, propagating
[  337.404727] virbr0: port 1(t0-okB8hj) entered disabled state
[  337.411477] t0-okB8hj (unregistering): left allmulticast mode
[  337.417236] t0-okB8hj (unregistering): left promiscuous mode
[  337.422907] virbr0: port 1(t0-okB8hj) entered disabled state
[  341.808416] virbr0: port 1(t0-gFMjET) entered blocking state
[  341.814123] virbr0: port 1(t0-gFMjET) entered disabled state
[  341.819834] t0-gFMjET: entered allmulticast mode
[  341.824552] t0-gFMjET: entered promiscuous mode
[  341.833050] virbr0: port 1(t0-gFMjET) entered blocking state
[  341.838714] virbr0: port 1(t0-gFMjET) entered listening state
[  343.845462] virbr0: port 1(t0-gFMjET) entered learning state
[  345.861416] virbr0: port 1(t0-gFMjET) entered forwarding state
[  345.867262] virbr0: topology change detected, propagating
[  353.024812] virbr0: port 1(t0-gFMjET) entered disabled state
[  353.031887] t0-gFMjET (unregistering): left allmulticast mode
[  353.037644] t0-gFMjET (unregistering): left promiscuous mode
[  353.043316] virbr0: port 1(t0-gFMjET) entered disabled state
[  394.139363] JFS: nTxBlock = 8192, nTxLock = 65536
[  394.177238] QNX4 filesystem 0.2.3 registered.
[  394.260430] raid6: avx2x4   gen() 29110 MB/s
[  394.332427] raid6: avx2x2   gen() 29056 MB/s
[  394.404427] raid6: avx2x1   gen() 20558 MB/s
[  394.408698] raid6: using algorithm avx2x4 gen() 29110 MB/s
[  394.480425] raid6: .... xor() 5110 MB/s, rmw enabled
[  394.485390] raid6: using avx2x2 recovery algorithm
[  394.492195] xor: automatically using best checksumming function   avx       
[  394.586438] Btrfs loaded, zoned=yes, fsverity=yes
[  398.994481] sda6: Can't mount, would change RO state
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Runtime Directory /run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser Slice of UID 0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNFS client services^[[0m.
         Stopping ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mShow Plymouth Reboot Screen^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mUser and Group Name Lookups^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSystem Logging Service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork is Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager Wait Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
         Stopping ^[[0;1;39mNetwork Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Network^[[0m.
         Stopping ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGenerate network units from Kernel command line^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
         Stopping ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Plymouth Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mVirtual Machine and Container Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m[  400.465388] audit: type=1305 audit(1750144630.241:289): op=set audit_pid=0 old=2296 auid=4294967295 ses=4294967295 subj=unconfined res=1
  OK  ^[[0m] Closed ^[[0;1;39mlibv[  400.480731] audit: type=1131 audit(1750144630.257:290): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=auditd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
irt locking daem[  400.502066] audit: type=1131 audit(1750144630.277:291): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
on admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon socket^[[0m.
         Stopping ^[[0;1;39mD-Bus System Message Bus^[[0m...
         Starting ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Unset a[  400.576899] audit: type=1131 audit(1750144630.353:292): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-fsck@dev-disk-by\x2duuid-FBE5\x2d86EF comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
utomount ^[[0;1;3[  400.594012] XFS (dm-0): Unmounting Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
9mArbitrary Exec[  400.601023] XFS (sda6): Unmounting Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
utab…ormats File System Automount Point^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Encrypted Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Integrity Protected Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Verity Protected Volumes^[[0m.
         Deactivating swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
         Stopping ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-sysctl.service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
         Stopping ^[[0;1;39mSecurity Auditing Service^[[0m...
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by[  400.721028] audit: type=1131 audit(1750144630.497:293): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
-uuid…8d2e1f-0[  400.742539] audit: type=1131 audit(1750144630.517:294): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
fb1-4c94-97ac-38505613fcbf^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/rhel_sharavati/swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/d…kEo36yeb12DWUnp5czhD1hrKFNCXkJMetK^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/dm-2^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
         Unmounti[  400.825719] audit: type=1131 audit(1750144630.601:295): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
ng ^[[0;1;39m/boo[  400.846358] audit: type=1130 audit(1750144630.621:296): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
t/efi^[[0m...
 [  400.867522] audit: type=1131 audit(1750144630.621:297): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
        Unmounting ^[[0;1;39m/home^[[0m...
         Unmounting ^[[  400.893544] audit: type=1334 audit(1750144630.669:298): prog-id=34 op=UNLOAD
[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd[  400.932705] watchdog: watchdog0: watchdog did not stop!
-tmpfiles-setup-dev.service^[[0m.
         Unmounting ^[[0;1;39m[  400.944144] systemd-shutdown[1]: Using hardware watchdog 'SP5100 TCO timer', version 0, device /dev/watchdog0
/boot^[[0m...
[[  400.954230] systemd-shutdown[1]: Watchdog running with a timeout of 10min.
^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
[^[[0;32m  OK  ^[[0m] [  400.971838] systemd-shutdown[1]: Syncing filesystems and block devices.
Removed slice ^[[[  400.978872] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Local File Systems^[[0m.
[^[[0;32m [  401.006657] systemd-journald[1734]: Received SIGTERM from PID 1 (systemd-shutdow).
 OK  ^[[0m] Reached target ^[[0;1;39mUnmount All Filesystems^[[0m.
         Stopping ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRemount Root and Kernel File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mMonitoring of LVM2 mirrors…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLate Shutdown Services^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSystem Reboot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Reboot^[[0m.
[  401.080921] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
[  401.106164] systemd-shutdown[1]: Unmounting file systems.
[  401.112353] [7901]: Remounting '/' read-only with options 'attr2,inode64,logbufs=8,logbsize=32k,noquota'.
[  401.132007] systemd-shutdown[1]: All filesystems unmounted.
[  401.137615] systemd-shutdown[1]: Deactivating swaps.
[  401.142608] systemd-shutdown[1]: All swaps deactivated.
[  401.147837] systemd-shutdown[1]: Detaching loop devices.
[  401.153645] systemd-shutdown[1]: All loop devices detached.
[  401.159217] systemd-shutdown[1]: Stopping MD devices.
[  401.164325] systemd-shutdown[1]: All MD devices stopped.
[  401.169641] systemd-shutdown[1]: Detaching DM devices.
[  401.175136] systemd-shutdown[1]: Detaching DM /dev/dm-2 (253:2).
[  401.204415] systemd-shutdown[1]: Detaching DM /dev/dm-0 (253:0).
[  401.256414] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  401.262910] systemd-shutdown[1]: Detaching DM devices.
[  401.268233] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  401.274674] systemd-shutdown[1]: Cannot finalize remaining DM devices, continuing.
[  401.282245] watchdog: watchdog0: watchdog did not stop!
[  401.377409] systemd-shutdown[1]: Successfully changed into root pivot.
[  401.383943] systemd-shutdown[1]: Returning to initrd...
[  401.434932] dracut Warning: Killing all remaining processes
dracut Warning: Killing all remaining processes
[  401.515460] XFS (dm-1): Unmounting Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[  401.529998] dracut Warning: Unmounted /oldroot.
dracut Warning: Unmounted /oldroot.
[  401.546388] dracut: Disassembling device-mapper devices
Rebooting.
[  401.743060] sd 8:0:2:0: [sdc] Synchronizing SCSI cache
[  401.748324] sd 8:0:0:0: [sda] Synchronizing SCSI cache
[  403.209843] mpt3sas_cm0: sending message unit reset !!
[  403.216259] mpt3sas_cm0: message unit reset: SUCCESS
[  403.223912] ACPI: PM: Preparing to enter system sleep state S5
[  403.229854] kvm: exiting hardware virtualization
[  403.234523] reboot: Restarting system
[  403.238192] reboot: machine restart
^[[c^[[2J^[[01;01H^[[=3h^[[2J^[[01;01HKEY MAPPING FOR CONSOLE REDIRECTION:

Use the <ESC><1> key sequence for <F1>
Use the <ESC><2> key sequence for <F2>
Use the <ESC><3> key sequence for <F3>
Use the <ESC><0> key sequence for <F10>
Use the <ESC><!> key sequence for <F11>
Use the <ESC><@> key sequence for <F12>

Use the <ESC><Ctrl><M> key sequence for <Ctrl><M>
Use the <ESC><Ctrl><H> key sequence for <Ctrl><H>
Use the <ESC><Ctrl><I> key sequence for <Ctrl><I>
Use the <ESC><Ctrl><J> key sequence for <Ctrl><J>

Use the <ESC><X><X> key sequence for <Alt><x>, where x is any letter
key, and X is the upper case of that key

Use the <ESC><R><ESC><r><ESC><R> key sequence for <Ctrl><Alt><Del>

Press the spacebar to pause...
Initializing PCIe, USB, and Video... Done
PowerEdge R6515
BIOS Version: 2.17.0
Console Redirection Enabled Requested by iDRAC

F2	 = System Setup
F10	 = Lifecycle Controller (Config
	   iDRAC, Update FW, Install OS)
F11	 = Boot Manager
F12	 = PXE Boot
iDRAC IPV4:  10.86.18.202 [Dedicated]
                                
Initializing Firmware Interfaces...
 





Enumerating Boot options...
Enumerating Boot options... Done
Loading Lifecycle Controller Drivers...
Loading Lifecycle Controller Drivers...Done
Lifecycle Controller: Collecting System Inventory...

iDRAC IPV4:  10.86.18.202 [Dedicated]

^[[2J^[[01;01HLifecycle Controller: Done
Booting...
^[[2J^[[01;01HBooting from Integrated Storage Controller 1: Red Hat Enterprise Linux
^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[02;32HGRUB version 2.06

\r^[[04;02H/----------------------------------------------------------------------------\^[[05;02H|^[[05;79H|^[[06;02H|^[[06;79H|^[[07;02H|^[[07;79H|^[[08;02H|^[[08;79H|^[[09;02H|^[[09;79H|^[[10;02H|^[[10;79H|^[[11;02H|^[[11;79H|^[[12;02H|^[[12;79H|^[[13;02H|^[[13;79H|^[[14;02H|^[[14;79H|^[[15;02H|^[[15;79H|^[[16;02H|^[[16;79H|^[[17;02H\----------------------------------------------------------------------------/^[[18;02H^[[19;02H     Use the ^ and v keys to select which entry is highlighted.          
\r      Press enter to boot the selected OS, `e' to edit the commands       
\r      before booting or `c' for a command-line. ESC to return previous    
\r      menu.                                                               ^[[05;80H ^[[0m^[[30m^[[47m^[[05;03H*Red Hat Enterprise Linux (6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e)>
\r^[[06;01H^[[0m^[[37m^[[40m^[[05;78H^[[06;03H Red Hat Enterprise Linux (6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997)>
\r^[[07;01H^[[06;78H^[[07;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250613-bc6e0ba6c9-dc42f4ece61)>
\r^[[08;01H^[[07;78H^[[08;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250612-0bb71d3018-d909e6968a1)>
\r^[[09;01H^[[08;78H^[[09;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250611-19a60293b9-72d7c68e20e)>
\r^[[10;01H^[[09;78H^[[10;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250610-b27cc623e0-9a3b1b1b837)>
\r^[[11;01H^[[10;78H^[[11;03H Red Hat Enterprise Linux (6.15.0-rc7-next-20250526-3be1a7a31f-22d449bcd69)>
\r^[[12;01H^[[11;78H^[[12;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250514-bdd609656f-ccb396cc166)>
\r^[[13;01H^[[12;78H^[[13;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250513-aa94665adc-e0bf3d3816b)>
\r^[[14;01H^[[13;78H^[[14;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250512-edef457004-450c56522a8)>
\r^[[15;01H^[[14;78H^[[15;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250508-f48887a98b-19c541fe872)>
\r^[[16;01H^[[15;78H^[[16;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250507-08710e6960-81586bd2ca8)>
\r^[[17;01H^[[16;78H^[[16;80Hv^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 5s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 4s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 3s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 2s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 1s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 0s.                 ^[[05;78H^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m  Booting `Red Hat Enterprise Linux
\r(6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e) 9.5 (Plow)'

\r[    0.000000] Linux version 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e (root@sharavati•amd.com) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-5), GNU ld version 2.35.2-63.el9) #1 SMP PREEMPT_DYNAMIC Tue Jun 17 12:09:52 IST 2025
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] SEV-SNP: RMP table physical range [0x0000000015e00000 - 0x00000000566fffff]
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000015dfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000015e00000-0x00000000566fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000056700000-0x00000000567fbfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000567fc000-0x00000000567fcfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000567fd000-0x000000005a142fff] usable
[    0.000000] BIOS-e820: [mem 0x000000005a143000-0x000000005a342fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005a343000-0x0000000067acefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000067acf000-0x000000006dfcefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006dfcf000-0x000000006edfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006edff000-0x000000006effefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000006efff000-0x000000006effffff] usable
[    0.000000] BIOS-e820: [mem 0x000000006f000000-0x000000006f00afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006f00b000-0x000000006fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000070000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa000000-0x00000000aaffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c5000000-0x00000000c5ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e0ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000207fcfffff] usable
[    0.000000] BIOS-e820: [mem 0x000000207fd00000-0x000000207fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000002080000000-0x000000407f1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000407f200000-0x000000407fffffff] reserved
[    0.000000] printk: legacy bootconsole [earlyser0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by Dell Inc.
[    0.000000] efi: ACPI=0x6effe000 ACPI 2.0=0x6effe014 MEMATTR=0x63f376a0 SMBIOS=0x6979e000 SMBIOS 3.0=0x6979c000 MOKvar=0x67bcc000 RNG=0x6efb4020 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem56: MMIO range=[0x80000000-0x8fffffff] (256MB) from e820 map
[    0.000000] efi: Remove mem57: MMIO range=[0xaa000000-0xaaffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem58: MMIO range=[0xc5000000-0xc5ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem59: MMIO range=[0xe0000000-0xe0ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem60: MMIO range=[0xfd000000-0xffffffff] (48MB) from e820 map
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[    0.000000] DMI: Memory slots populated: 8/16
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1996.188 MHz processor
[    0.000028] last_pfn = 0x407f200 max_arch_pfn = 0x400000000
[    0.005552] MTRR map: 7 entries (2 fixed + 5 variable; max 19), built from 9 variable MTRRs
[    0.013867] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Memory KASLR using RDRAND RDTSC...
[    0.023920] x2apic: enabled by BIOS, switching to x2apic ops
[    0.029555] last_pfn = 0x70000 max_arch_pfn = 0x400000000
[    0.039386] SEV-SNP: Reserving start/end of RMP table on a 2MB boundary [0x0000000056600000]
[    0.047656] Using GB pages for direct mapping
[    0.052593] Secure boot disabled
[    0.055639] RAMDISK: [mem 0x0bb2c000-0x0e0d4fff]
[    0.060236] ACPI: Early table checksum verification disabled
[    0.065869] ACPI: RSDP 0x000000006EFFE014 000024 (v02 DELL  )
[    0.071588] ACPI: XSDT 0x000000006EFB7188 0000DC (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.080083] ACPI: FACP 0x000000006EFF9000 000114 (v06 DELL   PE_SC3   00000002 DELL 00000001)
[    0.088575] ACPI: DSDT 0x000000006EFDA000 019528 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.097067] ACPI: FACS 0x000000006EDB9000 000040
[    0.101660] ACPI: BERT 0x000000006EFFC000 000030 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.110153] ACPI: ERST 0x000000006EFFB000 000230 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.118647] ACPI: HEST 0x000000006EFFA000 0007F4 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.127184] ACPI: HPET 0x000000006EFF8000 000038 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.135677] ACPI: APIC 0x000000006EFF6000 0018BE (v05 DELL   PE_SC3   00000002 DELL 00000001)
[    0.144171] ACPI: MCFG 0x000000006EFF5000 00003C (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.152664] ACPI: WSMT 0x000000006EFF4000 000028 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.161158] ACPI: SSDT 0x000000006EFD9000 000629 (v02 DELL   xhc_port 00000001 INTL 20210331)
[    0.169650] ACPI: SSDT 0x000000006EFD8000 000D6E (v02 AMD    CPMRAS   00000001 INTL 20210331)
[    0.178144] ACPI: EINJ 0x000000006EFD7000 000170 (v01 AMD    PE_SC3   00000001 AMD  00000001)
[    0.186638] ACPI: PCCT 0x000000006EFD6000 00006E (v02 DELL   AmdTable 00000001 AMD  00000001)
[    0.195131] ACPI: SSDT 0x000000006EFC7000 00E849 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.203625] ACPI: SRAT 0x000000006EFC6000 000CD0 (v03 DELL   PE_SC3   00000001 AMD  00000001)
[    0.212118] ACPI: MSCT 0x000000006EFC5000 00004E (v01 DELL   PE_SC3   00000000 AMD  00000001)
[    0.220610] ACPI: SLIT 0x000000006EFC4000 000030 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.229147] ACPI: CRAT 0x000000006EFBC000 0072F8 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.237641] ACPI: CDIT 0x000000006EFBB000 00002C (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.246134] ACPI: IVRS 0x000000006EFBA000 0001F0 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.254629] ACPI: SPCR 0x000000006EFB9000 000050 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.263121] ACPI: SLIC 0x000000006EFB8000 000176 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.271614] ACPI: SSDT 0x000000006EFFD000 000D66 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.280109] ACPI: SSDT 0x000000006EFB5000 00193C (v02 AMD    CPMCMN   00000001 INTL 20210331)
[    0.288601] ACPI: Reserving FACP table memory at [mem 0x6eff9000-0x6eff9113]
[    0.295620] ACPI: Reserving DSDT table memory at [mem 0x6efda000-0x6eff3527]
[    0.302640] ACPI: Reserving FACS table memory at [mem 0x6edb9000-0x6edb903f]
[    0.309661] ACPI: Reserving BERT table memory at [mem 0x6effc000-0x6effc02f]
[    0.316681] ACPI: Reserving ERST table memory at [mem 0x6effb000-0x6effb22f]
[    0.323701] ACPI: Reserving HEST table memory at [mem 0x6effa000-0x6effa7f3]
[    0.330721] ACPI: Reserving HPET table memory at [mem 0x6eff8000-0x6eff8037]
[    0.337742] ACPI: Reserving APIC table memory at [mem 0x6eff6000-0x6eff78bd]
[    0.344762] ACPI: Reserving MCFG table memory at [mem 0x6eff5000-0x6eff503b]
[    0.351781] ACPI: Reserving WSMT table memory at [mem 0x6eff4000-0x6eff4027]
[    0.358802] ACPI: Reserving SSDT table memory at [mem 0x6efd9000-0x6efd9628]
[    0.365821] ACPI: Reserving SSDT table memory at [mem 0x6efd8000-0x6efd8d6d]
[    0.372842] ACPI: Reserving EINJ table memory at [mem 0x6efd7000-0x6efd716f]
[    0.379861] ACPI: Reserving PCCT table memory at [mem 0x6efd6000-0x6efd606d]
[    0.386882] ACPI: Reserving SSDT table memory at [mem 0x6efc7000-0x6efd5848]
[    0.393902] ACPI: Reserving SRAT table memory at [mem 0x6efc6000-0x6efc6ccf]
[    0.400921] ACPI: Reserving MSCT table memory at [mem 0x6efc5000-0x6efc504d]
[    0.407942] ACPI: Reserving SLIT table memory at [mem 0x6efc4000-0x6efc402f]
[    0.414963] ACPI: Reserving CRAT table memory at [mem 0x6efbc000-0x6efc32f7]
[    0.421981] ACPI: Reserving CDIT table memory at [mem 0x6efbb000-0x6efbb02b]
[    0.429002] ACPI: Reserving IVRS table memory at [mem 0x6efba000-0x6efba1ef]
[    0.436022] ACPI: Reserving SPCR table memory at [mem 0x6efb9000-0x6efb904f]
[    0.443060] ACPI: Reserving SLIC table memory at [mem 0x6efb8000-0x6efb8175]
[    0.450079] ACPI: Reserving SSDT table memory at [mem 0x6effd000-0x6effdd65]
[    0.457100] ACPI: Reserving SSDT table memory at [mem 0x6efb5000-0x6efb693b]
[    0.464194] APIC: Switched APIC routing to: cluster x2apic
[    0.469597] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.475560] ACPI: SRAT: Node 0 PXM 0 [mem 0x000c0000-0x7fffffff]
[    0.481539] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.487780] ACPI: SRAT: Node 1 PXM 1 [mem 0x2080000000-0x407fffffff]
[    0.494113] NUMA: Node 0 [mem 0x00001000-0x0009ffff] + [mem 0x000c0000-0x7fffffff] -> [mem 0x00001000-0x7fffffff]
[    0.504333] NUMA: Node 0 [mem 0x00001000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00001000-0x207fffffff]
[    0.514999] NODE_DATA(0) allocated [mem 0x207fcd59c0-0x207fcfffff]
[    0.521155] NODE_DATA(1) allocated [mem 0x407f1d49c0-0x407f1fefff]
[    0.527439] cannot allocate crashkernel low memory (size:0x10800000).
[    0.533957] Zone ranges:
[    0.536313]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.542467]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.548621]   Normal   [mem 0x0000000100000000-0x000000407f1fffff]
[    0.554773]   Device   empty
[    0.557634] Movable zone start for each node
[    0.561881] Early memory node ranges
[    0.565434]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.571674]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.577914]   node   0: [mem 0x0000000000100000-0x0000000015dfffff]
[    0.584154]   node   0: [mem 0x0000000056700000-0x00000000567fbfff]
[    0.590394]   node   0: [mem 0x00000000567fd000-0x000000005a142fff]
[    0.596634]   node   0: [mem 0x000000005a343000-0x0000000067acefff]
[    0.602874]   node   0: [mem 0x000000006efff000-0x000000006effffff]
[    0.609114]   node   0: [mem 0x000000006f00b000-0x000000006fffffff]
[    0.615353]   node   0: [mem 0x0000000100000000-0x000000207fcfffff]
[    0.621604]   node   1: [mem 0x0000002080000000-0x000000407f1fffff]
[    0.627845] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fcfffff]
[    0.634855] Initmem setup node 1 [mem 0x0000002080000000-0x000000407f1fffff]
[    0.641876] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.647716] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.653534] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.659766] On node 0, zone DMA32: 35072 pages in unavailable ranges
[    0.665974] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.672069] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.678160] On node 0, zone DMA32: 30000 pages in unavailable ranges
[    0.684404] On node 0, zone DMA32: 11 pages in unavailable ranges
[    0.909676] On node 1, zone Normal: 768 pages in unavailable ranges
[    0.915773] On node 1, zone Normal: 3584 pages in unavailable ranges
[    0.922229] ACPI: PM-Timer IO Port: 0x408
[    0.926101] ACPI: X2APIC_NMI (uid[0xffffffff] high edge lint[0x1])
[    0.932227] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.938135] IOAPIC[0]: apic_id 240, version 33, address 0xfec00000, GSI 0-23
[    0.945144] IOAPIC[1]: apic_id 241, version 33, address 0xe0100000, GSI 120-151
[    0.952424] IOAPIC[2]: apic_id 242, version 33, address 0xc5100000, GSI 88-119
[    0.959618] IOAPIC[3]: apic_id 243, version 33, address 0xaa100000, GSI 56-87
[    0.966724] IOAPIC[4]: apic_id 244, version 33, address 0xfd100000, GSI 24-55
[    0.973830] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.980154] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.986662] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.993068] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.998183] ACPI: SPCR: console: uart,io,0x2f8,115200
[    1.003212] CPU topo: Max. logical packages:   1
[    1.007800] CPU topo: Max. logical dies:       1
[    1.012393] CPU topo: Max. dies per package:   1
[    1.016990] CPU topo: Max. threads per core:   2
[    1.021632] CPU topo: Num. cores per package:    64
[    1.026487] CPU topo: Num. threads per package: 128
[    1.031340] CPU topo: Allowing 128 present CPUs plus 0 hotplug CPUs
[    1.037605] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    1.045120] PM: hibernation: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    1.052661] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    1.060200] PM: hibernation: Registered nosave memory: [mem 0x15e00000-0x567fffff]
[    1.067740] PM: hibernation: Registered nosave memory: [mem 0x5a143000-0x5a342fff]
[    1.075281] PM: hibernation: Registered nosave memory: [mem 0x67acf000-0x6effefff]
[    1.082820] PM: hibernation: Registered nosave memory: [mem 0x6f000000-0x6f00afff]
[    1.090361] PM: hibernation: Registered nosave memory: [mem 0x70000000-0xffffffff]
[    1.097900] PM: hibernation: Registered nosave memory: [mem 0x207fd00000-0x207fffffff]
[    1.105787] [mem 0x56800000-0xffffffff] available for PCI devices
[    1.111854] Booting paravirtualized kernel on bare hardware
[    1.117401] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    1.127855] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:128 nr_cpu_ids:128 nr_node_ids:2
[    1.138745] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[    1.145220] Kernel command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    1.174547] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e biosdevname=0 mem_encrypt=off", will be passed to user space.
[    1.191396] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    1.198312] printk: log_buf_len total cpu_extra contributions: 520192 bytes
[    1.205246] printk: log_buf_len min size: 262144 bytes
[    1.210695] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[    1.218080] printk: early log buf free: 246352(93%)
[    1.224420] software IO TLB: area num 128.
[    1.228339] software IO TLB: swiotlb_memblock_alloc: Failed to allocate 268435456 bytes tlb structure
[    1.243451] software IO TLB: SWIOTLB bounce buffer size adjusted 131072 -> 65536 slabs
[    1.249571] Fallback order for Node 0: 0 1 
[    1.249575] Fallback order for Node 1: 1 0 
[    1.249587] Built 2 zonelists, mobility grouping on.  Total pages: 66743906
[    1.272578] Policy zone: Normal
[    1.275705] mem auto-init: stack:off, heap alloc:on, heap free:off
[    1.697805] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=128, Nodes=2
Poking KASLR using RDRAND RDTSC...
[    1.718433] ftrace: allocating 53763 entries in 212 pages
[    1.723654] ftrace: allocated 212 pages with 4 groups
[    1.729551] Dynamic Preempt: voluntary
[    1.733493] rcu: Preemptible hierarchical RCU implementation.
[    1.739055] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=128.
[    1.745988] 	Trampoline variant of Tasks RCU enabled.
[    1.751014] 	Rude variant of Tasks RCU enabled.
[    1.755521] 	Tracing variant of Tasks RCU enabled.
[    1.760288] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.767854] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=128
[    1.774741] RCU Tasks: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.783544] RCU Tasks Rude: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.792819] RCU Tasks Trace: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.805679] NR_IRQS: 524544, nr_irqs: 3624, preallocated irqs: 16
[    1.811865] rcu: srcu_init: Setting srcu_struct sizes to big.
[    1.817607] Console: colour dummy device 80x25
[    1.821893] printk: legacy console [ttyS0] enabled
[    1.821893] printk: legacy console [ttyS0] enabled
[    1.831426] printk: legacy bootconsole [earlyser0] disabled
[    1.831426] printk: legacy bootconsole [earlyser0] disabled
[    1.842613] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    1.853894] ACPI: Core revision 20250404
[    1.858043] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    1.867217] APIC: Switch to symmetric I/O mode setup
[    1.872639] AMD-Vi: Using global IVHD EFR:0x841f77e022094ace, EFR2:0x0
[    1.881582] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    1.907220] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x398c3a3a383, max_idle_ns: 881590633597 ns
[    1.917733] Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.37 BogoMIPS (lpj=7984752)
[    1.921744] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    1.925836] LVT offset 2 assigned for vector 0xf4
[    1.929762] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    1.933731] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    1.937733] process: using mwait in idle threads
[    1.941736] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    1.945732] Spectre V2 : Mitigation: Retpolines
[    1.949731] Spectre V2 : User space: Mitigation: STIBP always-on protection
[    1.953732] Speculative Return Stack Overflow: Mitigation: Safe RET
[    1.957731] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.961732] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
[    1.965731] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    1.969732] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    1.973735] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.977731] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.981731] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.985731] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    1.989731] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    1.993732] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    1.997731] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    2.001731] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    2.005731] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[    2.044000] Freeing SMP alternatives memory: 48K
[    2.045733] pid_max: default: 131072 minimum: 1024
[    2.057562] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm
[    2.057784] Yama: becoming mindful.
[    2.061859] AppArmor: AppArmor initialized
[    2.074714] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    2.083003] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    2.085870] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.089837] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.202788] smpboot: CPU0: AMD EPYC 7713 64-Core Processor (family: 0x19, model: 0x1, stepping: 0x1)
[    2.206088] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    2.209733] ... version:                0
[    2.213732] ... bit width:              48
[    2.217733] ... generic registers:      6
[    2.221732] ... value mask:             0000ffffffffffff
[    2.225732] ... max period:             00007fffffffffff
[    2.229732] ... fixed-purpose events:   0
[    2.233732] ... event mask:             000000000000003f
[    2.238171] signal: max sigframe size: 3376
[    2.241794] rcu: Hierarchical SRCU implementation.
[    2.245733] rcu: 	Max phase no-delay instances is 1000.
[    2.249788] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
[    2.262077] MCE: In-kernel MCE decoding enabled.
[    2.265780] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    2.274670] smp: Bringing up secondary CPUs ...
[    2.277877] smpboot: x86: Booting SMP configuration:
[    2.281734] .... node  #0, CPUs:          #1   #2   #3   #4   #5   #6   #7   #8   #9  #10  #11  #12  #13  #14  #15  #16  #17  #18  #19  #20  #21  #22  #23  #24  #25  #26  #27  #28  #29  #30  #31
[    2.293734] .... node  #1, CPUs:    #32  #33  #34  #35  #36  #37  #38  #39  #40  #41  #42  #43  #44  #45  #46  #47  #48  #49  #50  #51  #52  #53  #54  #55  #56  #57  #58  #59  #60  #61  #62  #63
[    2.445734] .... node  #0, CPUs:    #64  #65  #66  #67  #68  #69  #70  #71  #72  #73  #74  #75  #76  #77  #78  #79  #80  #81  #82  #83  #84  #85  #86  #87  #88  #89  #90  #91  #92  #93  #94  #95
[    2.453736] .... node  #1, CPUs:    #96  #97  #98  #99 #100 #101 #102 #103 #104 #105 #106 #107 #108 #109 #110 #111 #112 #113 #114 #115 #116 #117 #118 #119 #120 #121 #122 #123 #124 #125 #126 #127
[    2.462039] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[    0.068275] call_irq_handler: 126.55 No irq handler for vector
[    2.619733] smp: Brought up 2 nodes, 128 CPUs
[    2.621738] smpboot: Total of 128 processors activated (511024.12 BogoMIPS)
[    2.634265] Memory: 262224976K/266975624K available (18401K kernel code, 3299K rwdata, 7944K rodata, 4760K init, 6092K bss, 4428296K reserved, 0K cma-reserved)
[    2.645545] devtmpfs: initialized
[    2.645840] x86/mm: Memory block size: 2048MB
[    2.662228] ACPI: PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    2.665735] ACPI: PM: Registering ACPI NVS region [mem 0x6dfcf000-0x6edfefff] (14876672 bytes)
[    2.670019] ACPI: PM: Registering ACPI NVS region [mem 0x6f000000-0x6f00afff] (45056 bytes)
[    2.673852] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    2.677797] posixtimers hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.685888] futex hash table entries: 16384 (1048576 bytes on 2 NUMA nodes, total 2048 KiB, linear).
[    2.689961] pinctrl core: initialized pinctrl subsystem
[    2.693882] PM: RTC time: 12:49:25, date: 2025-06-17
[    2.702402] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    2.706314] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    2.709917] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    2.713915] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    2.717741] audit: initializing netlink subsys (disabled)
[    2.721762] audit: type=2000 audit(1750164564.840:1): state=initialized audit_enabled=0 res=1
[    2.725888] thermal_sys: Registered thermal governor 'fair_share'
[    2.729733] thermal_sys: Registered thermal governor 'bang_bang'
[    2.733732] thermal_sys: Registered thermal governor 'step_wise'
[    2.737732] thermal_sys: Registered thermal governor 'user_space'
[    2.741758] cpuidle: using governor ladder
[    2.749743] cpuidle: using governor menu
[    2.753778] Detected 1 PCC Subspaces
[    2.757734] Registering PCC driver as Mailbox controller
[    2.761904] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    2.765735] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    2.769913] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    2.773743] PCI: Using configuration type 1 for base access
[    2.777745] PCI: Dell System detected, enabling pci=bfsort.
[    2.781939] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    2.785951] HugeTLB: allocation took 0ms with hugepage_allocation_threads=32
[    2.789781] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    2.793733] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    2.797733] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    2.801732] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    2.806366] ACPI: Added _OSI(Module Device)
[    2.809734] ACPI: Added _OSI(Processor Device)
[    2.813733] ACPI: Added _OSI(Processor Aggregator Device)
[    2.856571] ACPI: 6 ACPI AML tables successfully acquired and loaded
[    2.868476] ACPI: Interpreter enabled
[    2.869745] ACPI: PM: (supports S0 S5)
[    2.873733] ACPI: Using IOAPIC for interrupt routing
[    2.878351] HEST: Table parsing has been initialized.
[    2.882140] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    2.885735] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.889732] PCI: Ignoring E820 reservations for host bridge windows
[    2.895954] ACPI: Enabled 1 GPEs in block 00 to 1F
[    2.937891] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    2.941813] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    2.945811] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    2.949810] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    2.953811] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    2.957812] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    2.961810] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    2.965810] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    2.970232] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-3f])
[    2.973736] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.977897] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER DPC]
[    2.985925] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    2.989733] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.994721] PCI host bridge to bus 0000:00
[    2.997736] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    3.001733] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    3.005733] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000fffff window]
[    3.009732] pci_bus 0000:00: root bus resource [io  0x0d00-0x3fff window]
[    3.013732] pci_bus 0000:00: root bus resource [mem 0xe1000000-0xfebfffff window]
[    3.017734] pci_bus 0000:00: root bus resource [mem 0x63dc0000000-0x7fcffffffff window]
[    3.021733] pci_bus 0000:00: root bus resource [bus 00-3f]
[    3.025747] pci 0000:00:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.029886] pci 0000:00:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.033843] pci 0000:00:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.037827] pci 0000:00:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.041823] pci 0000:00:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.045826] pci 0000:00:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.049748] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.053736] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    3.057734] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    3.061801] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    3.070369] pci 0000:00:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.073827] pci 0000:00:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.077827] pci 0000:00:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.081828] pci 0000:00:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.085748] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.089737] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    3.093744] pci 0000:00:07.1: enabling Extended Tags
[    3.097780] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    3.105781] pci 0000:00:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.109826] pci 0000:00:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.113748] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.117737] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    3.121744] pci 0000:00:08.1: enabling Extended Tags
[    3.125782] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    3.129927] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
[    3.133847] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
[    3.137905] pci 0000:00:18.0: [1022:1650] type 00 class 0x060000 conventional PCI endpoint
[    3.145741] pci 0000:00:18.1: [1022:1651] type 00 class 0x060000 conventional PCI endpoint
[    3.149798] pci 0000:00:18.2: [1022:1652] type 00 class 0x060000 conventional PCI endpoint
[    3.153798] pci 0000:00:18.3: [1022:1653] type 00 class 0x060000 conventional PCI endpoint
[    3.157796] pci 0000:00:18.4: [1022:1654] type 00 class 0x060000 conventional PCI endpoint
[    3.161797] pci 0000:00:18.5: [1022:1655] type 00 class 0x060000 conventional PCI endpoint
[    3.165801] pci 0000:00:18.6: [1022:1656] type 00 class 0x060000 conventional PCI endpoint
[    3.169797] pci 0000:00:18.7: [1022:1657] type 00 class 0x060000 conventional PCI endpoint
[    3.173868] pci 0000:01:00.0: [1000:0097] type 00 class 0x010700 PCIe Endpoint
[    3.177763] pci 0000:01:00.0: BAR 0 [io  0x1000-0x10ff]
[    3.181734] pci 0000:01:00.0: BAR 1 [mem 0xf7400000-0xf740ffff 64bit]
[    3.185734] pci 0000:01:00.0: BAR 3 [mem 0xf7300000-0xf73fffff 64bit]
[    3.189734] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]
[    3.193738] pci 0000:01:00.0: enabling Extended Tags
[    3.197818] pci 0000:01:00.0: supports D1 D2
[    3.201773] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[    3.205732] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x000fffff 64bit]: contains BAR 0 for 16 VFs
[    3.209734] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x000fffff 64bit]
[    3.213732] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x00ffffff 64bit]: contains BAR 2 for 16 VFs
[    3.217883] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.221820] pci 0000:02:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.225766] pci 0000:02:00.0: enabling Extended Tags
[    3.229895] pci 0000:02:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.233760] pci 0000:02:00.2: BAR 2 [mem 0xf7200000-0xf727ffff]
[    3.237735] pci 0000:02:00.2: BAR 5 [mem 0xf7280000-0xf7281fff]
[    3.241737] pci 0000:02:00.2: enabling Extended Tags
[    3.245935] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.249869] pci 0000:03:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.253769] pci 0000:03:00.0: enabling Extended Tags
[    3.257952] pci 0000:03:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.261762] pci 0000:03:00.2: BAR 2 [mem 0xf7100000-0xf717ffff]
[    3.265735] pci 0000:03:00.2: BAR 5 [mem 0xf7180000-0xf7181fff]
[    3.269738] pci 0000:03:00.2: enabling Extended Tags
[    3.273927] pci 0000:03:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.277761] pci 0000:03:00.3: BAR 0 [mem 0xf7000000-0xf70fffff 64bit]
[    3.281741] pci 0000:03:00.3: enabling Extended Tags
[    3.285783] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
[    3.289915] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.295117] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 40-7f])
[    3.297736] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.301896] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.306048] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.309733] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.314656] PCI host bridge to bus 0000:40
[    3.317737] pci_bus 0000:40: root bus resource [io  0x4000-0x6fff window]
[    3.321732] pci_bus 0000:40: root bus resource [mem 0x90000000-0xaaffffff window]
[    3.325732] pci_bus 0000:40: root bus resource [mem 0x47e80000000-0x63dbfffffff window]
[    3.329732] pci_bus 0000:40: root bus resource [bus 40-7f]
[    3.333742] pci 0000:40:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.337831] pci 0000:40:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.341834] pci 0000:40:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.345816] pci 0000:40:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.349818] pci 0000:40:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.353827] pci 0000:40:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.357750] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.361737] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    3.365839] pci 0000:40:03.1: PME# supported from D0 D3hot D3cold
[    3.383359] pci 0000:40:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.385756] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.389739] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    3.393844] pci 0000:40:03.2: PME# supported from D0 D3hot D3cold
[    3.412238] pci 0000:40:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.417751] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.421739] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    3.429826] pci 0000:40:03.3: PME# supported from D0 D3hot D3cold
[    3.449970] pci 0000:40:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.457750] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.461740] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    3.469881] pci 0000:40:03.4: PME# supported from D0 D3hot D3cold
[    3.488051] pci 0000:40:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.493854] pci 0000:40:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.501862] pci 0000:40:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.513875] pci 0000:40:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.517748] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.525737] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    3.529744] pci 0000:40:07.1: enabling Extended Tags
[    3.537780] pci 0000:40:07.1: PME# supported from D0 D3hot D3cold
[    3.541890] pci 0000:40:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.549825] pci 0000:40:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.557748] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.561737] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    3.569744] pci 0000:40:08.1: enabling Extended Tags
[    3.573781] pci 0000:40:08.1: PME# supported from D0 D3hot D3cold
[    3.581991] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.585817] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.589814] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.597816] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.601820] pci 0000:45:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.609765] pci 0000:45:00.0: enabling Extended Tags
[    3.613892] pci 0000:45:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.621759] pci 0000:45:00.2: BAR 2 [mem 0xa5300000-0xa537ffff]
[    3.625734] pci 0000:45:00.2: BAR 5 [mem 0xa5380000-0xa5381fff]
[    3.633737] pci 0000:45:00.2: enabling Extended Tags
[    3.637930] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.641868] pci 0000:46:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.649768] pci 0000:46:00.0: enabling Extended Tags
[    3.653941] pci 0000:46:00.1: [1022:1486] type 00 class 0x108000 PCIe Endpoint
[    3.661763] pci 0000:46:00.1: BAR 2 [mem 0xa5100000-0xa51fffff]
[    3.669735] pci 0000:46:00.1: BAR 5 [mem 0xa5282000-0xa5283fff]
[    3.673738] pci 0000:46:00.1: enabling Extended Tags
[    3.677925] pci 0000:46:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.685762] pci 0000:46:00.2: BAR 2 [mem 0xa5200000-0xa527ffff]
[    3.693735] pci 0000:46:00.2: BAR 5 [mem 0xa5280000-0xa5281fff]
[    3.697738] pci 0000:46:00.2: enabling Extended Tags
[    3.705949] pci 0000:46:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.709761] pci 0000:46:00.3: BAR 0 [mem 0xa5000000-0xa50fffff 64bit]
[    3.717741] pci 0000:46:00.3: enabling Extended Tags
[    3.721784] pci 0000:46:00.3: PME# supported from D0 D3hot D3cold
[    3.729917] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.734411] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 80-bf])
[    3.741736] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.749897] acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.758049] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.765732] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.774637] PCI host bridge to bus 0000:80
[    3.777736] pci_bus 0000:80: root bus resource [io  0x7000-0x9fff window]
[    3.785734] pci_bus 0000:80: root bus resource [mem 0xab000000-0xc5ffffff window]
[    3.793733] pci_bus 0000:80: root bus resource [mem 0x2bf40000000-0x47e7fffffff window]
[    3.801736] pci_bus 0000:80: root bus resource [bus 80-bf]
[    3.805743] pci 0000:80:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.813830] pci 0000:80:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.825838] pci 0000:80:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.833826] pci 0000:80:01.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.837750] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.845739] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    3.849825] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    3.871805] pci 0000:80:01.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.877756] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.881738] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    3.889804] pci 0000:80:01.2: PME# supported from D0 D3hot D3cold
[    3.906963] pci 0000:80:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.909833] pci 0000:80:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.913849] pci 0000:80:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.917827] pci 0000:80:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.921882] pci 0000:80:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.925823] pci 0000:80:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.929748] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.933737] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    3.937744] pci 0000:80:07.1: enabling Extended Tags
[    3.941780] pci 0000:80:07.1: PME# supported from D0 D3hot D3cold
[    3.945893] pci 0000:80:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.949823] pci 0000:80:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.953748] pci 0000:80:08.1: PCI bridge to [bus 84]
[    3.957737] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    3.961744] pci 0000:80:08.1: enabling Extended Tags
[    3.965782] pci 0000:80:08.1: PME# supported from D0 D3hot D3cold
[    3.969898] pci 0000:80:08.2: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.973748] pci 0000:80:08.2: PCI bridge to [bus 85]
[    3.977738] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    3.981744] pci 0000:80:08.2: enabling Extended Tags
[    3.985781] pci 0000:80:08.2: PME# supported from D0 D3hot D3cold
[    3.989972] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.993815] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.997819] pci 0000:83:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    4.001766] pci 0000:83:00.0: enabling Extended Tags
[    4.005893] pci 0000:83:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.009759] pci 0000:83:00.2: BAR 2 [mem 0xbfa00000-0xbfa7ffff]
[    4.013735] pci 0000:83:00.2: BAR 5 [mem 0xbfa80000-0xbfa81fff]
[    4.017738] pci 0000:83:00.2: enabling Extended Tags
[    4.021931] pci 0000:80:07.1: PCI bridge to [bus 83]
[    4.025867] pci 0000:84:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.029768] pci 0000:84:00.0: enabling Extended Tags
[    4.033944] pci 0000:84:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.037763] pci 0000:84:00.2: BAR 2 [mem 0xbf900000-0xbf97ffff]
[    4.041735] pci 0000:84:00.2: BAR 5 [mem 0xbf980000-0xbf981fff]
[    4.045738] pci 0000:84:00.2: enabling Extended Tags
[    4.049938] pci 0000:80:08.1: PCI bridge to [bus 84]
[    4.053865] pci 0000:85:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[    4.057764] pci 0000:85:00.0: BAR 5 [mem 0xbf800000-0xbf8007ff]
[    4.061738] pci 0000:85:00.0: enabling Extended Tags
[    4.065796] pci 0000:85:00.0: PME# supported from D3hot D3cold
[    4.069913] pci 0000:80:08.2: PCI bridge to [bus 85]
[    4.074444] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus c0-ff])
[    4.077736] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    4.081897] acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug AER DPC]
[    4.086048] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    4.089733] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
[    4.094753] PCI host bridge to bus 0000:c0
[    4.097737] pci_bus 0000:c0: root bus resource [io  0xa000-0xffff window]
[    4.101732] pci_bus 0000:c0: root bus resource [mem 0xc6000000-0xe0ffffff window]
[    4.105733] pci_bus 0000:c0: root bus resource [mem 0x10000000000-0x2bf3fffffff window]
[    4.109732] pci_bus 0000:c0: root bus resource [io  0x03b0-0x03df window]
[    4.113732] pci_bus 0000:c0: root bus resource [mem 0x000a0000-0x000bffff window]
[    4.117733] pci_bus 0000:c0: root bus resource [bus c0-ff]
[    4.121769] pci 0000:c0:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    4.125831] pci 0000:c0:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    4.129835] pci 0000:c0:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.133818] pci 0000:c0:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.137815] pci 0000:c0:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.141824] pci 0000:c0:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.145749] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.149737] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    4.153822] pci 0000:c0:03.1: PME# supported from D0 D3hot D3cold
[    4.171337] pci 0000:c0:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.173756] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.177739] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    4.181804] pci 0000:c0:03.2: PME# supported from D0 D3hot D3cold
[    4.201435] pci 0000:c0:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.205754] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.213740] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    4.217840] pci 0000:c0:03.3: PME# supported from D0 D3hot D3cold
[    4.241206] pci 0000:c0:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.241751] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.245737] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    4.249823] pci 0000:c0:03.4: PME# supported from D0 D3hot D3cold
[    4.268414] pci 0000:c0:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.269887] pci 0000:c0:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.273827] pci 0000:c0:05.1: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.277753] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.281744] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    4.285837] pci 0000:c0:05.1: PME# supported from D0 D3hot D3cold
[    4.289888] pci 0000:c0:05.2: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.293747] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.297737] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    4.301738] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.305778] pci 0000:c0:05.2: PME# supported from D0 D3hot D3cold
[    4.309881] pci 0000:c0:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.313823] pci 0000:c0:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.317748] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.321736] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    4.325743] pci 0000:c0:07.1: enabling Extended Tags
[    4.329779] pci 0000:c0:07.1: PME# supported from D0 D3hot D3cold
[    4.333883] pci 0000:c0:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.337824] pci 0000:c0:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.341748] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.345737] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    4.349744] pci 0000:c0:08.1: enabling Extended Tags
[    4.353780] pci 0000:c0:08.1: PME# supported from D0 D3hot D3cold
[    4.357976] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.361818] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.365816] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.369815] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.373834] pci 0000:c1:00.0: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.377779] pci 0000:c1:00.0: BAR 0 [mem 0xc7030000-0xc703ffff 64bit pref]
[    4.381735] pci 0000:c1:00.0: BAR 2 [mem 0xc7040000-0xc704ffff 64bit pref]
[    4.385735] pci 0000:c1:00.0: BAR 4 [mem 0xc7050000-0xc705ffff 64bit pref]
[    4.389734] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.393820] pci 0000:c1:00.0: PME# supported from D0 D3hot D3cold
[    4.397788] pci 0000:c1:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:c0:05.1 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
[    4.403156] pci 0000:c1:00.1: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.405778] pci 0000:c1:00.1: BAR 0 [mem 0xc7000000-0xc700ffff 64bit pref]
[    4.409735] pci 0000:c1:00.1: BAR 2 [mem 0xc7010000-0xc701ffff 64bit pref]
[    4.413735] pci 0000:c1:00.1: BAR 4 [mem 0xc7020000-0xc702ffff 64bit pref]
[    4.417734] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.421821] pci 0000:c1:00.1: PME# supported from D0 D3hot D3cold
[    4.433759] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.437814] pci 0000:c2:00.0: [1556:be00] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    4.441759] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.445740] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    4.449742] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.461754] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.465768] pci_bus 0000:c3: extended config space not accessible
[    4.469760] pci 0000:c3:00.0: [102b:0536] type 00 class 0x030000 conventional PCI endpoint
[    4.473779] pci 0000:c3:00.0: BAR 0 [mem 0xc6000000-0xc6ffffff pref]
[    4.477734] pci 0000:c3:00.0: BAR 1 [mem 0xda808000-0xda80bfff]
[    4.481734] pci 0000:c3:00.0: BAR 2 [mem 0xda000000-0xda7fffff]
[    4.485752] pci 0000:c3:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    4.489860] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.493837] pci 0000:c8:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    4.497765] pci 0000:c8:00.0: enabling Extended Tags
[    4.501891] pci 0000:c8:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.505759] pci 0000:c8:00.2: BAR 2 [mem 0xdbb00000-0xdbb7ffff]
[    4.509734] pci 0000:c8:00.2: BAR 5 [mem 0xdbb80000-0xdbb81fff]
[    4.513737] pci 0000:c8:00.2: enabling Extended Tags
[    4.521827] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.525867] pci 0000:c9:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.529768] pci 0000:c9:00.0: enabling Extended Tags
[    4.533941] pci 0000:c9:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.537761] pci 0000:c9:00.2: BAR 2 [mem 0xdba00000-0xdba7ffff]
[    4.541735] pci 0000:c9:00.2: BAR 5 [mem 0xdba80000-0xdba81fff]
[    4.545737] pci 0000:c9:00.2: enabling Extended Tags
[    4.549937] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.560805] iommu: Default domain type: Translated
[    4.561733] iommu: DMA domain TLB invalidation policy: lazy mode
[    4.570030] SCSI subsystem initialized
[    4.573775] ACPI: bus type USB registered
[    4.577758] usbcore: registered new interface driver usbfs
[    4.581742] usbcore: registered new interface driver hub
[    4.585768] usbcore: registered new device driver usb
[    4.589764] pps_core: LinuxPPS API ver. 1 registered
[    4.593733] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux•it>
[    4.597737] PTP clock support registered
[    4.601813] EDAC MC: Ver: 3.0.0
[    4.605946] efivars: Registered efivars operations
[    4.614087] NetLabel: Initializing
[    4.617489] NetLabel:  domain hash size = 128
[    4.617734] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    4.621755] NetLabel:  unlabeled traffic allowed by default
[    4.625776] PCI: Using ACPI for IRQ routing
[    4.637561] pci 0000:c3:00.0: vgaarb: setting as boot VGA device
[    4.637731] pci 0000:c3:00.0: vgaarb: bridge control possible
[    4.637731] pci 0000:c3:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    4.637734] vgaarb: loaded
[    4.640453] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    4.641734] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    4.647925] clocksource: Switched to clocksource tsc-early
[    4.651548] VFS: Disk quotas dquot_6.6.0
[    4.655500] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.662629] AppArmor: AppArmor Filesystem Enabled
[    4.667408] pnp: PnP ACPI init
[    4.670714] system 00:00: [mem 0x80000000-0x8fffffff] has been reserved
[    4.677416] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[    4.685621] pnp: PnP ACPI: found 5 devices
[    4.696723] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    4.705698] NET: Registered PF_INET protocol family
[    4.710715] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.722440] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.731629] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    4.739665] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.749168] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.757549] TCP: Hash tables configured (established 524288 bind 65536)
[    4.764536] UDP hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.772990] UDP-Lite hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.781827] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    4.787494] NET: Registered PF_XDP protocol family
[    4.792292] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.802110] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.811928] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.821749] pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
[    4.827422] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: can't assign; no space
[    4.835163] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: failed to assign
[    4.842386] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: can't assign; no space
[    4.850642] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: failed to assign
[    4.858383] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: can't assign; no space
[    4.866642] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: failed to assign
[    4.874382] pci 0000:00:03.2: PCI bridge to [bus 01]
[    4.879346] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    4.885440] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    4.892229] pci 0000:00:07.1: PCI bridge to [bus 02]
[    4.897203] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    4.903990] pci 0000:00:08.1: PCI bridge to [bus 03]
[    4.908964] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    4.915751] PCI: No. 2 try to assign unassigned res
[    4.920640] pci 0000:00:03.2: resource 14 [mem 0xf7300000-0xf74fffff] released
[    4.927864] pci 0000:00:03.2: PCI bridge to [bus 01]
[    4.932834] pci 0000:00:03.2: bridge window [mem 0x00100000-0x002fffff] to [bus 01] add_size 1200000 add_align 100000
[    4.943444] pci 0000:00:03.2: bridge window [mem 0xe1000000-0xe23fffff]: assigned
[    4.950928] pci 0000:01:00.0: BAR 3 [mem 0xe1000000-0xe10fffff 64bit]: assigned
[    4.958238] pci 0000:01:00.0: ROM [mem 0xe1100000-0xe11fffff pref]: assigned
[    4.965287] pci 0000:01:00.0: VF BAR 2 [mem 0xe1200000-0xe21fffff 64bit]: assigned
[    4.972854] pci 0000:01:00.0: BAR 1 [mem 0xe2200000-0xe220ffff 64bit]: assigned
[    4.980164] pci 0000:01:00.0: VF BAR 0 [mem 0xe2210000-0xe230ffff 64bit]: assigned
[    4.987734] pci 0000:00:03.2: PCI bridge to [bus 01]
[    4.992701] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    4.998794] pci 0000:00:03.2:   bridge window [mem 0xe1000000-0xe23fffff]
[    5.005583] pci 0000:00:07.1: PCI bridge to [bus 02]
[    5.010552] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    5.017346] pci 0000:00:08.1: PCI bridge to [bus 03]
[    5.022315] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.029102] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    5.035286] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    5.041469] pci_bus 0000:00: resource 6 [mem 0x000c0000-0x000fffff window]
[    5.048340] pci_bus 0000:00: resource 7 [io  0x0d00-0x3fff window]
[    5.054520] pci_bus 0000:00: resource 8 [mem 0xe1000000-0xfebfffff window]
[    5.061391] pci_bus 0000:00: resource 9 [mem 0x63dc0000000-0x7fcffffffff window]
[    5.068785] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[    5.074357] pci_bus 0000:01: resource 1 [mem 0xe1000000-0xe23fffff]
[    5.080624] pci_bus 0000:02: resource 1 [mem 0xf7200000-0xf72fffff]
[    5.086923] pci_bus 0000:03: resource 1 [mem 0xf7000000-0xf71fffff]
[    5.093304] pci 0000:40:03.1: bridge window [io  0x1000-0x0fff] to [bus 41] add_size 1000
[    5.101479] pci 0000:40:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 41] add_size 200000 add_align 100000
[    5.112961] pci 0000:40:03.2: bridge window [io  0x1000-0x0fff] to [bus 42] add_size 1000
[    5.121143] pci 0000:40:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 42] add_size 200000 add_align 100000
[    5.132616] pci 0000:40:03.3: bridge window [io  0x1000-0x0fff] to [bus 43] add_size 1000
[    5.140787] pci 0000:40:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 43] add_size 200000 add_align 100000
[    5.152252] pci 0000:40:03.4: bridge window [io  0x1000-0x0fff] to [bus 44] add_size 1000
[    5.160424] pci 0000:40:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 44] add_size 200000 add_align 100000
[    5.171899] pci 0000:40:03.1: bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]: assigned
[    5.180854] pci 0000:40:03.2: bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]: assigned
[    5.189808] pci 0000:40:03.3: bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]: assigned
[    5.198767] pci 0000:40:03.4: bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]: assigned
[    5.207719] pci 0000:40:03.1: bridge window [io  0x4000-0x4fff]: assigned
[    5.214505] pci 0000:40:03.2: bridge window [io  0x5000-0x5fff]: assigned
[    5.221292] pci 0000:40:03.3: bridge window [io  0x6000-0x6fff]: assigned
[    5.228079] pci 0000:40:03.4: bridge window [io  size 0x1000]: can't assign; no space
[    5.235904] pci 0000:40:03.4: bridge window [io  size 0x1000]: failed to assign
[    5.243213] pci 0000:40:03.4: bridge window [io  0x4000-0x4fff]: assigned
[    5.249996] pci 0000:40:03.3: bridge window [io  0x5000-0x5fff]: assigned
[    5.256782] pci 0000:40:03.2: bridge window [io  0x6000-0x6fff]: assigned
[    5.263567] pci 0000:40:03.1: bridge window [io  size 0x1000]: can't assign; no space
[    5.271396] pci 0000:40:03.1: bridge window [io  size 0x1000]: failed to assign
[    5.278701] pci 0000:40:03.1: PCI bridge to [bus 41]
[    5.283667] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    5.290453] pci 0000:40:03.1:   bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.298715] pci 0000:40:03.2: PCI bridge to [bus 42]
[    5.303679] pci 0000:40:03.2:   bridge window [io  0x6000-0x6fff]
[    5.309774] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    5.316557] pci 0000:40:03.2:   bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.324817] pci 0000:40:03.3: PCI bridge to [bus 43]
[    5.329782] pci 0000:40:03.3:   bridge window [io  0x5000-0x5fff]
[    5.335875] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    5.342663] pci 0000:40:03.3:   bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.350924] pci 0000:40:03.4: PCI bridge to [bus 44]
[    5.355895] pci 0000:40:03.4:   bridge window [io  0x4000-0x4fff]
[    5.361990] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    5.368775] pci 0000:40:03.4:   bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.377037] pci 0000:40:07.1: PCI bridge to [bus 45]
[    5.382009] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    5.388797] pci 0000:40:08.1: PCI bridge to [bus 46]
[    5.393760] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    5.400566] pci_bus 0000:40: Some PCI device resources are unassigned, try booting with pci=realloc
[    5.409601] pci_bus 0000:40: resource 4 [io  0x4000-0x6fff window]
[    5.415781] pci_bus 0000:40: resource 5 [mem 0x90000000-0xaaffffff window]
[    5.422656] pci_bus 0000:40: resource 6 [mem 0x47e80000000-0x63dbfffffff window]
[    5.430047] pci_bus 0000:41: resource 1 [mem 0xa4c00000-0xa4ffffff]
[    5.436315] pci_bus 0000:41: resource 2 [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.444051] pci_bus 0000:42: resource 0 [io  0x6000-0x6fff]
[    5.449625] pci_bus 0000:42: resource 1 [mem 0xa4800000-0xa4bfffff]
[    5.455892] pci_bus 0000:42: resource 2 [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.463632] pci_bus 0000:43: resource 0 [io  0x5000-0x5fff]
[    5.469204] pci_bus 0000:43: resource 1 [mem 0xa4400000-0xa47fffff]
[    5.475469] pci_bus 0000:43: resource 2 [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.483211] pci_bus 0000:44: resource 0 [io  0x4000-0x4fff]
[    5.488781] pci_bus 0000:44: resource 1 [mem 0xa4000000-0xa43fffff]
[    5.495046] pci_bus 0000:44: resource 2 [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.502785] pci_bus 0000:45: resource 1 [mem 0xa5300000-0xa53fffff]
[    5.509052] pci_bus 0000:46: resource 1 [mem 0xa5000000-0xa52fffff]
[    5.515397] pci 0000:80:01.1: bridge window [io  0x1000-0x0fff] to [bus 81] add_size 1000
[    5.523569] pci 0000:80:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 81] add_size 200000 add_align 100000
[    5.535036] pci 0000:80:01.2: bridge window [io  0x1000-0x0fff] to [bus 82] add_size 1000
[    5.543210] pci 0000:80:01.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 82] add_size 200000 add_align 100000
[    5.554681] pci 0000:80:01.1: bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]: assigned
[    5.563637] pci 0000:80:01.2: bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]: assigned
[    5.572590] pci 0000:80:01.1: bridge window [io  0x7000-0x7fff]: assigned
[    5.579376] pci 0000:80:01.2: bridge window [io  0x8000-0x8fff]: assigned
[    5.586162] pci 0000:80:01.1: PCI bridge to [bus 81]
[    5.591129] pci 0000:80:01.1:   bridge window [io  0x7000-0x7fff]
[    5.597221] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    5.604007] pci 0000:80:01.1:   bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.612284] pci 0000:80:01.2: PCI bridge to [bus 82]
[    5.617249] pci 0000:80:01.2:   bridge window [io  0x8000-0x8fff]
[    5.623344] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    5.630129] pci 0000:80:01.2:   bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.638391] pci 0000:80:07.1: PCI bridge to [bus 83]
[    5.643362] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    5.650150] pci 0000:80:08.1: PCI bridge to [bus 84]
[    5.655116] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    5.661905] pci 0000:80:08.2: PCI bridge to [bus 85]
[    5.666877] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    5.673663] pci_bus 0000:80: resource 4 [io  0x7000-0x9fff window]
[    5.679838] pci_bus 0000:80: resource 5 [mem 0xab000000-0xc5ffffff window]
[    5.686711] pci_bus 0000:80: resource 6 [mem 0x2bf40000000-0x47e7fffffff window]
[    5.694107] pci_bus 0000:81: resource 0 [io  0x7000-0x7fff]
[    5.699678] pci_bus 0000:81: resource 1 [mem 0xbf400000-0xbf7fffff]
[    5.705945] pci_bus 0000:81: resource 2 [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.713682] pci_bus 0000:82: resource 0 [io  0x8000-0x8fff]
[    5.719256] pci_bus 0000:82: resource 1 [mem 0xbf000000-0xbf3fffff]
[    5.725523] pci_bus 0000:82: resource 2 [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.733261] pci_bus 0000:83: resource 1 [mem 0xbfa00000-0xbfafffff]
[    5.739528] pci_bus 0000:84: resource 1 [mem 0xbf900000-0xbf9fffff]
[    5.745792] pci_bus 0000:85: resource 1 [mem 0xbf800000-0xbf8fffff]
[    5.752201] pci 0000:c0:03.1: bridge window [io  0x1000-0x0fff] to [bus c4] add_size 1000
[    5.760404] pci 0000:c0:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c4] add_size 200000 add_align 100000
[    5.771875] pci 0000:c0:03.2: bridge window [io  0x1000-0x0fff] to [bus c5] add_size 1000
[    5.780055] pci 0000:c0:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c5] add_size 200000 add_align 100000
[    5.791520] pci 0000:c0:03.3: bridge window [io  0x1000-0x0fff] to [bus c6] add_size 1000
[    5.799692] pci 0000:c0:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c6] add_size 200000 add_align 100000
[    5.811160] pci 0000:c0:03.4: bridge window [io  0x1000-0x0fff] to [bus c7] add_size 1000
[    5.819330] pci 0000:c0:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c7] add_size 200000 add_align 100000
[    5.830799] pci 0000:c0:05.1: bridge window [mem 0x00100000-0x000fffff] to [bus c1] add_size 100000 add_align 100000
[    5.841320] pci 0000:c0:03.1: bridge window [mem 0x10000000000-0x100001fffff 64bit pref]: assigned
[    5.850277] pci 0000:c0:03.2: bridge window [mem 0x10000200000-0x100003fffff 64bit pref]: assigned
[    5.859232] pci 0000:c0:03.3: bridge window [mem 0x10000400000-0x100005fffff 64bit pref]: assigned
[    5.868184] pci 0000:c0:03.4: bridge window [mem 0x10000600000-0x100007fffff 64bit pref]: assigned
[    5.877139] pci 0000:c0:05.1: bridge window [mem 0xc7100000-0xc71fffff]: assigned
[    5.884618] pci 0000:c0:03.1: bridge window [io  0xa000-0xafff]: assigned
[    5.891403] pci 0000:c0:03.2: bridge window [io  0xb000-0xbfff]: assigned
[    5.898188] pci 0000:c0:03.3: bridge window [io  0xc000-0xcfff]: assigned
[    5.904976] pci 0000:c0:03.4: bridge window [io  0xd000-0xdfff]: assigned
[    5.911761] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    5.916781] pci 0000:c0:03.1:   bridge window [io  0xa000-0xafff]
[    5.922875] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    5.929659] pci 0000:c0:03.1:   bridge window [mem 0x10000000000-0x100001fffff 64bit pref]
[    5.937921] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    5.942884] pci 0000:c0:03.2:   bridge window [io  0xb000-0xbfff]
[    5.948980] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    5.955771] pci 0000:c0:03.2:   bridge window [mem 0x10000200000-0x100003fffff 64bit pref]
[    5.964034] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    5.968997] pci 0000:c0:03.3:   bridge window [io  0xc000-0xcfff]
[    5.975092] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    5.981877] pci 0000:c0:03.3:   bridge window [mem 0x10000400000-0x100005fffff 64bit pref]
[    5.990135] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    5.995101] pci 0000:c0:03.4:   bridge window [io  0xd000-0xdfff]
[    6.001195] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    6.007979] pci 0000:c0:03.4:   bridge window [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.016242] pci 0000:c1:00.0: ROM [mem 0xc7100000-0xc713ffff pref]: assigned
[    6.023292] pci 0000:c1:00.1: ROM [mem 0xc7140000-0xc717ffff pref]: assigned
[    6.030341] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    6.035306] pci 0000:c0:05.1:   bridge window [mem 0xc7100000-0xc71fffff]
[    6.042091] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.049836] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    6.054809] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    6.061603] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.069343] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    6.074575] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    6.081363] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.089103] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    6.094065] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    6.100855] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    6.105820] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    6.112608] pci_bus 0000:c0: resource 4 [io  0xa000-0xffff window]
[    6.118817] pci_bus 0000:c0: resource 5 [mem 0xc6000000-0xe0ffffff window]
[    6.125710] pci_bus 0000:c0: resource 6 [mem 0x10000000000-0x2bf3fffffff window]
[    6.133101] pci_bus 0000:c0: resource 7 [io  0x03b0-0x03df window]
[    6.139279] pci_bus 0000:c0: resource 8 [mem 0x000a0000-0x000bffff window]
[    6.146153] pci_bus 0000:c4: resource 0 [io  0xa000-0xafff]
[    6.151724] pci_bus 0000:c4: resource 1 [mem 0xdb600000-0xdb9fffff]
[    6.157992] pci_bus 0000:c4: resource 2 [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.165732] pci_bus 0000:c5: resource 0 [io  0xb000-0xbfff]
[    6.171303] pci_bus 0000:c5: resource 1 [mem 0xdb200000-0xdb5fffff]
[    6.177570] pci_bus 0000:c5: resource 2 [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.185308] pci_bus 0000:c6: resource 0 [io  0xc000-0xcfff]
[    6.190882] pci_bus 0000:c6: resource 1 [mem 0xdae00000-0xdb1fffff]
[    6.197147] pci_bus 0000:c6: resource 2 [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.204889] pci_bus 0000:c7: resource 0 [io  0xd000-0xdfff]
[    6.210461] pci_bus 0000:c7: resource 1 [mem 0xdaa00000-0xdadfffff]
[    6.216724] pci_bus 0000:c7: resource 2 [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.224463] pci_bus 0000:c1: resource 1 [mem 0xc7100000-0xc71fffff]
[    6.230731] pci_bus 0000:c1: resource 2 [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.237949] pci_bus 0000:c2: resource 1 [mem 0xda000000-0xda8fffff]
[    6.244217] pci_bus 0000:c2: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.251436] pci_bus 0000:c3: resource 1 [mem 0xda000000-0xda8fffff]
[    6.257702] pci_bus 0000:c3: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.264921] pci_bus 0000:c8: resource 1 [mem 0xdbb00000-0xdbbfffff]
[    6.271187] pci_bus 0000:c9: resource 1 [mem 0xdba00000-0xdbafffff]
[    6.278190] PCI: CLS 64 bytes, default 64
[    6.282400] Trying to unpack rootfs image as initramfs...
[    6.345030] AMD-Vi: IOMMU SNP support enabled.
[    6.349663] pci 0000:c0:00.2: AMD-Vi: IOMMU performance counters supported
[    6.356704] pci 0000:c0:01.0: Adding to iommu group 0
[    6.361812] pci 0000:c0:02.0: Adding to iommu group 1
[    6.367018] pci 0000:c0:03.0: Adding to iommu group 2
[    6.372115] pci 0000:c0:03.1: Adding to iommu group 2
[    6.377212] pci 0000:c0:03.2: Adding to iommu group 2
[    6.382317] pci 0000:c0:03.3: Adding to iommu group 2
[    6.387422] pci 0000:c0:03.4: Adding to iommu group 2
[    6.392532] pci 0000:c0:04.0: Adding to iommu group 3
[    6.397683] pci 0000:c0:05.0: Adding to iommu group 4
[    6.402785] pci 0000:c0:05.1: Adding to iommu group 4
[    6.407885] pci 0000:c0:05.2: Adding to iommu group 4
[    6.412995] pci 0000:c0:07.0: Adding to iommu group 5
[    6.418078] pci 0000:c0:07.1: Adding to iommu group 6
[    6.423188] pci 0000:c0:08.0: Adding to iommu group 7
[    6.428271] pci 0000:c0:08.1: Adding to iommu group 8
[    6.433332] pci 0000:c1:00.0: Adding to iommu group 4
[    6.438390] pci 0000:c1:00.1: Adding to iommu group 4
[    6.443453] pci 0000:c2:00.0: Adding to iommu group 4
[    6.448517] pci 0000:c3:00.0: Adding to iommu group 4
[    6.453621] pci 0000:c8:00.0: Adding to iommu group 9
[    6.458709] pci 0000:c8:00.2: Adding to iommu group 10
[    6.463882] pci 0000:c9:00.0: Adding to iommu group 11
[    6.469059] pci 0000:c9:00.2: Adding to iommu group 12
[    6.481139] pci 0000:80:00.2: AMD-Vi: IOMMU performance counters supported
[    6.488213] pci 0000:80:01.0: Adding to iommu group 13
[    6.493402] pci 0000:80:01.1: Adding to iommu group 13
[    6.498585] pci 0000:80:01.2: Adding to iommu group 13
[    6.503782] pci 0000:80:02.0: Adding to iommu group 14
[    6.508983] pci 0000:80:03.0: Adding to iommu group 15
[    6.514183] pci 0000:80:04.0: Adding to iommu group 16
[    6.519378] pci 0000:80:05.0: Adding to iommu group 17
[    6.524570] pci 0000:80:07.0: Adding to iommu group 18
[    6.529742] pci 0000:80:07.1: Adding to iommu group 19
[    6.534938] pci 0000:80:08.0: Adding to iommu group 20
[    6.540116] pci 0000:80:08.1: Adding to iommu group 21
[    6.545291] pci 0000:80:08.2: Adding to iommu group 22
[    6.550468] pci 0000:83:00.0: Adding to iommu group 23
[    6.555657] pci 0000:83:00.2: Adding to iommu group 24
[    6.560831] pci 0000:84:00.0: Adding to iommu group 25
[    6.566005] pci 0000:84:00.2: Adding to iommu group 26
[    6.571177] pci 0000:85:00.0: Adding to iommu group 27
[    6.583634] pci 0000:40:00.2: AMD-Vi: IOMMU performance counters supported
[    6.590665] pci 0000:40:01.0: Adding to iommu group 28
[    6.595865] pci 0000:40:02.0: Adding to iommu group 29
[    6.601160] pci 0000:40:03.0: Adding to iommu group 30
[    6.606342] pci 0000:40:03.1: Adding to iommu group 30
[    6.611524] pci 0000:40:03.2: Adding to iommu group 30
[    6.616698] pci 0000:40:03.3: Adding to iommu group 30
[    6.621874] pci 0000:40:03.4: Adding to iommu group 30
[    6.627071] pci 0000:40:04.0: Adding to iommu group 31
[    6.632265] pci 0000:40:05.0: Adding to iommu group 32
[    6.637463] pci 0000:40:07.0: Adding to iommu group 33
[    6.642633] pci 0000:40:07.1: Adding to iommu group 34
[    6.647830] pci 0000:40:08.0: Adding to iommu group 35
[    6.653007] pci 0000:40:08.1: Adding to iommu group 36
[    6.658184] pci 0000:45:00.0: Adding to iommu group 37
[    6.663357] pci 0000:45:00.2: Adding to iommu group 38
[    6.668531] pci 0000:46:00.0: Adding to iommu group 39
[    6.673706] pci 0000:46:00.1: Adding to iommu group 40
[    6.678880] pci 0000:46:00.2: Adding to iommu group 41
[    6.684050] pci 0000:46:00.3: Adding to iommu group 42
[    6.696376] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    6.703381] pci 0000:00:00.0: Adding to iommu group 43
[    6.708576] pci 0000:00:01.0: Adding to iommu group 44
[    6.713775] pci 0000:00:02.0: Adding to iommu group 45
[    6.718690] Freeing initrd memory: 38564K
[    6.718981] pci 0000:00:03.0: Adding to iommu group 46
[    6.728105] pci 0000:00:03.2: Adding to iommu group 47
[    6.733300] pci 0000:00:04.0: Adding to iommu group 48
[    6.738493] pci 0000:00:05.0: Adding to iommu group 49
[    6.743693] pci 0000:00:07.0: Adding to iommu group 50
[    6.748873] pci 0000:00:07.1: Adding to iommu group 51
[    6.754065] pci 0000:00:08.0: Adding to iommu group 52
[    6.759281] pci 0000:00:08.1: Adding to iommu group 53
[    6.764516] pci 0000:00:14.0: Adding to iommu group 54
[    6.769684] pci 0000:00:14.3: Adding to iommu group 54
[    6.775039] pci 0000:00:18.0: Adding to iommu group 55
[    6.780207] pci 0000:00:18.1: Adding to iommu group 55
[    6.785382] pci 0000:00:18.2: Adding to iommu group 55
[    6.790556] pci 0000:00:18.3: Adding to iommu group 55
[    6.795729] pci 0000:00:18.4: Adding to iommu group 55
[    6.800903] pci 0000:00:18.5: Adding to iommu group 55
[    6.806084] pci 0000:00:18.6: Adding to iommu group 55
[    6.811255] pci 0000:00:18.7: Adding to iommu group 55
[    6.816428] pci 0000:01:00.0: Adding to iommu group 56
[    6.821606] pci 0000:02:00.0: Adding to iommu group 57
[    6.826776] pci 0000:02:00.2: Adding to iommu group 58
[    6.831949] pci 0000:03:00.0: Adding to iommu group 59
[    6.837124] pci 0000:03:00.2: Adding to iommu group 60
[    6.842300] pci 0000:03:00.3: Adding to iommu group 61
[    6.856544] AMD-Vi: Extended features (0x841f77e022094ace, 0x0): PPR X2APIC NX IA GA PC SNP
[    6.864949] AMD-Vi: Interrupt remapping enabled
[    6.869487] AMD-Vi: X2APIC enabled
[    6.873886] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    6.880331] software IO TLB: mapped [mem 0x000000005bf37000-0x0000000063f37000] (128MB)
[    6.888498] LVT offset 0 assigned for vector 0x400
[    6.894851] perf: AMD IBS detected (0x000003ff)
[    6.900770] amd_uncore: 4 amd_df counters detected
[    6.905598] amd_uncore: 6 amd_l3 counters detected
[    6.912029] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    6.919192] perf/amd_iommu: Detected AMD IOMMU #1 (2 banks, 4 counters/bank).
[    6.926355] perf/amd_iommu: Detected AMD IOMMU #2 (2 banks, 4 counters/bank).
[    6.933512] perf/amd_iommu: Detected AMD IOMMU #3 (2 banks, 4 counters/bank).
[    6.943900] Initialise system trusted keyrings
[    6.948356] Key type blacklist registered
[    6.952482] workingset: timestamp_bits=36 max_order=26 bucket_order=0
[    6.959461] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    6.965451] fuse: init (API version 7.44)
[    6.969730] integrity: Platform Keyring initialized
[    6.986711] Key type asymmetric registered
[    6.990811] Asymmetric key parser 'x509' registered
[    6.995730] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    7.003224] io scheduler mq-deadline registered
[    7.010354] ledtrig-cpu: registered to indicate activity on CPUs
[    7.016665] pcieport 0000:00:03.2: PME: Signaling with IRQ 38
[    7.022818] pcieport 0000:00:07.1: PME: Signaling with IRQ 40
[    7.028797] pcieport 0000:00:08.1: PME: Signaling with IRQ 41
[    7.034780] pcieport 0000:40:03.1: PME: Signaling with IRQ 42
[    7.040578] pcieport 0000:40:03.1: pciehp: Slot #167 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.054596] pcieport 0000:40:03.2: PME: Signaling with IRQ 43
[    7.060402] pcieport 0000:40:03.2: pciehp: Slot #166 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.074403] pcieport 0000:40:03.3: PME: Signaling with IRQ 44
[    7.080203] pcieport 0000:40:03.3: pciehp: Slot #169 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.094201] pcieport 0000:40:03.4: PME: Signaling with IRQ 45
[    7.100005] pcieport 0000:40:03.4: pciehp: Slot #168 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.114091] pcieport 0000:40:07.1: PME: Signaling with IRQ 47
[    7.120060] pcieport 0000:40:08.1: PME: Signaling with IRQ 48
[    7.126163] pcieport 0000:80:01.1: PME: Signaling with IRQ 49
[    7.131974] pcieport 0000:80:01.1: pciehp: Slot #160 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.145958] pcieport 0000:80:01.2: PME: Signaling with IRQ 50
[    7.151761] pcieport 0000:80:01.2: pciehp: Slot #161 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.165866] pcieport 0000:80:07.1: PME: Signaling with IRQ 52
[    7.171915] pcieport 0000:80:08.1: PME: Signaling with IRQ 54
[    7.177971] pcieport 0000:80:08.2: PME: Signaling with IRQ 55
[    7.183914] pcieport 0000:c0:03.1: PME: Signaling with IRQ 56
[    7.189716] pcieport 0000:c0:03.1: pciehp: Slot #163 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.203704] pcieport 0000:c0:03.2: PME: Signaling with IRQ 57
[    7.209509] pcieport 0000:c0:03.2: pciehp: Slot #162 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.223498] pcieport 0000:c0:03.3: PME: Signaling with IRQ 58
[    7.229297] pcieport 0000:c0:03.3: pciehp: Slot #165 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.243271] pcieport 0000:c0:03.4: PME: Signaling with IRQ 59
[    7.249074] pcieport 0000:c0:03.4: pciehp: Slot #164 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.263040] pcieport 0000:c0:05.1: PME: Signaling with IRQ 60
[    7.268971] pcieport 0000:c0:05.2: PME: Signaling with IRQ 61
[    7.275001] pcieport 0000:c0:07.1: PME: Signaling with IRQ 63
[    7.281083] pcieport 0000:c0:08.1: PME: Signaling with IRQ 65
[    7.287506] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    7.294980] ACPI: button: Power Button [PWRF]
[    7.745624] Estimated ratio of average max frequency by base frequency (times 1024): 1464
[    7.754147] ERST: Error Record Serialization Table (ERST) support is initialized.
[    7.761658] pstore: Using crash dump compression: deflate
[    7.767055] pstore: Registered erst as persistent store backend
[    7.773138] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    7.779705] 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    7.787930] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    7.799039] Linux agpgart interface v0.103
[    7.829269] loop: module loaded
[    7.843624] ahci 0000:85:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[    7.851638] ahci 0000:85:00.0: 8/8 ports implemented (port mask 0xff)
[    7.858111] ahci 0000:85:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part sxs 
[    7.868426] scsi host0: ahci
[    7.871542] scsi host1: ahci
[    7.874645] scsi host2: ahci
[    7.877749] scsi host3: ahci
[    7.880849] scsi host4: ahci
[    7.883939] scsi host5: ahci
[    7.887043] scsi host6: ahci
[    7.890141] scsi host7: ahci
[    7.893096] ata1: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800100 irq 67 lpm-pol 0 ext
[    7.901709] ata2: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800180 irq 68 lpm-pol 0 ext
[    7.910318] ata3: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800200 irq 69 lpm-pol 0 ext
[    7.918924] ata4: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800280 irq 70 lpm-pol 0 ext
[    7.927528] ata5: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800300 irq 71 lpm-pol 0 ext
[    7.936134] ata6: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800380 irq 72 lpm-pol 0 ext
[    7.944742] ata7: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800400 irq 73 lpm-pol 0 ext
[    7.953346] ata8: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800480 irq 74 lpm-pol 0 ext
[    7.962009] tsc: Refined TSC clocksource calibration: 1996.246 MHz
[    7.968245] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398ca761e09, max_idle_ns: 881590455219 ns
[    7.978419] clocksource: Switched to clocksource tsc
[    7.978652] tun: Universal TUN/TAP device driver, 1.6
[    7.988536] PPP generic driver version 2.4.2
[    7.992975] VFIO - User Level meta-driver version: 0.3
[    7.998500] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.003746] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 1
[    8.011244] xhci_hcd 0000:03:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.020802] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.026035] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 2
[    8.033427] xhci_hcd 0000:03:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.040520] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.048788] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.056010] usb usb1: Product: xHCI Host Controller
[    8.060889] usb usb1: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.069877] usb usb1: SerialNumber: 0000:03:00.3
[    8.074674] hub 1-0:1.0: USB hub found
[    8.078440] hub 1-0:1.0: 2 ports detected
[    8.083301] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.091421] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.099684] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.106914] usb usb2: Product: xHCI Host Controller
[    8.111800] usb usb2: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.120759] usb usb2: SerialNumber: 0000:03:00.3
[    8.125520] hub 2-0:1.0: USB hub found
[    8.129289] hub 2-0:1.0: 2 ports detected
[    8.134217] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.139450] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 3
[    8.146939] xhci_hcd 0000:46:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.156452] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.161683] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 4
[    8.169076] xhci_hcd 0000:46:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.176161] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.184458] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.191676] usb usb3: Product: xHCI Host Controller
[    8.196554] usb usb3: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.205511] usb usb3: SerialNumber: 0000:46:00.3
[    8.210315] hub 3-0:1.0: USB hub found
[    8.214079] hub 3-0:1.0: 2 ports detected
[    8.218881] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.226994] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.235260] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.242490] usb usb4: Product: xHCI Host Controller
[    8.247376] usb usb4: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.256327] usb usb4: SerialNumber: 0000:46:00.3
[    8.261092] hub 4-0:1.0: USB hub found
[    8.264859] hub 4-0:1.0: 2 ports detected
[    8.269830] usbcore: registered new interface driver uas
[    8.275173] usbcore: registered new interface driver usb-storage
[    8.278577] ata2: SATA link down (SStatus 0 SControl 300)
[    8.281262] i8042: PNP: No PS/2 controller found.
[    8.286649] ata7: SATA link down (SStatus 0 SControl 300)
[    8.291412] mousedev: PS/2 mouse device common for all mice
[    8.296755] ata3: SATA link down (SStatus 0 SControl 300)
[    8.302411] rtc_cmos 00:02: RTC can wake from S4
[    8.307725] ata5: SATA link down (SStatus 0 SControl 300)
[    8.312700] rtc_cmos 00:02: registered as rtc0
[    8.317744] ata4: SATA link down (SStatus 0 SControl 300)
[    8.322244] rtc_cmos 00:02: setting system clock to 2025-06-17T12:49:32 UTC (1750164572)
[    8.327588] ata1: SATA link down (SStatus 0 SControl 300)
[    8.328294] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[    8.335691] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram
[    8.341075] ata8: SATA link down (SStatus 0 SControl 300)
[    8.347587] i2c_dev: i2c /dev entries driver
[    8.354304] ata6: SATA link down (SStatus 0 SControl 300)
[    8.359693] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    8.381564] device-mapper: uevent: version 1.0.3
[    8.386283] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists•linux.dev
[    8.395161] amd_pstate: driver load is disabled, boot with specific mode to enable this
[    8.403214] efifb: probing for efifb
[    8.406808] efifb: No BGRT, not showing boot graphics
[    8.411868] efifb: framebuffer at 0xc6000000, using 3072k, total 3072k
[    8.418400] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    8.424423] efifb: scrolling: redraw
[    8.427998] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    8.433667] fbcon: Deferring console take-over
[    8.438116] fb0: EFI VGA frame buffer device
[    8.442485] drop_monitor: Initializing network drop monitor service
[    8.448912] NET: Registered PF_INET6 protocol family
[    8.462268] Segment Routing with IPv6
[    8.464296] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[    8.465944] In-situ OAM (IOAM) with IPv6
[    8.467119] usb 1-1: New USB device found, idVendor=0424, idProduct=2744, bcdDevice= 1.21
[    8.467122] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    8.467124] usb 1-1: Product: USB2734
[    8.467126] usb 1-1: Manufacturer: Microchip Tech
[    8.500128] NET: Registered PF_PACKET protocol family
[    8.505250] Key type dns_resolver registered
[    8.520880] hub 1-1:1.0: USB hub found
[    8.521531] x86/amd: Previous system reset reason [0x00080800]: software wrote 0x6 to reset control register 0xCF9
[    8.524871] hub 1-1:1.0: 4 ports detected
[    8.534981] microcode: Current revision: 0x0a0011d5
[    8.543861] microcode: Updated early from: 0x0a0011d5
[    8.552207] resctrl: L3 allocation detected
[    8.556399] resctrl: MB allocation detected
[    8.560591] resctrl: L3 monitoring detected
[    8.564944] IPI shorthand broadcast: enabled
[    8.572910] sched_clock: Marking stable (8508002723, 64275134)->(9570809273, -998531416)
[    8.581590] registered taskstats version 1
[    8.584625] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
[    8.593557] Loading compiled-in X.509 certificates
[    8.598846] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.612738] usb 2-1: New USB device found, idVendor=0424, idProduct=5744, bcdDevice= 1.21
[    8.613199] usb 3-1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    8.620917] usb 2-1: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[    8.629090] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.636220] usb 2-1: Product: USB5734
[    8.647021] usb 2-1: Manufacturer: Microchip Tech
[    8.651743] Demotion targets for Node 0: null
[    8.656114] Demotion targets for Node 1: null
[    8.660958] Key type .fscrypt registered
[    8.664882] Key type fscrypt-provisioning registered
[    8.680861] hub 2-1:1.0: USB hub found
[    8.684934] hub 2-1:1.0: 4 ports detected
[    8.686406] Key type encrypted registered
[    8.688547] hub 3-1:1.0: USB hub found
[    8.688702] hub 3-1:1.0: 4 ports detected
[    8.700736] AppArmor: AppArmor sha256 policy hashing enabled
[    8.706475] integrity: Loading X.509 certificate: UEFI:db
[    8.711936] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    8.722714] integrity: Loading X.509 certificate: UEFI:db
[    8.728126] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    8.739163] integrity: Loading X.509 certificate: UEFI:db
[    8.744673] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    8.753542] integrity: Loading X.509 certificate: UEFI:db
[    8.759072] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    8.770642] ima: No TPM chip found, activating TPM-bypass!
[    8.776134] Loading compiled-in module X.509 certificates
[    8.781946] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.791860] ima: Allocated hash algorithm: sha1
[    8.796400] ima: No architecture policies found
[    8.800951] evm: Initialising EVM extended attributes:
[    8.806094] evm: security.selinux
[    8.809410] evm: security.SMACK64
[    8.812730] evm: security.SMACK64EXEC
[    8.816395] evm: security.SMACK64TRANSMUTE
[    8.820498] evm: security.SMACK64MMAP
[    8.824161] evm: security.apparmor
[    8.827568] evm: security.ima
[    8.830549] evm: security.capability
[    8.834129] evm: HMAC attrs: 0x1
[    8.837735] PM:   Magic number: 13:337:835
[    8.842410] RAS: Correctable Errors collector initialized.
[    8.848059] clk: Disabling unused clocks
[    8.851991] PM: genpd: Disabling unused power domains
[    8.858758] Freeing unused decrypted memory: 2028K
[    8.864290] Freeing unused kernel image (initmem) memory: 4760K
[    8.870222] Write protecting the kernel read-only data: 26624k
[    8.876500] Freeing unused kernel image (text/rodata gap) memory: 28K
[    8.883115] Freeing unused kernel image (rodata/data gap) memory: 248K
[    8.976719] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    8.983172] Run /init as init process
[    8.993589] systemd[1]: Inserted module 'autofs4'
[    9.221108] systemd[1]: systemd 252-46.el9_5.3 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)
[    9.253576] systemd[1]: Detected architecture x86-64.
[    9.258633] systemd[1]: Running in initrd.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow) dracut-057-80.git20250411.el9_5 (Initramfs)^[[0m!

[    9.276383] systemd[1]: Hostname set to <sharavati.amd.com>.
[    9.398778] systemd[1]: Queued start job for default target Initrd Default Target.
[    9.400287] usb 3-1.1: new high-speed USB device number 3 using xhci_hcd
[    9.406470] systemd[1]: Reached target Initrd /usr File System.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd /usr File System^[[0m.
[    9.432341] systemd[1]: Reached target Local File Systems.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
[    9.448375] systemd[1]: Reached target Slice Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSlice Units^[[0m.
[    9.464345] systemd[1]: Reached target Swaps.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwaps^[[0m.
[    9.480339] systemd[1]: Reached target Timer Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[    9.496470] systemd[1]: Listening on D-Bus System Message Bus Socket.
[^[[0;32m  OK  ^[[0m] Listening on[    9.505205] usb 3-1.1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
 ^[[0;1;39mD-Bus [    9.514066] usb 3-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
System Message Bus Socket^[[0m.
[    9.528494] systemd[1]: Listening on Journal Socket (/dev/log).
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket (/dev/log)^[[0m.
[    9.544497] systemd[1]: Listening on Journal Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket^[[0m.
[    9.560498] systemd[1]: Listening on udev Control Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[    9.576447] systemd[1]: Listening on udev Kernel Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev K[    9.584559] hub 3-1.1:1.0: USB hub found
ernel Socket^[[0m[    9.590080] hub 3-1.1:1.0: 4 ports detected
.
[    9.600334] systemd[1]: Reached target Socket Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
[    9.642094] systemd[1]: Starting Create List of Static Device Nodes...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
[    9.662841] systemd[1]: Starting Journal Service...
         Startin[    9.668287] usb 3-1.4: new high-speed USB device number 4 using xhci_hcd
g ^[[0;1;39mJournal Service^[[0m...
[    9.685707] systemd[1]: Starting Load Kernel Modules...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
[    9.701407] systemd[1]: Starting Create System Users...
         Starting ^[[0;1;39mCreate System Users^[[0m...
[    9.717614] systemd[1]: Starting Setup Virtual Console...
         Starting ^[[0;1;39mSetup Virtual Console^[[0m...
[    9.733885] systemd[1]: Finished Create List of Static Device Nodes.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[    9.752832] systemd[1]: Finished Load Kernel Modules.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[    9.772545] systemd[1]: Started Journal Service.
[    9.773208] usb 3-1.4: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    9.785532] usb 3-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSetup Virtual Console^[[0m.
[    9.840651] hub 3-1.4:1.0: USB hub found
[    9.844830] hub 3-1.4:1.0: 4 ports detected
         Starting ^[[0;1;39mdracut cmdline hook^[[0m...
         Starting ^[[0;1;39mApply Kernel Variables^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate System Users^[[0m.
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut cmdline hook^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Starting ^[[0;1;39mdracut pre-udev hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-udev hook^[[0m.
         Starting ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[   10.310418] wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQBC data block query control method not found
[^[[0;32m  OK  ^[[0m] Finished ^[[0[   10.321848] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
;1;39mColdplug A[   10.322102] ccp 0000:46:00.1: no command queues available
ll udev Devices^[[   10.328515] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[0m.
[   10.335313] ccp 0000:46:00.1: sev enabled
[   10.343872] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[   10.348249] ccp 0000:46:00.1: psp enabled
[   10.355476] mpt3sas version 52.100.00.00 loaded
[   10.359245] tg3 0000:c1:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:90
[   10.359251] tg3 0000:c1:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.359254] tg3 0000:c1:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.359257] tg3 0000:c1:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[   10.388160] tg3 0000:c1:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:91
[   10.392637] mpt3sas_cm0: 63 BIT PCI BUS DMA ADDRESSING SUPPORTED, total mem (262592968 kB)
[   10.398782] tg3 0000:c1:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.427392] tg3 0000:c1:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.427396] tg3 0000:c1:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[^[[0;32m  OK  ^[[[   10.442893] ACPI: bus type drm_connector registered
0m] Reached target ^[[0;1;39mSystem Initialization^[[0m.
[   10.453336] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   10.461356] mpt3sas_cm0: MSI-X vectors supported: 96
[   10.466322] 	 no of cores: 128, max_msix_vectors: -1
[   10.466324] mpt3sas_cm0:  0 96 96
[   10.470421] mpt3sas_cm0: High IOPs queues : disabled
[^[[0;32m  OK  ^[[[   10.479580] mpt3sas0-msix0: PCI-MSI-X enabled: IRQ 107
[   10.479581] mpt3sas0-msix1: PCI-MSI-X enabled: IRQ 108
0m] Reached targ[   10.479583] mpt3sas0-msix2: PCI-MSI-X enabled: IRQ 109
[   10.479585] mpt3sas0-msix3: PCI-MSI-X enabled: IRQ 110
et ^[[0;1;39mNetw[   10.502903] mpt3sas0-msix4: PCI-MSI-X enabled: IRQ 111
[   10.502905] mpt3sas0-msix5: PCI-MSI-X enabled: IRQ 112
ork^[[0m.
[   10.502906] mpt3sas0-msix6: PCI-MSI-X enabled: IRQ 113
[   10.502907] mpt3sas0-msix7: PCI-MSI-X enabled: IRQ 114
[   10.502909] mpt3sas0-msix8: PCI-MSI-X enabled: IRQ 115
[   10.502910] mpt3sas0-msix9: PCI-MSI-X enabled: IRQ 116
[   10.502911] mpt3sas0-msix10: PCI-MSI-X enabled: IRQ 117
[   10.541197] mpt3sas0-msix11: PCI-MSI-X enabled: IRQ 118
[   10.541199] mpt3sas0-msix12: PCI-MSI-X enabled: IRQ 119
[   10.541200] mpt3sas0-msix13: PCI-MSI-X enabled: IRQ 120
[   10.541202] mpt3sas0-msix14: PCI-MSI-X enabled: IRQ 121
[   10.546450] mgag200 0000:c3:00.0: vgaarb: deactivate vga console
[   10.551648] mpt3sas0-msix15: PCI-MSI-X enabled: IRQ 122
[   10.573337] mpt3sas0-msix16: PCI-MSI-X enabled: IRQ 123
[   10.573338] mpt3sas0-msix17: PCI-MSI-X enabled: IRQ 124
[   10.573340] mpt3sas0-msix18: PCI-MSI-X enabled: IRQ 125
[   10.573341] mpt3sas0-msix19: PCI-MSI-X enabled: IRQ 126
[   10.573342] mpt3sas0-msix20: PCI-MSI-X enabled: IRQ 127
[   10.599474] mpt3sas0-msix21: PCI-MSI-X enabled: IRQ 128
[   10.599476] mpt3sas0-msix22: PCI-MSI-X enabled: IRQ 129
[   10.599477] mpt3sas0-msix23: PCI-MSI-X enabled: IRQ 130
[   10.599478] mpt3sas0-msix24: PCI-MSI-X enabled: IRQ 131
[   10.599480] mpt3sas0-msix25: PCI-MSI-X enabled: IRQ 132
[   10.610992] [drm] Initialized mgag200 1.0.0 for 0000:c3:00.0 on minor 0
[   10.615157] mpt3sas0-msix26: PCI-MSI-X enabled: IRQ 133
[   10.615159] mpt3sas0-msix27: PCI-MSI-X enabled: IRQ 134
[   10.615160] mpt3sas0-msix28: PCI-MSI-X enabled: IRQ 135
[   10.615162] mpt3sas0-msix29: PCI-MSI-X enabled: IRQ 136
[   10.653125] mpt3sas0-msix30: PCI-MSI-X enabled: IRQ 137
[   10.653127] mpt3sas0-msix31: PCI-MSI-X enabled: IRQ 138
[   10.653128] mpt3sas0-msix32: PCI-MSI-X enabled: IRQ 139
[   10.653129] fbcon: mgag200drmfb (fb0) is primary device
[   10.653130] mpt3sas0-msix33: PCI-MSI-X enabled: IRQ 140
[   10.653132] mpt3sas0-msix34: PCI-MSI-X enabled: IRQ 141
[   10.653132] fbcon: Deferring console take-over
[   10.653135] mpt3sas0-msix35: PCI-MSI-X enabled: IRQ 142
[   10.658361] mgag200 0000:c3:00.0: [drm] fb0: mgag200drmfb frame buffer device
[   10.663586] mpt3sas0-msix36: PCI-MSI-X enabled: IRQ 143
[   10.706518] mpt3sas0-msix37: PCI-MSI-X enabled: IRQ 144
[   10.711746] mpt3sas0-msix38: PCI-MSI-X enabled: IRQ 145
[   10.716973] mpt3sas0-msix39: PCI-MSI-X enabled: IRQ 146
[   10.722217] mpt3sas0-msix40: PCI-MSI-X enabled: IRQ 147
[   10.727442] mpt3sas0-msix41: PCI-MSI-X enabled: IRQ 148
[   10.732670] mpt3sas0-msix42: PCI-MSI-X enabled: IRQ 149
[   10.737896] mpt3sas0-msix43: PCI-MSI-X enabled: IRQ 150
[   10.737898] mpt3sas0-msix44: PCI-MSI-X enabled: IRQ 151
[   10.737899] mpt3sas0-msix45: PCI-MSI-X enabled: IRQ 152
[   10.737901] mpt3sas0-msix46: PCI-MSI-X enabled: IRQ 153
[   10.737903] mpt3sas0-msix47: PCI-MSI-X enabled: IRQ 154
         Startin[   10.764033] mpt3sas0-msix48: PCI-MSI-X enabled: IRQ 155
g ^[[0;1;39mdracu[   10.770635] mpt3sas0-msix49: PCI-MSI-X enabled: IRQ 156
t initqueue hook[   10.777249] mpt3sas0-msix50: PCI-MSI-X enabled: IRQ 157
^[[0m...
[   10.783860] mpt3sas0-msix51: PCI-MSI-X enabled: IRQ 158
[   10.789865] mpt3sas0-msix52: PCI-MSI-X enabled: IRQ 159
[   10.795094] mpt3sas0-msix53: PCI-MSI-X enabled: IRQ 160
[   10.795096] mpt3sas0-msix54: PCI-MSI-X enabled: IRQ 161
[   10.795098] mpt3sas0-msix55: PCI-MSI-X enabled: IRQ 162
[   10.795099] mpt3sas0-msix56: PCI-MSI-X enabled: IRQ 163
[   10.795101] mpt3sas0-msix57: PCI-MSI-X enabled: IRQ 164
[   10.795102] mpt3sas0-msix58: PCI-MSI-X enabled: IRQ 165
[   10.795103] mpt3sas0-msix59: PCI-MSI-X enabled: IRQ 166
[   10.795105] mpt3sas0-msix60: PCI-MSI-X enabled: IRQ 167
[   10.836919] mpt3sas0-msix61: PCI-MSI-X enabled: IRQ 168
[   10.836921] mpt3sas0-msix62: PCI-MSI-X enabled: IRQ 169
[   10.836922] mpt3sas0-msix63: PCI-MSI-X enabled: IRQ 170
[   10.836924] mpt3sas0-msix64: PCI-MSI-X enabled: IRQ 171
[   10.836925] mpt3sas0-msix65: PCI-MSI-X enabled: IRQ 172
[   10.836926] mpt3sas0-msix66: PCI-MSI-X enabled: IRQ 173
[   10.836928] mpt3sas0-msix67: PCI-MSI-X enabled: IRQ 174
         Startin[   10.836929] mpt3sas0-msix68: PCI-MSI-X enabled: IRQ 175
g ^[[0;1;39mShow [   10.836931] mpt3sas0-msix69: PCI-MSI-X enabled: IRQ 176
Plymouth Boot Sc[   10.886742] mpt3sas0-msix70: PCI-MSI-X enabled: IRQ 177
reen^[[0m...
[   10.886743] mpt3sas0-msix71: PCI-MSI-X enabled: IRQ 178
[   10.886745] mpt3sas0-msix72: PCI-MSI-X enabled: IRQ 179
[   10.886746] mpt3sas0-msix73: PCI-MSI-X enabled: IRQ 180
[   10.886748] mpt3sas0-msix74: PCI-MSI-X enabled: IRQ 181
[   10.886750] mpt3sas0-msix75: PCI-MSI-X enabled: IRQ 182
[   10.886751] mpt3sas0-msix76: PCI-MSI-X enabled: IRQ 183
[   10.886752] mpt3sas0-msix77: PCI-MSI-X enabled: IRQ 184
[   10.886754] mpt3sas0-msix78: PCI-MSI-X enabled: IRQ 185
[   10.886755] mpt3sas0-msix79: PCI-MSI-X enabled: IRQ 186
[   10.886756] mpt3sas0-msix80: PCI-MSI-X enabled: IRQ 187
[   10.886758] mpt3sas0-msix81: PCI-MSI-X enabled: IRQ 188
[   10.886759] mpt3sas0-msix82: PCI-MSI-X enabled: IRQ 189
[^[[0;32m  OK  ^[[[   10.886760] mpt3sas0-msix83: PCI-MSI-X enabled: IRQ 190
[   10.886762] mpt3sas0-msix84: PCI-MSI-X enabled: IRQ 191
0m] Started ^[[0;[   10.886763] mpt3sas0-msix85: PCI-MSI-X enabled: IRQ 192
1;39mShow Plymou[   10.886764] mpt3sas0-msix86: PCI-MSI-X enabled: IRQ 193
[   10.886766] mpt3sas0-msix87: PCI-MSI-X enabled: IRQ 194
th Boot Screen^[[[   10.886767] mpt3sas0-msix88: PCI-MSI-X enabled: IRQ 195
0m.
[   10.886768] mpt3sas0-msix89: PCI-MSI-X enabled: IRQ 196
[   10.886769] mpt3sas0-msix90: PCI-MSI-X enabled: IRQ 197
[   10.886771] mpt3sas0-msix91: PCI-MSI-X enabled: IRQ 198
[   10.886772] mpt3sas0-msix92: PCI-MSI-X enabled: IRQ 199
[   10.886773] mpt3sas0-msix93: PCI-MSI-X enabled: IRQ 200
[   10.886775] mpt3sas0-msix94: PCI-MSI-X enabled: IRQ 201
[   10.886776] mpt3sas0-msix95: PCI-MSI-X enabled: IRQ 202
[   10.886777] mpt3sas_cm0: iomem(0x00000000e2200000), mapped(0x000000007d5a204f), size(65536)
[   10.886780] mpt3sas_cm0: ioport(0x0000000000001000), size(256)
[   10.931174] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   11.053449] mpt3sas_cm0: sending message unit reset !!
[   11.054961] mpt3sas_cm0: message unit reset: SUCCESS
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mForward Password Requests to Plymouth Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mBasic System^[[0m.
[   11.091241] mpt3sas_cm0: scatter gather: sge_in_main_msg(1), sge_per_chain(7), sge_per_io(128), chains_per_io(19)
[   11.102801] mpt3sas_cm0: request pool(0x00000000c805af1a) - dma(0xe0600000): depth(9700), frame_size(128), pool_size(1212 kB)
[   11.139828] mpt3sas_cm0: sense pool(0x0000000056b66843) - dma(0xdef00000): depth(9463), element_size(96), pool_size (887 kB)
[   11.151151] mpt3sas_cm0: reply pool(0x000000002eba1101) - dma(0xdec00000): depth(9764), frame_size(128), pool_size(1220 kB)
[   11.162287] mpt3sas_cm0: config page(0x00000000833eb715) - dma(0xdebee000): size(512)
[   11.170116] mpt3sas_cm0: Allocated physical memory: size(40437 kB)
[   11.176296] mpt3sas_cm0: Current Controller Queue Depth(9460),Max Controller Queue Depth(9584)
[   11.184904] mpt3sas_cm0: Scatter Gather Elements per IO(128)
[   11.236356] mpt3sas_cm0: _base_display_fwpkg_version: complete
[   11.242196] mpt3sas_cm0: FW Package Ver(16.17.01.00)
[   11.247453] mpt3sas_cm0: LSISAS3008: FWVersion(16.00.11.00), ChipRevision(0x02)
[   11.254796] mpt3sas_cm0: Protocol=(Initiator,Target), Capabilities=(TLR,EEDP,Snapshot Buffer,Diag Trace Buffer,Task Set Full,NCQ)
[   11.266520] scsi host8: Fusion MPT SAS Host
[   11.272531] mpt3sas_cm0: sending port enable !!
[   11.277473] mpt3sas_cm0: hba_port entry: 000000005e691777, port: 255 is added to hba_port list
[   11.287202] mpt3sas_cm0: host_add: handle(0x0001), sas_addr(0x52cea7f0be87bf00), phys(8)
[   11.295636] mpt3sas_cm0: handle(0xa) sas_address(0x4433221100000000) port_type(0x1)
[   11.304630] scsi 8:0:0:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.312722] scsi 8:0:0:0: SATA: handle(0x000a), sas_addr(0x4433221100000000), phy(0), device_name(0x500a075131911ad0)
[   11.323320] scsi 8:0:0:0: enclosure logical id (0x52cea7f0be87bf00), slot(1) 
[   11.330450] scsi 8:0:0:0: enclosure level(0x0001), connector name(     )
[   11.337207] scsi 8:0:0:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.345639] scsi 8:0:0:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.360441]  end_device-8:0: add: handle(0x000a), sas_addr(0x4433221100000000)
[   11.367780] mpt3sas_cm0: handle(0xc) sas_address(0x58ce38ee219651a2) port_type(0x1)
[   11.376761] scsi 8:0:1:0: Direct-Access     KIOXIA   KPM6WVUG960G     BD08 PQ: 0 ANSI: 6
[   11.384849] scsi 8:0:1:0: SSP: handle(0x000c), sas_addr(0x58ce38ee219651a2), phy(4), device_name(0x58ce38ee219651a0)
[   11.395362] scsi 8:0:1:0: enclosure logical id (0x52cea7f0be87bf00), slot(0) 
[   11.402496] scsi 8:0:1:0: enclosure level(0x0001), connector name(     )
[   11.409202] scsi 8:0:1:0: qdepth(254), tagged(1), scsi_level(7), cmd_que(1)
[   11.417887]  end_device-8:1: add: handle(0x000c), sas_addr(0x58ce38ee219651a2)
[   11.425232] mpt3sas_cm0: handle(0xb) sas_address(0x4433221106000000) port_type(0x1)
[   11.433992] scsi 8:0:2:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.442085] scsi 8:0:2:0: SATA: handle(0x000b), sas_addr(0x4433221106000000), phy(6), device_name(0x500a075131911a6f)
[   11.452681] scsi 8:0:2:0: enclosure logical id (0x52cea7f0be87bf00), slot(2) 
[   11.459817] scsi 8:0:2:0: enclosure level(0x0001), connector name(     )
[   11.466567] scsi 8:0:2:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.475004] scsi 8:0:2:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.489836]  end_device-8:2: add: handle(0x000b), sas_addr(0x4433221106000000)
[   11.497067] mpt3sas_cm0: port enable: SUCCESS
[   11.501725] sd 8:0:0:0: Attached scsi generic sg0 type 0
[   11.502292] sd 8:0:0:0: [sda] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.507322] sd 8:0:1:0: Attached scsi generic sg1 type 0
[   11.507517] sd 8:0:1:0: [sdb] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.507521] sd 8:0:1:0: [sdb] 4096-byte physical blocks
[   11.507703] sd 8:0:1:0: [sdb] Write Protect is off
[   11.507919] sd 8:0:1:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   11.514610] sd 8:0:0:0: [sda] 4096-byte physical blocks
[   11.516618] sd 8:0:0:0: [sda] Write Protect is off
[   11.520114] scsi 8:0:2:0: Attached scsi generic sg2 type 0
[   11.520703] sd 8:0:2:0: [sdc] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.520706] sd 8:0:2:0: [sdc] 4096-byte physical blocks
[   11.522704] sd 8:0:2:0: [sdc] Write Protect is off
[   11.524005] sd 8:0:2:0: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.588970] sd 8:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.625489]  sdb: sdb1 sdb2
[   11.628445] sd 8:0:1:0: [sdb] Attached SCSI disk
[   11.662189]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7
[   11.662470]  sdc: sdc1 sdc2
[   11.667585] sd 8:0:0:0: [sda] Attached SCSI disk
[   11.670111] sd 8:0:2:0: [sdc] Attached SCSI disk
[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39m/dev/mapper/rhel_sharavati-root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut initqueue hook^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m.
         Mounting ^[[0;1;39m/sysroot^[[0m...
[   12.390405] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled
[   12.400820] XFS (dm-1): Mounting V5 Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[   12.426059] XFS (dm-1): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/sysroot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root File System^[[0m.
         Starting ^[[0;1;39mMountpoints Configured in the Real Root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMountpoints Configured in the Real Root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Default Target^[[0m.
         Starting ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
         Starting ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Default Target^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd /usr File System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut initqueue hook^[[0m.
     [   12.646061] systemd-journald[1090]: Received SIGTERM from PID 1 (systemd).
    Starting ^[[0;1;39mPlymouth switch root service^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mColdplug All udev Devices^[[0m.
         Stopping ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Kernel Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-udev hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut cmdline hook^[[0m.
         Starting ^[[0;1;39mCleanup udev Database^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate System Users^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m[   12.759223] systemd[1]: RTC configured in localtime, applying delta of 330 minutes to system time.
  OK  ^[[0m] Finished ^[[0;1;39mCleanup udev Database^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwitch Root^[[0m.
         Starting ^[[0;1;39mSwitch Root^[[0m...
[   12.784406] systemd[1]: systemd 252-46.el9_5.3 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)
[   12.816871] systemd[1]: Detected architecture x86-64.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow)^[[0m!

[   12.890819] systemd-rc-local-generator[1703]: /etc/rc.d/rc.local is not marked executable, skipping.
[   13.149677] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[   13.157007] systemd[1]: Stopped Switch Root.
[^[[0;32m  OK  ^[[[   13.161562] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
0m] Stopped ^[[0;[   13.172291] systemd[1]: Created slice Virtual Machine and Container Slice.
1;39mSwitch Root[   13.180655] systemd[1]: Created slice Slice /system/getty.
^[[0m.
[^[[0;32m[   13.187454] systemd[1]: Created slice Slice /system/modprobe.
  OK  ^[[0m] Crea[   13.195142] systemd[1]: Created slice Slice /system/serial-getty.
ted slice ^[[0;1;[   13.202075] systemd[1]: Created slice Slice /system/sshd-keygen.
39mVirtual Machi[   13.209453] systemd[1]: Created slice Slice /system/systemd-fsck.
ne and Container[   13.216834] systemd[1]: Created slice User and Session Slice.
 Slice^[[0m.
[^[[   13.223414] systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
[0;32m  OK  ^[[0m[   13.239804] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
] Created slice [   13.248954] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
^[[0;1;39mSlice /[   13.259473] systemd[1]: Reached target Local Encrypted Volumes.
system/getty^[[0m[   13.266767] systemd[1]: Stopped target Switch Root.
.
[^[[0;32m  OK[   13.273025] systemd[1]: Stopped target Initrd File Systems.
  ^[[0m] Created [   13.279980] systemd[1]: Stopped target Initrd Root File System.
slice ^[[0;1;39mS[   13.287289] systemd[1]: Reached target Local Integrity Protected Volumes.
lice /system/mod[   13.295475] systemd[1]: Reached target Path Units.
probe^[[0m.
[^[[[   13.301651] systemd[1]: Reached target Slice Units.
0;32m  OK  ^[[0m][   13.307914] systemd[1]: Reached target Local Verity Protected Volumes.
 Created slice ^[[   13.315885] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[0;1;39mSlice /s[   13.323974] systemd[1]: Listening on LVM2 poll daemon socket.
ystem/serial-get[   13.330908] systemd[1]: multipathd control socket was skipped because of an unmet condition check (ConditionPathExists=/etc/multipath.conf).
ty^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/sshd-keygen^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Set up automount ^[[0;1;39mArbitrar[   13.377147] systemd[1]: Listening on RPCbind Server Activation Socket.
y Executa…orma[   13.384719] systemd[1]: Reached target RPC Port Mapper.
ts File System A[   13.392450] systemd[1]: Listening on Process Core Dump Socket.
utomount Point^[[[   13.398545] systemd[1]: Listening on initctl Compatibility Named Pipe.
0m.
[^[[0;32m  [   13.407532] systemd[1]: Listening on udev Control Socket.
OK  ^[[0m] Reache[   13.413265] systemd[1]: Listening on udev Kernel Socket.
d target ^[[0;1;39mLocal Encrypte[   13.421343] systemd[1]: Activating swap /dev/mapper/rhel_sharavati-swap...
d Volumes^[[0m.\r\r[   13.426181] Adding 7815164k swap on /dev/mapper/rhel_sharavati-swap.  Priority:-2 extents:1 across:7815164k SS

[^[[0;32m  OK  ^[[0m] Stopped tar[   13.442377] systemd[1]: Mounting Huge Pages File System...
get ^[[0;1;39mSwi[   13.450409] systemd[1]: Mounting POSIX Message Queue File System...
tch Root^[[0m.
[   13.458017] systemd[1]: Mounting Kernel Debug File System...
[^[[0;32m  OK  ^[[0m] Stopped targ[   13.465253] systemd[1]: Mounting Kernel Trace File System...
et ^[[0;1;39mInit[   13.472354] systemd[1]: Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
rd File Systems^[[   13.487177] systemd[1]: iscsi-starter.service was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes).
[0m.
[^[[0;32m  OK  ^[[0m] Stopp[   13.502531] systemd[1]: Starting Create List of Static Device Nodes...
ed target ^[[0;1;39mInitrd Root F[   13.511787] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
ile System^[[0m.\r[   13.524666] systemd[1]: Starting Load Kernel Module configfs...

[^[[0;32m  OK  [   13.531940] systemd[1]: Starting Load Kernel Module drm...
^[[0m] Reached target ^[[0;1;39mLo[   13.539003] systemd[1]: Starting Load Kernel Module fuse...
cal Integrity Protected Volumes^[[   13.547891] systemd[1]: Starting Read and set NIS domainname from /etc/sysconfig/network...
[0m.
[^[[0;32m [   13.557188] systemd[1]: plymouth-switch-root.service: Deactivated successfully.
 OK  ^[[0m] Reach[   13.565849] systemd[1]: Stopped Plymouth switch root service.
ed target ^[[0;1;[   13.573109] systemd[1]: systemd-fsck-root.service: Deactivated successfully.
39mPath Units^[[0[   13.581405] systemd[1]: Stopped File System Check on Root Device.
m.
[^[[0;32m  O[   13.588947] systemd[1]: Stopped Journal Service.
K  ^[[0m] Reached target ^[[0;1;39[   13.597270] systemd[1]: Starting Journal Service...
mSlice Units^[[0m.
[^[[0;32m  OK[   13.604516] systemd[1]: Starting Load Kernel Modules...
  ^[[0m] Reached [   13.610763] systemd-journald[1733]: File /run/log/journal/8f37f8055146469d8baec3ad508b0084/system.journal corrupted or uncleanly shut down, renaming and replacing.
target ^[[0;1;39m[   13.612015] systemd[1]: Starting Generate network units from Kernel command line...
Local Verity Pro[   13.635571] systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
tected Volumes^[[0m.
[^[[0;32m  [   13.656787] systemd[1]: Starting Remount Root and Kernel File Systems...
OK  ^[[0m] Listen[   13.664952] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
ing on ^[[0;1;39mDevice-mapper ev[   13.676995] systemd[1]: Starting Coldplug All udev Devices...
ent daemon FIFOs^[[0m.
[^[[0;32m  OK  ^[[0m] List[   13.687312] systemd[1]: Activated swap /dev/mapper/rhel_sharavati-swap.
ening on ^[[0;1;3[   13.695534] systemd[1]: Started Journal Service.
9mLVM2 poll daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mRPCbind Server Activation Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRPC Port Mapper^[[0m.
[^[[0;32m  [   13.716206] systemd-journald[1733]: Received client request to flush runtime journal.
OK  ^[[0m] Listening on ^[[0;1;39mProcess Core Dump Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39minitctl Compatibility Named Pipe^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
         Activating swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m...
         Mounting ^[[0;1;39mHuge Pages File System^[[0m...
         Mounting ^[[0;1;39mPOSIX Message Queue File System^[[0m...
         Mounting ^[[0;1;39mKernel Debug File System^[[0m...
         Mounting ^[[0;1;39mKernel Trace File System^[[0m...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
         Starting ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module drm^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mJournal Service^[[0m.
         Starting ^[[0;1;39mJournal Service^[[0m...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
         Starting ^[[0;1;39mGenerate network units from Kernel command line^[[0m...
         Starting ^[[0;1;39mRemount Root and Kernel File Systems^[[0m...
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[^[[0;32m  OK  ^[[0m] Activated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mHuge Pages File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mPOSIX Message Queue File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Debug File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Trace File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module drm^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Finished [   13.940362] IPMI message handler: version 39.2
^[[0;1;39mGenerate network units from Kernel comm[   13.949392] ipmi device interface
and line^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRemount Root and Kernel File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwaps^[[0m.
         Mounting ^[[0;1;39mFUSE Control File System^[[[   13.971366] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
0m...
        [   13.972096] ipmi_si: IPMI System Interface driver
 Mounting ^[[0;1;[   13.972809] pstore: backend 'erst' already in use: ignoring 'efi_pstore'
39mKernel Config[   13.974604] input: PC Speaker as /devices/platform/pcspkr/input/input1
uration File Sys[   13.976203] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
tem^[[0m...
   [   13.976206] RAPL PMU: hw unit of domain package 2^-16 Joules
      Starting ^[[   13.976208] RAPL PMU: hw unit of domain core 2^-16 Joules
[0;1;39mFlush Jo[   13.979025] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
urnal to Persist[   13.985345] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
ent Storage^[[0m.[   13.993257] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
..
         St[   14.001766] i2c i2c-3: Successfully instantiated SPD at 0x50
arting ^[[0;1;39m[   14.010414] ipmi_platform: ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 10
Load/Save OS Ran[   14.018019] i2c i2c-3: Successfully instantiated SPD at 0x51
dom Seed^[[0m...\r[   14.024244] ipmi_si: Adding SMBIOS-specified kcs state machine

         Start[   14.033805] i2c i2c-3: Successfully instantiated SPD at 0x52
ing ^[[0;1;39mApp[   14.042027] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
ly Kernel Variab[   14.050096] i2c i2c-3: Successfully instantiated SPD at 0x53
les^[[0m...
   [   14.060316] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca8] regsize 1 spacing 4 irq 10
      Starting ^[[   14.065828] i2c i2c-3: Successfully instantiated SPD at 0x54
[0;1;39mCreate S[   14.072580] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
tatic Device Nod[   14.080097] i2c i2c-3: Successfully instantiated SPD at 0x55
es in /dev^[[0m..[   14.086575] ipmi_si: Adding ACPI-specified kcs state machine
.
[^[[0;32m  OK[   14.094450] i2c i2c-3: Successfully instantiated SPD at 0x56
  ^[[0m] Mounted [   14.101014] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 10
^[[0;1;39mFUSE Co[   14.110788] i2c i2c-3: Successfully instantiated SPD at 0x57
ntrol File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Configuration File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMonitoring of LVM2 mirror…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad/Save OS Random Seed^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFlush Journal to P[   14.195134] ee1004 3-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
ersistent Storage^[[0m.
[^[[0;32[   14.204337] ee1004 3-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
m  OK  ^[[0m] Finished ^[[0;1;39mA[   14.214105] ee1004 3-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
pply Kernel Variables^[[0m.
[^[[[   14.223752] ee1004 3-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
0;32m  OK  ^[[0m] Finished ^[[0;1;[   14.233390] ee1004 3-0054: 512 byte EE1004-compliant SPD EEPROM, read-only
[   14.240610] kvm_amd: TSC scaling supported
39mCreate Static[   14.243064] ee1004 3-0055: 512 byte EE1004-compliant SPD EEPROM, read-only
 Device Nodes in[   14.245503] kvm_amd: Nested Virtualization enabled
 /dev^[[0m.
   [   14.255415] ee1004 3-0056: 512 byte EE1004-compliant SPD EEPROM, read-only
      Starting ^[[   14.259928] kvm_amd: Nested Paging enabled
[0;1;39mRule-bas[   14.259930] kvm_amd: LBR virtualization supported
ed Manager for Device Events and[   14.281410] ee1004 3-0057: 512 byte EE1004-compliant SPD EEPROM, read-only
 Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mColdplug All udev Devices^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mLoad/Save RF Kill Switch Status /dev/rfkill Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39m/usr/sbin/lvm vgchange -aa…utoactivation event rhel_sharavati^[[0m.
[   14.540299] ipmi_si IPI0001:00: The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.
[   14.612377] ipmi_si IPI0001:00: Using irq 10
[   14.642565] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20)
[   14.697660] ipmi_si IPI0001:00: IPMI kcs interface initialized
[   14.706140] ipmi_ssif: IPMI SSIF Interface driver
[   14.728816] power_meter ACPI000D:00: Found ACPI power meter.
[^[[0m^[[0;31m*     ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;1;31m*^[[0m^[[0;31m*    ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
^[M\r^[[K[^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*   ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
[   17.822159] ccp 0000:46:00.1: SEV-SNP API:1.55 build:22
[   17.877794] ccp 0000:46:00.1: SEV API:1.55 build:22
[   17.884554] kvm_amd: SEV enabled (ASIDs 101 - 509)
[   17.889350] kvm_amd: SEV-ES enabled (ASIDs 1 - 100)
[   17.894230] kvm_amd: SEV-SNP enabled (ASIDs 1 - 100)
[   17.899365] kvm_amd: Virtual VMLOAD VMSAVE supported
[   17.904339] kvm_amd: Virtual GIF supported
[   17.929987] EDAC MC0: Giving out device to module amd64_edac controller F19h: DEV 0000:00:18.3 (INTERRUPT)
[   17.939638] EDAC amd64: F19h detected (node 0).
[   17.944194] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.948910] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.953631] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.958347] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.963070] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.967785] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.972507] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.977221] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.981947] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.986670] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.991402] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.996125] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.000860] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.005577] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.010302] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.015018] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.027340] intel_rapl_common: Found RAPL domain package
[   18.028501] amd_atl: AMD Address Translation Library initialized
[   18.032661] intel_rapl_common: Found RAPL domain core
^[M\r^[[K[ ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*  ^[[0m] A start job is running for Wait for…ice Initialization (5s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Local File Systems^[[0m.
         Mounting ^[[0;1;39m/boot^[[0m...
      [   18.420081] XFS (sda6): Mounting V5 Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
   Mounting ^[[0;[   18.421962] XFS (dm-0): Mounting V5 Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
1;39m/home^[[0m...
         Starting ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m...
[   18.448061] XFS (sda6): Ending clean mount
[   18.453462] XFS (dm-0): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
         Mounting ^[[0;1;39m/boot/efi^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
         Starting ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Mounting ^[[0;1;39mRPC Pipe File System^[[0m...
         Starting ^[[0;1;39mSecurity Auditing Service^[[0m...
         Starting ^[[0;1;39mRPC Bind^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRPC Bind^[[0m.
[   18.563895] RPC: Registered named UNIX socket transport module.
[   18.569819] RPC: Registered udp transport module.
[   18.574530] RPC: Registered tcp transport module.
[   18.579239] RPC: Registered tcp-with-tls transport module.
[   18.584722] RPC: Registered tcp NFSv4.1 backchannel transport module.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mRPC Pipe File System^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mrpc_pipefs.target^[[0m.
         Starting ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdnf makecache --timer^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily rotation of log files^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUpdates mlocate database every day^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily Cleanup of Temporary Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdaily update of the root trust anchor for DNSSEC^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt interface daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt network daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nodedev daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nwfilter daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt proxy daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt secret daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt storage daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
         Starting ^[[0;1;39mD-Bus System Message Bus^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mBasic System^[[0m.
         Starting ^[[0;1;39mNTP client/server^[[0m...
         Starting ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m...
         Starting ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mirqbalance daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mlibstoragemgmt plug-in server daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mMachine Check Exception Logging Daemon^[[0m.
         Starting ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msshd-keygen.target^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUser and Group Name Lookups^[[0m.
         Starting ^[[0;1;39mUser Login Management^[[0m...
         Starting ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNTP client/server^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Network^[[0m.
         Starting ^[[0;1;39mNetwork Manager^[[0m...
         Starting ^[[0;1;39mHostname Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mHostname Service^[[0m.
         Starting ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork^[[0m.
         Starting ^[[0;1;39mNetwork Manager Wait Online^[[0m...
         Starting ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
         Starting ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m...
         Starting ^[[0;1;39mOpenSSH server daemon^[[0m...
         Starting ^[[0;1;39mDynamic System Tuning Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNFS client services^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mOpenSSH server daemon^[[0m.
         Starting ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
[   22.711236] tg3 0000:c1:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   22.717857] tg3 0000:c1:00.0 eth0: Flow control is off for TX and off for RX
[   22.724899] tg3 0000:c1:00.0 eth0: EEE is disabled
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[     ^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (12s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mNetwork Manager Wait Online^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork is Online^[[0m.
         Starting ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m...
         Starting ^[[0;1;39mNotify NFS peers of a restart^[[0m...
         Starting ^[[0;1;39mSystem Logging Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNotify NFS peers of a restart^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mCrash recovery kernel arming^[[0m...
         Starting ^[[0;1;39mPermit User Sessions^[[0m...
         Starting ^[[0;1;39mlibvirt QEMU daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDeferred execution scheduler^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mCommand Scheduler^[[0m.
         Starting ^[[0;1;39mHold until boot process finishes up^[[0m...
         Starting ^[[0;1;39mTerminate Plymouth Boot Screen^[[0m...
[^[[0;1;31mFAILED^[[0m] Failed to start ^[[0;1;39mCrash recovery kernel arming^[[0m.
See 'systemctl status kdump.service' for details.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSystem Logging Service^[[0m.
[   25.571225] fbcon: Taking over console
[   25.591157] Console: switching to colour frame buffer device 128x48

Red Hat Enterprise Linux 9.5 (Plow)
Kernel 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e on an x86_64

Activate the web console with: systemctl enable --now cockpit.socket

sharavati login: [  121.477917] /proc/cgroups lists only v1 controllers, use cgroup.controllers of root cgroup for v2 info
[  311.224830] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[  311.283308] systemd-rc-local-generator[3163]: /etc/rc.d/rc.local is not marked executable, skipping.
[  333.295542] virbr0: port 1(t0-VmA1d9) entered blocking state
[  333.301225] virbr0: port 1(t0-VmA1d9) entered disabled state
[  333.306925] t0-VmA1d9: entered allmulticast mode
[  333.311632] t0-VmA1d9: entered promiscuous mode
[  333.320521] virbr0: port 1(t0-VmA1d9) entered blocking state
[  333.326188] virbr0: port 1(t0-VmA1d9) entered listening state
[  335.348930] virbr0: port 1(t0-VmA1d9) entered learning state
[  337.364876] virbr0: port 1(t0-VmA1d9) entered forwarding state
[  337.370716] virbr0: topology change detected, propagating
[  347.620991] virbr0: port 1(t0-VmA1d9) entered disabled state
[  347.627791] t0-VmA1d9 (unregistering): left allmulticast mode
[  347.633571] t0-VmA1d9 (unregistering): left promiscuous mode
[  347.639247] virbr0: port 1(t0-VmA1d9) entered disabled state
[  351.948856] virbr0: port 1(t0-emtL2L) entered blocking state
[  351.954535] virbr0: port 1(t0-emtL2L) entered disabled state
[  351.960253] t0-emtL2L: entered allmulticast mode
[  351.964955] t0-emtL2L: entered promiscuous mode
[  351.973583] virbr0: port 1(t0-emtL2L) entered blocking state
[  351.979247] virbr0: port 1(t0-emtL2L) entered listening state
[  354.004529] virbr0: port 1(t0-emtL2L) entered learning state
[  356.020480] virbr0: port 1(t0-emtL2L) entered forwarding state
[  356.026319] virbr0: topology change detected, propagating
[  366.121244] virbr0: port 1(t0-emtL2L) entered disabled state
[  366.128008] t0-emtL2L (unregistering): left allmulticast mode
[  366.133765] t0-emtL2L (unregistering): left promiscuous mode
[  366.139440] virbr0: port 1(t0-emtL2L) entered disabled state
[  407.625065] JFS: nTxBlock = 8192, nTxLock = 65536
[  407.664628] QNX4 filesystem 0.2.3 registered.
[  407.747407] raid6: avx2x4   gen() 29256 MB/s
[  407.819405] raid6: avx2x2   gen() 30123 MB/s
[  407.891403] raid6: avx2x1   gen() 20666 MB/s
[  407.895681] raid6: using algorithm avx2x2 gen() 30123 MB/s
[  407.967401] raid6: .... xor() 27456 MB/s, rmw enabled
[  407.972458] raid6: using avx2x2 recovery algorithm
[  407.979267] xor: automatically using best checksumming function   avx       
[  408.075489] Btrfs loaded, zoned=yes, fsverity=yes
[  412.508641] sda6: Can't mount, would change RO state
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mShow Plymouth Reboot Screen^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mUser and Group Name Lookups^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSystem Logging Service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork is Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager Wait Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
         Stopping ^[[0;1;39mNetwork Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Network^[[0m.
         Stopping ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGenerate network units from Kernel command line^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
         Stopping ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Plymouth Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mVirtual Machine and Container Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic da[  413.979208] audit: type=1305 audit(1750145177.578:288): op=set audit_pid=0 old=2287 auid=4294967295 ses=4294967295 subj=unconfined res=1
emon read-only s[  413.993340] audit: type=1131 audit(1750145177.594:289): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=auditd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
ocket^[[0m.
[^[[[  414.013453] audit: type=1334 audit(1750145177.606:290): prog-id=43 op=UNLOAD
0;32m  OK  ^[[0m][  414.021944] audit: type=1131 audit(1750145177.622:291): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
 Closed ^[[0;1;39mlibvirt legacy monolithic daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mSSSD Kerberos Cache Manager responder socket[  414.055433] audit: type=1131 audit(1750145177.658:292): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-fsck@dev-disk-by\x2duuid-FBE5\x2d86EF comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
^[[0m.
[^[[0;32m[  414.069912] XFS (dm-0): Unmounting Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
  OK  ^[[0m] Clos[  414.080281] XFS (sda6): Unmounting Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
ed ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon socket^[[0m.
         Stopping ^[[0;1;39mD-Bus System Message Bus^[[0m...
         Starting ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Unset automount ^[[0;1;39mArbitrary Executab…ormats File System Automount Point^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Encrypted Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Integrity Protected Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Verity[  414.191974] audit: type=1131 audit(1750145177.794:293): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
 Protected Volum[  414.213538] audit: type=1131 audit(1750145177.814:294): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
es^[[0m.
         Deactivating swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
         Stopping ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-sysctl.service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
         Stopping ^[[0;1;39mSecurity Auditing Service^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
         Unmounting ^[[0;1;39m/boot/efi^[[0m...
         Unmounting ^[[0;1;39m/home^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m...
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/rhel_sharavati/swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated sw[  414.348701] audit: type=1131 audit(1750145177.950:295): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
ap ^[[0;1;39m/dev[  414.370028] audit: type=1130 audit(1750145177.970:296): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
/disk/by-uuid…[  414.391186] audit: type=1131 audit(1750145177.970:297): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
8d2e1f-0fb1-4c94-97ac-38505613fcbf^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/d…kEo36yeb12DWUnp5czhD1hrKFNCXkJMetK^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/dm-2^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK [  414.451659] watchdog: watchdog0: watchdog did not stop!
 ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m.\r\r[  414.464259] systemd-shutdown[1]: Using hardware watchdog 'SP5100 TCO timer', version 0, device /dev/watchdog0

[^[[0;32m  OK  ^[[  414.475006] systemd-shutdown[1]: Watchdog running with a timeout of 10min.
[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m.
         Unmounting ^[[0;1;39m[  414.491755] systemd-shutdown[1]: Syncing filesystems and block devices.
/boot^[[0m...
[[  414.499620] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m][  414.527618] systemd-journald[1733]: Received SIGTERM from PID 1 (systemd-shutdow).
 Unmounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Local File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUnmount All Filesystems^[[0m.
         Stopping ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRemount Root and Kernel File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mMonitoring of LVM2 mirrors…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLate Shutdown Services^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSystem Reboot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Reboot^[[0m.
[  414.611807] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
[  414.637161] systemd-shutdown[1]: Unmounting file systems.
[  414.643336] [7913]: Remounting '/' read-only with options 'attr2,inode64,logbufs=8,logbsize=32k,noquota'.
[  414.661142] systemd-shutdown[1]: All filesystems unmounted.
[  414.666721] systemd-shutdown[1]: Deactivating swaps.
[  414.672285] systemd-shutdown[1]: All swaps deactivated.
[  414.677519] systemd-shutdown[1]: Detaching loop devices.
[  414.683341] systemd-shutdown[1]: All loop devices detached.
[  414.688919] systemd-shutdown[1]: Stopping MD devices.
[  414.694029] systemd-shutdown[1]: All MD devices stopped.
[  414.699347] systemd-shutdown[1]: Detaching DM devices.
[  414.704842] systemd-shutdown[1]: Detaching DM /dev/dm-2 (253:2).
[  414.727360] systemd-shutdown[1]: Detaching DM /dev/dm-0 (253:0).
[  414.783380] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  414.789997] systemd-shutdown[1]: Detaching DM devices.
[  414.795340] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  414.801783] systemd-shutdown[1]: Cannot finalize remaining DM devices, continuing.
[  414.809349] watchdog: watchdog0: watchdog did not stop!
[  414.903795] systemd-shutdown[1]: Successfully changed into root pivot.
[  414.910326] systemd-shutdown[1]: Returning to initrd...
[  414.960749] dracut Warning: Killing all remaining processes
dracut Warning: Killing all remaining processes
[  415.040822] XFS (dm-1): Unmounting Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[  415.057031] dracut Warning: Unmounted /oldroot.
dracut Warning: Unmounted /oldroot.
[  415.073565] dracut: Disassembling device-mapper devices
Rebooting.
[  415.261864] sd 8:0:2:0: [sdc] Synchronizing SCSI cache
[  415.267130] sd 8:0:0:0: [sda] Synchronizing SCSI cache
[  416.740865] mpt3sas_cm0: sending message unit reset !!
[  416.748741] mpt3sas_cm0: message unit reset: SUCCESS
[  416.756394] ACPI: PM: Preparing to enter system sleep state S5
[  416.762330] kvm: exiting hardware virtualization
[  416.766990] reboot: Restarting system
[  416.770655] reboot: machine restart
^[[c^[[2J^[[01;01H^[[=3h^[[2J^[[01;01HKEY MAPPING FOR CONSOLE REDIRECTION:

Use the <ESC><1> key sequence for <F1>
Use the <ESC><2> key sequence for <F2>
Use the <ESC><3> key sequence for <F3>
Use the <ESC><0> key sequence for <F10>
Use the <ESC><!> key sequence for <F11>
Use the <ESC><@> key sequence for <F12>

Use the <ESC><Ctrl><M> key sequence for <Ctrl><M>
Use the <ESC><Ctrl><H> key sequence for <Ctrl><H>
Use the <ESC><Ctrl><I> key sequence for <Ctrl><I>
Use the <ESC><Ctrl><J> key sequence for <Ctrl><J>

Use the <ESC><X><X> key sequence for <Alt><x>, where x is any letter
key, and X is the upper case of that key

Use the <ESC><R><ESC><r><ESC><R> key sequence for <Ctrl><Alt><Del>

Press the spacebar to pause...
Initializing PCIe, USB, and Video... Done
PowerEdge R6515
BIOS Version: 2.17.0
Console Redirection Enabled Requested by iDRAC

F2	 = System Setup
F10	 = Lifecycle Controller (Config
	   iDRAC, Update FW, Install OS)
F11	 = Boot Manager
F12	 = PXE Boot
iDRAC IPV4:  10.86.18.202 [Dedicated]
                                
Initializing Firmware Interfaces...
 





Enumerating Boot options...
Enumerating Boot options... Done
Loading Lifecycle Controller Drivers...
Loading Lifecycle Controller Drivers...Done
Lifecycle Controller: Collecting System Inventory...

iDRAC IPV4:  10.86.18.202 [Dedicated]

^[[2J^[[01;01HLifecycle Controller: Done
Booting...
^[[2J^[[01;01HBooting from Integrated Storage Controller 1: Red Hat Enterprise Linux
^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[02;32HGRUB version 2.06

\r^[[04;02H/----------------------------------------------------------------------------\^[[05;02H|^[[05;79H|^[[06;02H|^[[06;79H|^[[07;02H|^[[07;79H|^[[08;02H|^[[08;79H|^[[09;02H|^[[09;79H|^[[10;02H|^[[10;79H|^[[11;02H|^[[11;79H|^[[12;02H|^[[12;79H|^[[13;02H|^[[13;79H|^[[14;02H|^[[14;79H|^[[15;02H|^[[15;79H|^[[16;02H|^[[16;79H|^[[17;02H\----------------------------------------------------------------------------/^[[18;02H^[[19;02H     Use the ^ and v keys to select which entry is highlighted.          
\r      Press enter to boot the selected OS, `e' to edit the commands       
\r      before booting or `c' for a command-line. ESC to return previous    
\r      menu.                                                               ^[[05;80H ^[[0m^[[30m^[[47m^[[05;03H*Red Hat Enterprise Linux (6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e)>
\r^[[06;01H^[[0m^[[37m^[[40m^[[05;78H^[[06;03H Red Hat Enterprise Linux (6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997)>
\r^[[07;01H^[[06;78H^[[07;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250613-bc6e0ba6c9-dc42f4ece61)>
\r^[[08;01H^[[07;78H^[[08;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250612-0bb71d3018-d909e6968a1)>
\r^[[09;01H^[[08;78H^[[09;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250611-19a60293b9-72d7c68e20e)>
\r^[[10;01H^[[09;78H^[[10;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250610-b27cc623e0-9a3b1b1b837)>
\r^[[11;01H^[[10;78H^[[11;03H Red Hat Enterprise Linux (6.15.0-rc7-next-20250526-3be1a7a31f-22d449bcd69)>
\r^[[12;01H^[[11;78H^[[12;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250514-bdd609656f-ccb396cc166)>
\r^[[13;01H^[[12;78H^[[13;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250513-aa94665adc-e0bf3d3816b)>
\r^[[14;01H^[[13;78H^[[14;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250512-edef457004-450c56522a8)>
\r^[[15;01H^[[14;78H^[[15;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250508-f48887a98b-19c541fe872)>
\r^[[16;01H^[[15;78H^[[16;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250507-08710e6960-81586bd2ca8)>
\r^[[17;01H^[[16;78H^[[16;80Hv^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 5s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 4s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 3s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 2s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 1s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 0s.                 ^[[05;78H^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m  Booting `Red Hat Enterprise Linux
\r(6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e) 9.5 (Plow)'

\r[    0.000000] Linux version 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e (root@sharavati•amd.com) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-5), GNU ld version 2.35.2-63.el9) #1 SMP PREEMPT_DYNAMIC Tue Jun 17 12:09:52 IST 2025
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] SEV-SNP: RMP table physical range [0x0000000015e00000 - 0x00000000566fffff]
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000015dfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000015e00000-0x00000000566fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000056700000-0x00000000567fbfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000567fc000-0x00000000567fcfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000567fd000-0x000000005a142fff] usable
[    0.000000] BIOS-e820: [mem 0x000000005a143000-0x000000005a342fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005a343000-0x0000000067acefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000067acf000-0x000000006dfcefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006dfcf000-0x000000006edfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006edff000-0x000000006effefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000006efff000-0x000000006effffff] usable
[    0.000000] BIOS-e820: [mem 0x000000006f000000-0x000000006f00afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006f00b000-0x000000006fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000070000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa000000-0x00000000aaffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c5000000-0x00000000c5ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e0ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000207fcfffff] usable
[    0.000000] BIOS-e820: [mem 0x000000207fd00000-0x000000207fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000002080000000-0x000000407f1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000407f200000-0x000000407fffffff] reserved
[    0.000000] printk: legacy bootconsole [earlyser0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by Dell Inc.
[    0.000000] efi: ACPI=0x6effe000 ACPI 2.0=0x6effe014 MEMATTR=0x63f376a0 SMBIOS=0x6979e000 SMBIOS 3.0=0x6979c000 MOKvar=0x67bcc000 RNG=0x6efb4020 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem56: MMIO range=[0x80000000-0x8fffffff] (256MB) from e820 map
[    0.000000] efi: Remove mem57: MMIO range=[0xaa000000-0xaaffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem58: MMIO range=[0xc5000000-0xc5ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem59: MMIO range=[0xe0000000-0xe0ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem60: MMIO range=[0xfd000000-0xffffffff] (48MB) from e820 map
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[    0.000000] DMI: Memory slots populated: 8/16
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1996.206 MHz processor
[    0.000028] last_pfn = 0x407f200 max_arch_pfn = 0x400000000
[    0.005551] MTRR map: 7 entries (2 fixed + 5 variable; max 19), built from 9 variable MTRRs
[    0.013866] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Memory KASLR using RDRAND RDTSC...
[    0.023929] x2apic: enabled by BIOS, switching to x2apic ops
[    0.029563] last_pfn = 0x70000 max_arch_pfn = 0x400000000
[    0.039396] SEV-SNP: Reserving start/end of RMP table on a 2MB boundary [0x0000000056600000]
[    0.047663] Using GB pages for direct mapping
[    0.052546] Secure boot disabled
[    0.055596] RAMDISK: [mem 0x0bb2c000-0x0e0d4fff]
[    0.060192] ACPI: Early table checksum verification disabled
[    0.065825] ACPI: RSDP 0x000000006EFFE014 000024 (v02 DELL  )
[    0.071543] ACPI: XSDT 0x000000006EFB7188 0000DC (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.080037] ACPI: FACP 0x000000006EFF9000 000114 (v06 DELL   PE_SC3   00000002 DELL 00000001)
[    0.088532] ACPI: DSDT 0x000000006EFDA000 019528 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.097024] ACPI: FACS 0x000000006EDB9000 000040
[    0.101616] ACPI: BERT 0x000000006EFFC000 000030 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.110110] ACPI: ERST 0x000000006EFFB000 000230 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.118604] ACPI: HEST 0x000000006EFFA000 0007F4 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.127096] ACPI: HPET 0x000000006EFF8000 000038 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.135589] ACPI: APIC 0x000000006EFF6000 0018BE (v05 DELL   PE_SC3   00000002 DELL 00000001)
[    0.144082] ACPI: MCFG 0x000000006EFF5000 00003C (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.152576] ACPI: WSMT 0x000000006EFF4000 000028 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.161069] ACPI: SSDT 0x000000006EFD9000 000629 (v02 DELL   xhc_port 00000001 INTL 20210331)
[    0.169563] ACPI: SSDT 0x000000006EFD8000 000D6E (v02 AMD    CPMRAS   00000001 INTL 20210331)
[    0.178056] ACPI: EINJ 0x000000006EFD7000 000170 (v01 AMD    PE_SC3   00000001 AMD  00000001)
[    0.186549] ACPI: PCCT 0x000000006EFD6000 00006E (v02 DELL   AmdTable 00000001 AMD  00000001)
[    0.195042] ACPI: SSDT 0x000000006EFC7000 00E849 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.203536] ACPI: SRAT 0x000000006EFC6000 000CD0 (v03 DELL   PE_SC3   00000001 AMD  00000001)
[    0.212029] ACPI: MSCT 0x000000006EFC5000 00004E (v01 DELL   PE_SC3   00000000 AMD  00000001)
[    0.220522] ACPI: SLIT 0x000000006EFC4000 000030 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.229015] ACPI: CRAT 0x000000006EFBC000 0072F8 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.237510] ACPI: CDIT 0x000000006EFBB000 00002C (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.246002] ACPI: IVRS 0x000000006EFBA000 0001F0 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.254495] ACPI: SPCR 0x000000006EFB9000 000050 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.262989] ACPI: SLIC 0x000000006EFB8000 000176 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.271482] ACPI: SSDT 0x000000006EFFD000 000D66 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.279976] ACPI: SSDT 0x000000006EFB5000 00193C (v02 AMD    CPMCMN   00000001 INTL 20210331)
[    0.288468] ACPI: Reserving FACP table memory at [mem 0x6eff9000-0x6eff9113]
[    0.295489] ACPI: Reserving DSDT table memory at [mem 0x6efda000-0x6eff3527]
[    0.302508] ACPI: Reserving FACS table memory at [mem 0x6edb9000-0x6edb903f]
[    0.309528] ACPI: Reserving BERT table memory at [mem 0x6effc000-0x6effc02f]
[    0.316549] ACPI: Reserving ERST table memory at [mem 0x6effb000-0x6effb22f]
[    0.323568] ACPI: Reserving HEST table memory at [mem 0x6effa000-0x6effa7f3]
[    0.330588] ACPI: Reserving HPET table memory at [mem 0x6eff8000-0x6eff8037]
[    0.337608] ACPI: Reserving APIC table memory at [mem 0x6eff6000-0x6eff78bd]
[    0.344680] ACPI: Reserving MCFG table memory at [mem 0x6eff5000-0x6eff503b]
[    0.351700] ACPI: Reserving WSMT table memory at [mem 0x6eff4000-0x6eff4027]
[    0.358720] ACPI: Reserving SSDT table memory at [mem 0x6efd9000-0x6efd9628]
[    0.365740] ACPI: Reserving SSDT table memory at [mem 0x6efd8000-0x6efd8d6d]
[    0.372760] ACPI: Reserving EINJ table memory at [mem 0x6efd7000-0x6efd716f]
[    0.379779] ACPI: Reserving PCCT table memory at [mem 0x6efd6000-0x6efd606d]
[    0.386801] ACPI: Reserving SSDT table memory at [mem 0x6efc7000-0x6efd5848]
[    0.393820] ACPI: Reserving SRAT table memory at [mem 0x6efc6000-0x6efc6ccf]
[    0.400840] ACPI: Reserving MSCT table memory at [mem 0x6efc5000-0x6efc504d]
[    0.407860] ACPI: Reserving SLIT table memory at [mem 0x6efc4000-0x6efc402f]
[    0.414880] ACPI: Reserving CRAT table memory at [mem 0x6efbc000-0x6efc32f7]
[    0.421900] ACPI: Reserving CDIT table memory at [mem 0x6efbb000-0x6efbb02b]
[    0.428919] ACPI: Reserving IVRS table memory at [mem 0x6efba000-0x6efba1ef]
[    0.435939] ACPI: Reserving SPCR table memory at [mem 0x6efb9000-0x6efb904f]
[    0.442960] ACPI: Reserving SLIC table memory at [mem 0x6efb8000-0x6efb8175]
[    0.450023] ACPI: Reserving SSDT table memory at [mem 0x6effd000-0x6effdd65]
[    0.457043] ACPI: Reserving SSDT table memory at [mem 0x6efb5000-0x6efb693b]
[    0.464138] APIC: Switched APIC routing to: cluster x2apic
[    0.469539] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.475504] ACPI: SRAT: Node 0 PXM 0 [mem 0x000c0000-0x7fffffff]
[    0.481483] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.487723] ACPI: SRAT: Node 1 PXM 1 [mem 0x2080000000-0x407fffffff]
[    0.494057] NUMA: Node 0 [mem 0x00001000-0x0009ffff] + [mem 0x000c0000-0x7fffffff] -> [mem 0x00001000-0x7fffffff]
[    0.504276] NUMA: Node 0 [mem 0x00001000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00001000-0x207fffffff]
[    0.514943] NODE_DATA(0) allocated [mem 0x207fcd59c0-0x207fcfffff]
[    0.521097] NODE_DATA(1) allocated [mem 0x407f1d49c0-0x407f1fefff]
[    0.527382] cannot allocate crashkernel low memory (size:0x10800000).
[    0.533920] Zone ranges:
[    0.536274]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.542427]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.548581]   Normal   [mem 0x0000000100000000-0x000000407f1fffff]
[    0.554734]   Device   empty
[    0.557593] Movable zone start for each node
[    0.561842] Early memory node ranges
[    0.565394]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.571634]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.577873]   node   0: [mem 0x0000000000100000-0x0000000015dfffff]
[    0.584114]   node   0: [mem 0x0000000056700000-0x00000000567fbfff]
[    0.590353]   node   0: [mem 0x00000000567fd000-0x000000005a142fff]
[    0.596593]   node   0: [mem 0x000000005a343000-0x0000000067acefff]
[    0.602833]   node   0: [mem 0x000000006efff000-0x000000006effffff]
[    0.609073]   node   0: [mem 0x000000006f00b000-0x000000006fffffff]
[    0.615313]   node   0: [mem 0x0000000100000000-0x000000207fcfffff]
[    0.621563]   node   1: [mem 0x0000002080000000-0x000000407f1fffff]
[    0.627804] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fcfffff]
[    0.634816] Initmem setup node 1 [mem 0x0000002080000000-0x000000407f1fffff]
[    0.641835] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.647641] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.653459] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.659691] On node 0, zone DMA32: 35072 pages in unavailable ranges
[    0.665899] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.671994] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.678084] On node 0, zone DMA32: 30000 pages in unavailable ranges
[    0.684328] On node 0, zone DMA32: 11 pages in unavailable ranges
[    0.909460] On node 1, zone Normal: 768 pages in unavailable ranges
[    0.915565] On node 1, zone Normal: 3584 pages in unavailable ranges
[    0.922057] ACPI: PM-Timer IO Port: 0x408
[    0.925927] ACPI: X2APIC_NMI (uid[0xffffffff] high edge lint[0x1])
[    0.932056] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.937960] IOAPIC[0]: apic_id 240, version 33, address 0xfec00000, GSI 0-23
[    0.944971] IOAPIC[1]: apic_id 241, version 33, address 0xe0100000, GSI 120-151
[    0.952250] IOAPIC[2]: apic_id 242, version 33, address 0xc5100000, GSI 88-119
[    0.959444] IOAPIC[3]: apic_id 243, version 33, address 0xaa100000, GSI 56-87
[    0.966550] IOAPIC[4]: apic_id 244, version 33, address 0xfd100000, GSI 24-55
[    0.973656] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.979980] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.986487] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.992893] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.998009] ACPI: SPCR: console: uart,io,0x2f8,115200
[    1.003038] CPU topo: Max. logical packages:   1
[    1.007626] CPU topo: Max. logical dies:       1
[    1.012220] CPU topo: Max. dies per package:   1
[    1.016817] CPU topo: Max. threads per core:   2
[    1.021416] CPU topo: Num. cores per package:    64
[    1.026278] CPU topo: Num. threads per package: 128
[    1.031131] CPU topo: Allowing 128 present CPUs plus 0 hotplug CPUs
[    1.037396] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    1.044911] PM: hibernation: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    1.052451] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    1.059992] PM: hibernation: Registered nosave memory: [mem 0x15e00000-0x567fffff]
[    1.067531] PM: hibernation: Registered nosave memory: [mem 0x5a143000-0x5a342fff]
[    1.075071] PM: hibernation: Registered nosave memory: [mem 0x67acf000-0x6effefff]
[    1.082611] PM: hibernation: Registered nosave memory: [mem 0x6f000000-0x6f00afff]
[    1.090150] PM: hibernation: Registered nosave memory: [mem 0x70000000-0xffffffff]
[    1.097692] PM: hibernation: Registered nosave memory: [mem 0x207fd00000-0x207fffffff]
[    1.105578] [mem 0x56800000-0xffffffff] available for PCI devices
[    1.111645] Booting paravirtualized kernel on bare hardware
[    1.117191] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    1.127637] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:128 nr_cpu_ids:128 nr_node_ids:2
[    1.138526] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[    1.145001] Kernel command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    1.174328] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e biosdevname=0 mem_encrypt=off", will be passed to user space.
[    1.191178] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    1.198093] printk: log_buf_len total cpu_extra contributions: 520192 bytes
[    1.205026] printk: log_buf_len min size: 262144 bytes
[    1.210480] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[    1.217862] printk: early log buf free: 246352(93%)
[    1.224223] software IO TLB: area num 128.
[    1.228145] software IO TLB: swiotlb_memblock_alloc: Failed to allocate 268435456 bytes tlb structure
[    1.243229] software IO TLB: SWIOTLB bounce buffer size adjusted 131072 -> 65536 slabs
[    1.249301] Fallback order for Node 0: 0 1 
[    1.249304] Fallback order for Node 1: 1 0 
[    1.249318] Built 2 zonelists, mobility grouping on.  Total pages: 66743906
[    1.272305] Policy zone: Normal
[    1.275433] mem auto-init: stack:off, heap alloc:on, heap free:off
[    1.697131] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=128, Nodes=2
Poking KASLR using RDRAND RDTSC...
[    1.717785] ftrace: allocating 53763 entries in 212 pages
[    1.723006] ftrace: allocated 212 pages with 4 groups
[    1.728911] Dynamic Preempt: voluntary
[    1.732850] rcu: Preemptible hierarchical RCU implementation.
[    1.738415] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=128.
[    1.745348] 	Trampoline variant of Tasks RCU enabled.
[    1.750375] 	Rude variant of Tasks RCU enabled.
[    1.754881] 	Tracing variant of Tasks RCU enabled.
[    1.759649] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.767188] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=128
[    1.774075] RCU Tasks: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.782879] RCU Tasks Rude: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.792152] RCU Tasks Trace: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.805015] NR_IRQS: 524544, nr_irqs: 3624, preallocated irqs: 16
[    1.811207] rcu: srcu_init: Setting srcu_struct sizes to big.
[    1.816948] Console: colour dummy device 80x25
[    1.821234] printk: legacy console [ttyS0] enabled
[    1.821234] printk: legacy console [ttyS0] enabled
[    1.830766] printk: legacy bootconsole [earlyser0] disabled
[    1.830766] printk: legacy bootconsole [earlyser0] disabled
[    1.841954] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    1.853234] ACPI: Core revision 20250404
[    1.857384] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    1.866526] APIC: Switch to symmetric I/O mode setup
[    1.871930] AMD-Vi: Using global IVHD EFR:0x841f77e022094ace, EFR2:0x0
[    1.880866] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    1.906529] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x398c5c2fa0e, max_idle_ns: 881590557150 ns
[    1.917038] Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.41 BogoMIPS (lpj=7984824)
[    1.921050] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    1.925141] LVT offset 2 assigned for vector 0xf4
[    1.929067] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    1.933037] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    1.937038] process: using mwait in idle threads
[    1.941041] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    1.945037] Spectre V2 : Mitigation: Retpolines
[    1.949037] Spectre V2 : User space: Mitigation: STIBP always-on protection
[    1.953037] Speculative Return Stack Overflow: Mitigation: Safe RET
[    1.957037] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.961037] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
[    1.965037] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    1.969038] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    1.973041] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.977037] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.981037] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.985037] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    1.989037] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    1.993037] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    1.997037] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    2.001037] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    2.005037] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[    2.046845] Freeing SMP alternatives memory: 48K
[    2.049039] pid_max: default: 131072 minimum: 1024
[    2.060529] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm
[    2.061089] Yama: becoming mindful.
[    2.065162] AppArmor: AppArmor initialized
[    2.077669] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    2.085954] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    2.089187] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.093134] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.209729] smpboot: CPU0: AMD EPYC 7713 64-Core Processor (family: 0x19, model: 0x1, stepping: 0x1)
[    2.213392] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    2.217039] ... version:                0
[    2.221038] ... bit width:              48
[    2.225039] ... generic registers:      6
[    2.229038] ... value mask:             0000ffffffffffff
[    2.233038] ... max period:             00007fffffffffff
[    2.237038] ... fixed-purpose events:   0
[    2.241038] ... event mask:             000000000000003f
[    2.245472] signal: max sigframe size: 3376
[    2.249099] rcu: Hierarchical SRCU implementation.
[    2.253038] rcu: 	Max phase no-delay instances is 1000.
[    2.257095] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
[    2.269391] MCE: In-kernel MCE decoding enabled.
[    2.273089] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    2.281987] smp: Bringing up secondary CPUs ...
[    2.285190] smpboot: x86: Booting SMP configuration:
[    2.289040] .... node  #0, CPUs:          #1   #2   #3   #4   #5   #6   #7   #8   #9  #10  #11  #12  #13  #14  #15  #16  #17  #18  #19  #20  #21  #22  #23  #24  #25  #26  #27  #28  #29  #30  #31
[    2.301040] .... node  #1, CPUs:    #32  #33  #34  #35  #36  #37  #38  #39  #40  #41  #42  #43  #44  #45  #46  #47  #48  #49  #50  #51  #52  #53  #54  #55  #56  #57  #58  #59  #60  #61  #62  #63
[    2.453040] .... node  #0, CPUs:    #64  #65  #66  #67  #68  #69  #70  #71  #72  #73  #74  #75  #76  #77  #78  #79  #80  #81  #82  #83  #84  #85  #86  #87  #88  #89  #90  #91  #92  #93  #94  #95
[    2.461041] .... node  #1, CPUs:    #96  #97  #98  #99 #100 #101 #102 #103 #104 #105 #106 #107 #108 #109 #110 #111 #112 #113 #114 #115 #116 #117 #118 #119 #120 #121 #122 #123 #124 #125 #126 #127
[    2.469338] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[    2.621201] smp: Brought up 2 nodes, 128 CPUs
[    2.625043] smpboot: Total of 128 processors activated (511028.73 BogoMIPS)
[    2.639028] Memory: 262225176K/266975624K available (18401K kernel code, 3299K rwdata, 7944K rodata, 4760K init, 6092K bss, 4428320K reserved, 0K cma-reserved)
[    2.646766] devtmpfs: initialized
[    2.649144] x86/mm: Memory block size: 2048MB
[    2.663417] ACPI: PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    2.665040] ACPI: PM: Registering ACPI NVS region [mem 0x6dfcf000-0x6edfefff] (14876672 bytes)
[    2.669326] ACPI: PM: Registering ACPI NVS region [mem 0x6f000000-0x6f00afff] (45056 bytes)
[    2.673157] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    2.677102] posixtimers hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.681260] futex hash table entries: 16384 (1048576 bytes on 2 NUMA nodes, total 2048 KiB, linear).
[    2.685268] pinctrl core: initialized pinctrl subsystem
[    2.689191] PM: RTC time: 12:58:32, date: 2025-06-17
[    2.693814] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    2.697648] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    2.701221] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    2.705223] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    2.709045] audit: initializing netlink subsys (disabled)
[    2.713067] audit: type=2000 audit(1750165111.832:1): state=initialized audit_enabled=0 res=1
[    2.713241] thermal_sys: Registered thermal governor 'fair_share'
[    2.717039] thermal_sys: Registered thermal governor 'bang_bang'
[    2.721038] thermal_sys: Registered thermal governor 'step_wise'
[    2.725039] thermal_sys: Registered thermal governor 'user_space'
[    2.729061] cpuidle: using governor ladder
[    2.737048] cpuidle: using governor menu
[    2.741085] Detected 1 PCC Subspaces
[    2.745039] Registering PCC driver as Mailbox controller
[    2.753213] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    2.757042] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    2.761216] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    2.765049] PCI: Using configuration type 1 for base access
[    2.769047] PCI: Dell System detected, enabling pci=bfsort.
[    2.773241] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    2.777257] HugeTLB: allocation took 0ms with hugepage_allocation_threads=32
[    2.781083] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    2.785039] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    2.789038] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    2.793038] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    2.801424] ACPI: Added _OSI(Module Device)
[    2.805039] ACPI: Added _OSI(Processor Device)
[    2.809038] ACPI: Added _OSI(Processor Aggregator Device)
[    2.854122] ACPI: 6 ACPI AML tables successfully acquired and loaded
[    2.870070] ACPI: Interpreter enabled
[    2.873051] ACPI: PM: (supports S0 S5)
[    2.877038] ACPI: Using IOAPIC for interrupt routing
[    2.881654] HEST: Table parsing has been initialized.
[    2.885461] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    2.889041] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.893038] PCI: Ignoring E820 reservations for host bridge windows
[    2.901562] ACPI: Enabled 1 GPEs in block 00 to 1F
[    2.943567] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    2.945118] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    2.949117] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    2.953116] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    2.957115] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    2.961117] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    2.965116] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    2.969116] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    2.973540] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-3f])
[    2.977042] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.981203] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER DPC]
[    2.985354] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    2.989038] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.994032] PCI host bridge to bus 0000:00
[    2.997042] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    3.001038] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    3.005039] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000fffff window]
[    3.009038] pci_bus 0000:00: root bus resource [io  0x0d00-0x3fff window]
[    3.013038] pci_bus 0000:00: root bus resource [mem 0xe1000000-0xfebfffff window]
[    3.017038] pci_bus 0000:00: root bus resource [mem 0x63dc0000000-0x7fcffffffff window]
[    3.021038] pci_bus 0000:00: root bus resource [bus 00-3f]
[    3.025052] pci 0000:00:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.029192] pci 0000:00:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.033148] pci 0000:00:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.037132] pci 0000:00:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.041129] pci 0000:00:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.045134] pci 0000:00:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.049054] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.053042] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    3.057040] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    3.061108] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    3.066045] pci 0000:00:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.069134] pci 0000:00:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.073132] pci 0000:00:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.077133] pci 0000:00:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.081054] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.085042] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    3.089050] pci 0000:00:07.1: enabling Extended Tags
[    3.097042] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    3.101195] pci 0000:00:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.105131] pci 0000:00:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.109054] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.113044] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    3.117050] pci 0000:00:08.1: enabling Extended Tags
[    3.121088] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    3.125230] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
[    3.129154] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
[    3.133209] pci 0000:00:18.0: [1022:1650] type 00 class 0x060000 conventional PCI endpoint
[    3.137145] pci 0000:00:18.1: [1022:1651] type 00 class 0x060000 conventional PCI endpoint
[    3.141107] pci 0000:00:18.2: [1022:1652] type 00 class 0x060000 conventional PCI endpoint
[    3.145105] pci 0000:00:18.3: [1022:1653] type 00 class 0x060000 conventional PCI endpoint
[    3.149103] pci 0000:00:18.4: [1022:1654] type 00 class 0x060000 conventional PCI endpoint
[    3.153103] pci 0000:00:18.5: [1022:1655] type 00 class 0x060000 conventional PCI endpoint
[    3.157106] pci 0000:00:18.6: [1022:1656] type 00 class 0x060000 conventional PCI endpoint
[    3.161103] pci 0000:00:18.7: [1022:1657] type 00 class 0x060000 conventional PCI endpoint
[    3.165174] pci 0000:01:00.0: [1000:0097] type 00 class 0x010700 PCIe Endpoint
[    3.169069] pci 0000:01:00.0: BAR 0 [io  0x1000-0x10ff]
[    3.173041] pci 0000:01:00.0: BAR 1 [mem 0xf7400000-0xf740ffff 64bit]
[    3.177040] pci 0000:01:00.0: BAR 3 [mem 0xf7300000-0xf73fffff 64bit]
[    3.181040] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]
[    3.185043] pci 0000:01:00.0: enabling Extended Tags
[    3.189124] pci 0000:01:00.0: supports D1 D2
[    3.193080] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[    3.197038] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x000fffff 64bit]: contains BAR 0 for 16 VFs
[    3.201040] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x000fffff 64bit]
[    3.205038] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x00ffffff 64bit]: contains BAR 2 for 16 VFs
[    3.209190] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.213126] pci 0000:02:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.217072] pci 0000:02:00.0: enabling Extended Tags
[    3.221201] pci 0000:02:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.225065] pci 0000:02:00.2: BAR 2 [mem 0xf7200000-0xf727ffff]
[    3.229040] pci 0000:02:00.2: BAR 5 [mem 0xf7280000-0xf7281fff]
[    3.233044] pci 0000:02:00.2: enabling Extended Tags
[    3.237241] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.241175] pci 0000:03:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.245075] pci 0000:03:00.0: enabling Extended Tags
[    3.249250] pci 0000:03:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.253069] pci 0000:03:00.2: BAR 2 [mem 0xf7100000-0xf717ffff]
[    3.257040] pci 0000:03:00.2: BAR 5 [mem 0xf7180000-0xf7181fff]
[    3.261044] pci 0000:03:00.2: enabling Extended Tags
[    3.265233] pci 0000:03:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.269067] pci 0000:03:00.3: BAR 0 [mem 0xf7000000-0xf70fffff 64bit]
[    3.273046] pci 0000:03:00.3: enabling Extended Tags
[    3.277089] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
[    3.281223] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.286429] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 40-7f])
[    3.289041] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.293205] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.297355] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.301039] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.309762] PCI host bridge to bus 0000:40
[    3.313042] pci_bus 0000:40: root bus resource [io  0x4000-0x6fff window]
[    3.317038] pci_bus 0000:40: root bus resource [mem 0x90000000-0xaaffffff window]
[    3.321038] pci_bus 0000:40: root bus resource [mem 0x47e80000000-0x63dbfffffff window]
[    3.325038] pci_bus 0000:40: root bus resource [bus 40-7f]
[    3.329047] pci 0000:40:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.333137] pci 0000:40:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.337141] pci 0000:40:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.341123] pci 0000:40:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.345123] pci 0000:40:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.349133] pci 0000:40:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.353057] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.357044] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    3.361130] pci 0000:40:03.1: PME# supported from D0 D3hot D3cold
[    3.380862] pci 0000:40:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.381056] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.385043] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    3.389133] pci 0000:40:03.2: PME# supported from D0 D3hot D3cold
[    3.406390] pci 0000:40:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.409062] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.413046] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    3.417227] pci 0000:40:03.3: PME# supported from D0 D3hot D3cold
[    3.436216] pci 0000:40:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.437056] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.441049] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    3.445171] pci 0000:40:03.4: PME# supported from D0 D3hot D3cold
[    3.462215] pci 0000:40:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.465162] pci 0000:40:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.469127] pci 0000:40:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.473131] pci 0000:40:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.477058] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.481044] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    3.485051] pci 0000:40:07.1: enabling Extended Tags
[    3.489090] pci 0000:40:07.1: PME# supported from D0 D3hot D3cold
[    3.497208] pci 0000:40:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.505132] pci 0000:40:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.513055] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.517042] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    3.525050] pci 0000:40:08.1: enabling Extended Tags
[    3.529087] pci 0000:40:08.1: PME# supported from D0 D3hot D3cold
[    3.533290] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.541122] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.545120] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.549121] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.553128] pci 0000:45:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.561071] pci 0000:45:00.0: enabling Extended Tags
[    3.565199] pci 0000:45:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.573066] pci 0000:45:00.2: BAR 2 [mem 0xa5300000-0xa537ffff]
[    3.581040] pci 0000:45:00.2: BAR 5 [mem 0xa5380000-0xa5381fff]
[    3.585043] pci 0000:45:00.2: enabling Extended Tags
[    3.593235] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.597173] pci 0000:46:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.605075] pci 0000:46:00.0: enabling Extended Tags
[    3.609247] pci 0000:46:00.1: [1022:1486] type 00 class 0x108000 PCIe Endpoint
[    3.617067] pci 0000:46:00.1: BAR 2 [mem 0xa5100000-0xa51fffff]
[    3.621040] pci 0000:46:00.1: BAR 5 [mem 0xa5282000-0xa5283fff]
[    3.629043] pci 0000:46:00.1: enabling Extended Tags
[    3.633233] pci 0000:46:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.641067] pci 0000:46:00.2: BAR 2 [mem 0xa5200000-0xa527ffff]
[    3.645040] pci 0000:46:00.2: BAR 5 [mem 0xa5280000-0xa5281fff]
[    3.653043] pci 0000:46:00.2: enabling Extended Tags
[    3.657230] pci 0000:46:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.665067] pci 0000:46:00.3: BAR 0 [mem 0xa5000000-0xa50fffff 64bit]
[    3.673046] pci 0000:46:00.3: enabling Extended Tags
[    3.677088] pci 0000:46:00.3: PME# supported from D0 D3hot D3cold
[    3.681222] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.689262] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 80-bf])
[    3.693043] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.705213] acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.713355] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.721038] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.729947] PCI host bridge to bus 0000:80
[    3.733042] pci_bus 0000:80: root bus resource [io  0x7000-0x9fff window]
[    3.741038] pci_bus 0000:80: root bus resource [mem 0xab000000-0xc5ffffff window]
[    3.749038] pci_bus 0000:80: root bus resource [mem 0x2bf40000000-0x47e7fffffff window]
[    3.757040] pci_bus 0000:80: root bus resource [bus 80-bf]
[    3.761048] pci 0000:80:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.769139] pci 0000:80:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.777139] pci 0000:80:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.785132] pci 0000:80:01.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.793056] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.797043] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    3.805136] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    3.825255] pci 0000:80:01.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.833062] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.837045] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    3.845111] pci 0000:80:01.2: PME# supported from D0 D3hot D3cold
[    3.864345] pci 0000:80:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.865139] pci 0000:80:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.873144] pci 0000:80:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.877126] pci 0000:80:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.881201] pci 0000:80:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.885130] pci 0000:80:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.889056] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.893042] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    3.897050] pci 0000:80:07.1: enabling Extended Tags
[    3.901079] pci 0000:80:07.1: PME# supported from D0 D3hot D3cold
[    3.905200] pci 0000:80:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.913136] pci 0000:80:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.921054] pci 0000:80:08.1: PCI bridge to [bus 84]
[    3.929044] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    3.933050] pci 0000:80:08.1: enabling Extended Tags
[    3.941088] pci 0000:80:08.1: PME# supported from D0 D3hot D3cold
[    3.945207] pci 0000:80:08.2: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.953054] pci 0000:80:08.2: PCI bridge to [bus 85]
[    3.957043] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    3.965050] pci 0000:80:08.2: enabling Extended Tags
[    3.969087] pci 0000:80:08.2: PME# supported from D0 D3hot D3cold
[    3.977052] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.981121] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.985127] pci 0000:83:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.993073] pci 0000:83:00.0: enabling Extended Tags
[    3.997201] pci 0000:83:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.005065] pci 0000:83:00.2: BAR 2 [mem 0xbfa00000-0xbfa7ffff]
[    4.013041] pci 0000:83:00.2: BAR 5 [mem 0xbfa80000-0xbfa81fff]
[    4.017043] pci 0000:83:00.2: enabling Extended Tags
[    4.021239] pci 0000:80:07.1: PCI bridge to [bus 83]
[    4.029171] pci 0000:84:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.033074] pci 0000:84:00.0: enabling Extended Tags
[    4.041250] pci 0000:84:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.049069] pci 0000:84:00.2: BAR 2 [mem 0xbf900000-0xbf97ffff]
[    4.053042] pci 0000:84:00.2: BAR 5 [mem 0xbf980000-0xbf981fff]
[    4.061043] pci 0000:84:00.2: enabling Extended Tags
[    4.065246] pci 0000:80:08.1: PCI bridge to [bus 84]
[    4.069173] pci 0000:85:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[    4.077070] pci 0000:85:00.0: BAR 5 [mem 0xbf800000-0xbf8007ff]
[    4.081043] pci 0000:85:00.0: enabling Extended Tags
[    4.089101] pci 0000:85:00.0: PME# supported from D3hot D3cold
[    4.093218] pci 0000:80:08.2: PCI bridge to [bus 85]
[    4.097757] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus c0-ff])
[    4.105041] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    4.113205] acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug AER DPC]
[    4.121356] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    4.129038] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
[    4.141417] PCI host bridge to bus 0000:c0
[    4.145042] pci_bus 0000:c0: root bus resource [io  0xa000-0xffff window]
[    4.153038] pci_bus 0000:c0: root bus resource [mem 0xc6000000-0xe0ffffff window]
[    4.157038] pci_bus 0000:c0: root bus resource [mem 0x10000000000-0x2bf3fffffff window]
[    4.165038] pci_bus 0000:c0: root bus resource [io  0x03b0-0x03df window]
[    4.173040] pci_bus 0000:c0: root bus resource [mem 0x000a0000-0x000bffff window]
[    4.181038] pci_bus 0000:c0: root bus resource [bus c0-ff]
[    4.185048] pci 0000:c0:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    4.193136] pci 0000:c0:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    4.201139] pci 0000:c0:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.213127] pci 0000:c0:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.221123] pci 0000:c0:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.229129] pci 0000:c0:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.237056] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.241043] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    4.249128] pci 0000:c0:03.1: PME# supported from D0 D3hot D3cold
[    4.268090] pci 0000:c0:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.273061] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.281044] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    4.285109] pci 0000:c0:03.2: PME# supported from D0 D3hot D3cold
[    4.303605] pci 0000:c0:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.305061] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.309043] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    4.313153] pci 0000:c0:03.3: PME# supported from D0 D3hot D3cold
[    4.334699] pci 0000:c0:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.337061] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.341046] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    4.345162] pci 0000:c0:03.4: PME# supported from D0 D3hot D3cold
[    4.366028] pci 0000:c0:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.369132] pci 0000:c0:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.373131] pci 0000:c0:05.1: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.377053] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.381048] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    4.385084] pci 0000:c0:05.1: PME# supported from D0 D3hot D3cold
[    4.393069] pci 0000:c0:05.2: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.397053] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.401042] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    4.405044] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.409083] pci 0000:c0:05.2: PME# supported from D0 D3hot D3cold
[    4.413180] pci 0000:c0:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.417130] pci 0000:c0:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.421053] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.425042] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    4.429049] pci 0000:c0:07.1: enabling Extended Tags
[    4.433085] pci 0000:c0:07.1: PME# supported from D0 D3hot D3cold
[    4.441182] pci 0000:c0:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.445210] pci 0000:c0:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.449053] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.453042] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    4.457049] pci 0000:c0:08.1: enabling Extended Tags
[    4.461086] pci 0000:c0:08.1: PME# supported from D0 D3hot D3cold
[    4.465283] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.473104] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.477123] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.481121] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.485138] pci 0000:c1:00.0: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.489083] pci 0000:c1:00.0: BAR 0 [mem 0xc7030000-0xc703ffff 64bit pref]
[    4.493041] pci 0000:c1:00.0: BAR 2 [mem 0xc7040000-0xc704ffff 64bit pref]
[    4.497041] pci 0000:c1:00.0: BAR 4 [mem 0xc7050000-0xc705ffff 64bit pref]
[    4.501040] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.505126] pci 0000:c1:00.0: PME# supported from D0 D3hot D3cold
[    4.509093] pci 0000:c1:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:c0:05.1 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
[    4.514467] pci 0000:c1:00.1: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.517084] pci 0000:c1:00.1: BAR 0 [mem 0xc7000000-0xc700ffff 64bit pref]
[    4.521040] pci 0000:c1:00.1: BAR 2 [mem 0xc7010000-0xc701ffff 64bit pref]
[    4.525040] pci 0000:c1:00.1: BAR 4 [mem 0xc7020000-0xc702ffff 64bit pref]
[    4.529039] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.533126] pci 0000:c1:00.1: PME# supported from D0 D3hot D3cold
[    4.545072] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.549120] pci 0000:c2:00.0: [1556:be00] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    4.553065] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.557045] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    4.561048] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.573059] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.577074] pci_bus 0000:c3: extended config space not accessible
[    4.581068] pci 0000:c3:00.0: [102b:0536] type 00 class 0x030000 conventional PCI endpoint
[    4.585084] pci 0000:c3:00.0: BAR 0 [mem 0xc6000000-0xc6ffffff pref]
[    4.589039] pci 0000:c3:00.0: BAR 1 [mem 0xda808000-0xda80bfff]
[    4.593039] pci 0000:c3:00.0: BAR 2 [mem 0xda000000-0xda7fffff]
[    4.597057] pci 0000:c3:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    4.601162] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.605140] pci 0000:c8:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    4.609071] pci 0000:c8:00.0: enabling Extended Tags
[    4.613199] pci 0000:c8:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.617065] pci 0000:c8:00.2: BAR 2 [mem 0xdbb00000-0xdbb7ffff]
[    4.621040] pci 0000:c8:00.2: BAR 5 [mem 0xdbb80000-0xdbb81fff]
[    4.625043] pci 0000:c8:00.2: enabling Extended Tags
[    4.633129] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.637171] pci 0000:c9:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.641073] pci 0000:c9:00.0: enabling Extended Tags
[    4.645247] pci 0000:c9:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.649067] pci 0000:c9:00.2: BAR 2 [mem 0xdba00000-0xdba7ffff]
[    4.653041] pci 0000:c9:00.2: BAR 5 [mem 0xdba80000-0xdba81fff]
[    4.657043] pci 0000:c9:00.2: enabling Extended Tags
[    4.661248] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.672088] iommu: Default domain type: Translated
[    4.673039] iommu: DMA domain TLB invalidation policy: lazy mode
[    4.681337] SCSI subsystem initialized
[    4.685081] ACPI: bus type USB registered
[    4.689063] usbcore: registered new interface driver usbfs
[    4.693049] usbcore: registered new interface driver hub
[    4.697072] usbcore: registered new device driver usb
[    4.701072] pps_core: LinuxPPS API ver. 1 registered
[    4.705039] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux•it>
[    4.709044] PTP clock support registered
[    4.713122] EDAC MC: Ver: 3.0.0
[    4.717250] efivars: Registered efivars operations
[    4.725495] NetLabel: Initializing
[    4.728895] NetLabel:  domain hash size = 128
[    4.729043] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    4.733296] NetLabel:  unlabeled traffic allowed by default
[    4.737081] PCI: Using ACPI for IRQ routing
[    4.745269] pci 0000:c3:00.0: vgaarb: setting as boot VGA device
[    4.749036] pci 0000:c3:00.0: vgaarb: bridge control possible
[    4.749036] pci 0000:c3:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    4.749039] vgaarb: loaded
[    4.751750] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    4.753039] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    4.761253] clocksource: Switched to clocksource tsc-early
[    4.766856] VFS: Disk quotas dquot_6.6.0
[    4.770804] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.777921] AppArmor: AppArmor Filesystem Enabled
[    4.782672] pnp: PnP ACPI init
[    4.785975] system 00:00: [mem 0x80000000-0x8fffffff] has been reserved
[    4.792688] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[    4.800891] pnp: PnP ACPI: found 5 devices
[    4.812003] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    4.820978] NET: Registered PF_INET protocol family
[    4.825996] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.837783] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.846746] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    4.854781] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.864279] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.872661] TCP: Hash tables configured (established 524288 bind 65536)
[    4.879642] UDP hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.888091] UDP-Lite hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.896918] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    4.902589] NET: Registered PF_XDP protocol family
[    4.907385] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.917205] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.927021] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.936844] pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
[    4.942512] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: can't assign; no space
[    4.950249] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: failed to assign
[    4.957474] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: can't assign; no space
[    4.965735] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: failed to assign
[    4.973477] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: can't assign; no space
[    4.981734] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: failed to assign
[    4.989484] pci 0000:00:03.2: PCI bridge to [bus 01]
[    4.994448] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    5.000543] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    5.007332] pci 0000:00:07.1: PCI bridge to [bus 02]
[    5.012304] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    5.019093] pci 0000:00:08.1: PCI bridge to [bus 03]
[    5.024065] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.030852] PCI: No. 2 try to assign unassigned res
[    5.035732] pci 0000:00:03.2: resource 14 [mem 0xf7300000-0xf74fffff] released
[    5.042956] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.047926] pci 0000:00:03.2: bridge window [mem 0x00100000-0x002fffff] to [bus 01] add_size 1200000 add_align 100000
[    5.058534] pci 0000:00:03.2: bridge window [mem 0xe1000000-0xe23fffff]: assigned
[    5.066019] pci 0000:01:00.0: BAR 3 [mem 0xe1000000-0xe10fffff 64bit]: assigned
[    5.073329] pci 0000:01:00.0: ROM [mem 0xe1100000-0xe11fffff pref]: assigned
[    5.080380] pci 0000:01:00.0: VF BAR 2 [mem 0xe1200000-0xe21fffff 64bit]: assigned
[    5.087946] pci 0000:01:00.0: BAR 1 [mem 0xe2200000-0xe220ffff 64bit]: assigned
[    5.095257] pci 0000:01:00.0: VF BAR 0 [mem 0xe2210000-0xe230ffff 64bit]: assigned
[    5.102826] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.107792] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    5.113886] pci 0000:00:03.2:   bridge window [mem 0xe1000000-0xe23fffff]
[    5.120673] pci 0000:00:07.1: PCI bridge to [bus 02]
[    5.125646] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    5.132434] pci 0000:00:08.1: PCI bridge to [bus 03]
[    5.137406] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.144196] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    5.150380] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    5.156556] pci_bus 0000:00: resource 6 [mem 0x000c0000-0x000fffff window]
[    5.163431] pci_bus 0000:00: resource 7 [io  0x0d00-0x3fff window]
[    5.169609] pci_bus 0000:00: resource 8 [mem 0xe1000000-0xfebfffff window]
[    5.176481] pci_bus 0000:00: resource 9 [mem 0x63dc0000000-0x7fcffffffff window]
[    5.183877] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[    5.189448] pci_bus 0000:01: resource 1 [mem 0xe1000000-0xe23fffff]
[    5.195721] pci_bus 0000:02: resource 1 [mem 0xf7200000-0xf72fffff]
[    5.201987] pci_bus 0000:03: resource 1 [mem 0xf7000000-0xf71fffff]
[    5.208331] pci 0000:40:03.1: bridge window [io  0x1000-0x0fff] to [bus 41] add_size 1000
[    5.216504] pci 0000:40:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 41] add_size 200000 add_align 100000
[    5.227973] pci 0000:40:03.2: bridge window [io  0x1000-0x0fff] to [bus 42] add_size 1000
[    5.236143] pci 0000:40:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 42] add_size 200000 add_align 100000
[    5.247609] pci 0000:40:03.3: bridge window [io  0x1000-0x0fff] to [bus 43] add_size 1000
[    5.255784] pci 0000:40:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 43] add_size 200000 add_align 100000
[    5.267250] pci 0000:40:03.4: bridge window [io  0x1000-0x0fff] to [bus 44] add_size 1000
[    5.275422] pci 0000:40:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 44] add_size 200000 add_align 100000
[    5.286892] pci 0000:40:03.1: bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]: assigned
[    5.295882] pci 0000:40:03.2: bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]: assigned
[    5.304835] pci 0000:40:03.3: bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]: assigned
[    5.313790] pci 0000:40:03.4: bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]: assigned
[    5.322743] pci 0000:40:03.1: bridge window [io  0x4000-0x4fff]: assigned
[    5.329529] pci 0000:40:03.2: bridge window [io  0x5000-0x5fff]: assigned
[    5.336320] pci 0000:40:03.3: bridge window [io  0x6000-0x6fff]: assigned
[    5.343109] pci 0000:40:03.4: bridge window [io  size 0x1000]: can't assign; no space
[    5.350932] pci 0000:40:03.4: bridge window [io  size 0x1000]: failed to assign
[    5.358245] pci 0000:40:03.4: bridge window [io  0x4000-0x4fff]: assigned
[    5.365034] pci 0000:40:03.3: bridge window [io  0x5000-0x5fff]: assigned
[    5.371820] pci 0000:40:03.2: bridge window [io  0x6000-0x6fff]: assigned
[    5.378607] pci 0000:40:03.1: bridge window [io  size 0x1000]: can't assign; no space
[    5.386432] pci 0000:40:03.1: bridge window [io  size 0x1000]: failed to assign
[    5.393738] pci 0000:40:03.1: PCI bridge to [bus 41]
[    5.398706] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    5.405525] pci 0000:40:03.1:   bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.413787] pci 0000:40:03.2: PCI bridge to [bus 42]
[    5.418751] pci 0000:40:03.2:   bridge window [io  0x6000-0x6fff]
[    5.424845] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    5.431628] pci 0000:40:03.2:   bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.439893] pci 0000:40:03.3: PCI bridge to [bus 43]
[    5.444862] pci 0000:40:03.3:   bridge window [io  0x5000-0x5fff]
[    5.450958] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    5.457743] pci 0000:40:03.3:   bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.466006] pci 0000:40:03.4: PCI bridge to [bus 44]
[    5.470975] pci 0000:40:03.4:   bridge window [io  0x4000-0x4fff]
[    5.477070] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    5.483855] pci 0000:40:03.4:   bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.492117] pci 0000:40:07.1: PCI bridge to [bus 45]
[    5.497091] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    5.503913] pci 0000:40:08.1: PCI bridge to [bus 46]
[    5.508883] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    5.515672] pci_bus 0000:40: Some PCI device resources are unassigned, try booting with pci=realloc
[    5.524709] pci_bus 0000:40: resource 4 [io  0x4000-0x6fff window]
[    5.530887] pci_bus 0000:40: resource 5 [mem 0x90000000-0xaaffffff window]
[    5.537758] pci_bus 0000:40: resource 6 [mem 0x47e80000000-0x63dbfffffff window]
[    5.545152] pci_bus 0000:41: resource 1 [mem 0xa4c00000-0xa4ffffff]
[    5.551419] pci_bus 0000:41: resource 2 [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.559158] pci_bus 0000:42: resource 0 [io  0x6000-0x6fff]
[    5.564732] pci_bus 0000:42: resource 1 [mem 0xa4800000-0xa4bfffff]
[    5.570999] pci_bus 0000:42: resource 2 [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.578736] pci_bus 0000:43: resource 0 [io  0x5000-0x5fff]
[    5.584308] pci_bus 0000:43: resource 1 [mem 0xa4400000-0xa47fffff]
[    5.590574] pci_bus 0000:43: resource 2 [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.598315] pci_bus 0000:44: resource 0 [io  0x4000-0x4fff]
[    5.603888] pci_bus 0000:44: resource 1 [mem 0xa4000000-0xa43fffff]
[    5.610171] pci_bus 0000:44: resource 2 [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.617911] pci_bus 0000:45: resource 1 [mem 0xa5300000-0xa53fffff]
[    5.624176] pci_bus 0000:46: resource 1 [mem 0xa5000000-0xa52fffff]
[    5.630504] pci 0000:80:01.1: bridge window [io  0x1000-0x0fff] to [bus 81] add_size 1000
[    5.638675] pci 0000:80:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 81] add_size 200000 add_align 100000
[    5.650141] pci 0000:80:01.2: bridge window [io  0x1000-0x0fff] to [bus 82] add_size 1000
[    5.658312] pci 0000:80:01.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 82] add_size 200000 add_align 100000
[    5.669782] pci 0000:80:01.1: bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]: assigned
[    5.678733] pci 0000:80:01.2: bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]: assigned
[    5.687685] pci 0000:80:01.1: bridge window [io  0x7000-0x7fff]: assigned
[    5.694471] pci 0000:80:01.2: bridge window [io  0x8000-0x8fff]: assigned
[    5.701255] pci 0000:80:01.1: PCI bridge to [bus 81]
[    5.706241] pci 0000:80:01.1:   bridge window [io  0x7000-0x7fff]
[    5.712335] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    5.719119] pci 0000:80:01.1:   bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.727384] pci 0000:80:01.2: PCI bridge to [bus 82]
[    5.732354] pci 0000:80:01.2:   bridge window [io  0x8000-0x8fff]
[    5.738447] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    5.745233] pci 0000:80:01.2:   bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.753495] pci 0000:80:07.1: PCI bridge to [bus 83]
[    5.758466] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    5.765257] pci 0000:80:08.1: PCI bridge to [bus 84]
[    5.770228] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    5.777017] pci 0000:80:08.2: PCI bridge to [bus 85]
[    5.781990] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    5.788786] pci_bus 0000:80: resource 4 [io  0x7000-0x9fff window]
[    5.794970] pci_bus 0000:80: resource 5 [mem 0xab000000-0xc5ffffff window]
[    5.801842] pci_bus 0000:80: resource 6 [mem 0x2bf40000000-0x47e7fffffff window]
[    5.809261] pci_bus 0000:81: resource 0 [io  0x7000-0x7fff]
[    5.814834] pci_bus 0000:81: resource 1 [mem 0xbf400000-0xbf7fffff]
[    5.821100] pci_bus 0000:81: resource 2 [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.828837] pci_bus 0000:82: resource 0 [io  0x8000-0x8fff]
[    5.834412] pci_bus 0000:82: resource 1 [mem 0xbf000000-0xbf3fffff]
[    5.840677] pci_bus 0000:82: resource 2 [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.848420] pci_bus 0000:83: resource 1 [mem 0xbfa00000-0xbfafffff]
[    5.854691] pci_bus 0000:84: resource 1 [mem 0xbf900000-0xbf9fffff]
[    5.860957] pci_bus 0000:85: resource 1 [mem 0xbf800000-0xbf8fffff]
[    5.867295] pci 0000:c0:03.1: bridge window [io  0x1000-0x0fff] to [bus c4] add_size 1000
[    5.875479] pci 0000:c0:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c4] add_size 200000 add_align 100000
[    5.886955] pci 0000:c0:03.2: bridge window [io  0x1000-0x0fff] to [bus c5] add_size 1000
[    5.895130] pci 0000:c0:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c5] add_size 200000 add_align 100000
[    5.906595] pci 0000:c0:03.3: bridge window [io  0x1000-0x0fff] to [bus c6] add_size 1000
[    5.914777] pci 0000:c0:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c6] add_size 200000 add_align 100000
[    5.926244] pci 0000:c0:03.4: bridge window [io  0x1000-0x0fff] to [bus c7] add_size 1000
[    5.934416] pci 0000:c0:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c7] add_size 200000 add_align 100000
[    5.945883] pci 0000:c0:05.1: bridge window [mem 0x00100000-0x000fffff] to [bus c1] add_size 100000 add_align 100000
[    5.956402] pci 0000:c0:03.1: bridge window [mem 0x10000000000-0x100001fffff 64bit pref]: assigned
[    5.965356] pci 0000:c0:03.2: bridge window [mem 0x10000200000-0x100003fffff 64bit pref]: assigned
[    5.974310] pci 0000:c0:03.3: bridge window [mem 0x10000400000-0x100005fffff 64bit pref]: assigned
[    5.983260] pci 0000:c0:03.4: bridge window [mem 0x10000600000-0x100007fffff 64bit pref]: assigned
[    5.992214] pci 0000:c0:05.1: bridge window [mem 0xc7100000-0xc71fffff]: assigned
[    5.999693] pci 0000:c0:03.1: bridge window [io  0xa000-0xafff]: assigned
[    6.006477] pci 0000:c0:03.2: bridge window [io  0xb000-0xbfff]: assigned
[    6.013264] pci 0000:c0:03.3: bridge window [io  0xc000-0xcfff]: assigned
[    6.020051] pci 0000:c0:03.4: bridge window [io  0xd000-0xdfff]: assigned
[    6.026838] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    6.031803] pci 0000:c0:03.1:   bridge window [io  0xa000-0xafff]
[    6.037896] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    6.044681] pci 0000:c0:03.1:   bridge window [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.052942] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    6.057905] pci 0000:c0:03.2:   bridge window [io  0xb000-0xbfff]
[    6.064001] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    6.070787] pci 0000:c0:03.2:   bridge window [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.079046] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    6.084010] pci 0000:c0:03.3:   bridge window [io  0xc000-0xcfff]
[    6.090104] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    6.096888] pci 0000:c0:03.3:   bridge window [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.105149] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    6.110114] pci 0000:c0:03.4:   bridge window [io  0xd000-0xdfff]
[    6.116234] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    6.123020] pci 0000:c0:03.4:   bridge window [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.131282] pci 0000:c1:00.0: ROM [mem 0xc7100000-0xc713ffff pref]: assigned
[    6.138336] pci 0000:c1:00.1: ROM [mem 0xc7140000-0xc717ffff pref]: assigned
[    6.145378] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    6.150348] pci 0000:c0:05.1:   bridge window [mem 0xc7100000-0xc71fffff]
[    6.157142] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.164893] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    6.169866] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    6.176661] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.184409] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    6.189643] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    6.196438] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.204185] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    6.209161] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    6.215958] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    6.220971] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    6.227761] pci_bus 0000:c0: resource 4 [io  0xa000-0xffff window]
[    6.233943] pci_bus 0000:c0: resource 5 [mem 0xc6000000-0xe0ffffff window]
[    6.240817] pci_bus 0000:c0: resource 6 [mem 0x10000000000-0x2bf3fffffff window]
[    6.248209] pci_bus 0000:c0: resource 7 [io  0x03b0-0x03df window]
[    6.254388] pci_bus 0000:c0: resource 8 [mem 0x000a0000-0x000bffff window]
[    6.261262] pci_bus 0000:c4: resource 0 [io  0xa000-0xafff]
[    6.266834] pci_bus 0000:c4: resource 1 [mem 0xdb600000-0xdb9fffff]
[    6.273098] pci_bus 0000:c4: resource 2 [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.280839] pci_bus 0000:c5: resource 0 [io  0xb000-0xbfff]
[    6.286410] pci_bus 0000:c5: resource 1 [mem 0xdb200000-0xdb5fffff]
[    6.292679] pci_bus 0000:c5: resource 2 [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.300419] pci_bus 0000:c6: resource 0 [io  0xc000-0xcfff]
[    6.305999] pci_bus 0000:c6: resource 1 [mem 0xdae00000-0xdb1fffff]
[    6.312265] pci_bus 0000:c6: resource 2 [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.320004] pci_bus 0000:c7: resource 0 [io  0xd000-0xdfff]
[    6.325579] pci_bus 0000:c7: resource 1 [mem 0xdaa00000-0xdadfffff]
[    6.331852] pci_bus 0000:c7: resource 2 [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.339591] pci_bus 0000:c1: resource 1 [mem 0xc7100000-0xc71fffff]
[    6.345858] pci_bus 0000:c1: resource 2 [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.353086] pci_bus 0000:c2: resource 1 [mem 0xda000000-0xda8fffff]
[    6.359350] pci_bus 0000:c2: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.366569] pci_bus 0000:c3: resource 1 [mem 0xda000000-0xda8fffff]
[    6.372837] pci_bus 0000:c3: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.380055] pci_bus 0000:c8: resource 1 [mem 0xdbb00000-0xdbbfffff]
[    6.386323] pci_bus 0000:c9: resource 1 [mem 0xdba00000-0xdbafffff]
[    6.393421] PCI: CLS 64 bytes, default 64
[    6.397530] Trying to unpack rootfs image as initramfs...
[    6.457535] AMD-Vi: IOMMU SNP support enabled.
[    6.462167] pci 0000:c0:00.2: AMD-Vi: IOMMU performance counters supported
[    6.469235] pci 0000:c0:01.0: Adding to iommu group 0
[    6.474342] pci 0000:c0:02.0: Adding to iommu group 1
[    6.479541] pci 0000:c0:03.0: Adding to iommu group 2
[    6.484639] pci 0000:c0:03.1: Adding to iommu group 2
[    6.489742] pci 0000:c0:03.2: Adding to iommu group 2
[    6.494838] pci 0000:c0:03.3: Adding to iommu group 2
[    6.499938] pci 0000:c0:03.4: Adding to iommu group 2
[    6.505047] pci 0000:c0:04.0: Adding to iommu group 3
[    6.510195] pci 0000:c0:05.0: Adding to iommu group 4
[    6.515294] pci 0000:c0:05.1: Adding to iommu group 4
[    6.520395] pci 0000:c0:05.2: Adding to iommu group 4
[    6.525502] pci 0000:c0:07.0: Adding to iommu group 5
[    6.530593] pci 0000:c0:07.1: Adding to iommu group 6
[    6.535700] pci 0000:c0:08.0: Adding to iommu group 7
[    6.540786] pci 0000:c0:08.1: Adding to iommu group 8
[    6.545848] pci 0000:c1:00.0: Adding to iommu group 4
[    6.550905] pci 0000:c1:00.1: Adding to iommu group 4
[    6.555967] pci 0000:c2:00.0: Adding to iommu group 4
[    6.561030] pci 0000:c3:00.0: Adding to iommu group 4
[    6.566118] pci 0000:c8:00.0: Adding to iommu group 9
[    6.571208] pci 0000:c8:00.2: Adding to iommu group 10
[    6.576379] pci 0000:c9:00.0: Adding to iommu group 11
[    6.581552] pci 0000:c9:00.2: Adding to iommu group 12
[    6.592965] pci 0000:80:00.2: AMD-Vi: IOMMU performance counters supported
[    6.600029] pci 0000:80:01.0: Adding to iommu group 13
[    6.605224] pci 0000:80:01.1: Adding to iommu group 13
[    6.610405] pci 0000:80:01.2: Adding to iommu group 13
[    6.615600] pci 0000:80:02.0: Adding to iommu group 14
[    6.620792] pci 0000:80:03.0: Adding to iommu group 15
[    6.625993] pci 0000:80:04.0: Adding to iommu group 16
[    6.631190] pci 0000:80:05.0: Adding to iommu group 17
[    6.636383] pci 0000:80:07.0: Adding to iommu group 18
[    6.641559] pci 0000:80:07.1: Adding to iommu group 19
[    6.646758] pci 0000:80:08.0: Adding to iommu group 20
[    6.651936] pci 0000:80:08.1: Adding to iommu group 21
[    6.657107] pci 0000:80:08.2: Adding to iommu group 22
[    6.662282] pci 0000:83:00.0: Adding to iommu group 23
[    6.667459] pci 0000:83:00.2: Adding to iommu group 24
[    6.672684] pci 0000:84:00.0: Adding to iommu group 25
[    6.677857] pci 0000:84:00.2: Adding to iommu group 26
[    6.683031] pci 0000:85:00.0: Adding to iommu group 27
[    6.695306] pci 0000:40:00.2: AMD-Vi: IOMMU performance counters supported
[    6.702314] pci 0000:40:01.0: Adding to iommu group 28
[    6.707512] pci 0000:40:02.0: Adding to iommu group 29
[    6.712802] pci 0000:40:03.0: Adding to iommu group 30
[    6.717977] pci 0000:40:03.1: Adding to iommu group 30
[    6.723152] pci 0000:40:03.2: Adding to iommu group 30
[    6.728326] pci 0000:40:03.3: Adding to iommu group 30
[    6.733499] pci 0000:40:03.4: Adding to iommu group 30
[    6.738690] pci 0000:40:04.0: Adding to iommu group 31
[    6.743886] pci 0000:40:05.0: Adding to iommu group 32
[    6.749084] pci 0000:40:07.0: Adding to iommu group 33
[    6.754264] pci 0000:40:07.1: Adding to iommu group 34
[    6.759457] pci 0000:40:08.0: Adding to iommu group 35
[    6.764625] pci 0000:40:08.1: Adding to iommu group 36
[    6.769801] pci 0000:45:00.0: Adding to iommu group 37
[    6.774975] pci 0000:45:00.2: Adding to iommu group 38
[    6.780150] pci 0000:46:00.0: Adding to iommu group 39
[    6.785324] pci 0000:46:00.1: Adding to iommu group 40
[    6.790498] pci 0000:46:00.2: Adding to iommu group 41
[    6.795674] pci 0000:46:00.3: Adding to iommu group 42
[    6.807897] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    6.814909] pci 0000:00:00.0: Adding to iommu group 43
[    6.820105] pci 0000:00:01.0: Adding to iommu group 44
[    6.825296] pci 0000:00:02.0: Adding to iommu group 45
[    6.830489] pci 0000:00:03.0: Adding to iommu group 46
[    6.833700] Freeing initrd memory: 38564K
[    6.835661] pci 0000:00:03.2: Adding to iommu group 47
[    6.844832] pci 0000:00:04.0: Adding to iommu group 48
[    6.850032] pci 0000:00:05.0: Adding to iommu group 49
[    6.855223] pci 0000:00:07.0: Adding to iommu group 50
[    6.860395] pci 0000:00:07.1: Adding to iommu group 51
[    6.865587] pci 0000:00:08.0: Adding to iommu group 52
[    6.870757] pci 0000:00:08.1: Adding to iommu group 53
[    6.876030] pci 0000:00:14.0: Adding to iommu group 54
[    6.881200] pci 0000:00:14.3: Adding to iommu group 54
[    6.886554] pci 0000:00:18.0: Adding to iommu group 55
[    6.891730] pci 0000:00:18.1: Adding to iommu group 55
[    6.896905] pci 0000:00:18.2: Adding to iommu group 55
[    6.902079] pci 0000:00:18.3: Adding to iommu group 55
[    6.907252] pci 0000:00:18.4: Adding to iommu group 55
[    6.912426] pci 0000:00:18.5: Adding to iommu group 55
[    6.917603] pci 0000:00:18.6: Adding to iommu group 55
[    6.922774] pci 0000:00:18.7: Adding to iommu group 55
[    6.927951] pci 0000:01:00.0: Adding to iommu group 56
[    6.933123] pci 0000:02:00.0: Adding to iommu group 57
[    6.938300] pci 0000:02:00.2: Adding to iommu group 58
[    6.943471] pci 0000:03:00.0: Adding to iommu group 59
[    6.948646] pci 0000:03:00.2: Adding to iommu group 60
[    6.953821] pci 0000:03:00.3: Adding to iommu group 61
[    6.967587] AMD-Vi: Extended features (0x841f77e022094ace, 0x0): PPR X2APIC NX IA GA PC SNP
[    6.975951] AMD-Vi: Interrupt remapping enabled
[    6.980487] AMD-Vi: X2APIC enabled
[    6.985124] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    6.991567] software IO TLB: mapped [mem 0x000000005bf37000-0x0000000063f37000] (128MB)
[    6.999714] LVT offset 0 assigned for vector 0x400
[    7.006097] perf: AMD IBS detected (0x000003ff)
[    7.011958] amd_uncore: 4 amd_df counters detected
[    7.016796] amd_uncore: 6 amd_l3 counters detected
[    7.022996] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    7.030158] perf/amd_iommu: Detected AMD IOMMU #1 (2 banks, 4 counters/bank).
[    7.037319] perf/amd_iommu: Detected AMD IOMMU #2 (2 banks, 4 counters/bank).
[    7.044476] perf/amd_iommu: Detected AMD IOMMU #3 (2 banks, 4 counters/bank).
[    7.054857] Initialise system trusted keyrings
[    7.059311] Key type blacklist registered
[    7.063476] workingset: timestamp_bits=36 max_order=26 bucket_order=0
[    7.070449] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    7.076448] fuse: init (API version 7.44)
[    7.080741] integrity: Platform Keyring initialized
[    7.097635] Key type asymmetric registered
[    7.101732] Asymmetric key parser 'x509' registered
[    7.106646] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    7.114143] io scheduler mq-deadline registered
[    7.121300] ledtrig-cpu: registered to indicate activity on CPUs
[    7.127607] pcieport 0000:00:03.2: PME: Signaling with IRQ 38
[    7.133757] pcieport 0000:00:07.1: PME: Signaling with IRQ 40
[    7.139735] pcieport 0000:00:08.1: PME: Signaling with IRQ 41
[    7.145708] pcieport 0000:40:03.1: PME: Signaling with IRQ 42
[    7.151507] pcieport 0000:40:03.1: pciehp: Slot #167 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.165559] pcieport 0000:40:03.2: PME: Signaling with IRQ 43
[    7.171362] pcieport 0000:40:03.2: pciehp: Slot #166 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.185371] pcieport 0000:40:03.3: PME: Signaling with IRQ 44
[    7.191183] pcieport 0000:40:03.3: pciehp: Slot #169 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.205194] pcieport 0000:40:03.4: PME: Signaling with IRQ 45
[    7.210997] pcieport 0000:40:03.4: pciehp: Slot #168 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.225080] pcieport 0000:40:07.1: PME: Signaling with IRQ 47
[    7.231041] pcieport 0000:40:08.1: PME: Signaling with IRQ 48
[    7.237160] pcieport 0000:80:01.1: PME: Signaling with IRQ 49
[    7.242974] pcieport 0000:80:01.1: pciehp: Slot #160 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.256996] pcieport 0000:80:01.2: PME: Signaling with IRQ 50
[    7.262794] pcieport 0000:80:01.2: pciehp: Slot #161 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.276951] pcieport 0000:80:07.1: PME: Signaling with IRQ 52
[    7.283017] pcieport 0000:80:08.1: PME: Signaling with IRQ 54
[    7.289065] pcieport 0000:80:08.2: PME: Signaling with IRQ 55
[    7.295026] pcieport 0000:c0:03.1: PME: Signaling with IRQ 56
[    7.300826] pcieport 0000:c0:03.1: pciehp: Slot #163 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.314834] pcieport 0000:c0:03.2: PME: Signaling with IRQ 57
[    7.320641] pcieport 0000:c0:03.2: pciehp: Slot #162 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.334647] pcieport 0000:c0:03.3: PME: Signaling with IRQ 58
[    7.340464] pcieport 0000:c0:03.3: pciehp: Slot #165 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.354462] pcieport 0000:c0:03.4: PME: Signaling with IRQ 59
[    7.360267] pcieport 0000:c0:03.4: pciehp: Slot #164 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.374250] pcieport 0000:c0:05.1: PME: Signaling with IRQ 60
[    7.380191] pcieport 0000:c0:05.2: PME: Signaling with IRQ 61
[    7.386247] pcieport 0000:c0:07.1: PME: Signaling with IRQ 63
[    7.392303] pcieport 0000:c0:08.1: PME: Signaling with IRQ 65
[    7.398966] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    7.406434] ACPI: button: Power Button [PWRF]
[    7.855073] Estimated ratio of average max frequency by base frequency (times 1024): 1464
[    7.863615] ERST: Error Record Serialization Table (ERST) support is initialized.
[    7.871133] pstore: Using crash dump compression: deflate
[    7.876532] pstore: Registered erst as persistent store backend
[    7.882609] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    7.889175] 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    7.897353] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    7.908488] Linux agpgart interface v0.103
[    7.939153] loop: module loaded
[    7.953889] ahci 0000:85:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[    7.961902] ahci 0000:85:00.0: 8/8 ports implemented (port mask 0xff)
[    7.968384] ahci 0000:85:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part sxs 
[    7.978710] scsi host0: ahci
[    7.981848] scsi host1: ahci
[    7.984955] scsi host2: ahci
[    7.988048] scsi host3: ahci
[    7.991150] scsi host4: ahci
[    7.994261] scsi host5: ahci
[    7.997358] scsi host6: ahci
[    8.000461] scsi host7: ahci
[    8.003419] ata1: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800100 irq 67 lpm-pol 0 ext
[    8.012031] ata2: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800180 irq 68 lpm-pol 0 ext
[    8.020643] ata3: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800200 irq 69 lpm-pol 0 ext
[    8.029246] ata4: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800280 irq 70 lpm-pol 0 ext
[    8.037856] ata5: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800300 irq 71 lpm-pol 0 ext
[    8.046461] ata6: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800380 irq 72 lpm-pol 0 ext
[    8.055071] ata7: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800400 irq 73 lpm-pol 0 ext
[    8.063686] ata8: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800480 irq 74 lpm-pol 0 ext
[    8.072317] tsc: Refined TSC clocksource calibration: 1996.249 MHz
[    8.072780] tun: Universal TUN/TAP device driver, 1.6
[    8.078555] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398cadd9d93, max_idle_ns: 881590552906 ns
[    8.083639] PPP generic driver version 2.4.2
[    8.097865] clocksource: Switched to clocksource tsc
[    8.098044] VFIO - User Level meta-driver version: 0.3
[    8.108370] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.113606] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 1
[    8.121111] xhci_hcd 0000:03:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.130667] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.135903] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 2
[    8.143304] xhci_hcd 0000:03:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.150404] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.158670] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.165893] usb usb1: Product: xHCI Host Controller
[    8.170771] usb usb1: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.179750] usb usb1: SerialNumber: 0000:03:00.3
[    8.184555] hub 1-0:1.0: USB hub found
[    8.188322] hub 1-0:1.0: 2 ports detected
[    8.193187] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.201315] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.209583] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.216804] usb usb2: Product: xHCI Host Controller
[    8.221689] usb usb2: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.230641] usb usb2: SerialNumber: 0000:03:00.3
[    8.235404] hub 2-0:1.0: USB hub found
[    8.239169] hub 2-0:1.0: 2 ports detected
[    8.244100] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.249332] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 3
[    8.256819] xhci_hcd 0000:46:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.266329] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.271555] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 4
[    8.278948] xhci_hcd 0000:46:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.286103] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.294368] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.301594] usb usb3: Product: xHCI Host Controller
[    8.306470] usb usb3: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.315429] usb usb3: SerialNumber: 0000:46:00.3
[    8.320204] hub 3-0:1.0: USB hub found
[    8.323969] hub 3-0:1.0: 2 ports detected
[    8.328796] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.336913] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.345186] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.352408] usb usb4: Product: xHCI Host Controller
[    8.357293] usb usb4: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.366244] usb usb4: SerialNumber: 0000:46:00.3
[    8.371015] hub 4-0:1.0: USB hub found
[    8.374782] hub 4-0:1.0: 2 ports detected
[    8.379823] usbcore: registered new interface driver uas
[    8.385168] ata5: SATA link down (SStatus 0 SControl 300)
[    8.385177] usbcore: registered new interface driver usb-storage
[    8.390598] ata2: SATA link down (SStatus 0 SControl 300)
[    8.396605] i8042: PNP: No PS/2 controller found.
[    8.401998] ata7: SATA link down (SStatus 0 SControl 300)
[    8.406767] mousedev: PS/2 mouse device common for all mice
[    8.412104] ata8: SATA link down (SStatus 0 SControl 300)
[    8.417764] rtc_cmos 00:02: RTC can wake from S4
[    8.423075] ata6: SATA link down (SStatus 0 SControl 300)
[    8.428039] rtc_cmos 00:02: registered as rtc0
[    8.433098] ata1: SATA link down (SStatus 0 SControl 300)
[    8.437589] rtc_cmos 00:02: setting system clock to 2025-06-17T12:58:38 UTC (1750165118)
[    8.440259] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[    8.442940] ata3: SATA link down (SStatus 0 SControl 300)
[    8.451042] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram
[    8.457552] ata4: SATA link down (SStatus 0 SControl 300)
[    8.462936] i2c_dev: i2c /dev entries driver
[    8.479311] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    8.491525] device-mapper: uevent: version 1.0.3
[    8.496263] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists•linux.dev
[    8.505138] amd_pstate: driver load is disabled, boot with specific mode to enable this
[    8.513181] efifb: probing for efifb
[    8.516780] efifb: No BGRT, not showing boot graphics
[    8.521835] efifb: framebuffer at 0xc6000000, using 3072k, total 3072k
[    8.528369] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    8.534376] efifb: scrolling: redraw
[    8.537950] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    8.543603] fbcon: Deferring console take-over
[    8.548049] fb0: EFI VGA frame buffer device
[    8.552427] drop_monitor: Initializing network drop monitor service
[    8.558862] NET: Registered PF_INET6 protocol family
[    8.570736] Segment Routing with IPv6
[    8.574413] In-situ OAM (IOAM) with IPv6
[    8.576260] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[    8.578358] NET: Registered PF_PACKET protocol family
[    8.579126] usb 1-1: New USB device found, idVendor=0424, idProduct=2744, bcdDevice= 1.21
[    8.579130] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    8.579132] usb 1-1: Product: USB2734
[    8.579135] usb 1-1: Manufacturer: Microchip Tech
[    8.613692] Key type dns_resolver registered
[    8.630322] x86/amd: Previous system reset reason [0x00080800]: software wrote 0x6 to reset control register 0xCF9
[    8.630829] hub 1-1:1.0: USB hub found
[    8.640692] microcode: Current revision: 0x0a0011d5
[    8.644755] hub 1-1:1.0: 4 ports detected
[    8.649307] microcode: Updated early from: 0x0a0011d5
[    8.661783] resctrl: L3 allocation detected
[    8.665974] resctrl: MB allocation detected
[    8.670156] resctrl: L3 monitoring detected
[    8.674511] IPI shorthand broadcast: enabled
[    8.682482] sched_clock: Marking stable (8616001178, 64238722)->(9558772456, -878532556)
[    8.691174] registered taskstats version 1
[    8.697633] Loading compiled-in X.509 certificates
[    8.700382] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
[    8.702942] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.723519] Demotion targets for Node 0: null
[    8.724642] usb 2-1: New USB device found, idVendor=0424, idProduct=5744, bcdDevice= 1.21
[    8.727877] Demotion targets for Node 1: null
[    8.729246] usb 3-1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    8.729249] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.736049] usb 2-1: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[    8.741004] Key type .fscrypt registered
[    8.748706] usb 2-1: Product: USB5734
[    8.755835] Key type fscrypt-provisioning registered
[    8.762967] usb 2-1: Manufacturer: Microchip Tech
[    8.766436] hub 3-1:1.0: USB hub found
[    8.766622] hub 3-1:1.0: 4 ports detected
[    8.783841] Key type encrypted registered
[    8.792008] AppArmor: AppArmor sha256 policy hashing enabled
[    8.797744] integrity: Loading X.509 certificate: UEFI:db
[    8.803168] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    8.806768] hub 2-1:1.0: USB hub found
[    8.813946] integrity: Loading X.509 certificate: UEFI:db
[    8.813963] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    8.817725] hub 2-1:1.0: 4 ports detected
[    8.823094] integrity: Loading X.509 certificate: UEFI:db
[    8.823217] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    8.852407] integrity: Loading X.509 certificate: UEFI:db
[    8.857936] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    8.869531] ima: No TPM chip found, activating TPM-bypass!
[    8.875018] Loading compiled-in module X.509 certificates
[    8.880831] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.890737] ima: Allocated hash algorithm: sha1
[    8.895276] ima: No architecture policies found
[    8.899830] evm: Initialising EVM extended attributes:
[    8.904970] evm: security.selinux
[    8.908287] evm: security.SMACK64
[    8.911602] evm: security.SMACK64EXEC
[    8.915273] evm: security.SMACK64TRANSMUTE
[    8.919407] evm: security.SMACK64MMAP
[    8.923073] evm: security.apparmor
[    8.926475] evm: security.ima
[    8.929453] evm: security.capability
[    8.933028] evm: HMAC attrs: 0x1
[    8.936642] PM:   Magic number: 13:990:986
[    8.941326] RAS: Correctable Errors collector initialized.
[    8.946998] clk: Disabling unused clocks
[    8.950926] PM: genpd: Disabling unused power domains
[    8.957741] Freeing unused decrypted memory: 2028K
[    8.963322] Freeing unused kernel image (initmem) memory: 4760K
[    8.969253] Write protecting the kernel read-only data: 26624k
[    8.975523] Freeing unused kernel image (text/rodata gap) memory: 28K
[    8.982139] Freeing unused kernel image (rodata/data gap) memory: 248K
[    9.075672] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    9.082115] Run /init as init process
[    9.092566] systemd[1]: Inserted module 'autofs4'
[    9.320450] systemd[1]: systemd 252-46.el9_5.3 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)
[    9.352898] systemd[1]: Detected architecture x86-64.
[    9.357958] systemd[1]: Running in initrd.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow) dracut-057-80.git20250411.el9_5 (Initramfs)^[[0m!

[    9.376338] systemd[1]: Hostname set to <sharavati.amd.com>.
[    9.478357] systemd[1]: Queued start job for default target Initrd Default Target.
[    9.486043] systemd[1]: Reached target Initrd /usr File System.
[^[[0;32m  OK  ^[[[    9.492253] usb 3-1.1: new high-speed USB device number 3 using xhci_hcd
0m] Reached target ^[[0;1;39mInitrd /usr File System^[[0m.
[    9.512314] systemd[1]: Reached target Local File Systems.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
[    9.528310] systemd[1]: Reached target Slice Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSlice Units^[[0m.
[    9.544305] systemd[1]: Reached target Swaps.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwaps^[[0m.
[    9.560292] systemd[1]: Reached target Timer Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[    9.576433] systemd[1]: Listening on D-Bus System Message Bus Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[    9.589247] usb 3-1.1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    9.598185] usb 3-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    9.598289] systemd[1]: Listening on Journal Socket (/dev/log).
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket (/dev/log)^[[0m.
[    9.624461] systemd[1]: Listening on Journal Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket^[[0m.
[    9.640465] systemd[1]: Listening on udev Control Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[    9.656407] systemd[1]: Listening on udev Kernel Socket.
[^[[0;32m  OK  ^[[[    9.662489] hub 3-1.1:1.0: USB hub found
0m] Listening on[    9.667248] hub 3-1.1:1.0: 4 ports detected
 ^[[0;1;39mudev Kernel Socket^[[0m.
[    9.680301] systemd[1]: Reached target Socket Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
[    9.722283] systemd[1]: Starting Create List of Static Device Nodes...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
[    9.742716] systemd[1]: Starting Journal Service...
[    9.744253] usb 3-1.4: new high-speed USB device number 4 using xhci_hcd
         Starting ^[[0;1;39mJournal Service^[[0m...
[    9.765761] systemd[1]: Starting Load Kernel Modules...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
[    9.781650] systemd[1]: Starting Create System Users...
         Starting ^[[0;1;39mCreate System Users^[[0m...
[    9.797822] systemd[1]: Starting Setup Virtual Console...
         Starting ^[[0;1;39mSetup Virtual Console^[[0m...
[    9.813696] systemd[1]: Finished Create List of Static Device Nodes.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[    9.836471] systemd[1]: Started Journal Service.
[^[[0;32m  OK  ^[[[    9.841252] usb 3-1.4: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
0m] Started ^[[0;[    9.850871] usb 3-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSetup Virtual Console^[[0m.
[    9.886566] hub 3-1.4:1.0: USB hub found
[    9.890746] hub 3-1.4:1.0: 4 ports detected
         Starting ^[[0;1;39mdracut cmdline hook^[[0m...
         Starting ^[[0;1;39mApply Kernel Variables^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate System Users^[[0m.
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut cmdline hook^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Starting ^[[0;1;39mdracut pre-udev hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-udev hook^[[0m.
         Starting ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[   10.357045] wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQBC data block query control method not found
[^[[0;32m  OK  ^[[0m] Finished ^[[0[   10.368882] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
;1;39mColdplug A[   10.369205] ccp 0000:46:00.1: no command queues available
ll udev Devices^[[   10.375216] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[0m.
[   10.382008] ccp 0000:46:00.1: sev enabled
[   10.390547] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[   10.394889] ccp 0000:46:00.1: psp enabled
[   10.400536] tg3 0000:c1:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:90
[   10.416570] tg3 0000:c1:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.416575] tg3 0000:c1:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.434224] tg3 0000:c1:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[^[[0;32m  OK  ^[[[   10.442106] mpt3sas version 52.100.00.00 loaded
0m] Reached targ[   10.446911] ACPI: bus type drm_connector registered
et ^[[0;1;39mSyst[   10.447702] mpt3sas_cm0: 63 BIT PCI BUS DMA ADDRESSING SUPPORTED, total mem (262592944 kB)
em Initialization^[[0m.
[   10.465649] tg3 0000:c1:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:91
[   10.476168] tg3 0000:c1:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.486004] tg3 0000:c1:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.486007] tg3 0000:c1:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[^[[0;32m  OK  ^[[[   10.500672] mgag200 0000:c3:00.0: vgaarb: deactivate vga console
0m] Reached target ^[[0;1;39mNetw[   10.509893] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
ork^[[0m.
[   10.514267] [drm] Initialized mgag200 1.0.0 for 0000:c3:00.0 on minor 0
[   10.518826] mpt3sas_cm0: MSI-X vectors supported: 96
[   10.531246] 	 no of cores: 128, max_msix_vectors: -1
[   10.531248] mpt3sas_cm0:  0 96 96
[   10.531250] fbcon: mgag200drmfb (fb0) is primary device
[   10.531252] fbcon: Deferring console take-over
[   10.535224] mpt3sas_cm0: High IOPs queues : disabled
[   10.536224] mgag200 0000:c3:00.0: [drm] fb0: mgag200drmfb frame buffer device
[   10.539540] mpt3sas0-msix0: PCI-MSI-X enabled: IRQ 108
[   10.566448] mpt3sas0-msix1: PCI-MSI-X enabled: IRQ 109
[   10.571591] mpt3sas0-msix2: PCI-MSI-X enabled: IRQ 110
[   10.576728] mpt3sas0-msix3: PCI-MSI-X enabled: IRQ 111
[   10.581867] mpt3sas0-msix4: PCI-MSI-X enabled: IRQ 112
[   10.587005] mpt3sas0-msix5: PCI-MSI-X enabled: IRQ 113
[   10.592145] mpt3sas0-msix6: PCI-MSI-X enabled: IRQ 114
[   10.597284] mpt3sas0-msix7: PCI-MSI-X enabled: IRQ 115
[   10.602422] mpt3sas0-msix8: PCI-MSI-X enabled: IRQ 116
[   10.607562] mpt3sas0-msix9: PCI-MSI-X enabled: IRQ 117
[   10.612702] mpt3sas0-msix10: PCI-MSI-X enabled: IRQ 118
[   10.617929] mpt3sas0-msix11: PCI-MSI-X enabled: IRQ 119
[   10.623154] mpt3sas0-msix12: PCI-MSI-X enabled: IRQ 120
[   10.628384] mpt3sas0-msix13: PCI-MSI-X enabled: IRQ 121
[   10.633613] mpt3sas0-msix14: PCI-MSI-X enabled: IRQ 122
[   10.638841] mpt3sas0-msix15: PCI-MSI-X enabled: IRQ 123
[   10.644066] mpt3sas0-msix16: PCI-MSI-X enabled: IRQ 124
[   10.649292] mpt3sas0-msix17: PCI-MSI-X enabled: IRQ 125
[   10.654516] mpt3sas0-msix18: PCI-MSI-X enabled: IRQ 126
[   10.659743] mpt3sas0-msix19: PCI-MSI-X enabled: IRQ 127
[   10.664970] mpt3sas0-msix20: PCI-MSI-X enabled: IRQ 128
[   10.670195] mpt3sas0-msix21: PCI-MSI-X enabled: IRQ 129
[   10.675420] mpt3sas0-msix22: PCI-MSI-X enabled: IRQ 130
[   10.680649] mpt3sas0-msix23: PCI-MSI-X enabled: IRQ 131
[   10.685872] mpt3sas0-msix24: PCI-MSI-X enabled: IRQ 132
[   10.691099] mpt3sas0-msix25: PCI-MSI-X enabled: IRQ 133
[   10.696325] mpt3sas0-msix26: PCI-MSI-X enabled: IRQ 134
[   10.701550] mpt3sas0-msix27: PCI-MSI-X enabled: IRQ 135
[   10.706776] mpt3sas0-msix28: PCI-MSI-X enabled: IRQ 136
[   10.712001] mpt3sas0-msix29: PCI-MSI-X enabled: IRQ 137
[   10.717227] mpt3sas0-msix30: PCI-MSI-X enabled: IRQ 138
[   10.722454] mpt3sas0-msix31: PCI-MSI-X enabled: IRQ 139
[   10.727680] mpt3sas0-msix32: PCI-MSI-X enabled: IRQ 140
[   10.732908] mpt3sas0-msix33: PCI-MSI-X enabled: IRQ 141
[   10.738150] mpt3sas0-msix34: PCI-MSI-X enabled: IRQ 142
[   10.743375] mpt3sas0-msix35: PCI-MSI-X enabled: IRQ 143
[   10.748603] mpt3sas0-msix36: PCI-MSI-X enabled: IRQ 144
[   10.753829] mpt3sas0-msix37: PCI-MSI-X enabled: IRQ 145
[   10.753831] mpt3sas0-msix38: PCI-MSI-X enabled: IRQ 146
[   10.753833] mpt3sas0-msix39: PCI-MSI-X enabled: IRQ 147
[   10.753834] mpt3sas0-msix40: PCI-MSI-X enabled: IRQ 148
[   10.753836] mpt3sas0-msix41: PCI-MSI-X enabled: IRQ 149
         Startin[   10.779964] mpt3sas0-msix42: PCI-MSI-X enabled: IRQ 150
g ^[[0;1;39mdracu[   10.786576] mpt3sas0-msix43: PCI-MSI-X enabled: IRQ 151
t initqueue hook[   10.793189] mpt3sas0-msix44: PCI-MSI-X enabled: IRQ 152
^[[0m...
[   10.799793] mpt3sas0-msix45: PCI-MSI-X enabled: IRQ 153
[   10.805801] mpt3sas0-msix46: PCI-MSI-X enabled: IRQ 154
[   10.811030] mpt3sas0-msix47: PCI-MSI-X enabled: IRQ 155
[   10.811031] mpt3sas0-msix48: PCI-MSI-X enabled: IRQ 156
[   10.811033] mpt3sas0-msix49: PCI-MSI-X enabled: IRQ 157
[   10.811034] mpt3sas0-msix50: PCI-MSI-X enabled: IRQ 158
[   10.811036] mpt3sas0-msix51: PCI-MSI-X enabled: IRQ 159
[   10.811037] mpt3sas0-msix52: PCI-MSI-X enabled: IRQ 160
[   10.811039] mpt3sas0-msix53: PCI-MSI-X enabled: IRQ 161
[   10.811040] mpt3sas0-msix54: PCI-MSI-X enabled: IRQ 162
[   10.852850] mpt3sas0-msix55: PCI-MSI-X enabled: IRQ 163
[   10.852852] mpt3sas0-msix56: PCI-MSI-X enabled: IRQ 164
[   10.852853] mpt3sas0-msix57: PCI-MSI-X enabled: IRQ 165
[   10.852855] mpt3sas0-msix58: PCI-MSI-X enabled: IRQ 166
[   10.852856] mpt3sas0-msix59: PCI-MSI-X enabled: IRQ 167
[   10.852857] mpt3sas0-msix60: PCI-MSI-X enabled: IRQ 168
[   10.852859] mpt3sas0-msix61: PCI-MSI-X enabled: IRQ 169
[   10.852860] mpt3sas0-msix62: PCI-MSI-X enabled: IRQ 170
[   10.852861] mpt3sas0-msix63: PCI-MSI-X enabled: IRQ 171
         Startin[   10.852863] mpt3sas0-msix64: PCI-MSI-X enabled: IRQ 172
g ^[[0;1;39mShow [   10.906505] mpt3sas0-msix65: PCI-MSI-X enabled: IRQ 173
Plymouth Boot Sc[   10.906507] mpt3sas0-msix66: PCI-MSI-X enabled: IRQ 174
[   10.906509] mpt3sas0-msix67: PCI-MSI-X enabled: IRQ 175
reen^[[0m...
[   10.906510] mpt3sas0-msix68: PCI-MSI-X enabled: IRQ 176
[   10.906511] mpt3sas0-msix69: PCI-MSI-X enabled: IRQ 177
[^[[0;32m  OK  ^[[[   10.906513] mpt3sas0-msix70: PCI-MSI-X enabled: IRQ 178
[   10.906514] mpt3sas0-msix71: PCI-MSI-X enabled: IRQ 179
0m] Started ^[[0;[   10.906516] mpt3sas0-msix72: PCI-MSI-X enabled: IRQ 180
1;39mShow Plymou[   10.955045] mpt3sas0-msix73: PCI-MSI-X enabled: IRQ 181
th Boot Screen^[[[   10.955046] mpt3sas0-msix74: PCI-MSI-X enabled: IRQ 182
0m.
[   10.955048] mpt3sas0-msix75: PCI-MSI-X enabled: IRQ 183
[   10.955049] mpt3sas0-msix76: PCI-MSI-X enabled: IRQ 184
[   10.955050] mpt3sas0-msix77: PCI-MSI-X enabled: IRQ 185
[^[[0;32m  OK  ^[[[   10.955052] mpt3sas0-msix78: PCI-MSI-X enabled: IRQ 186
0m] Started ^[[0;[   10.955053] mpt3sas0-msix79: PCI-MSI-X enabled: IRQ 187
[   10.955055] mpt3sas0-msix80: PCI-MSI-X enabled: IRQ 188
1;39mForward Pas[   11.002911] mpt3sas0-msix81: PCI-MSI-X enabled: IRQ 189
sword Requests t[   11.002913] mpt3sas0-msix82: PCI-MSI-X enabled: IRQ 190
o Plymouth Direc[   11.002914] mpt3sas0-msix83: PCI-MSI-X enabled: IRQ 191
tory Watch^[[0m.\r[   11.002915] mpt3sas0-msix84: PCI-MSI-X enabled: IRQ 192
[   11.002917] mpt3sas0-msix85: PCI-MSI-X enabled: IRQ 193

[^[[0;32m  OK  [   11.002918] mpt3sas0-msix86: PCI-MSI-X enabled: IRQ 194
[   11.002920] mpt3sas0-msix87: PCI-MSI-X enabled: IRQ 195
^[[0m] Reached ta[   11.046406] mpt3sas0-msix88: PCI-MSI-X enabled: IRQ 196
rget ^[[0;1;39mPa[   11.046408] mpt3sas0-msix89: PCI-MSI-X enabled: IRQ 197
th Units^[[0m.
[   11.046409] mpt3sas0-msix90: PCI-MSI-X enabled: IRQ 198
[   11.046410] mpt3sas0-msix91: PCI-MSI-X enabled: IRQ 199
[   11.046412] mpt3sas0-msix92: PCI-MSI-X enabled: IRQ 200
[^[[0;32m  OK  ^[[[   11.046413] mpt3sas0-msix93: PCI-MSI-X enabled: IRQ 201
[   11.046415] mpt3sas0-msix94: PCI-MSI-X enabled: IRQ 202
0m] Reached targ[   11.088516] mpt3sas0-msix95: PCI-MSI-X enabled: IRQ 203
et ^[[0;1;39mBasi[   11.095120] mpt3sas_cm0: iomem(0x00000000e2200000), mapped(0x000000005f671213), size(65536)
c System^[[0m.
[   11.104851] mpt3sas_cm0: ioport(0x0000000000001000), size(256)
[   11.170056] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   11.178060] mpt3sas_cm0: sending message unit reset !!
[   11.185759] mpt3sas_cm0: message unit reset: SUCCESS
[   11.217941] mpt3sas_cm0: scatter gather: sge_in_main_msg(1), sge_per_chain(7), sge_per_io(128), chains_per_io(19)
[   11.229410] mpt3sas_cm0: request pool(0x00000000ef8966c0) - dma(0xe0600000): depth(9700), frame_size(128), pool_size(1212 kB)
[   11.266053] mpt3sas_cm0: sense pool(0x00000000761c508b) - dma(0xdef00000): depth(9463), element_size(96), pool_size (887 kB)
[   11.277362] mpt3sas_cm0: reply pool(0x0000000077e578b6) - dma(0xdec00000): depth(9764), frame_size(128), pool_size(1220 kB)
[   11.288500] mpt3sas_cm0: config page(0x0000000047b9f137) - dma(0xdebee000): size(512)
[   11.296329] mpt3sas_cm0: Allocated physical memory: size(40437 kB)
[   11.302508] mpt3sas_cm0: Current Controller Queue Depth(9460),Max Controller Queue Depth(9584)
[   11.311113] mpt3sas_cm0: Scatter Gather Elements per IO(128)
[   11.362610] mpt3sas_cm0: _base_display_fwpkg_version: complete
[   11.368441] mpt3sas_cm0: FW Package Ver(16.17.01.00)
[   11.373701] mpt3sas_cm0: LSISAS3008: FWVersion(16.00.11.00), ChipRevision(0x02)
[   11.381012] mpt3sas_cm0: Protocol=(Initiator,Target), Capabilities=(TLR,EEDP,Snapshot Buffer,Diag Trace Buffer,Task Set Full,NCQ)
[   11.392735] scsi host8: Fusion MPT SAS Host
[   11.398785] mpt3sas_cm0: sending port enable !!
[   11.403735] mpt3sas_cm0: hba_port entry: 0000000008569414, port: 255 is added to hba_port list
[   11.413500] mpt3sas_cm0: host_add: handle(0x0001), sas_addr(0x52cea7f0be87bf00), phys(8)
[   11.421929] mpt3sas_cm0: handle(0xa) sas_address(0x4433221100000000) port_type(0x1)
[   11.430791] scsi 8:0:0:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.438884] scsi 8:0:0:0: SATA: handle(0x000a), sas_addr(0x4433221100000000), phy(0), device_name(0x500a075131911ad0)
[   11.449480] scsi 8:0:0:0: enclosure logical id (0x52cea7f0be87bf00), slot(1) 
[   11.456614] scsi 8:0:0:0: enclosure level(0x0001), connector name(     )
[   11.463383] scsi 8:0:0:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.471821] scsi 8:0:0:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.486653]  end_device-8:0: add: handle(0x000a), sas_addr(0x4433221100000000)
[   11.493998] mpt3sas_cm0: handle(0xc) sas_address(0x58ce38ee219651a2) port_type(0x1)
[   11.502858] scsi 8:0:1:0: Direct-Access     KIOXIA   KPM6WVUG960G     BD08 PQ: 0 ANSI: 6
[   11.510952] scsi 8:0:1:0: SSP: handle(0x000c), sas_addr(0x58ce38ee219651a2), phy(4), device_name(0x58ce38ee219651a0)
[   11.521463] scsi 8:0:1:0: enclosure logical id (0x52cea7f0be87bf00), slot(0) 
[   11.528595] scsi 8:0:1:0: enclosure level(0x0001), connector name(     )
[   11.535323] scsi 8:0:1:0: qdepth(254), tagged(1), scsi_level(7), cmd_que(1)
[   11.543956]  end_device-8:1: add: handle(0x000c), sas_addr(0x58ce38ee219651a2)
[   11.551301] mpt3sas_cm0: handle(0xb) sas_address(0x4433221106000000) port_type(0x1)
[   11.560096] scsi 8:0:2:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.568195] scsi 8:0:2:0: SATA: handle(0x000b), sas_addr(0x4433221106000000), phy(6), device_name(0x500a075131911a6f)
[   11.578791] scsi 8:0:2:0: enclosure logical id (0x52cea7f0be87bf00), slot(2) 
[   11.585925] scsi 8:0:2:0: enclosure level(0x0001), connector name(     )
[   11.592691] scsi 8:0:2:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.601131] scsi 8:0:2:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.615961]  end_device-8:2: add: handle(0x000b), sas_addr(0x4433221106000000)
[   11.624258] mpt3sas_cm0: port enable: SUCCESS
[   11.628897] scsi 8:0:0:0: Attached scsi generic sg0 type 0
[   11.629558] sd 8:0:0:0: [sda] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.634706] sd 8:0:1:0: Attached scsi generic sg1 type 0
[   11.634937] sd 8:0:1:0: [sdb] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.634941] sd 8:0:1:0: [sdb] 4096-byte physical blocks
[   11.635122] sd 8:0:1:0: [sdb] Write Protect is off
[   11.635339] sd 8:0:1:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   11.641949] sd 8:0:0:0: [sda] 4096-byte physical blocks
[   11.643966] sd 8:0:0:0: [sda] Write Protect is off
[   11.647472] scsi 8:0:2:0: Attached scsi generic sg2 type 0
[   11.648117] sd 8:0:2:0: [sdc] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.648121] sd 8:0:2:0: [sdc] 4096-byte physical blocks
[   11.650127] sd 8:0:2:0: [sdc] Write Protect is off
[   11.651414] sd 8:0:2:0: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.655553] sd 8:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.749504]  sdb: sdb1 sdb2
[   11.752443] sd 8:0:1:0: [sdb] Attached SCSI disk
[   11.782453]  sdc: sdc1 sdc2
[   11.785385] sd 8:0:2:0: [sdc] Attached SCSI disk
[   11.798162]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7
[   11.803504] sd 8:0:0:0: [sda] Attached SCSI disk
[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39m/dev/mapper/rhel_sharavati-root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut initqueue hook^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m.
         Mounting ^[[0;1;39m/sysroot^[[0m...
[   12.518565] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled
[   12.529123] XFS (dm-1): Mounting V5 Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[   12.553646] XFS (dm-1): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/sysroot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root File System^[[0m.
         Starting ^[[0;1;39mMountpoints Configured in the Real Root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMountpoints Configured in the Real Root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Default Target^[[0m.
         Starting ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
         Starting ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Default Target^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd /usr File System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut initqueue hook^[[0m.
         Starting ^[[0;1;39mPlymouth switch root service^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  [   12.830122] systemd-journald[1090]: Received SIGTERM from PID 1 (systemd).
OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mColdplug All udev Devices^[[0m.
         Stopping ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Kernel Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-udev hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut cmdline hook^[[0m.
         Starting ^[[0;1;39mCleanup udev Database^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate System Users^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleanup udev Database^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwitch Root^[[0m.
         Starting ^[[0;1;39mSwitch Root^[[0m...
[   12.942618] systemd[1]: RTC configured in localtime, applying delta of 330 minutes to system time.
[   12.967524] systemd[1]: systemd 252-46.el9_5.3 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)
[   12.999982] systemd[1]: Detected architecture x86-64.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow)^[[0m!

[   13.078692] systemd-rc-local-generator[1713]: /etc/rc.d/rc.local is not marked executable, skipping.
[   13.332647] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[   13.339971] systemd[1]: Stopped Switch Root.
[^[[0;32m  OK  ^[[[   13.344542] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
0m] Stopped ^[[0;[   13.355279] systemd[1]: Created slice Virtual Machine and Container Slice.
1;39mSwitch Root[   13.363606] systemd[1]: Created slice Slice /system/getty.
^[[0m.
[^[[0;32m[   13.370454] systemd[1]: Created slice Slice /system/modprobe.
  OK  ^[[0m] Crea[   13.377803] systemd[1]: Created slice Slice /system/serial-getty.
ted slice ^[[0;1;[   13.385117] systemd[1]: Created slice Slice /system/sshd-keygen.
39mVirtual Machi[   13.392584] systemd[1]: Created slice Slice /system/systemd-fsck.
ne and Container[   13.399821] systemd[1]: Created slice User and Session Slice.
 Slice^[[0m.
[^[[   13.406677] systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
[0;32m  OK  ^[[0m[   13.422743] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
] Created slice [   13.431834] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
^[[0;1;39mSlice /[   13.442470] systemd[1]: Reached target Local Encrypted Volumes.
system/getty^[[0m[   13.449768] systemd[1]: Stopped target Switch Root.
.
[^[[0;32m  OK[   13.456028] systemd[1]: Stopped target Initrd File Systems.
  ^[[0m] Created [   13.462983] systemd[1]: Stopped target Initrd Root File System.
slice ^[[0;1;39mS[   13.470289] systemd[1]: Reached target Local Integrity Protected Volumes.
lice /system/mod[   13.478479] systemd[1]: Reached target Path Units.
probe^[[0m.
[^[[[   13.484652] systemd[1]: Reached target Slice Units.
0;32m  OK  ^[[0m][   13.490917] systemd[1]: Reached target Local Verity Protected Volumes.
 Created slice ^[[   13.498881] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[0;1;39mSlice /s[   13.506953] systemd[1]: Listening on LVM2 poll daemon socket.
ystem/serial-get[   13.513909] systemd[1]: multipathd control socket was skipped because of an unmet condition check (ConditionPathExists=/etc/multipath.conf).
ty^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/sshd-keygen^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Se[   13.557242] systemd[1]: Listening on RPCbind Server Activation Socket.
t up automount ^[[   13.564977] systemd[1]: Reached target RPC Port Mapper.
[0;1;39mArbitrar[   13.572674] systemd[1]: Listening on Process Core Dump Socket.
y Executa…orma[   13.578771] systemd[1]: Listening on initctl Compatibility Named Pipe.
ts File System A[   13.587750] systemd[1]: Listening on udev Control Socket.
utomount Point^[[[   13.593492] systemd[1]: Listening on udev Kernel Socket.
0m.
[^[[0;32m  OK  ^[[0m] Reache[   13.601524] systemd[1]: Activating swap /dev/mapper/rhel_sharavati-swap...
d target ^[[0;1;3[   13.606335] Adding 7815164k swap on /dev/mapper/rhel_sharavati-swap.  Priority:-2 extents:1 across:7815164k SS
9mLocal Encrypted Volumes^[[0m.\r\r[   13.622668] systemd[1]: Mounting Huge Pages File System...

[^[[0;32m  OK  ^[[0m] Stopped tar[   13.630681] systemd[1]: Mounting POSIX Message Queue File System...
get ^[[0;1;39mSwi[   13.639683] systemd[1]: Mounting Kernel Debug File System...
tch Root^[[0m.
[^[[0;32m  OK  ^[[[   13.646880] systemd[1]: Mounting Kernel Trace File System...
0m] Stopped targ[   13.653965] systemd[1]: Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
et ^[[0;1;39mInit[   13.668798] systemd[1]: iscsi-starter.service was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes).
rd File Systems^[[0m.
[^[[0;32m [   13.684202] systemd[1]: Starting Create List of Static Device Nodes...
 OK  ^[[0m] Stopped target ^[[0;1;[   13.693450] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
39mInitrd Root F[   13.706292] systemd[1]: Starting Load Kernel Module configfs...
ile System^[[0m.
[^[[0;32m  OK  [   13.713740] systemd[1]: Starting Load Kernel Module drm...
^[[0m] Reached ta[   13.721827] systemd[1]: Starting Load Kernel Module fuse...
rget ^[[0;1;39mLocal Integrity Pr[   13.729419] systemd[1]: Starting Read and set NIS domainname from /etc/sysconfig/network...
otected Volumes^[[   13.738819] systemd[1]: plymouth-switch-root.service: Deactivated successfully.
[0m.
[^[[0;32m [   13.747486] systemd[1]: Stopped Plymouth switch root service.
 OK  ^[[0m] Reach[   13.754747] systemd[1]: systemd-fsck-root.service: Deactivated successfully.
ed target ^[[0;1;[   13.763042] systemd[1]: Stopped File System Check on Root Device.
39mPath Units^[[0[   13.770581] systemd[1]: Stopped Journal Service.
m.
[^[[0;32m  OK  ^[[0m] Reached[   13.779015] systemd[1]: Starting Journal Service...
 target ^[[0;1;39mSlice Units^[[0m[   13.786189] systemd[1]: Starting Load Kernel Modules...
[   13.791412] systemd-journald[1743]: File /run/log/journal/8f37f8055146469d8baec3ad508b0084/system.journal corrupted or uncleanly shut down, renaming and replacing.
.
[^[[0;32m  OK  ^[[0m] Reached [   13.808554] systemd[1]: Starting Generate network units from Kernel command line...
target ^[[0;1;39m[   13.817336] systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Local Verity Protected Volumes^[[[   13.838399] systemd[1]: Starting Remount Root and Kernel File Systems...
0m.
[^[[0;32m  [   13.846579] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
OK  ^[[0m] Listening on ^[[0;1;39m[   13.858626] systemd[1]: Starting Coldplug All udev Devices...
Device-mapper event daemon FIFOs^[[0m.
[^[[0;32m[   13.868979] systemd[1]: Activated swap /dev/mapper/rhel_sharavati-swap.
  OK  ^[[0m] List[   13.877173] systemd[1]: Started Journal Service.
ening on ^[[0;1;39mLVM2 poll daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mRPCbind Server Activation Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRPC Port Mapper^[[[   13.898430] systemd-journald[1743]: Received client request to flush runtime journal.
0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mProcess Core Dump Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39minitctl Compatibility Named Pipe^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
         Activating swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m...
         Mounting ^[[0;1;39mHuge Pages File System^[[0m...
         Mounting ^[[0;1;39mPOSIX Message Queue File System^[[0m...
         Mounting ^[[0;1;39mKernel Debug File System^[[0m...
         Mounting ^[[0;1;39mKernel Trace File System^[[0m...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
         Starting ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module drm^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mJournal Service^[[0m.
         Starting ^[[0;1;39mJournal Service^[[0m...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
         Starting ^[[0;1;39mGenerate network units from Kernel command line^[[0m...
         Starting ^[[0;1;39mRemount Root and Kernel File Systems^[[0m...
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[^[[0;32m  OK  ^[[0m] Activated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mHuge Pages File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mPOSIX Message Queue File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Debug File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Trace File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMonitoring of LVM2 mirror…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module drm^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[   14.124819] IPMI message handler: version 39.2
[0;32m  OK  ^[[0m] Finished ^[[0;1[   14.132982] ipmi device interface
;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mGenerate ne[   14.142624] ipmi_si: IPMI System Interface driver
twork units from[   14.148305] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
 Kernel command [   14.156023] ipmi_platform: ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 10
line^[[0m.
[^[[0[   14.162819] pstore: backend 'erst' already in use: ignoring 'efi_pstore'
;32m  OK  ^[[0m] [   14.164712] ipmi_si: Adding SMBIOS-specified kcs state machine
Finished ^[[0;1;3[   14.165308] input: PC Speaker as /devices/platform/pcspkr/input/input1
9mRemount Root a[   14.165328] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
nd Kernel File S[   14.165333] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
ystems^[[0m.
[^[[   14.166485] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
[0;32m  OK  ^[[0m[   14.166488] RAPL PMU: hw unit of domain package 2^-16 Joules
] Reached target[   14.166490] RAPL PMU: hw unit of domain core 2^-16 Joules
 ^[[0;1;39mSwaps^[[   14.170075] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
[0m.
         [   14.170701] i2c i2c-3: Successfully instantiated SPD at 0x50
Mounting ^[[0;1;3[   14.171280] i2c i2c-3: Successfully instantiated SPD at 0x51
9mFUSE Control F[   14.171840] i2c i2c-3: Successfully instantiated SPD at 0x52
ile System^[[0m..[   14.172296] i2c i2c-3: Successfully instantiated SPD at 0x53
.
         Mou[   14.172874] i2c i2c-3: Successfully instantiated SPD at 0x54
nting ^[[0;1;39mK[   14.180088] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
ernel Configurat[   14.188480] i2c i2c-3: Successfully instantiated SPD at 0x55
ion File System^[[   14.196737] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca8] regsize 1 spacing 4 irq 10
[0m...
       [   14.206220] i2c i2c-3: Successfully instantiated SPD at 0x56
  Starting ^[[0;1[   14.215142] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
;39mFlush Journa[   14.222622] i2c i2c-3: Successfully instantiated SPD at 0x57
l to Persistent [   14.228773] ipmi_si: Adding ACPI-specified kcs state machine
Storage^[[0m...\r\r[   14.228882] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 10

         Starting ^[[0;1;39mLoad/Save OS Random Seed^[[0m...
         Starting ^[[0;1;39mApply Kernel Variables^[[0m...
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mFUSE Control File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Configuration File System^[[0m.\r[   14.366481] ee1004 3-0050: 512 byte EE1004-compliant SPD EEPROM, read-only

[^[[0;32m  OK  ^[[0m] Finished ^[[   14.376314] ee1004 3-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
[0;1;39mLoad/Sav[   14.385483] kvm_amd: TSC scaling supported
e OS Random Seed[   14.386034] ee1004 3-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
^[[0m.
[^[[0;32m[   14.389873] kvm_amd: Nested Virtualization enabled
  OK  ^[[0m] Fini[   14.389875] kvm_amd: Nested Paging enabled
shed ^[[0;1;39mFl[   14.399791] ee1004 3-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
ush Journal to P[   14.404311] kvm_amd: LBR virtualization supported
ersistent Storage^[[0m.
[^[[0;32[   14.425869] ee1004 3-0054: 512 byte EE1004-compliant SPD EEPROM, read-only
m  OK  ^[[0m] Finished ^[[0;1;39mA[   14.435428] ee1004 3-0055: 512 byte EE1004-compliant SPD EEPROM, read-only
pply Kernel Variables^[[0m.
[^[[[   14.445172] ee1004 3-0056: 512 byte EE1004-compliant SPD EEPROM, read-only
0;32m  OK  ^[[0m] Finished ^[[0;1;[   14.454716] ee1004 3-0057: 512 byte EE1004-compliant SPD EEPROM, read-only
39mCreate Static Device Nodes in /dev^[[0m.
         Starting ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mColdplug All udev Devices^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mLoad/Save RF Kill Switch Status /dev/rfkill Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39m/usr/sbin/lvm vgchange -aa…utoactivation event rhel_sharavati^[[0m.
[   14.792266] ipmi_si IPI0001:00: The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.
[   14.864331] ipmi_si IPI0001:00: Using irq 10
[   14.888537] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20)
[   14.950084] ipmi_si IPI0001:00: IPMI kcs interface initialized
[   14.958547] ipmi_ssif: IPMI SSIF Interface driver
[   14.987828] power_meter ACPI000D:00: Found ACPI power meter.
[^[[0m^[[0;31m*     ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;1;31m*^[[0m^[[0;31m*    ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
^[M\r^[[K[^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*   ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
[   17.965900] ccp 0000:46:00.1: SEV-SNP API:1.55 build:22
[   18.021057] ccp 0000:46:00.1: SEV API:1.55 build:22
[   18.027820] kvm_amd: SEV enabled (ASIDs 101 - 509)
[   18.032625] kvm_amd: SEV-ES enabled (ASIDs 1 - 100)
[   18.037506] kvm_amd: SEV-SNP enabled (ASIDs 1 - 100)
[   18.042633] kvm_amd: Virtual VMLOAD VMSAVE supported
[   18.047605] kvm_amd: Virtual GIF supported
[   18.073961] EDAC MC0: Giving out device to module amd64_edac controller F19h: DEV 0000:00:18.3 (INTERRUPT)
[   18.083616] EDAC amd64: F19h detected (node 0).
[   18.088176] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.092900] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.097631] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.102353] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.107076] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.111801] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.116532] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.121255] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.125984] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.130703] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.135439] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.140161] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.144888] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.149610] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.154332] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.159050] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.170302] intel_rapl_common: Found RAPL domain package
[   18.171498] amd_atl: AMD Address Translation Library initialized
[   18.175629] intel_rapl_common: Found RAPL domain core
^[M\r^[[K[ ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*  ^[[0m] A start job is running for Wait for…ice Initialization (5s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Local File Systems^[[0m.
         Mounting ^[[0;1;39m/boot^[[0m...
      [   18.539848] XFS (sda6): Mounting V5 Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
   Mounting ^[[0;[   18.542372] XFS (dm-0): Mounting V5 Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
1;39m/home^[[0m...
         Starting ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m...
[   18.566621] XFS (sda6): Ending clean mount
[^[[0;32m  OK  ^[[[   18.574658] XFS (dm-0): Ending clean mount
0m] Mounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
         Mounting ^[[0;1;39m/boot/efi^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
         Starting ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Mounting ^[[0;1;39mRPC Pipe File System^[[0m...
         Starting ^[[0;1;39mSecurity Auditing Service^[[0m...
         Starting ^[[0;1;39mRPC Bind^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRPC Bind^[[0m.
[   18.682489] RPC: Registered named UNIX socket transport module.
[   18.688422] RPC: Registered udp transport module.
[   18.693136] RPC: Registered tcp transport module.
[   18.697839] RPC: Registered tcp-with-tls transport module.
[   18.703323] RPC: Registered tcp NFSv4.1 backchannel transport module.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSecurity Auditing Service^[[0m.
         Starting ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mRPC Pipe File System^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mrpc_pipefs.target^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdnf makecache --timer^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily rotation of log files^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUpdates mlocate database every day^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily Cleanup of Temporary Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdaily update of the root trust anchor for DNSSEC^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt interface daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt network daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nodedev daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nwfilter daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt proxy daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt secret daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt storage daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
         Starting ^[[0;1;39mD-Bus System Message Bus^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mBasic System^[[0m.
         Starting ^[[0;1;39mNTP client/server^[[0m...
         Starting ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m...
         Starting ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mirqbalance daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mlibstoragemgmt plug-in server daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mMachine Check Exception Logging Daemon^[[0m.
         Starting ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msshd-keygen.target^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUser and Group Name Lookups^[[0m.
         Starting ^[[0;1;39mUser Login Management^[[0m...
         Starting ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNTP client/server^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Network^[[0m.
         Starting ^[[0;1;39mNetwork Manager^[[0m...
         Starting ^[[0;1;39mHostname Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mHostname Service^[[0m.
         Starting ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork^[[0m.
         Starting ^[[0;1;39mNetwork Manager Wait Online^[[0m...
         Starting ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
         Starting ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m...
         Starting ^[[0;1;39mOpenSSH server daemon^[[0m...
         Starting ^[[0;1;39mDynamic System Tuning Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNFS client services^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mOpenSSH server daemon^[[0m.
         Starting ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
[   22.852521] tg3 0000:c1:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   22.859143] tg3 0000:c1:00.0 eth0: Flow control is off for TX and off for RX
[   22.866187] tg3 0000:c1:00.0 eth0: EEE is disabled
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[     ^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (12s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mNetwork Manager Wait Online^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork is Online^[[0m.
         Starting ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m...
         Starting ^[[0;1;39mNotify NFS peers of a restart^[[0m...
         Starting ^[[0;1;39mSystem Logging Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNotify NFS peers of a restart^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mCrash recovery kernel arming^[[0m...
         Starting ^[[0;1;39mPermit User Sessions^[[0m...
         Starting ^[[0;1;39mlibvirt QEMU daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDeferred execution scheduler^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mCommand Scheduler^[[0m.
         Starting ^[[0;1;39mHold until boot process finishes up^[[0m...
         Starting ^[[0;1;39mTerminate Plymouth Boot Screen^[[0m...
[^[[0;1;31mFAILED^[[0m] Failed to start ^[[0;1;39mCrash recovery kernel arming^[[0m.
See 'systemctl status kdump.service' for details.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSystem Logging Service^[[0m.
[   25.659145] fbcon: Taking over console
[   25.679016] Console: switching to colour frame buffer device 128x48

Red Hat Enterprise Linux 9.5 (Plow)
Kernel 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e on an x86_64

Activate the web console with: systemctl enable --now cockpit.socket

sharavati login: [  115.485310] /proc/cgroups lists only v1 controllers, use cgroup.controllers of root cgroup for v2 info
[  306.064454] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[  306.114937] systemd-rc-local-generator[3177]: /etc/rc.d/rc.local is not marked executable, skipping.
[  327.723235] virbr0: port 1(t0-dfW2o4) entered blocking state
[  327.728909] virbr0: port 1(t0-dfW2o4) entered disabled state
[  327.734601] t0-dfW2o4: entered allmulticast mode
[  327.739305] t0-dfW2o4: entered promiscuous mode
[  327.748246] virbr0: port 1(t0-dfW2o4) entered blocking state
[  327.753909] virbr0: port 1(t0-dfW2o4) entered listening state
[  329.783484] virbr0: port 1(t0-dfW2o4) entered learning state
[  331.799437] virbr0: port 1(t0-dfW2o4) entered forwarding state
[  331.805285] virbr0: topology change detected, propagating
[  344.374774] virbr0: port 1(t0-dfW2o4) entered disabled state
[  344.381432] t0-dfW2o4 (unregistering): left allmulticast mode
[  344.387195] t0-dfW2o4 (unregistering): left promiscuous mode
[  344.392868] virbr0: port 1(t0-dfW2o4) entered disabled state
[  349.114587] virbr0: port 1(t0-aGaG2Y) entered blocking state
[  349.120269] virbr0: port 1(t0-aGaG2Y) entered disabled state
[  349.125967] t0-aGaG2Y: entered allmulticast mode
[  349.130667] t0-aGaG2Y: entered promiscuous mode
[  349.139449] virbr0: port 1(t0-aGaG2Y) entered blocking state
[  349.145113] virbr0: port 1(t0-aGaG2Y) entered listening state
[  351.159016] virbr0: port 1(t0-aGaG2Y) entered learning state
[  353.174983] virbr0: port 1(t0-aGaG2Y) entered forwarding state
[  353.180821] virbr0: topology change detected, propagating
[  365.273704] virbr0: port 1(t0-aGaG2Y) entered disabled state
[  365.280370] t0-aGaG2Y (unregistering): left allmulticast mode
[  365.286135] t0-aGaG2Y (unregistering): left promiscuous mode
[  365.291806] virbr0: port 1(t0-aGaG2Y) entered disabled state
[  406.940658] JFS: nTxBlock = 8192, nTxLock = 65536
[  406.979200] QNX4 filesystem 0.2.3 registered.
[  407.061731] raid6: avx2x4   gen() 32014 MB/s
[  407.133729] raid6: avx2x2   gen() 32569 MB/s
[  407.205727] raid6: avx2x1   gen() 21693 MB/s
[  407.210001] raid6: using algorithm avx2x2 gen() 32569 MB/s
[  407.281725] raid6: .... xor() 27363 MB/s, rmw enabled
[  407.286777] raid6: using avx2x2 recovery algorithm
[  407.293646] xor: automatically using best checksumming function   avx       
[  407.388926] Btrfs loaded, zoned=yes, fsverity=yes
[  411.826459] sda6: Can't mount, would change RO state
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNFS client services^[[0m.
         Stopping ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mShow Plymouth Reboot Screen^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Manager for UID 0^[[0m.
         Stopping ^[[0;1;39mUser Runtime Directory /run/user/0^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Runtime Directory /run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser Slice of UID 0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mUser and Group Name Lookups^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSystem Logging Service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork is Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager Wait Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
         Stopping ^[[0;1;39mNetwork Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Network^[[0m.
         Stopping ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGenerate network units from Kernel command line^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
         Stopping ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Plymouth Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mVirtual Machine and Container Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m][  413.297977] audit: type=1305 audit(1750145723.583:333): op=set audit_pid=0 old=2291 auid=4294967295 ses=4294967295 subj=unconfined res=1
 Closed ^[[0;1;39[  413.312033] audit: type=1131 audit(1750145723.595:334): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=auditd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
mlibvirt legacy [  413.331876] audit: type=1131 audit(1750145723.615:335): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
monolithic daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon socket^[[0m.
         Stopping ^[[0;1;39mD-Bus System Message Bus^[[0m.[  413.394198] audit: type=1131 audit(1750145723.679:336): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-fsck@dev-disk-by\x2duuid-FBE5\x2d86EF comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
..
         St[  413.411127] XFS (dm-0): Unmounting Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
arting ^[[0;1;39m[  413.419408] XFS (sda6): Unmounting Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
Tell Plymouth To Jump To initramfs^[[0m...
[^[[0;32m  OK  ^[[0m] [  413.440523] audit: type=1131 audit(1750145723.723:337): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Stopped ^[[0;1;39[  413.462449] audit: type=1131 audit(1750145723.747:338): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Unset automount ^[[0;1;39mArbitrary Executab…ormats File System Automount Point^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Encrypted Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Integrity Protected Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Verity Protected Volumes^[[0m.
         Deactivating swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mAppl[  413.563151] audit: type=1131 audit(1750145723.847:339): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
y Kernel Variabl[  413.584269] audit: type=1130 audit(1750145723.867:340): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
es^[[0m.
[^[[0;3[  413.605447] audit: type=1131 audit(1750145723.867:341): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
2m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
         Stopping ^[[0;1;39mRecord Syst[  413.634267] audit: type=1334 audit(1750145723.919:342): prog-id=34 op=UNLOAD
em Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-sysctl.service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
         Stopping ^[[0;1;39mSecurity Auditing Service^[[0m...
[^[[0;32m  OK  ^[[0m] Deacti[  413.674007] watchdog: watchdog0: watchdog did not stop!
vated swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[  413.684873] systemd-shutdown[1]: Using hardware watchdog 'SP5100 TCO timer', version 0, device /dev/watchdog0
[0m.
[^[[0;32m [  413.694904] systemd-shutdown[1]: Watchdog running with a timeout of 10min.
 OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/rhel_sharavati/swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;[  413.711728] systemd-shutdown[1]: Syncing filesystems and block devices.
39m/dev/disk/by-[  413.719500] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
id/d…kEo36yeb12DWUnp5czhD1hrKFNCXkJMetK^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-uuid…8d2e1f-0fb1-4c94-97ac-38505613fcbf^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/dm-2^[[0m.
[^[[0[  413.746563] systemd-journald[1743]: Received SIGTERM from PID 1 (systemd-shutdow).
;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
         Unmounting ^[[0;1;39m/boot/efi^[[0m...
         Unmounting ^[[0;1;39m/home^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m.
         Unmounting ^[[0;1;39m/boot^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Local File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUnmount All Filesystems^[[0m.
         Stopping ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRemount Root and Kernel File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mMonitoring of LVM2 mirrors…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLate Shutdown Services^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSystem Reboot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Reboot^[[0m.
[  413.926121] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
[  413.950595] systemd-shutdown[1]: Unmounting file systems.
[  413.956749] [8171]: Remounting '/' read-only with options 'attr2,inode64,logbufs=8,logbsize=32k,noquota'.
[  413.976517] systemd-shutdown[1]: All filesystems unmounted.
[  413.982108] systemd-shutdown[1]: Deactivating swaps.
[  413.987114] systemd-shutdown[1]: All swaps deactivated.
[  413.992346] systemd-shutdown[1]: Detaching loop devices.
[  413.998168] systemd-shutdown[1]: All loop devices detached.
[  414.003740] systemd-shutdown[1]: Stopping MD devices.
[  414.008846] systemd-shutdown[1]: All MD devices stopped.
[  414.014190] systemd-shutdown[1]: Detaching DM devices.
[  414.019697] systemd-shutdown[1]: Detaching DM /dev/dm-2 (253:2).
[  414.061671] systemd-shutdown[1]: Detaching DM /dev/dm-0 (253:0).
[  414.117729] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  414.124226] systemd-shutdown[1]: Detaching DM devices.
[  414.129545] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  414.135995] systemd-shutdown[1]: Cannot finalize remaining DM devices, continuing.
[  414.143564] watchdog: watchdog0: watchdog did not stop!
[  414.236056] systemd-shutdown[1]: Successfully changed into root pivot.
[  414.242592] systemd-shutdown[1]: Returning to initrd...
[  414.294578] dracut Warning: Killing all remaining processes
dracut Warning: Killing all remaining processes
[  414.373140] XFS (dm-1): Unmounting Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[  414.440879] dracut Warning: Unmounted /oldroot.
dracut Warning: Unmounted /oldroot.
[  414.457315] dracut: Disassembling device-mapper devices
Rebooting.
[  414.647492] sd 8:0:2:0: [sdc] Synchronizing SCSI cache
[  414.652761] sd 8:0:0:0: [sda] Synchronizing SCSI cache
[  416.123141] mpt3sas_cm0: sending message unit reset !!
[  416.129539] mpt3sas_cm0: message unit reset: SUCCESS
[  416.137349] ACPI: PM: Preparing to enter system sleep state S5
[  416.143295] kvm: exiting hardware virtualization
[  416.147961] reboot: Restarting system
[  416.151634] reboot: machine restart
^[[c^[[2J^[[01;01H^[[=3h^[[2J^[[01;01HKEY MAPPING FOR CONSOLE REDIRECTION:

Use the <ESC><1> key sequence for <F1>
Use the <ESC><2> key sequence for <F2>
Use the <ESC><3> key sequence for <F3>
Use the <ESC><0> key sequence for <F10>
Use the <ESC><!> key sequence for <F11>
Use the <ESC><@> key sequence for <F12>

Use the <ESC><Ctrl><M> key sequence for <Ctrl><M>
Use the <ESC><Ctrl><H> key sequence for <Ctrl><H>
Use the <ESC><Ctrl><I> key sequence for <Ctrl><I>
Use the <ESC><Ctrl><J> key sequence for <Ctrl><J>

Use the <ESC><X><X> key sequence for <Alt><x>, where x is any letter
key, and X is the upper case of that key

Use the <ESC><R><ESC><r><ESC><R> key sequence for <Ctrl><Alt><Del>

Press the spacebar to pause...
Initializing PCIe, USB, and Video... Done
PowerEdge R6515
BIOS Version: 2.17.0
Console Redirection Enabled Requested by iDRAC

F2	 = System Setup
F10	 = Lifecycle Controller (Config
	   iDRAC, Update FW, Install OS)
F11	 = Boot Manager
F12	 = PXE Boot
iDRAC IPV4:  10.86.18.202 [Dedicated]
                                
Initializing Firmware Interfaces...
 





Enumerating Boot options...
Enumerating Boot options... Done
Loading Lifecycle Controller Drivers...
Loading Lifecycle Controller Drivers...Done
Lifecycle Controller: Collecting System Inventory...

iDRAC IPV4:  10.86.18.202 [Dedicated]

^[[2J^[[01;01HLifecycle Controller: Done
Booting...
^[[2J^[[01;01HBooting from Integrated Storage Controller 1: Red Hat Enterprise Linux
^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[02;32HGRUB version 2.06

\r^[[04;02H/----------------------------------------------------------------------------\^[[05;02H|^[[05;79H|^[[06;02H|^[[06;79H|^[[07;02H|^[[07;79H|^[[08;02H|^[[08;79H|^[[09;02H|^[[09;79H|^[[10;02H|^[[10;79H|^[[11;02H|^[[11;79H|^[[12;02H|^[[12;79H|^[[13;02H|^[[13;79H|^[[14;02H|^[[14;79H|^[[15;02H|^[[15;79H|^[[16;02H|^[[16;79H|^[[17;02H\----------------------------------------------------------------------------/^[[18;02H^[[19;02H     Use the ^ and v keys to select which entry is highlighted.          
\r      Press enter to boot the selected OS, `e' to edit the commands       
\r      before booting or `c' for a command-line. ESC to return previous    
\r      menu.                                                               ^[[05;80H ^[[0m^[[30m^[[47m^[[05;03H*Red Hat Enterprise Linux (6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e)>
\r^[[06;01H^[[0m^[[37m^[[40m^[[05;78H^[[06;03H Red Hat Enterprise Linux (6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997)>
\r^[[07;01H^[[06;78H^[[07;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250613-bc6e0ba6c9-dc42f4ece61)>
\r^[[08;01H^[[07;78H^[[08;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250612-0bb71d3018-d909e6968a1)>
\r^[[09;01H^[[08;78H^[[09;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250611-19a60293b9-72d7c68e20e)>
\r^[[10;01H^[[09;78H^[[10;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250610-b27cc623e0-9a3b1b1b837)>
\r^[[11;01H^[[10;78H^[[11;03H Red Hat Enterprise Linux (6.15.0-rc7-next-20250526-3be1a7a31f-22d449bcd69)>
\r^[[12;01H^[[11;78H^[[12;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250514-bdd609656f-ccb396cc166)>
\r^[[13;01H^[[12;78H^[[13;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250513-aa94665adc-e0bf3d3816b)>
\r^[[14;01H^[[13;78H^[[14;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250512-edef457004-450c56522a8)>
\r^[[15;01H^[[14;78H^[[15;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250508-f48887a98b-19c541fe872)>
\r^[[16;01H^[[15;78H^[[16;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250507-08710e6960-81586bd2ca8)>
\r^[[17;01H^[[16;78H^[[16;80Hv^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 5s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 4s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 3s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 2s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 1s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 0s.                 ^[[05;78H^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m  Booting `Red Hat Enterprise Linux
\r(6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e) 9.5 (Plow)'

\r[    0.000000] Linux version 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e (root@sharavati•amd.com) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-5), GNU ld version 2.35.2-63.el9) #1 SMP PREEMPT_DYNAMIC Tue Jun 17 12:09:52 IST 2025
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] SEV-SNP: RMP table physical range [0x0000000015e00000 - 0x00000000566fffff]
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000015dfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000015e00000-0x00000000566fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000056700000-0x00000000567fbfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000567fc000-0x00000000567fcfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000567fd000-0x000000005a142fff] usable
[    0.000000] BIOS-e820: [mem 0x000000005a143000-0x000000005a342fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005a343000-0x0000000067acefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000067acf000-0x000000006dfcefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006dfcf000-0x000000006edfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006edff000-0x000000006effefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000006efff000-0x000000006effffff] usable
[    0.000000] BIOS-e820: [mem 0x000000006f000000-0x000000006f00afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006f00b000-0x000000006fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000070000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa000000-0x00000000aaffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c5000000-0x00000000c5ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e0ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000207fcfffff] usable
[    0.000000] BIOS-e820: [mem 0x000000207fd00000-0x000000207fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000002080000000-0x000000407f1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000407f200000-0x000000407fffffff] reserved
[    0.000000] printk: legacy bootconsole [earlyser0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by Dell Inc.
[    0.000000] efi: ACPI=0x6effe000 ACPI 2.0=0x6effe014 MEMATTR=0x63f376a0 SMBIOS=0x6979e000 SMBIOS 3.0=0x6979c000 MOKvar=0x67bcc000 RNG=0x6efb4020 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem56: MMIO range=[0x80000000-0x8fffffff] (256MB) from e820 map
[    0.000000] efi: Remove mem57: MMIO range=[0xaa000000-0xaaffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem58: MMIO range=[0xc5000000-0xc5ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem59: MMIO range=[0xe0000000-0xe0ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem60: MMIO range=[0xfd000000-0xffffffff] (48MB) from e820 map
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[    0.000000] DMI: Memory slots populated: 8/16
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1996.338 MHz processor
[    0.000028] last_pfn = 0x407f200 max_arch_pfn = 0x400000000
[    0.005551] MTRR map: 7 entries (2 fixed + 5 variable; max 19), built from 9 variable MTRRs
[    0.013866] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Memory KASLR using RDRAND RDTSC...
[    0.023988] x2apic: enabled by BIOS, switching to x2apic ops
[    0.029622] last_pfn = 0x70000 max_arch_pfn = 0x400000000
[    0.039455] SEV-SNP: Reserving start/end of RMP table on a 2MB boundary [0x0000000056600000]
[    0.047722] Using GB pages for direct mapping
[    0.052779] Secure boot disabled
[    0.055826] RAMDISK: [mem 0x0bb2c000-0x0e0d4fff]
[    0.060423] ACPI: Early table checksum verification disabled
[    0.066055] ACPI: RSDP 0x000000006EFFE014 000024 (v02 DELL  )
[    0.071772] ACPI: XSDT 0x000000006EFB7188 0000DC (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.080267] ACPI: FACP 0x000000006EFF9000 000114 (v06 DELL   PE_SC3   00000002 DELL 00000001)
[    0.088760] ACPI: DSDT 0x000000006EFDA000 019528 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.097251] ACPI: FACS 0x000000006EDB9000 000040
[    0.101844] ACPI: BERT 0x000000006EFFC000 000030 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.110336] ACPI: ERST 0x000000006EFFB000 000230 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.118829] ACPI: HEST 0x000000006EFFA000 0007F4 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.127321] ACPI: HPET 0x000000006EFF8000 000038 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.135814] ACPI: APIC 0x000000006EFF6000 0018BE (v05 DELL   PE_SC3   00000002 DELL 00000001)
[    0.144308] ACPI: MCFG 0x000000006EFF5000 00003C (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.152800] ACPI: WSMT 0x000000006EFF4000 000028 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.161293] ACPI: SSDT 0x000000006EFD9000 000629 (v02 DELL   xhc_port 00000001 INTL 20210331)
[    0.169786] ACPI: SSDT 0x000000006EFD8000 000D6E (v02 AMD    CPMRAS   00000001 INTL 20210331)
[    0.178279] ACPI: EINJ 0x000000006EFD7000 000170 (v01 AMD    PE_SC3   00000001 AMD  00000001)
[    0.186771] ACPI: PCCT 0x000000006EFD6000 00006E (v02 DELL   AmdTable 00000001 AMD  00000001)
[    0.195264] ACPI: SSDT 0x000000006EFC7000 00E849 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.203757] ACPI: SRAT 0x000000006EFC6000 000CD0 (v03 DELL   PE_SC3   00000001 AMD  00000001)
[    0.212249] ACPI: MSCT 0x000000006EFC5000 00004E (v01 DELL   PE_SC3   00000000 AMD  00000001)
[    0.220742] ACPI: SLIT 0x000000006EFC4000 000030 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.229235] ACPI: CRAT 0x000000006EFBC000 0072F8 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.237728] ACPI: CDIT 0x000000006EFBB000 00002C (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.246220] ACPI: IVRS 0x000000006EFBA000 0001F0 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.254713] ACPI: SPCR 0x000000006EFB9000 000050 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.263207] ACPI: SLIC 0x000000006EFB8000 000176 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.271699] ACPI: SSDT 0x000000006EFFD000 000D66 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.280191] ACPI: SSDT 0x000000006EFB5000 00193C (v02 AMD    CPMCMN   00000001 INTL 20210331)
[    0.288684] ACPI: Reserving FACP table memory at [mem 0x6eff9000-0x6eff9113]
[    0.295703] ACPI: Reserving DSDT table memory at [mem 0x6efda000-0x6eff3527]
[    0.302722] ACPI: Reserving FACS table memory at [mem 0x6edb9000-0x6edb903f]
[    0.309742] ACPI: Reserving BERT table memory at [mem 0x6effc000-0x6effc02f]
[    0.316761] ACPI: Reserving ERST table memory at [mem 0x6effb000-0x6effb22f]
[    0.323781] ACPI: Reserving HEST table memory at [mem 0x6effa000-0x6effa7f3]
[    0.330801] ACPI: Reserving HPET table memory at [mem 0x6eff8000-0x6eff8037]
[    0.337820] ACPI: Reserving APIC table memory at [mem 0x6eff6000-0x6eff78bd]
[    0.344883] ACPI: Reserving MCFG table memory at [mem 0x6eff5000-0x6eff503b]
[    0.351902] ACPI: Reserving WSMT table memory at [mem 0x6eff4000-0x6eff4027]
[    0.358923] ACPI: Reserving SSDT table memory at [mem 0x6efd9000-0x6efd9628]
[    0.365942] ACPI: Reserving SSDT table memory at [mem 0x6efd8000-0x6efd8d6d]
[    0.372961] ACPI: Reserving EINJ table memory at [mem 0x6efd7000-0x6efd716f]
[    0.379981] ACPI: Reserving PCCT table memory at [mem 0x6efd6000-0x6efd606d]
[    0.387000] ACPI: Reserving SSDT table memory at [mem 0x6efc7000-0x6efd5848]
[    0.394019] ACPI: Reserving SRAT table memory at [mem 0x6efc6000-0x6efc6ccf]
[    0.401039] ACPI: Reserving MSCT table memory at [mem 0x6efc5000-0x6efc504d]
[    0.408059] ACPI: Reserving SLIT table memory at [mem 0x6efc4000-0x6efc402f]
[    0.415079] ACPI: Reserving CRAT table memory at [mem 0x6efbc000-0x6efc32f7]
[    0.422097] ACPI: Reserving CDIT table memory at [mem 0x6efbb000-0x6efbb02b]
[    0.429117] ACPI: Reserving IVRS table memory at [mem 0x6efba000-0x6efba1ef]
[    0.436137] ACPI: Reserving SPCR table memory at [mem 0x6efb9000-0x6efb904f]
[    0.443189] ACPI: Reserving SLIC table memory at [mem 0x6efb8000-0x6efb8175]
[    0.450176] ACPI: Reserving SSDT table memory at [mem 0x6effd000-0x6effdd65]
[    0.457196] ACPI: Reserving SSDT table memory at [mem 0x6efb5000-0x6efb693b]
[    0.464290] APIC: Switched APIC routing to: cluster x2apic
[    0.469692] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.475654] ACPI: SRAT: Node 0 PXM 0 [mem 0x000c0000-0x7fffffff]
[    0.481634] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.487874] ACPI: SRAT: Node 1 PXM 1 [mem 0x2080000000-0x407fffffff]
[    0.494207] NUMA: Node 0 [mem 0x00001000-0x0009ffff] + [mem 0x000c0000-0x7fffffff] -> [mem 0x00001000-0x7fffffff]
[    0.504425] NUMA: Node 0 [mem 0x00001000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00001000-0x207fffffff]
[    0.515092] NODE_DATA(0) allocated [mem 0x207fcd59c0-0x207fcfffff]
[    0.521247] NODE_DATA(1) allocated [mem 0x407f1d49c0-0x407f1fefff]
[    0.527530] cannot allocate crashkernel low memory (size:0x10800000).
[    0.534058] Zone ranges:
[    0.536412]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.542565]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.548717]   Normal   [mem 0x0000000100000000-0x000000407f1fffff]
[    0.554904]   Device   empty
[    0.557765] Movable zone start for each node
[    0.562012] Early memory node ranges
[    0.565564]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.571805]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.578044]   node   0: [mem 0x0000000000100000-0x0000000015dfffff]
[    0.584283]   node   0: [mem 0x0000000056700000-0x00000000567fbfff]
[    0.590522]   node   0: [mem 0x00000000567fd000-0x000000005a142fff]
[    0.596762]   node   0: [mem 0x000000005a343000-0x0000000067acefff]
[    0.603002]   node   0: [mem 0x000000006efff000-0x000000006effffff]
[    0.609241]   node   0: [mem 0x000000006f00b000-0x000000006fffffff]
[    0.615481]   node   0: [mem 0x0000000100000000-0x000000207fcfffff]
[    0.621731]   node   1: [mem 0x0000002080000000-0x000000407f1fffff]
[    0.627971] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fcfffff]
[    0.634982] Initmem setup node 1 [mem 0x0000002080000000-0x000000407f1fffff]
[    0.642002] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.647805] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.653641] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.659887] On node 0, zone DMA32: 35072 pages in unavailable ranges
[    0.666123] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.672219] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.678309] On node 0, zone DMA32: 30000 pages in unavailable ranges
[    0.684552] On node 0, zone DMA32: 11 pages in unavailable ranges
[    0.909825] On node 1, zone Normal: 768 pages in unavailable ranges
[    0.915931] On node 1, zone Normal: 3584 pages in unavailable ranges
[    0.922420] ACPI: PM-Timer IO Port: 0x408
[    0.926283] ACPI: X2APIC_NMI (uid[0xffffffff] high edge lint[0x1])
[    0.932410] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.938315] IOAPIC[0]: apic_id 240, version 33, address 0xfec00000, GSI 0-23
[    0.945324] IOAPIC[1]: apic_id 241, version 33, address 0xe0100000, GSI 120-151
[    0.952603] IOAPIC[2]: apic_id 242, version 33, address 0xc5100000, GSI 88-119
[    0.959797] IOAPIC[3]: apic_id 243, version 33, address 0xaa100000, GSI 56-87
[    0.966902] IOAPIC[4]: apic_id 244, version 33, address 0xfd100000, GSI 24-55
[    0.974008] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.980332] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.986839] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.993244] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.998360] ACPI: SPCR: console: uart,io,0x2f8,115200
[    1.003388] CPU topo: Max. logical packages:   1
[    1.007976] CPU topo: Max. logical dies:       1
[    1.012569] CPU topo: Max. dies per package:   1
[    1.017165] CPU topo: Max. threads per core:   2
[    1.021755] CPU topo: Num. cores per package:    64
[    1.026644] CPU topo: Num. threads per package: 128
[    1.031496] CPU topo: Allowing 128 present CPUs plus 0 hotplug CPUs
[    1.037761] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    1.045277] PM: hibernation: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    1.052816] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    1.060355] PM: hibernation: Registered nosave memory: [mem 0x15e00000-0x567fffff]
[    1.067895] PM: hibernation: Registered nosave memory: [mem 0x5a143000-0x5a342fff]
[    1.075434] PM: hibernation: Registered nosave memory: [mem 0x67acf000-0x6effefff]
[    1.082973] PM: hibernation: Registered nosave memory: [mem 0x6f000000-0x6f00afff]
[    1.090513] PM: hibernation: Registered nosave memory: [mem 0x70000000-0xffffffff]
[    1.098052] PM: hibernation: Registered nosave memory: [mem 0x207fd00000-0x207fffffff]
[    1.105939] [mem 0x56800000-0xffffffff] available for PCI devices
[    1.112005] Booting paravirtualized kernel on bare hardware
[    1.117550] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    1.127988] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:128 nr_cpu_ids:128 nr_node_ids:2
[    1.138799] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[    1.145274] Kernel command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    1.174599] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e biosdevname=0 mem_encrypt=off", will be passed to user space.
[    1.191446] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    1.198361] printk: log_buf_len total cpu_extra contributions: 520192 bytes
[    1.205294] printk: log_buf_len min size: 262144 bytes
[    1.210744] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[    1.218129] printk: early log buf free: 246352(93%)
[    1.224476] software IO TLB: area num 128.
[    1.228394] software IO TLB: swiotlb_memblock_alloc: Failed to allocate 268435456 bytes tlb structure
[    1.243499] software IO TLB: SWIOTLB bounce buffer size adjusted 131072 -> 65536 slabs
[    1.249606] Fallback order for Node 0: 0 1 
[    1.249610] Fallback order for Node 1: 1 0 
[    1.249624] Built 2 zonelists, mobility grouping on.  Total pages: 66743906
[    1.272612] Policy zone: Normal
[    1.275740] mem auto-init: stack:off, heap alloc:on, heap free:off
[    1.697751] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=128, Nodes=2
Poking KASLR using RDRAND RDTSC...
[    1.718981] ftrace: allocating 53763 entries in 212 pages
[    1.724200] ftrace: allocated 212 pages with 4 groups
[    1.730136] Dynamic Preempt: voluntary
[    1.734069] rcu: Preemptible hierarchical RCU implementation.
[    1.739635] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=128.
[    1.746568] 	Trampoline variant of Tasks RCU enabled.
[    1.751594] 	Rude variant of Tasks RCU enabled.
[    1.756101] 	Tracing variant of Tasks RCU enabled.
[    1.760866] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.768406] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=128
[    1.775319] RCU Tasks: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.784121] RCU Tasks Rude: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.793395] RCU Tasks Trace: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.806278] NR_IRQS: 524544, nr_irqs: 3624, preallocated irqs: 16
[    1.812465] rcu: srcu_init: Setting srcu_struct sizes to big.
[    1.818209] Console: colour dummy device 80x25
[    1.822492] printk: legacy console [ttyS0] enabled
[    1.822492] printk: legacy console [ttyS0] enabled
[    1.832025] printk: legacy bootconsole [earlyser0] disabled
[    1.832025] printk: legacy bootconsole [earlyser0] disabled
[    1.843211] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    1.854490] ACPI: Core revision 20250404
[    1.858639] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    1.867779] APIC: Switch to symmetric I/O mode setup
[    1.873178] AMD-Vi: Using global IVHD EFR:0x841f77e022094ace, EFR2:0x0
[    1.882150] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    1.907779] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x398d560b183, max_idle_ns: 881590735553 ns
[    1.918290] Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.67 BogoMIPS (lpj=7985352)
[    1.922302] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    1.926394] LVT offset 2 assigned for vector 0xf4
[    1.930322] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    1.934289] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    1.938290] process: using mwait in idle threads
[    1.942294] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    1.946289] Spectre V2 : Mitigation: Retpolines
[    1.950289] Spectre V2 : User space: Mitigation: STIBP always-on protection
[    1.954289] Speculative Return Stack Overflow: Mitigation: Safe RET
[    1.958289] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.962289] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
[    1.966289] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    1.970289] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    1.974293] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.978289] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.982289] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.986289] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    1.990289] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    1.994289] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    1.998289] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    2.002289] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    2.006289] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[    2.044800] Freeing SMP alternatives memory: 48K
[    2.046291] pid_max: default: 131072 minimum: 1024
[    2.058365] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm
[    2.062341] Yama: becoming mindful.
[    2.066415] AppArmor: AppArmor initialized
[    2.079557] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    2.087851] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    2.090439] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.094386] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.207645] smpboot: CPU0: AMD EPYC 7713 64-Core Processor (family: 0x19, model: 0x1, stepping: 0x1)
[    2.210642] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    2.214291] ... version:                0
[    2.218289] ... bit width:              48
[    2.222290] ... generic registers:      6
[    2.226289] ... value mask:             0000ffffffffffff
[    2.230289] ... max period:             00007fffffffffff
[    2.234289] ... fixed-purpose events:   0
[    2.238289] ... event mask:             000000000000003f
[    2.242723] signal: max sigframe size: 3376
[    2.246349] rcu: Hierarchical SRCU implementation.
[    2.250290] rcu: 	Max phase no-delay instances is 1000.
[    2.254346] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
[    2.266690] MCE: In-kernel MCE decoding enabled.
[    2.270338] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    2.275246] smp: Bringing up secondary CPUs ...
[    2.278452] smpboot: x86: Booting SMP configuration:
[    2.282292] .... node  #0, CPUs:          #1   #2   #3   #4   #5   #6   #7   #8   #9  #10  #11  #12  #13  #14  #15  #16  #17  #18  #19  #20  #21  #22  #23  #24  #25  #26  #27  #28  #29  #30  #31
[    2.294291] .... node  #1, CPUs:    #32  #33  #34  #35  #36  #37  #38  #39  #40  #41  #42  #43  #44  #45  #46  #47  #48  #49  #50  #51  #52  #53  #54  #55  #56  #57  #58  #59  #60  #61  #62  #63
[    2.446292] .... node  #0, CPUs:    #64  #65  #66  #67  #68  #69  #70  #71  #72  #73  #74  #75  #76  #77  #78  #79  #80  #81  #82  #83  #84  #85  #86  #87  #88  #89  #90  #91  #92  #93  #94  #95
[    2.454293] .... node  #1, CPUs:    #96  #97  #98  #99 #100 #101 #102 #103 #104 #105 #106 #107 #108 #109 #110 #111 #112 #113 #114 #115 #116 #117 #118 #119 #120 #121 #122 #123 #124 #125 #126 #127
[    2.462602] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[    2.614459] smp: Brought up 2 nodes, 128 CPUs
[    2.618293] smpboot: Total of 128 processors activated (511062.52 BogoMIPS)
[    2.630731] Memory: 262224972K/266975624K available (18401K kernel code, 3299K rwdata, 7944K rodata, 4760K init, 6092K bss, 4428300K reserved, 0K cma-reserved)
[    2.641597] devtmpfs: initialized
[    2.642396] x86/mm: Memory block size: 2048MB
[    2.658419] ACPI: PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    2.662291] ACPI: PM: Registering ACPI NVS region [mem 0x6dfcf000-0x6edfefff] (14876672 bytes)
[    2.666579] ACPI: PM: Registering ACPI NVS region [mem 0x6f000000-0x6f00afff] (45056 bytes)
[    2.670410] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    2.674353] posixtimers hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.678508] futex hash table entries: 16384 (1048576 bytes on 2 NUMA nodes, total 2048 KiB, linear).
[    2.682520] pinctrl core: initialized pinctrl subsystem
[    2.686442] PM: RTC time: 13:07:39, date: 2025-06-17
[    2.694404] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    2.698896] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    2.702472] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    2.706472] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    2.710297] audit: initializing netlink subsys (disabled)
[    2.714319] audit: type=2000 audit(1750165658.832:1): state=initialized audit_enabled=0 res=1
[    2.714493] thermal_sys: Registered thermal governor 'fair_share'
[    2.718291] thermal_sys: Registered thermal governor 'bang_bang'
[    2.722290] thermal_sys: Registered thermal governor 'step_wise'
[    2.726289] thermal_sys: Registered thermal governor 'user_space'
[    2.730313] cpuidle: using governor ladder
[    2.738300] cpuidle: using governor menu
[    2.742337] Detected 1 PCC Subspaces
[    2.745909] Registering PCC driver as Mailbox controller
[    2.746463] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    2.750291] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    2.754462] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    2.758301] PCI: Using configuration type 1 for base access
[    2.762296] PCI: Dell System detected, enabling pci=bfsort.
[    2.766496] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    2.770509] HugeTLB: allocation took 0ms with hugepage_allocation_threads=32
[    2.774332] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    2.778291] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    2.782292] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    2.786290] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    2.790949] ACPI: Added _OSI(Module Device)
[    2.794291] ACPI: Added _OSI(Processor Device)
[    2.798290] ACPI: Added _OSI(Processor Aggregator Device)
[    2.844656] ACPI: 6 ACPI AML tables successfully acquired and loaded
[    2.856573] ACPI: Interpreter enabled
[    2.858302] ACPI: PM: (supports S0 S5)
[    2.862290] ACPI: Using IOAPIC for interrupt routing
[    2.866907] HEST: Table parsing has been initialized.
[    2.870718] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    2.874292] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.878289] PCI: Ignoring E820 reservations for host bridge windows
[    2.888067] ACPI: Enabled 1 GPEs in block 00 to 1F
[    2.929979] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    2.930369] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    2.934367] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    2.938368] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    2.942367] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    2.946367] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    2.950367] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    2.954368] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    2.962407] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-3f])
[    2.966293] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.970456] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER DPC]
[    2.974606] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    2.978290] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.987194] PCI host bridge to bus 0000:00
[    2.990294] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    2.994290] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    2.998291] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000fffff window]
[    3.002290] pci_bus 0000:00: root bus resource [io  0x0d00-0x3fff window]
[    3.006290] pci_bus 0000:00: root bus resource [mem 0xe1000000-0xfebfffff window]
[    3.010290] pci_bus 0000:00: root bus resource [mem 0x63dc0000000-0x7fcffffffff window]
[    3.014290] pci_bus 0000:00: root bus resource [bus 00-3f]
[    3.018305] pci 0000:00:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.022445] pci 0000:00:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.026399] pci 0000:00:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.030383] pci 0000:00:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.034380] pci 0000:00:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.038384] pci 0000:00:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.042306] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.046293] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    3.050291] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    3.054359] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    3.062297] pci 0000:00:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.066387] pci 0000:00:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.070383] pci 0000:00:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.074383] pci 0000:00:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.078306] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.082295] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    3.086302] pci 0000:00:07.1: enabling Extended Tags
[    3.090337] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    3.094448] pci 0000:00:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.098383] pci 0000:00:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.102305] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.106294] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    3.110301] pci 0000:00:08.1: enabling Extended Tags
[    3.114339] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    3.118481] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
[    3.122405] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
[    3.126461] pci 0000:00:18.0: [1022:1650] type 00 class 0x060000 conventional PCI endpoint
[    3.130396] pci 0000:00:18.1: [1022:1651] type 00 class 0x060000 conventional PCI endpoint
[    3.134358] pci 0000:00:18.2: [1022:1652] type 00 class 0x060000 conventional PCI endpoint
[    3.142326] pci 0000:00:18.3: [1022:1653] type 00 class 0x060000 conventional PCI endpoint
[    3.146355] pci 0000:00:18.4: [1022:1654] type 00 class 0x060000 conventional PCI endpoint
[    3.150355] pci 0000:00:18.5: [1022:1655] type 00 class 0x060000 conventional PCI endpoint
[    3.154359] pci 0000:00:18.6: [1022:1656] type 00 class 0x060000 conventional PCI endpoint
[    3.158354] pci 0000:00:18.7: [1022:1657] type 00 class 0x060000 conventional PCI endpoint
[    3.162425] pci 0000:01:00.0: [1000:0097] type 00 class 0x010700 PCIe Endpoint
[    3.166322] pci 0000:01:00.0: BAR 0 [io  0x1000-0x10ff]
[    3.170292] pci 0000:01:00.0: BAR 1 [mem 0xf7400000-0xf740ffff 64bit]
[    3.174292] pci 0000:01:00.0: BAR 3 [mem 0xf7300000-0xf73fffff 64bit]
[    3.178292] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]
[    3.182295] pci 0000:01:00.0: enabling Extended Tags
[    3.186376] pci 0000:01:00.0: supports D1 D2
[    3.190333] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[    3.194290] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x000fffff 64bit]: contains BAR 0 for 16 VFs
[    3.198292] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x000fffff 64bit]
[    3.202290] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x00ffffff 64bit]: contains BAR 2 for 16 VFs
[    3.206443] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.210379] pci 0000:02:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.214323] pci 0000:02:00.0: enabling Extended Tags
[    3.218451] pci 0000:02:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.222317] pci 0000:02:00.2: BAR 2 [mem 0xf7200000-0xf727ffff]
[    3.226292] pci 0000:02:00.2: BAR 5 [mem 0xf7280000-0xf7281fff]
[    3.230294] pci 0000:02:00.2: enabling Extended Tags
[    3.234492] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.238428] pci 0000:03:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.242326] pci 0000:03:00.0: enabling Extended Tags
[    3.246505] pci 0000:03:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.250320] pci 0000:03:00.2: BAR 2 [mem 0xf7100000-0xf717ffff]
[    3.254292] pci 0000:03:00.2: BAR 5 [mem 0xf7180000-0xf7181fff]
[    3.258296] pci 0000:03:00.2: enabling Extended Tags
[    3.262485] pci 0000:03:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.266319] pci 0000:03:00.3: BAR 0 [mem 0xf7000000-0xf70fffff 64bit]
[    3.270298] pci 0000:03:00.3: enabling Extended Tags
[    3.274341] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
[    3.278473] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.287388] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 40-7f])
[    3.290293] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.294455] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.298606] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.302290] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.307219] PCI host bridge to bus 0000:40
[    3.310293] pci_bus 0000:40: root bus resource [io  0x4000-0x6fff window]
[    3.314290] pci_bus 0000:40: root bus resource [mem 0x90000000-0xaaffffff window]
[    3.318291] pci_bus 0000:40: root bus resource [mem 0x47e80000000-0x63dbfffffff window]
[    3.322290] pci_bus 0000:40: root bus resource [bus 40-7f]
[    3.326299] pci 0000:40:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.330388] pci 0000:40:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.334393] pci 0000:40:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.338374] pci 0000:40:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.342374] pci 0000:40:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.346383] pci 0000:40:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.350307] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.354295] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    3.358381] pci 0000:40:03.1: PME# supported from D0 D3hot D3cold
[    3.375178] pci 0000:40:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.378315] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.382296] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    3.390396] pci 0000:40:03.2: PME# supported from D0 D3hot D3cold
[    3.408755] pci 0000:40:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.410312] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.414295] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    3.418397] pci 0000:40:03.3: PME# supported from D0 D3hot D3cold
[    3.438515] pci 0000:40:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.442312] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.446297] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    3.450416] pci 0000:40:03.4: PME# supported from D0 D3hot D3cold
[    3.468501] pci 0000:40:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.470406] pci 0000:40:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.474379] pci 0000:40:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.478383] pci 0000:40:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.482309] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.486296] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    3.490304] pci 0000:40:07.1: enabling Extended Tags
[    3.494342] pci 0000:40:07.1: PME# supported from D0 D3hot D3cold
[    3.502461] pci 0000:40:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.510382] pci 0000:40:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.518307] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.522294] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    3.530302] pci 0000:40:08.1: enabling Extended Tags
[    3.534338] pci 0000:40:08.1: PME# supported from D0 D3hot D3cold
[    3.542545] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.546379] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.550373] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.554373] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.562381] pci 0000:45:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.566323] pci 0000:45:00.0: enabling Extended Tags
[    3.574446] pci 0000:45:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.582318] pci 0000:45:00.2: BAR 2 [mem 0xa5300000-0xa537ffff]
[    3.586292] pci 0000:45:00.2: BAR 5 [mem 0xa5380000-0xa5381fff]
[    3.594295] pci 0000:45:00.2: enabling Extended Tags
[    3.598487] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.602423] pci 0000:46:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.610326] pci 0000:46:00.0: enabling Extended Tags
[    3.614497] pci 0000:46:00.1: [1022:1486] type 00 class 0x108000 PCIe Endpoint
[    3.622319] pci 0000:46:00.1: BAR 2 [mem 0xa5100000-0xa51fffff]
[    3.630292] pci 0000:46:00.1: BAR 5 [mem 0xa5282000-0xa5283fff]
[    3.634295] pci 0000:46:00.1: enabling Extended Tags
[    3.638483] pci 0000:46:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.646321] pci 0000:46:00.2: BAR 2 [mem 0xa5200000-0xa527ffff]
[    3.654292] pci 0000:46:00.2: BAR 5 [mem 0xa5280000-0xa5281fff]
[    3.658296] pci 0000:46:00.2: enabling Extended Tags
[    3.662499] pci 0000:46:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.670318] pci 0000:46:00.3: BAR 0 [mem 0xa5000000-0xa50fffff 64bit]
[    3.678298] pci 0000:46:00.3: enabling Extended Tags
[    3.682339] pci 0000:46:00.3: PME# supported from D0 D3hot D3cold
[    3.690472] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.694976] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 80-bf])
[    3.702293] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.710466] acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.718606] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.726290] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.735206] PCI host bridge to bus 0000:80
[    3.738293] pci_bus 0000:80: root bus resource [io  0x7000-0x9fff window]
[    3.746290] pci_bus 0000:80: root bus resource [mem 0xab000000-0xc5ffffff window]
[    3.754290] pci_bus 0000:80: root bus resource [mem 0x2bf40000000-0x47e7fffffff window]
[    3.762290] pci_bus 0000:80: root bus resource [bus 80-bf]
[    3.766299] pci 0000:80:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.774391] pci 0000:80:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.782391] pci 0000:80:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.790384] pci 0000:80:01.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.798307] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.806297] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    3.810381] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    3.831329] pci 0000:80:01.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.838309] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.842295] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    3.850386] pci 0000:80:01.2: PME# supported from D0 D3hot D3cold
[    3.869683] pci 0000:80:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.878488] pci 0000:80:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.886421] pci 0000:80:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.894379] pci 0000:80:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.902378] pci 0000:80:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.910379] pci 0000:80:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.918305] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.922294] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    3.930302] pci 0000:80:07.1: enabling Extended Tags
[    3.934337] pci 0000:80:07.1: PME# supported from D0 D3hot D3cold
[    3.942445] pci 0000:80:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.950382] pci 0000:80:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.958305] pci 0000:80:08.1: PCI bridge to [bus 84]
[    3.962295] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    3.970301] pci 0000:80:08.1: enabling Extended Tags
[    3.974339] pci 0000:80:08.1: PME# supported from D0 D3hot D3cold
[    3.978457] pci 0000:80:08.2: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.986307] pci 0000:80:08.2: PCI bridge to [bus 85]
[    3.990294] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    3.998301] pci 0000:80:08.2: enabling Extended Tags
[    4.002339] pci 0000:80:08.2: PME# supported from D0 D3hot D3cold
[    4.010530] pci 0000:80:01.1: PCI bridge to [bus 81]
[    4.014372] pci 0000:80:01.2: PCI bridge to [bus 82]
[    4.018377] pci 0000:83:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    4.026324] pci 0000:83:00.0: enabling Extended Tags
[    4.034452] pci 0000:83:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.038318] pci 0000:83:00.2: BAR 2 [mem 0xbfa00000-0xbfa7ffff]
[    4.046292] pci 0000:83:00.2: BAR 5 [mem 0xbfa80000-0xbfa81fff]
[    4.050294] pci 0000:83:00.2: enabling Extended Tags
[    4.058492] pci 0000:80:07.1: PCI bridge to [bus 83]
[    4.062423] pci 0000:84:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.070326] pci 0000:84:00.0: enabling Extended Tags
[    4.074500] pci 0000:84:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.082319] pci 0000:84:00.2: BAR 2 [mem 0xbf900000-0xbf97ffff]
[    4.086293] pci 0000:84:00.2: BAR 5 [mem 0xbf980000-0xbf981fff]
[    4.094295] pci 0000:84:00.2: enabling Extended Tags
[    4.098498] pci 0000:80:08.1: PCI bridge to [bus 84]
[    4.102424] pci 0000:85:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[    4.110321] pci 0000:85:00.0: BAR 5 [mem 0xbf800000-0xbf8007ff]
[    4.118295] pci 0000:85:00.0: enabling Extended Tags
[    4.122354] pci 0000:85:00.0: PME# supported from D3hot D3cold
[    4.126468] pci 0000:80:08.2: PCI bridge to [bus 85]
[    4.134616] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus c0-ff])
[    4.138293] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    4.150346] acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug AER DPC]
[    4.158607] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    4.166290] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
[    4.175315] PCI host bridge to bus 0000:c0
[    4.178293] pci_bus 0000:c0: root bus resource [io  0xa000-0xffff window]
[    4.186290] pci_bus 0000:c0: root bus resource [mem 0xc6000000-0xe0ffffff window]
[    4.194290] pci_bus 0000:c0: root bus resource [mem 0x10000000000-0x2bf3fffffff window]
[    4.202290] pci_bus 0000:c0: root bus resource [io  0x03b0-0x03df window]
[    4.206290] pci_bus 0000:c0: root bus resource [mem 0x000a0000-0x000bffff window]
[    4.214291] pci_bus 0000:c0: root bus resource [bus c0-ff]
[    4.222299] pci 0000:c0:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    4.230387] pci 0000:c0:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    4.238306] pci 0000:c0:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.246375] pci 0000:c0:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.254376] pci 0000:c0:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.262384] pci 0000:c0:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.270307] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.274296] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    4.282380] pci 0000:c0:03.1: PME# supported from D0 D3hot D3cold
[    4.302139] pci 0000:c0:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.310308] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.314295] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    4.318384] pci 0000:c0:03.2: PME# supported from D0 D3hot D3cold
[    4.340938] pci 0000:c0:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.346312] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.350297] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    4.358362] pci 0000:c0:03.3: PME# supported from D0 D3hot D3cold
[    4.376890] pci 0000:c0:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.378312] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.382295] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    4.386403] pci 0000:c0:03.4: PME# supported from D0 D3hot D3cold
[    4.408236] pci 0000:c0:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.410419] pci 0000:c0:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.414385] pci 0000:c0:05.1: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.418309] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.422302] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    4.426387] pci 0000:c0:05.1: PME# supported from D0 D3hot D3cold
[    4.430447] pci 0000:c0:05.2: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.434305] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.438294] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    4.442295] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.446336] pci 0000:c0:05.2: PME# supported from D0 D3hot D3cold
[    4.450432] pci 0000:c0:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.454381] pci 0000:c0:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.458304] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.462294] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    4.466301] pci 0000:c0:07.1: enabling Extended Tags
[    4.470336] pci 0000:c0:07.1: PME# supported from D0 D3hot D3cold
[    4.474439] pci 0000:c0:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.478383] pci 0000:c0:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.482305] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.486294] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    4.490301] pci 0000:c0:08.1: enabling Extended Tags
[    4.494337] pci 0000:c0:08.1: PME# supported from D0 D3hot D3cold
[    4.498529] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.502372] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.506372] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.510373] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.514391] pci 0000:c1:00.0: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.518336] pci 0000:c1:00.0: BAR 0 [mem 0xc7030000-0xc703ffff 64bit pref]
[    4.522292] pci 0000:c1:00.0: BAR 2 [mem 0xc7040000-0xc704ffff 64bit pref]
[    4.526292] pci 0000:c1:00.0: BAR 4 [mem 0xc7050000-0xc705ffff 64bit pref]
[    4.530291] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.534377] pci 0000:c1:00.0: PME# supported from D0 D3hot D3cold
[    4.538345] pci 0000:c1:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:c0:05.1 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
[    4.547088] pci 0000:c1:00.1: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.550336] pci 0000:c1:00.1: BAR 0 [mem 0xc7000000-0xc700ffff 64bit pref]
[    4.554293] pci 0000:c1:00.1: BAR 2 [mem 0xc7010000-0xc701ffff 64bit pref]
[    4.558292] pci 0000:c1:00.1: BAR 4 [mem 0xc7020000-0xc702ffff 64bit pref]
[    4.562291] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.566379] pci 0000:c1:00.1: PME# supported from D0 D3hot D3cold
[    4.578323] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.582371] pci 0000:c2:00.0: [1556:be00] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    4.586316] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.590297] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    4.594299] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.606314] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.610326] pci_bus 0000:c3: extended config space not accessible
[    4.614318] pci 0000:c3:00.0: [102b:0536] type 00 class 0x030000 conventional PCI endpoint
[    4.618336] pci 0000:c3:00.0: BAR 0 [mem 0xc6000000-0xc6ffffff pref]
[    4.622291] pci 0000:c3:00.0: BAR 1 [mem 0xda808000-0xda80bfff]
[    4.626291] pci 0000:c3:00.0: BAR 2 [mem 0xda000000-0xda7fffff]
[    4.630309] pci 0000:c3:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    4.634416] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.638389] pci 0000:c8:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    4.642322] pci 0000:c8:00.0: enabling Extended Tags
[    4.646448] pci 0000:c8:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.650316] pci 0000:c8:00.2: BAR 2 [mem 0xdbb00000-0xdbb7ffff]
[    4.654292] pci 0000:c8:00.2: BAR 5 [mem 0xdbb80000-0xdbb81fff]
[    4.658294] pci 0000:c8:00.2: enabling Extended Tags
[    4.666401] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.670422] pci 0000:c9:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.674326] pci 0000:c9:00.0: enabling Extended Tags
[    4.678501] pci 0000:c9:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.682319] pci 0000:c9:00.2: BAR 2 [mem 0xdba00000-0xdba7ffff]
[    4.686292] pci 0000:c9:00.2: BAR 5 [mem 0xdba80000-0xdba81fff]
[    4.690295] pci 0000:c9:00.2: enabling Extended Tags
[    4.694492] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.705385] iommu: Default domain type: Translated
[    4.706290] iommu: DMA domain TLB invalidation policy: lazy mode
[    4.714584] SCSI subsystem initialized
[    4.718334] ACPI: bus type USB registered
[    4.722313] usbcore: registered new interface driver usbfs
[    4.726300] usbcore: registered new interface driver hub
[    4.730560] usbcore: registered new device driver usb
[    4.734324] pps_core: LinuxPPS API ver. 1 registered
[    4.738290] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux•it>
[    4.742295] PTP clock support registered
[    4.746373] EDAC MC: Ver: 3.0.0
[    4.750508] efivars: Registered efivars operations
[    4.754752] NetLabel: Initializing
[    4.758292] NetLabel:  domain hash size = 128
[    4.762290] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    4.766312] NetLabel:  unlabeled traffic allowed by default
[    4.770341] PCI: Using ACPI for IRQ routing
[    4.778656] pci 0000:c3:00.0: vgaarb: setting as boot VGA device
[    4.782288] pci 0000:c3:00.0: vgaarb: bridge control possible
[    4.782288] pci 0000:c3:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    4.782291] vgaarb: loaded
[    4.785005] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    4.786290] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    4.794503] clocksource: Switched to clocksource tsc-early
[    4.800084] VFS: Disk quotas dquot_6.6.0
[    4.804033] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.811152] AppArmor: AppArmor Filesystem Enabled
[    4.815875] pnp: PnP ACPI init
[    4.819177] system 00:00: [mem 0x80000000-0x8fffffff] has been reserved
[    4.825892] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[    4.834084] pnp: PnP ACPI: found 5 devices
[    4.845217] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    4.854199] NET: Registered PF_INET protocol family
[    4.859225] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.870998] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.879951] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    4.887979] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.897473] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.905851] TCP: Hash tables configured (established 524288 bind 65536)
[    4.912833] UDP hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.921254] UDP-Lite hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.930081] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    4.935750] NET: Registered PF_XDP protocol family
[    4.940545] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.950363] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.960185] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.970008] pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
[    4.975675] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: can't assign; no space
[    4.983415] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: failed to assign
[    4.990633] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: can't assign; no space
[    4.998890] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: failed to assign
[    5.006631] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: can't assign; no space
[    5.014890] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: failed to assign
[    5.022629] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.027593] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    5.033686] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    5.040475] pci 0000:00:07.1: PCI bridge to [bus 02]
[    5.045448] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    5.052235] pci 0000:00:08.1: PCI bridge to [bus 03]
[    5.057208] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.063994] PCI: No. 2 try to assign unassigned res
[    5.068872] pci 0000:00:03.2: resource 14 [mem 0xf7300000-0xf74fffff] released
[    5.076105] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.081079] pci 0000:00:03.2: bridge window [mem 0x00100000-0x002fffff] to [bus 01] add_size 1200000 add_align 100000
[    5.091681] pci 0000:00:03.2: bridge window [mem 0xe1000000-0xe23fffff]: assigned
[    5.099160] pci 0000:01:00.0: BAR 3 [mem 0xe1000000-0xe10fffff 64bit]: assigned
[    5.106469] pci 0000:01:00.0: ROM [mem 0xe1100000-0xe11fffff pref]: assigned
[    5.113518] pci 0000:01:00.0: VF BAR 2 [mem 0xe1200000-0xe21fffff 64bit]: assigned
[    5.121083] pci 0000:01:00.0: BAR 1 [mem 0xe2200000-0xe220ffff 64bit]: assigned
[    5.128395] pci 0000:01:00.0: VF BAR 0 [mem 0xe2210000-0xe230ffff 64bit]: assigned
[    5.135965] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.140930] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    5.147020] pci 0000:00:03.2:   bridge window [mem 0xe1000000-0xe23fffff]
[    5.153811] pci 0000:00:07.1: PCI bridge to [bus 02]
[    5.158781] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    5.165570] pci 0000:00:08.1: PCI bridge to [bus 03]
[    5.170540] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.177330] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    5.183514] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    5.189693] pci_bus 0000:00: resource 6 [mem 0x000c0000-0x000fffff window]
[    5.196563] pci_bus 0000:00: resource 7 [io  0x0d00-0x3fff window]
[    5.202744] pci_bus 0000:00: resource 8 [mem 0xe1000000-0xfebfffff window]
[    5.209615] pci_bus 0000:00: resource 9 [mem 0x63dc0000000-0x7fcffffffff window]
[    5.217009] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[    5.222581] pci_bus 0000:01: resource 1 [mem 0xe1000000-0xe23fffff]
[    5.228844] pci_bus 0000:02: resource 1 [mem 0xf7200000-0xf72fffff]
[    5.235110] pci_bus 0000:03: resource 1 [mem 0xf7000000-0xf71fffff]
[    5.241453] pci 0000:40:03.1: bridge window [io  0x1000-0x0fff] to [bus 41] add_size 1000
[    5.249628] pci 0000:40:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 41] add_size 200000 add_align 100000
[    5.261093] pci 0000:40:03.2: bridge window [io  0x1000-0x0fff] to [bus 42] add_size 1000
[    5.269263] pci 0000:40:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 42] add_size 200000 add_align 100000
[    5.280727] pci 0000:40:03.3: bridge window [io  0x1000-0x0fff] to [bus 43] add_size 1000
[    5.288919] pci 0000:40:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 43] add_size 200000 add_align 100000
[    5.300385] pci 0000:40:03.4: bridge window [io  0x1000-0x0fff] to [bus 44] add_size 1000
[    5.308557] pci 0000:40:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 44] add_size 200000 add_align 100000
[    5.320029] pci 0000:40:03.1: bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]: assigned
[    5.328984] pci 0000:40:03.2: bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]: assigned
[    5.337939] pci 0000:40:03.3: bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]: assigned
[    5.346896] pci 0000:40:03.4: bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]: assigned
[    5.355846] pci 0000:40:03.1: bridge window [io  0x4000-0x4fff]: assigned
[    5.362631] pci 0000:40:03.2: bridge window [io  0x5000-0x5fff]: assigned
[    5.369418] pci 0000:40:03.3: bridge window [io  0x6000-0x6fff]: assigned
[    5.376205] pci 0000:40:03.4: bridge window [io  size 0x1000]: can't assign; no space
[    5.384029] pci 0000:40:03.4: bridge window [io  size 0x1000]: failed to assign
[    5.391338] pci 0000:40:03.4: bridge window [io  0x4000-0x4fff]: assigned
[    5.398155] pci 0000:40:03.3: bridge window [io  0x5000-0x5fff]: assigned
[    5.404941] pci 0000:40:03.2: bridge window [io  0x6000-0x6fff]: assigned
[    5.411725] pci 0000:40:03.1: bridge window [io  size 0x1000]: can't assign; no space
[    5.419550] pci 0000:40:03.1: bridge window [io  size 0x1000]: failed to assign
[    5.426856] pci 0000:40:03.1: PCI bridge to [bus 41]
[    5.431824] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    5.438610] pci 0000:40:03.1:   bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.446870] pci 0000:40:03.2: PCI bridge to [bus 42]
[    5.451841] pci 0000:40:03.2:   bridge window [io  0x6000-0x6fff]
[    5.457934] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    5.464718] pci 0000:40:03.2:   bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.472981] pci 0000:40:03.3: PCI bridge to [bus 43]
[    5.477944] pci 0000:40:03.3:   bridge window [io  0x5000-0x5fff]
[    5.484036] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    5.490823] pci 0000:40:03.3:   bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.499082] pci 0000:40:03.4: PCI bridge to [bus 44]
[    5.504044] pci 0000:40:03.4:   bridge window [io  0x4000-0x4fff]
[    5.510143] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    5.516933] pci 0000:40:03.4:   bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.525195] pci 0000:40:07.1: PCI bridge to [bus 45]
[    5.530166] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    5.536954] pci 0000:40:08.1: PCI bridge to [bus 46]
[    5.541917] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    5.548704] pci_bus 0000:40: Some PCI device resources are unassigned, try booting with pci=realloc
[    5.557738] pci_bus 0000:40: resource 4 [io  0x4000-0x6fff window]
[    5.563918] pci_bus 0000:40: resource 5 [mem 0x90000000-0xaaffffff window]
[    5.570791] pci_bus 0000:40: resource 6 [mem 0x47e80000000-0x63dbfffffff window]
[    5.578182] pci_bus 0000:41: resource 1 [mem 0xa4c00000-0xa4ffffff]
[    5.584450] pci_bus 0000:41: resource 2 [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.592188] pci_bus 0000:42: resource 0 [io  0x6000-0x6fff]
[    5.597758] pci_bus 0000:42: resource 1 [mem 0xa4800000-0xa4bfffff]
[    5.604060] pci_bus 0000:42: resource 2 [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.611797] pci_bus 0000:43: resource 0 [io  0x5000-0x5fff]
[    5.617374] pci_bus 0000:43: resource 1 [mem 0xa4400000-0xa47fffff]
[    5.623636] pci_bus 0000:43: resource 2 [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.631377] pci_bus 0000:44: resource 0 [io  0x4000-0x4fff]
[    5.636946] pci_bus 0000:44: resource 1 [mem 0xa4000000-0xa43fffff]
[    5.643213] pci_bus 0000:44: resource 2 [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.650952] pci_bus 0000:45: resource 1 [mem 0xa5300000-0xa53fffff]
[    5.657218] pci_bus 0000:46: resource 1 [mem 0xa5000000-0xa52fffff]
[    5.663549] pci 0000:80:01.1: bridge window [io  0x1000-0x0fff] to [bus 81] add_size 1000
[    5.671723] pci 0000:80:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 81] add_size 200000 add_align 100000
[    5.683191] pci 0000:80:01.2: bridge window [io  0x1000-0x0fff] to [bus 82] add_size 1000
[    5.691364] pci 0000:80:01.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 82] add_size 200000 add_align 100000
[    5.702831] pci 0000:80:01.1: bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]: assigned
[    5.711806] pci 0000:80:01.2: bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]: assigned
[    5.720763] pci 0000:80:01.1: bridge window [io  0x7000-0x7fff]: assigned
[    5.727553] pci 0000:80:01.2: bridge window [io  0x8000-0x8fff]: assigned
[    5.734339] pci 0000:80:01.1: PCI bridge to [bus 81]
[    5.739302] pci 0000:80:01.1:   bridge window [io  0x7000-0x7fff]
[    5.745397] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    5.752183] pci 0000:80:01.1:   bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.760441] pci 0000:80:01.2: PCI bridge to [bus 82]
[    5.765406] pci 0000:80:01.2:   bridge window [io  0x8000-0x8fff]
[    5.771500] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    5.778286] pci 0000:80:01.2:   bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.786546] pci 0000:80:07.1: PCI bridge to [bus 83]
[    5.791519] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    5.798307] pci 0000:80:08.1: PCI bridge to [bus 84]
[    5.803277] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    5.810102] pci 0000:80:08.2: PCI bridge to [bus 85]
[    5.815073] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    5.821859] pci_bus 0000:80: resource 4 [io  0x7000-0x9fff window]
[    5.828037] pci_bus 0000:80: resource 5 [mem 0xab000000-0xc5ffffff window]
[    5.834908] pci_bus 0000:80: resource 6 [mem 0x2bf40000000-0x47e7fffffff window]
[    5.842298] pci_bus 0000:81: resource 0 [io  0x7000-0x7fff]
[    5.847872] pci_bus 0000:81: resource 1 [mem 0xbf400000-0xbf7fffff]
[    5.854137] pci_bus 0000:81: resource 2 [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.861877] pci_bus 0000:82: resource 0 [io  0x8000-0x8fff]
[    5.867448] pci_bus 0000:82: resource 1 [mem 0xbf000000-0xbf3fffff]
[    5.873716] pci_bus 0000:82: resource 2 [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.881452] pci_bus 0000:83: resource 1 [mem 0xbfa00000-0xbfafffff]
[    5.887718] pci_bus 0000:84: resource 1 [mem 0xbf900000-0xbf9fffff]
[    5.893984] pci_bus 0000:85: resource 1 [mem 0xbf800000-0xbf8fffff]
[    5.900319] pci 0000:c0:03.1: bridge window [io  0x1000-0x0fff] to [bus c4] add_size 1000
[    5.908503] pci 0000:c0:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c4] add_size 200000 add_align 100000
[    5.920025] pci 0000:c0:03.2: bridge window [io  0x1000-0x0fff] to [bus c5] add_size 1000
[    5.928196] pci 0000:c0:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c5] add_size 200000 add_align 100000
[    5.939664] pci 0000:c0:03.3: bridge window [io  0x1000-0x0fff] to [bus c6] add_size 1000
[    5.947835] pci 0000:c0:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c6] add_size 200000 add_align 100000
[    5.959302] pci 0000:c0:03.4: bridge window [io  0x1000-0x0fff] to [bus c7] add_size 1000
[    5.967471] pci 0000:c0:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c7] add_size 200000 add_align 100000
[    5.978939] pci 0000:c0:05.1: bridge window [mem 0x00100000-0x000fffff] to [bus c1] add_size 100000 add_align 100000
[    5.989458] pci 0000:c0:03.1: bridge window [mem 0x10000000000-0x100001fffff 64bit pref]: assigned
[    5.998409] pci 0000:c0:03.2: bridge window [mem 0x10000200000-0x100003fffff 64bit pref]: assigned
[    6.007362] pci 0000:c0:03.3: bridge window [mem 0x10000400000-0x100005fffff 64bit pref]: assigned
[    6.016315] pci 0000:c0:03.4: bridge window [mem 0x10000600000-0x100007fffff 64bit pref]: assigned
[    6.025283] pci 0000:c0:05.1: bridge window [mem 0xc7100000-0xc71fffff]: assigned
[    6.032761] pci 0000:c0:03.1: bridge window [io  0xa000-0xafff]: assigned
[    6.039548] pci 0000:c0:03.2: bridge window [io  0xb000-0xbfff]: assigned
[    6.046332] pci 0000:c0:03.3: bridge window [io  0xc000-0xcfff]: assigned
[    6.053121] pci 0000:c0:03.4: bridge window [io  0xd000-0xdfff]: assigned
[    6.059904] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    6.064871] pci 0000:c0:03.1:   bridge window [io  0xa000-0xafff]
[    6.070964] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    6.077749] pci 0000:c0:03.1:   bridge window [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.086007] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    6.090971] pci 0000:c0:03.2:   bridge window [io  0xb000-0xbfff]
[    6.097066] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    6.103849] pci 0000:c0:03.2:   bridge window [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.112111] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    6.117076] pci 0000:c0:03.3:   bridge window [io  0xc000-0xcfff]
[    6.123170] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    6.129988] pci 0000:c0:03.3:   bridge window [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.138252] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    6.143220] pci 0000:c0:03.4:   bridge window [io  0xd000-0xdfff]
[    6.149314] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    6.156100] pci 0000:c0:03.4:   bridge window [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.164381] pci 0000:c1:00.0: ROM [mem 0xc7100000-0xc713ffff pref]: assigned
[    6.171436] pci 0000:c1:00.1: ROM [mem 0xc7140000-0xc717ffff pref]: assigned
[    6.178483] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    6.183451] pci 0000:c0:05.1:   bridge window [mem 0xc7100000-0xc71fffff]
[    6.190244] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.197986] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    6.202958] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    6.209744] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.217482] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    6.222706] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    6.229520] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.237266] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    6.242230] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    6.249020] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    6.253990] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    6.260779] pci_bus 0000:c0: resource 4 [io  0xa000-0xffff window]
[    6.266962] pci_bus 0000:c0: resource 5 [mem 0xc6000000-0xe0ffffff window]
[    6.273834] pci_bus 0000:c0: resource 6 [mem 0x10000000000-0x2bf3fffffff window]
[    6.281226] pci_bus 0000:c0: resource 7 [io  0x03b0-0x03df window]
[    6.287408] pci_bus 0000:c0: resource 8 [mem 0x000a0000-0x000bffff window]
[    6.294284] pci_bus 0000:c4: resource 0 [io  0xa000-0xafff]
[    6.299862] pci_bus 0000:c4: resource 1 [mem 0xdb600000-0xdb9fffff]
[    6.306125] pci_bus 0000:c4: resource 2 [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.313863] pci_bus 0000:c5: resource 0 [io  0xb000-0xbfff]
[    6.319435] pci_bus 0000:c5: resource 1 [mem 0xdb200000-0xdb5fffff]
[    6.325702] pci_bus 0000:c5: resource 2 [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.333441] pci_bus 0000:c6: resource 0 [io  0xc000-0xcfff]
[    6.339011] pci_bus 0000:c6: resource 1 [mem 0xdae00000-0xdb1fffff]
[    6.345278] pci_bus 0000:c6: resource 2 [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.353018] pci_bus 0000:c7: resource 0 [io  0xd000-0xdfff]
[    6.358589] pci_bus 0000:c7: resource 1 [mem 0xdaa00000-0xdadfffff]
[    6.364856] pci_bus 0000:c7: resource 2 [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.372594] pci_bus 0000:c1: resource 1 [mem 0xc7100000-0xc71fffff]
[    6.378858] pci_bus 0000:c1: resource 2 [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.386079] pci_bus 0000:c2: resource 1 [mem 0xda000000-0xda8fffff]
[    6.392344] pci_bus 0000:c2: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.399564] pci_bus 0000:c3: resource 1 [mem 0xda000000-0xda8fffff]
[    6.405830] pci_bus 0000:c3: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.413048] pci_bus 0000:c8: resource 1 [mem 0xdbb00000-0xdbbfffff]
[    6.419314] pci_bus 0000:c9: resource 1 [mem 0xdba00000-0xdbafffff]
[    6.426376] PCI: CLS 64 bytes, default 64
[    6.430484] Trying to unpack rootfs image as initramfs...
[    6.493403] AMD-Vi: IOMMU SNP support enabled.
[    6.498040] pci 0000:c0:00.2: AMD-Vi: IOMMU performance counters supported
[    6.505082] pci 0000:c0:01.0: Adding to iommu group 0
[    6.510187] pci 0000:c0:02.0: Adding to iommu group 1
[    6.515387] pci 0000:c0:03.0: Adding to iommu group 2
[    6.520484] pci 0000:c0:03.1: Adding to iommu group 2
[    6.525589] pci 0000:c0:03.2: Adding to iommu group 2
[    6.530693] pci 0000:c0:03.3: Adding to iommu group 2
[    6.535798] pci 0000:c0:03.4: Adding to iommu group 2
[    6.540924] pci 0000:c0:04.0: Adding to iommu group 3
[    6.546074] pci 0000:c0:05.0: Adding to iommu group 4
[    6.551171] pci 0000:c0:05.1: Adding to iommu group 4
[    6.556281] pci 0000:c0:05.2: Adding to iommu group 4
[    6.561389] pci 0000:c0:07.0: Adding to iommu group 5
[    6.566479] pci 0000:c0:07.1: Adding to iommu group 6
[    6.571587] pci 0000:c0:08.0: Adding to iommu group 7
[    6.576679] pci 0000:c0:08.1: Adding to iommu group 8
[    6.581740] pci 0000:c1:00.0: Adding to iommu group 4
[    6.586800] pci 0000:c1:00.1: Adding to iommu group 4
[    6.591861] pci 0000:c2:00.0: Adding to iommu group 4
[    6.596927] pci 0000:c3:00.0: Adding to iommu group 4
[    6.602019] pci 0000:c8:00.0: Adding to iommu group 9
[    6.607105] pci 0000:c8:00.2: Adding to iommu group 10
[    6.612280] pci 0000:c9:00.0: Adding to iommu group 11
[    6.617453] pci 0000:c9:00.2: Adding to iommu group 12
[    6.628851] pci 0000:80:00.2: AMD-Vi: IOMMU performance counters supported
[    6.635915] pci 0000:80:01.0: Adding to iommu group 13
[    6.641102] pci 0000:80:01.1: Adding to iommu group 13
[    6.646285] pci 0000:80:01.2: Adding to iommu group 13
[    6.651479] pci 0000:80:02.0: Adding to iommu group 14
[    6.656671] pci 0000:80:03.0: Adding to iommu group 15
[    6.661865] pci 0000:80:04.0: Adding to iommu group 16
[    6.667060] pci 0000:80:05.0: Adding to iommu group 17
[    6.672254] pci 0000:80:07.0: Adding to iommu group 18
[    6.677430] pci 0000:80:07.1: Adding to iommu group 19
[    6.682629] pci 0000:80:08.0: Adding to iommu group 20
[    6.687803] pci 0000:80:08.1: Adding to iommu group 21
[    6.692977] pci 0000:80:08.2: Adding to iommu group 22
[    6.698151] pci 0000:83:00.0: Adding to iommu group 23
[    6.703326] pci 0000:83:00.2: Adding to iommu group 24
[    6.708497] pci 0000:84:00.0: Adding to iommu group 25
[    6.713673] pci 0000:84:00.2: Adding to iommu group 26
[    6.718847] pci 0000:85:00.0: Adding to iommu group 27
[    6.731144] pci 0000:40:00.2: AMD-Vi: IOMMU performance counters supported
[    6.738155] pci 0000:40:01.0: Adding to iommu group 28
[    6.743352] pci 0000:40:02.0: Adding to iommu group 29
[    6.748654] pci 0000:40:03.0: Adding to iommu group 30
[    6.753834] pci 0000:40:03.1: Adding to iommu group 30
[    6.759007] pci 0000:40:03.2: Adding to iommu group 30
[    6.764181] pci 0000:40:03.3: Adding to iommu group 30
[    6.769355] pci 0000:40:03.4: Adding to iommu group 30
[    6.774544] pci 0000:40:04.0: Adding to iommu group 31
[    6.779740] pci 0000:40:05.0: Adding to iommu group 32
[    6.784939] pci 0000:40:07.0: Adding to iommu group 33
[    6.790118] pci 0000:40:07.1: Adding to iommu group 34
[    6.795312] pci 0000:40:08.0: Adding to iommu group 35
[    6.800490] pci 0000:40:08.1: Adding to iommu group 36
[    6.805664] pci 0000:45:00.0: Adding to iommu group 37
[    6.810837] pci 0000:45:00.2: Adding to iommu group 38
[    6.816011] pci 0000:46:00.0: Adding to iommu group 39
[    6.821185] pci 0000:46:00.1: Adding to iommu group 40
[    6.826357] pci 0000:46:00.2: Adding to iommu group 41
[    6.831535] pci 0000:46:00.3: Adding to iommu group 42
[    6.843766] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    6.850836] pci 0000:00:00.0: Adding to iommu group 43
[    6.856034] pci 0000:00:01.0: Adding to iommu group 44
[    6.861232] pci 0000:00:02.0: Adding to iommu group 45
[    6.866311] Freeing initrd memory: 38564K
[    6.866426] pci 0000:00:03.0: Adding to iommu group 46
[    6.875558] pci 0000:00:03.2: Adding to iommu group 47
[    6.880759] pci 0000:00:04.0: Adding to iommu group 48
[    6.885955] pci 0000:00:05.0: Adding to iommu group 49
[    6.891149] pci 0000:00:07.0: Adding to iommu group 50
[    6.896330] pci 0000:00:07.1: Adding to iommu group 51
[    6.901520] pci 0000:00:08.0: Adding to iommu group 52
[    6.906690] pci 0000:00:08.1: Adding to iommu group 53
[    6.911911] pci 0000:00:14.0: Adding to iommu group 54
[    6.917080] pci 0000:00:14.3: Adding to iommu group 54
[    6.922434] pci 0000:00:18.0: Adding to iommu group 55
[    6.927611] pci 0000:00:18.1: Adding to iommu group 55
[    6.932784] pci 0000:00:18.2: Adding to iommu group 55
[    6.937956] pci 0000:00:18.3: Adding to iommu group 55
[    6.943131] pci 0000:00:18.4: Adding to iommu group 55
[    6.948304] pci 0000:00:18.5: Adding to iommu group 55
[    6.953505] pci 0000:00:18.6: Adding to iommu group 55
[    6.958681] pci 0000:00:18.7: Adding to iommu group 55
[    6.963853] pci 0000:01:00.0: Adding to iommu group 56
[    6.969027] pci 0000:02:00.0: Adding to iommu group 57
[    6.974201] pci 0000:02:00.2: Adding to iommu group 58
[    6.979375] pci 0000:03:00.0: Adding to iommu group 59
[    6.984547] pci 0000:03:00.2: Adding to iommu group 60
[    6.989720] pci 0000:03:00.3: Adding to iommu group 61
[    7.003813] AMD-Vi: Extended features (0x841f77e022094ace, 0x0): PPR X2APIC NX IA GA PC SNP
[    7.012177] AMD-Vi: Interrupt remapping enabled
[    7.016714] AMD-Vi: X2APIC enabled
[    7.021239] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    7.027682] software IO TLB: mapped [mem 0x000000005bf37000-0x0000000063f37000] (128MB)
[    7.035834] LVT offset 0 assigned for vector 0x400
[    7.042219] perf: AMD IBS detected (0x000003ff)
[    7.048045] amd_uncore: 4 amd_df counters detected
[    7.052904] amd_uncore: 6 amd_l3 counters detected
[    7.059244] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    7.066407] perf/amd_iommu: Detected AMD IOMMU #1 (2 banks, 4 counters/bank).
[    7.073570] perf/amd_iommu: Detected AMD IOMMU #2 (2 banks, 4 counters/bank).
[    7.080729] perf/amd_iommu: Detected AMD IOMMU #3 (2 banks, 4 counters/bank).
[    7.091137] Initialise system trusted keyrings
[    7.095596] Key type blacklist registered
[    7.099766] workingset: timestamp_bits=36 max_order=26 bucket_order=0
[    7.106722] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    7.112715] fuse: init (API version 7.44)
[    7.116986] integrity: Platform Keyring initialized
[    7.133791] Key type asymmetric registered
[    7.137894] Asymmetric key parser 'x509' registered
[    7.142805] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    7.150301] io scheduler mq-deadline registered
[    7.157509] ledtrig-cpu: registered to indicate activity on CPUs
[    7.163819] pcieport 0000:00:03.2: PME: Signaling with IRQ 38
[    7.169961] pcieport 0000:00:07.1: PME: Signaling with IRQ 40
[    7.175940] pcieport 0000:00:08.1: PME: Signaling with IRQ 41
[    7.181904] pcieport 0000:40:03.1: PME: Signaling with IRQ 42
[    7.187706] pcieport 0000:40:03.1: pciehp: Slot #167 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.201732] pcieport 0000:40:03.2: PME: Signaling with IRQ 43
[    7.207536] pcieport 0000:40:03.2: pciehp: Slot #166 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.221530] pcieport 0000:40:03.3: PME: Signaling with IRQ 44
[    7.227323] pcieport 0000:40:03.3: pciehp: Slot #169 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.241326] pcieport 0000:40:03.4: PME: Signaling with IRQ 45
[    7.247122] pcieport 0000:40:03.4: pciehp: Slot #168 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.261196] pcieport 0000:40:07.1: PME: Signaling with IRQ 47
[    7.267163] pcieport 0000:40:08.1: PME: Signaling with IRQ 48
[    7.273293] pcieport 0000:80:01.1: PME: Signaling with IRQ 49
[    7.279105] pcieport 0000:80:01.1: pciehp: Slot #160 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.293104] pcieport 0000:80:01.2: PME: Signaling with IRQ 50
[    7.298899] pcieport 0000:80:01.2: pciehp: Slot #161 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.313040] pcieport 0000:80:07.1: PME: Signaling with IRQ 52
[    7.319098] pcieport 0000:80:08.1: PME: Signaling with IRQ 54
[    7.325129] pcieport 0000:80:08.2: PME: Signaling with IRQ 55
[    7.331101] pcieport 0000:c0:03.1: PME: Signaling with IRQ 56
[    7.336904] pcieport 0000:c0:03.1: pciehp: Slot #163 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.350913] pcieport 0000:c0:03.2: PME: Signaling with IRQ 57
[    7.356719] pcieport 0000:c0:03.2: pciehp: Slot #162 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.370704] pcieport 0000:c0:03.3: PME: Signaling with IRQ 58
[    7.376524] pcieport 0000:c0:03.3: pciehp: Slot #165 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.390513] pcieport 0000:c0:03.4: PME: Signaling with IRQ 59
[    7.396308] pcieport 0000:c0:03.4: pciehp: Slot #164 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.410291] pcieport 0000:c0:05.1: PME: Signaling with IRQ 60
[    7.416242] pcieport 0000:c0:05.2: PME: Signaling with IRQ 61
[    7.422292] pcieport 0000:c0:07.1: PME: Signaling with IRQ 63
[    7.428349] pcieport 0000:c0:08.1: PME: Signaling with IRQ 65
[    7.435085] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    7.442560] ACPI: button: Power Button [PWRF]
[    7.894158] Estimated ratio of average max frequency by base frequency (times 1024): 1464
[    7.902662] ERST: Error Record Serialization Table (ERST) support is initialized.
[    7.910170] pstore: Using crash dump compression: deflate
[    7.915569] pstore: Registered erst as persistent store backend
[    7.921623] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    7.928189] 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    7.936376] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    7.947398] Linux agpgart interface v0.103
[    7.978028] loop: module loaded
[    7.992517] ahci 0000:85:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[    8.000528] ahci 0000:85:00.0: 8/8 ports implemented (port mask 0xff)
[    8.006973] ahci 0000:85:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part sxs 
[    8.017312] scsi host0: ahci
[    8.020450] scsi host1: ahci
[    8.023549] scsi host2: ahci
[    8.026654] scsi host3: ahci
[    8.029749] scsi host4: ahci
[    8.032855] scsi host5: ahci
[    8.035948] scsi host6: ahci
[    8.039049] scsi host7: ahci
[    8.042013] ata1: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800100 irq 67 lpm-pol 0 ext
[    8.050624] ata2: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800180 irq 68 lpm-pol 0 ext
[    8.059227] ata3: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800200 irq 69 lpm-pol 0 ext
[    8.067833] ata4: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800280 irq 70 lpm-pol 0 ext
[    8.076437] ata5: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800300 irq 71 lpm-pol 0 ext
[    8.085043] ata6: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800380 irq 72 lpm-pol 0 ext
[    8.093651] ata7: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800400 irq 73 lpm-pol 0 ext
[    8.102254] ata8: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800480 irq 74 lpm-pol 0 ext
[    8.111378] tun: Universal TUN/TAP device driver, 1.6
[    8.116508] PPP generic driver version 2.4.2
[    8.120792] tsc: Refined TSC clocksource calibration: 1996.249 MHz
[    8.127023] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398cadd9d93, max_idle_ns: 881590552906 ns
[    8.127332] VFIO - User Level meta-driver version: 0.3
[    8.142207] clocksource: Switched to clocksource tsc
[    8.142534] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.152410] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 1
[    8.159911] xhci_hcd 0000:03:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.169455] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.174688] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 2
[    8.182079] xhci_hcd 0000:03:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.189175] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.197440] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.204664] usb usb1: Product: xHCI Host Controller
[    8.209541] usb usb1: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.218522] usb usb1: SerialNumber: 0000:03:00.3
[    8.223319] hub 1-0:1.0: USB hub found
[    8.227084] hub 1-0:1.0: 2 ports detected
[    8.231941] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.240073] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.248344] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.255565] usb usb2: Product: xHCI Host Controller
[    8.260453] usb usb2: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.269406] usb usb2: SerialNumber: 0000:03:00.3
[    8.274171] hub 2-0:1.0: USB hub found
[    8.277933] hub 2-0:1.0: 2 ports detected
[    8.282873] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.288111] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 3
[    8.295601] xhci_hcd 0000:46:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.305115] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.310349] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 4
[    8.317744] xhci_hcd 0000:46:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.324833] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.333093] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.340312] usb usb3: Product: xHCI Host Controller
[    8.345194] usb usb3: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.354157] usb usb3: SerialNumber: 0000:46:00.3
[    8.358940] hub 3-0:1.0: USB hub found
[    8.362708] hub 3-0:1.0: 2 ports detected
[    8.367516] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.375633] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.383893] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.391119] usb usb4: Product: xHCI Host Controller
[    8.396001] usb usb4: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.404957] usb usb4: SerialNumber: 0000:46:00.3
[    8.409721] hub 4-0:1.0: USB hub found
[    8.413482] hub 4-0:1.0: 2 ports detected
[    8.418505] ata4: SATA link down (SStatus 0 SControl 300)
[    8.418619] usbcore: registered new interface driver uas
[    8.423936] ata5: SATA link down (SStatus 0 SControl 300)
[    8.429291] usbcore: registered new interface driver usb-storage
[    8.434677] ata2: SATA link down (SStatus 0 SControl 300)
[    8.440694] i8042: PNP: No PS/2 controller found.
[    8.446084] ata6: SATA link down (SStatus 0 SControl 300)
[    8.450867] mousedev: PS/2 mouse device common for all mice
[    8.456189] ata8: SATA link down (SStatus 0 SControl 300)
[    8.461869] rtc_cmos 00:02: RTC can wake from S4
[    8.467161] ata7: SATA link down (SStatus 0 SControl 300)
[    8.472139] rtc_cmos 00:02: registered as rtc0
[    8.476250] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[    8.477178] ata3: SATA link down (SStatus 0 SControl 300)
[    8.481669] rtc_cmos 00:02: setting system clock to 2025-06-17T13:07:45 UTC (1750165665)
[    8.488151] ata1: SATA link down (SStatus 0 SControl 300)
[    8.493567] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram
[    8.513719] i2c_dev: i2c /dev entries driver
[    8.518005] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    8.530190] device-mapper: uevent: version 1.0.3
[    8.534959] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists•linux.dev
[    8.543841] amd_pstate: driver load is disabled, boot with specific mode to enable this
[    8.551888] efifb: probing for efifb
[    8.555482] efifb: No BGRT, not showing boot graphics
[    8.560535] efifb: framebuffer at 0xc6000000, using 3072k, total 3072k
[    8.567059] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    8.573066] efifb: scrolling: redraw
[    8.576646] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    8.582277] fbcon: Deferring console take-over
[    8.586725] fb0: EFI VGA frame buffer device
[    8.591096] drop_monitor: Initializing network drop monitor service
[    8.597519] NET: Registered PF_INET6 protocol family
[    8.610744] Segment Routing with IPv6
[    8.614425] In-situ OAM (IOAM) with IPv6
[    8.618373] NET: Registered PF_PACKET protocol family
[    8.620345] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[    8.623148] usb 1-1: New USB device found, idVendor=0424, idProduct=2744, bcdDevice= 1.21
[    8.623152] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    8.623154] usb 1-1: Product: USB2734
[    8.623156] usb 1-1: Manufacturer: Microchip Tech
[    8.623503] Key type dns_resolver registered
[    8.669621] hub 1-1:1.0: USB hub found
[    8.670220] x86/amd: Previous system reset reason [0x00080800]: software wrote 0x6 to reset control register 0xCF9
[    8.673651] hub 1-1:1.0: 4 ports detected
[    8.683730] microcode: Current revision: 0x0a0011d5
[    8.692619] microcode: Updated early from: 0x0a0011d5
[    8.701063] resctrl: L3 allocation detected
[    8.705250] resctrl: MB allocation detected
[    8.709434] resctrl: L3 monitoring detected
[    8.713795] IPI shorthand broadcast: enabled
[    8.721781] sched_clock: Marking stable (8656002285, 64232506)->(9567617948, -847383157)
[    8.730484] registered taskstats version 1
[    8.736950] Loading compiled-in X.509 certificates
[    8.742379] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.756406] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
[    8.762960] Demotion targets for Node 0: null
[    8.767327] Demotion targets for Node 1: null
[    8.772400] Key type .fscrypt registered
[    8.773235] usb 3-1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    8.776330] Key type fscrypt-provisioning registered
[    8.784502] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.797189] usb 2-1: New USB device found, idVendor=0424, idProduct=5744, bcdDevice= 1.21
[    8.805365] usb 2-1: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[    8.806113] Key type encrypted registered
[    8.812503] usb 2-1: Product: USB5734
[    8.812505] usb 2-1: Manufacturer: Microchip Tech
[    8.824888] AppArmor: AppArmor sha256 policy hashing enabled
[    8.829511] hub 2-1:1.0: USB hub found
[    8.830620] integrity: Loading X.509 certificate: UEFI:db
[    8.834328] hub 2-1:1.0: 4 ports detected
[    8.839722] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    8.854503] integrity: Loading X.509 certificate: UEFI:db
[    8.859914] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    8.869285] hub 3-1:1.0: USB hub found
[    8.870953] integrity: Loading X.509 certificate: UEFI:db
[    8.874862] hub 3-1:1.0: 4 ports detected
[    8.880222] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    8.892984] integrity: Loading X.509 certificate: UEFI:db
[    8.898525] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    8.910102] ima: No TPM chip found, activating TPM-bypass!
[    8.915592] Loading compiled-in module X.509 certificates
[    8.921411] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.931327] ima: Allocated hash algorithm: sha1
[    8.935865] ima: No architecture policies found
[    8.940421] evm: Initialising EVM extended attributes:
[    8.945560] evm: security.selinux
[    8.948881] evm: security.SMACK64
[    8.952196] evm: security.SMACK64EXEC
[    8.955865] evm: security.SMACK64TRANSMUTE
[    8.959972] evm: security.SMACK64MMAP
[    8.963639] evm: security.apparmor
[    8.967043] evm: security.ima
[    8.970016] evm: security.capability
[    8.973597] evm: HMAC attrs: 0x1
[    8.977241] PM:   Magic number: 13:719:129
[    8.981370] nvmem cmos_nvram0: hash matches
[    8.985600] event_source kprobe: hash matches
[    8.990048] acpi device:04: hash matches
[    8.994424] RAS: Correctable Errors collector initialized.
[    9.000053] clk: Disabling unused clocks
[    9.003983] PM: genpd: Disabling unused power domains
[    9.010769] Freeing unused decrypted memory: 2028K
[    9.016316] Freeing unused kernel image (initmem) memory: 4760K
[    9.022254] Write protecting the kernel read-only data: 26624k
[    9.028528] Freeing unused kernel image (text/rodata gap) memory: 28K
[    9.035147] Freeing unused kernel image (rodata/data gap) memory: 248K
[    9.128667] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    9.135119] Run /init as init process
[    9.145608] systemd[1]: Inserted module 'autofs4'
[    9.372332] systemd[1]: systemd 252-46.el9_5.3 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)
[    9.404817] systemd[1]: Detected architecture x86-64.
[    9.409880] systemd[1]: Running in initrd.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow) dracut-057-80.git20250411.el9_5 (Initramfs)^[[0m!

[    9.428373] systemd[1]: Hostname set to <sharavati.amd.com>.
[    9.526123] systemd[1]: Queued start job for default target Initrd Default Target.
[    9.533806] systemd[1]: Reached target Initrd /usr File System.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd /usr File System^[[0m.
[    9.552304] systemd[1]: Reached target Local File Systems.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
[    9.568309] systemd[1]: Reached target Slice Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSlic[    9.576252] usb 3-1.1: new high-speed USB device number 3 using xhci_hcd
e Units^[[0m.
[    9.588307] systemd[1]: Reached target Swaps.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwaps^[[0m.
[    9.604289] systemd[1]: Reached target Timer Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[    9.620451] systemd[1]: Listening on D-Bus System Message Bus Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[    9.640454] systemd[1]: Listening on Journal Socket (/dev/log).
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket (/dev/log)^[[0m.
[    9.656451] systemd[1]: Listening on Journal Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket^[[0m.
[    9.672467] systemd[1]: Listening on udev Control Socket.
[^[[0;32m  OK  ^[[[    9.678868] usb 3-1.1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
0m] Listening on[    9.687636] usb 3-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
 ^[[0;1;39mudev Control Socket^[[0m.
[    9.704407] systemd[1]: Listening on udev Kernel Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
[    9.720302] systemd[1]: Reached target Socket Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
[    9.733325] hub 3-1.1:1.0: USB hub found
[    9.737489] hub 3-1.1:1.0: 4 ports detected
[    9.766170] systemd[1]: Starting Create List of Static Device Nodes...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
[    9.787070] systemd[1]: Starting Journal Service...
         Starting ^[[0;1;39mJournal Service^[[0m...
[    9.801793] systemd[1]: Starting Load Kernel Modules...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
[    9.816247] usb 3-1.4: new high-speed USB device number 4 using xhci_hcd
[    9.817630] systemd[1]: Starting Create System Users...
         Starting ^[[0;1;39mCreate System Users^[[0m...
[    9.841738] systemd[1]: Starting Setup Virtual Console...
         Starting ^[[0;1;39mSetup Virtual Console^[[0m...
[    9.857515] systemd[1]: Finished Create List of Static Device Nodes.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[    9.876619] systemd[1]: Finished Load Kernel Modules.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[    9.892490] systemd[1]: Started Journal Service.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[    9.909239] usb 3-1.4: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    9.917613] usb 3-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSetup Virtual Console^[[0m.
         Starting ^[[0;1;39mdracut cmdline hook^[[0m...
         Starting ^[[0;1;39mApply Kernel Variable[    9.989428] hub 3-1.4:1.0: USB hub found
s^[[0m...
[    9.993863] hub 3-1.4:1.0: 4 ports detected
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate System Users^[[0m.
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut cmdline hook^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Starting ^[[0;1;39mdracut pre-udev hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-udev hook^[[0m.
         Starting ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[   10.410447] wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQBC data block query control method not found
[^[[0;32m  OK  ^[[0m] Finished ^[[0[   10.421584] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
;1;39mColdplug A[   10.422164] ccp 0000:46:00.1: no command queues available
ll udev Devices^[[   10.428575] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[0m.
[   10.435395] ccp 0000:46:00.1: sev enabled
[   10.443865] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[   10.448255] ccp 0000:46:00.1: psp enabled
[   10.456517] tg3 0000:c1:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:90
[   10.469934] tg3 0000:c1:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.469938] tg3 0000:c1:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.469940] tg3 0000:c1:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[^[[0;32m  OK  ^[[[   10.495278] mpt3sas version 52.100.00.00 loaded
0m] Reached targ[   10.495302] ACPI: bus type drm_connector registered
[   10.500836] mpt3sas_cm0: 63 BIT PCI BUS DMA ADDRESSING SUPPORTED, total mem (262592964 kB)
et ^[[0;1;39mSystem Initialization^[[0m.
[   10.520802] mgag200 0000:c3:00.0: vgaarb: deactivate vga console
[   10.527677] tg3 0000:c1:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:91
[   10.538196] tg3 0000:c1:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.548038] tg3 0000:c1:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.548041] tg3 0000:c1:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[   10.554104] [drm] Initialized mgag200 1.0.0 for 0000:c3:00.0 on minor 0
[   10.558916] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[^[[0;32m  OK  ^[[[   10.577225] mpt3sas_cm0: MSI-X vectors supported: 96
[   10.577228] 	 no of cores: 128, max_msix_vectors: -1
0m] Reached targ[   10.577230] mpt3sas_cm0:  0 96 96
et ^[[0;1;39mNetw[   10.577234] fbcon: mgag200drmfb (fb0) is primary device
ork^[[0m.
[   10.577237] fbcon: Deferring console take-over
[   10.581242] mpt3sas_cm0: High IOPs queues : disabled
[   10.583554] mgag200 0000:c3:00.0: [drm] fb0: mgag200drmfb frame buffer device
[   10.588520] mpt3sas0-msix0: PCI-MSI-X enabled: IRQ 108
[   10.622372] mpt3sas0-msix1: PCI-MSI-X enabled: IRQ 109
[   10.622374] mpt3sas0-msix2: PCI-MSI-X enabled: IRQ 110
[   10.622375] mpt3sas0-msix3: PCI-MSI-X enabled: IRQ 111
[   10.622376] mpt3sas0-msix4: PCI-MSI-X enabled: IRQ 112
[   10.622378] mpt3sas0-msix5: PCI-MSI-X enabled: IRQ 113
[   10.622379] mpt3sas0-msix6: PCI-MSI-X enabled: IRQ 114
[   10.622381] mpt3sas0-msix7: PCI-MSI-X enabled: IRQ 115
[   10.658355] mpt3sas0-msix8: PCI-MSI-X enabled: IRQ 116
[   10.663493] mpt3sas0-msix9: PCI-MSI-X enabled: IRQ 117
[   10.668634] mpt3sas0-msix10: PCI-MSI-X enabled: IRQ 118
[   10.673861] mpt3sas0-msix11: PCI-MSI-X enabled: IRQ 119
[   10.679086] mpt3sas0-msix12: PCI-MSI-X enabled: IRQ 120
[   10.684312] mpt3sas0-msix13: PCI-MSI-X enabled: IRQ 121
[   10.689536] mpt3sas0-msix14: PCI-MSI-X enabled: IRQ 122
[   10.694763] mpt3sas0-msix15: PCI-MSI-X enabled: IRQ 123
[   10.699990] mpt3sas0-msix16: PCI-MSI-X enabled: IRQ 124
[   10.705214] mpt3sas0-msix17: PCI-MSI-X enabled: IRQ 125
[   10.710440] mpt3sas0-msix18: PCI-MSI-X enabled: IRQ 126
[   10.715665] mpt3sas0-msix19: PCI-MSI-X enabled: IRQ 127
[   10.720894] mpt3sas0-msix20: PCI-MSI-X enabled: IRQ 128
[   10.726116] mpt3sas0-msix21: PCI-MSI-X enabled: IRQ 129
[   10.731344] mpt3sas0-msix22: PCI-MSI-X enabled: IRQ 130
[   10.736568] mpt3sas0-msix23: PCI-MSI-X enabled: IRQ 131
[   10.741795] mpt3sas0-msix24: PCI-MSI-X enabled: IRQ 132
[   10.747022] mpt3sas0-msix25: PCI-MSI-X enabled: IRQ 133
[   10.752249] mpt3sas0-msix26: PCI-MSI-X enabled: IRQ 134
[   10.757472] mpt3sas0-msix27: PCI-MSI-X enabled: IRQ 135
[   10.762698] mpt3sas0-msix28: PCI-MSI-X enabled: IRQ 136
[   10.767925] mpt3sas0-msix29: PCI-MSI-X enabled: IRQ 137
[   10.773151] mpt3sas0-msix30: PCI-MSI-X enabled: IRQ 138
[   10.778377] mpt3sas0-msix31: PCI-MSI-X enabled: IRQ 139
[   10.783605] mpt3sas0-msix32: PCI-MSI-X enabled: IRQ 140
[   10.788846] mpt3sas0-msix33: PCI-MSI-X enabled: IRQ 141
[   10.794070] mpt3sas0-msix34: PCI-MSI-X enabled: IRQ 142
[   10.799296] mpt3sas0-msix35: PCI-MSI-X enabled: IRQ 143
[   10.804523] mpt3sas0-msix36: PCI-MSI-X enabled: IRQ 144
[   10.809748] mpt3sas0-msix37: PCI-MSI-X enabled: IRQ 145
[   10.814975] mpt3sas0-msix38: PCI-MSI-X enabled: IRQ 146
[   10.814977] mpt3sas0-msix39: PCI-MSI-X enabled: IRQ 147
[   10.814978] mpt3sas0-msix40: PCI-MSI-X enabled: IRQ 148
[   10.814980] mpt3sas0-msix41: PCI-MSI-X enabled: IRQ 149
[   10.814981] mpt3sas0-msix42: PCI-MSI-X enabled: IRQ 150
         Startin[   10.814983] mpt3sas0-msix43: PCI-MSI-X enabled: IRQ 151
g ^[[0;1;39mdracu[   10.814985] mpt3sas0-msix44: PCI-MSI-X enabled: IRQ 152
t initqueue hook[   10.814986] mpt3sas0-msix45: PCI-MSI-X enabled: IRQ 153
^[[0m...
[   10.860939] mpt3sas0-msix46: PCI-MSI-X enabled: IRQ 154
[   10.866937] mpt3sas0-msix47: PCI-MSI-X enabled: IRQ 155
[   10.872165] mpt3sas0-msix48: PCI-MSI-X enabled: IRQ 156
[   10.872167] mpt3sas0-msix49: PCI-MSI-X enabled: IRQ 157
[   10.872168] mpt3sas0-msix50: PCI-MSI-X enabled: IRQ 158
[   10.872169] mpt3sas0-msix51: PCI-MSI-X enabled: IRQ 159
[   10.872171] mpt3sas0-msix52: PCI-MSI-X enabled: IRQ 160
[   10.872172] mpt3sas0-msix53: PCI-MSI-X enabled: IRQ 161
[   10.872174] mpt3sas0-msix54: PCI-MSI-X enabled: IRQ 162
[   10.872176] mpt3sas0-msix55: PCI-MSI-X enabled: IRQ 163
[   10.913980] mpt3sas0-msix56: PCI-MSI-X enabled: IRQ 164
[   10.913981] mpt3sas0-msix57: PCI-MSI-X enabled: IRQ 165
[   10.913983] mpt3sas0-msix58: PCI-MSI-X enabled: IRQ 166
[   10.913984] mpt3sas0-msix59: PCI-MSI-X enabled: IRQ 167
[   10.913985] mpt3sas0-msix60: PCI-MSI-X enabled: IRQ 168
[   10.913987] mpt3sas0-msix61: PCI-MSI-X enabled: IRQ 169
[   10.945343] mpt3sas0-msix62: PCI-MSI-X enabled: IRQ 170
[   10.950568] mpt3sas0-msix63: PCI-MSI-X enabled: IRQ 171
         Startin[   10.955796] mpt3sas0-msix64: PCI-MSI-X enabled: IRQ 172
g ^[[0;1;39mShow [   10.962411] mpt3sas0-msix65: PCI-MSI-X enabled: IRQ 173
Plymouth Boot Sc[   10.962412] mpt3sas0-msix66: PCI-MSI-X enabled: IRQ 174
reen^[[0m...
[   10.962414] mpt3sas0-msix67: PCI-MSI-X enabled: IRQ 175
[   10.962415] mpt3sas0-msix68: PCI-MSI-X enabled: IRQ 176
[^[[0;32m  OK  ^[[[   10.962417] mpt3sas0-msix69: PCI-MSI-X enabled: IRQ 177
0m] Started ^[[0;[   10.962418] mpt3sas0-msix70: PCI-MSI-X enabled: IRQ 178
1;39mShow Plymou[   10.962421] mpt3sas0-msix71: PCI-MSI-X enabled: IRQ 179
th Boot Screen^[[[   11.007126] mpt3sas0-msix72: PCI-MSI-X enabled: IRQ 180
0m.
[   11.007127] mpt3sas0-msix73: PCI-MSI-X enabled: IRQ 181
[   11.007129] mpt3sas0-msix74: PCI-MSI-X enabled: IRQ 182
[^[[0;32m  OK  ^[[[   11.007130] mpt3sas0-msix75: PCI-MSI-X enabled: IRQ 183
[   11.007132] mpt3sas0-msix76: PCI-MSI-X enabled: IRQ 184
0m] Started ^[[0;[   11.007133] mpt3sas0-msix77: PCI-MSI-X enabled: IRQ 185
1;39mForward Pas[   11.007135] mpt3sas0-msix78: PCI-MSI-X enabled: IRQ 186
sword Requests t[   11.007137] mpt3sas0-msix79: PCI-MSI-X enabled: IRQ 187
o Plymouth Direc[   11.056371] mpt3sas0-msix80: PCI-MSI-X enabled: IRQ 188
tory Watch^[[0m.\r[   11.056373] mpt3sas0-msix81: PCI-MSI-X enabled: IRQ 189

[   11.056375] mpt3sas0-msix82: PCI-MSI-X enabled: IRQ 190
[   11.056376] mpt3sas0-msix83: PCI-MSI-X enabled: IRQ 191
[^[[0;32m  OK  ^[[[   11.056378] mpt3sas0-msix84: PCI-MSI-X enabled: IRQ 192
[   11.056380] mpt3sas0-msix85: PCI-MSI-X enabled: IRQ 193
0m] Reached targ[   11.092049] mpt3sas0-msix86: PCI-MSI-X enabled: IRQ 194
et ^[[0;1;39mPath[   11.092051] mpt3sas0-msix87: PCI-MSI-X enabled: IRQ 195
 Units^[[0m.
[   11.092053] mpt3sas0-msix88: PCI-MSI-X enabled: IRQ 196
[   11.092054] mpt3sas0-msix89: PCI-MSI-X enabled: IRQ 197
[   11.092056] mpt3sas0-msix90: PCI-MSI-X enabled: IRQ 198
[^[[0;32m  OK  ^[[[   11.092058] mpt3sas0-msix91: PCI-MSI-X enabled: IRQ 199
0m] Reached targ[   11.128761] mpt3sas0-msix92: PCI-MSI-X enabled: IRQ 200
et ^[[0;1;39mBasi[   11.135373] mpt3sas0-msix93: PCI-MSI-X enabled: IRQ 201
c System^[[0m.
[   11.141987] mpt3sas0-msix94: PCI-MSI-X enabled: IRQ 202
[   11.148600] mpt3sas0-msix95: PCI-MSI-X enabled: IRQ 203
[   11.153823] mpt3sas_cm0: iomem(0x00000000e2200000), mapped(0x00000000335cfd45), size(65536)
[   11.162170] mpt3sas_cm0: ioport(0x0000000000001000), size(256)
[   11.226047] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   11.234051] mpt3sas_cm0: sending message unit reset !!
[   11.241754] mpt3sas_cm0: message unit reset: SUCCESS
[   11.273987] mpt3sas_cm0: scatter gather: sge_in_main_msg(1), sge_per_chain(7), sge_per_io(128), chains_per_io(19)
[   11.285458] mpt3sas_cm0: request pool(0x00000000f26a1180) - dma(0xe0600000): depth(9700), frame_size(128), pool_size(1212 kB)
[   11.322134] mpt3sas_cm0: sense pool(0x0000000068a6079d) - dma(0xdef00000): depth(9463), element_size(96), pool_size (887 kB)
[   11.333439] mpt3sas_cm0: reply pool(0x000000008453a052) - dma(0xdec00000): depth(9764), frame_size(128), pool_size(1220 kB)
[   11.344578] mpt3sas_cm0: config page(0x000000006a87d3a8) - dma(0xdebee000): size(512)
[   11.352408] mpt3sas_cm0: Allocated physical memory: size(40437 kB)
[   11.358586] mpt3sas_cm0: Current Controller Queue Depth(9460),Max Controller Queue Depth(9584)
[   11.367191] mpt3sas_cm0: Scatter Gather Elements per IO(128)
[   11.418626] mpt3sas_cm0: _base_display_fwpkg_version: complete
[   11.424461] mpt3sas_cm0: FW Package Ver(16.17.01.00)
[   11.429712] mpt3sas_cm0: LSISAS3008: FWVersion(16.00.11.00), ChipRevision(0x02)
[   11.437020] mpt3sas_cm0: Protocol=(Initiator,Target), Capabilities=(TLR,EEDP,Snapshot Buffer,Diag Trace Buffer,Task Set Full,NCQ)
[   11.448743] scsi host8: Fusion MPT SAS Host
[   11.454917] mpt3sas_cm0: sending port enable !!
[   11.459893] mpt3sas_cm0: hba_port entry: 00000000c92bf0f0, port: 255 is added to hba_port list
[   11.469617] mpt3sas_cm0: host_add: handle(0x0001), sas_addr(0x52cea7f0be87bf00), phys(8)
[   11.478050] mpt3sas_cm0: handle(0xa) sas_address(0x4433221100000000) port_type(0x1)
[   11.486924] scsi 8:0:0:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.495024] scsi 8:0:0:0: SATA: handle(0x000a), sas_addr(0x4433221100000000), phy(0), device_name(0x500a075131911ad0)
[   11.505620] scsi 8:0:0:0: enclosure logical id (0x52cea7f0be87bf00), slot(1) 
[   11.512752] scsi 8:0:0:0: enclosure level(0x0001), connector name(     )
[   11.519522] scsi 8:0:0:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.527958] scsi 8:0:0:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.542768]  end_device-8:0: add: handle(0x000a), sas_addr(0x4433221100000000)
[   11.550120] mpt3sas_cm0: handle(0xc) sas_address(0x58ce38ee219651a2) port_type(0x1)
[   11.559166] scsi 8:0:1:0: Direct-Access     KIOXIA   KPM6WVUG960G     BD08 PQ: 0 ANSI: 6
[   11.567267] scsi 8:0:1:0: SSP: handle(0x000c), sas_addr(0x58ce38ee219651a2), phy(4), device_name(0x58ce38ee219651a0)
[   11.577775] scsi 8:0:1:0: enclosure logical id (0x52cea7f0be87bf00), slot(0) 
[   11.584906] scsi 8:0:1:0: enclosure level(0x0001), connector name(     )
[   11.591627] scsi 8:0:1:0: qdepth(254), tagged(1), scsi_level(7), cmd_que(1)
[   11.600319]  end_device-8:1: add: handle(0x000c), sas_addr(0x58ce38ee219651a2)
[   11.607659] mpt3sas_cm0: handle(0xb) sas_address(0x4433221106000000) port_type(0x1)
[   11.616446] scsi 8:0:2:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.624537] scsi 8:0:2:0: SATA: handle(0x000b), sas_addr(0x4433221106000000), phy(6), device_name(0x500a075131911a6f)
[   11.635137] scsi 8:0:2:0: enclosure logical id (0x52cea7f0be87bf00), slot(2) 
[   11.642271] scsi 8:0:2:0: enclosure level(0x0001), connector name(     )
[   11.649025] scsi 8:0:2:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.657457] scsi 8:0:2:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.672262]  end_device-8:2: add: handle(0x000b), sas_addr(0x4433221106000000)
[   11.680252] mpt3sas_cm0: port enable: SUCCESS
[   11.684925] sd 8:0:0:0: Attached scsi generic sg0 type 0
[   11.685495] sd 8:0:0:0: [sda] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.690509] scsi 8:0:1:0: Attached scsi generic sg1 type 0
[   11.690845] sd 8:0:1:0: [sdb] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.690849] sd 8:0:1:0: [sdb] 4096-byte physical blocks
[   11.691036] sd 8:0:1:0: [sdb] Write Protect is off
[   11.691250] sd 8:0:1:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   11.697817] sd 8:0:0:0: [sda] 4096-byte physical blocks
[   11.699832] sd 8:0:0:0: [sda] Write Protect is off
[   11.703542] scsi 8:0:2:0: Attached scsi generic sg2 type 0
[   11.704162] sd 8:0:2:0: [sdc] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.704165] sd 8:0:2:0: [sdc] 4096-byte physical blocks
[   11.706166] sd 8:0:2:0: [sdc] Write Protect is off
[   11.707455] sd 8:0:2:0: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.711592] sd 8:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.805404]  sdb: sdb1 sdb2
[   11.808367] sd 8:0:1:0: [sdb] Attached SCSI disk
[   11.842469]  sdc: sdc1 sdc2
[   11.845410] sd 8:0:2:0: [sdc] Attached SCSI disk
[   11.866155]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7
[   11.871549] sd 8:0:0:0: [sda] Attached SCSI disk
[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39m/dev/mapper/rhel_sharavati-root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut initqueue hook^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m.
         Mounting ^[[0;1;39m/sysroot^[[0m...
[   12.575382] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled
[   12.585644] XFS (dm-1): Mounting V5 Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[   12.609805] XFS (dm-1): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/sysroot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root File System^[[0m.
         Starting ^[[0;1;39mMountpoints Configured in the Real Root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMountpoints Configured in the Real Root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Default Target^[[0m.
         Starting ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
         Starting ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Default Target^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd /usr File System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut initqueue hook^[[0m.
         Starting ^[[0;1;39mPlymouth switch root service^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Di[   12.854016] systemd-journald[1093]: Received SIGTERM from PID 1 (systemd).
rectories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mColdplug All udev Devices^[[0m.
         Stopping ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Kernel Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-udev hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut cmdline hook^[[0m.
         Starting ^[[0;1;39mCleanup udev Database^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate System Users^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleanup udev Database^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwitch Root^[[0m.
         Starting ^[[0;1;39mSwitch Root^[[0m...
[   12.966220] systemd[1]: RTC configured in localtime, applying delta of 330 minutes to system time.
[   12.990847] systemd[1]: systemd 252-46.el9_5.3 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)
[   13.023323] systemd[1]: Detected architecture x86-64.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow)^[[0m!

[   13.091047] systemd-rc-local-generator[1702]: /etc/rc.d/rc.local is not marked executable, skipping.
[   13.352600] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[   13.359924] systemd[1]: Stopped Switch Root.
[^[[0;32m  OK  ^[[[   13.364491] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
0m] Stopped ^[[0;[   13.375238] systemd[1]: Created slice Virtual Machine and Container Slice.
1;39mSwitch Root[   13.383749] systemd[1]: Created slice Slice /system/getty.
^[[0m.
[^[[0;32m[   13.390439] systemd[1]: Created slice Slice /system/modprobe.
  OK  ^[[0m] Crea[   13.397867] systemd[1]: Created slice Slice /system/serial-getty.
ted slice ^[[0;1;[   13.405038] systemd[1]: Created slice Slice /system/sshd-keygen.
39mVirtual Machi[   13.412475] systemd[1]: Created slice Slice /system/systemd-fsck.
ne and Container[   13.419770] systemd[1]: Created slice User and Session Slice.
 Slice^[[0m.
[^[[   13.426364] systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
[0;32m  OK  ^[[0m[   13.442682] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
] Created slice [   13.451765] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
^[[0;1;39mSlice /[   13.462418] systemd[1]: Reached target Local Encrypted Volumes.
system/getty^[[0m[   13.469712] systemd[1]: Stopped target Switch Root.
.
[^[[0;32m  OK[   13.475973] systemd[1]: Stopped target Initrd File Systems.
  ^[[0m] Created [   13.482931] systemd[1]: Stopped target Initrd Root File System.
slice ^[[0;1;39mS[   13.490238] systemd[1]: Reached target Local Integrity Protected Volumes.
lice /system/mod[   13.498427] systemd[1]: Reached target Path Units.
probe^[[0m.
[^[[[   13.504596] systemd[1]: Reached target Slice Units.
0;32m  OK  ^[[0m][   13.510864] systemd[1]: Reached target Local Verity Protected Volumes.
 Created slice ^[[   13.518826] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[0;1;39mSlice /s[   13.526898] systemd[1]: Listening on LVM2 poll daemon socket.
ystem/serial-get[   13.533856] systemd[1]: multipathd control socket was skipped because of an unmet condition check (ConditionPathExists=/etc/multipath.conf).
ty^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/sshd-keygen^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Se[   13.577168] systemd[1]: Listening on RPCbind Server Activation Socket.
t up automount ^[[   13.584868] systemd[1]: Reached target RPC Port Mapper.
[0;1;39mArbitrar[   13.592596] systemd[1]: Listening on Process Core Dump Socket.
y Executa…orma[   13.598720] systemd[1]: Listening on initctl Compatibility Named Pipe.
ts File System A[   13.607700] systemd[1]: Listening on udev Control Socket.
utomount Point^[[[   13.613433] systemd[1]: Listening on udev Kernel Socket.
0m.
[^[[0;32m  OK  ^[[0m] Reache[   13.621445] systemd[1]: Activating swap /dev/mapper/rhel_sharavati-swap...
d target ^[[0;1;3[   13.626567] Adding 7815164k swap on /dev/mapper/rhel_sharavati-swap.  Priority:-2 extents:1 across:7815164k SS
9mLocal Encrypted Volumes^[[0m.\r\r[   13.642396] systemd[1]: Mounting Huge Pages File System...

[^[[0;32m  OK  ^[[   13.650595] systemd[1]: Mounting POSIX Message Queue File System...
[0m] Stopped tar[   13.658227] systemd[1]: Mounting Kernel Debug File System...
get ^[[0;1;39mSwitch Root^[[0m.
[   13.665465] systemd[1]: Mounting Kernel Trace File System...
[^[[0;32m  OK  ^[[[   13.672505] systemd[1]: Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
0m] Stopped targ[   13.687341] systemd[1]: iscsi-starter.service was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes).
et ^[[0;1;39mInitrd File Systems^[[   13.702743] systemd[1]: Starting Create List of Static Device Nodes...
[0m.
[^[[0;32m  OK  ^[[0m] Stopp[   13.712079] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
ed target ^[[0;1;[   13.724880] systemd[1]: Starting Load Kernel Module configfs...
39mInitrd Root File System^[[0m.\r[   13.732360] systemd[1]: Starting Load Kernel Module drm...

[^[[0;32m  OK  [   13.740359] systemd[1]: Starting Load Kernel Module fuse...
^[[0m] Reached target ^[[0;1;39mLo[   13.747927] systemd[1]: Starting Read and set NIS domainname from /etc/sysconfig/network...
cal Integrity Pr[   13.757354] systemd[1]: plymouth-switch-root.service: Deactivated successfully.
otected Volumes^[[   13.766022] systemd[1]: Stopped Plymouth switch root service.
[0m.
[^[[0;32m [   13.773261] systemd[1]: systemd-fsck-root.service: Deactivated successfully.
 OK  ^[[0m] Reach[   13.781575] systemd[1]: Stopped File System Check on Root Device.
ed target ^[[0;1;[   13.789157] systemd[1]: Stopped Journal Service.
39mPath Units^[[0m.
[^[[0;32m  O[   13.797441] systemd[1]: Starting Journal Service...
K  ^[[0m] Reached target ^[[0;1;39[   13.804703] systemd[1]: Starting Load Kernel Modules...
[   13.809872] systemd-journald[1732]: File /run/log/journal/8f37f8055146469d8baec3ad508b0084/system.journal corrupted or uncleanly shut down, renaming and replacing.
mSlice Units^[[0m.
[^[[0;32m  OK[   13.826605] systemd[1]: Starting Generate network units from Kernel command line...
  ^[[0m] Reached [   13.835974] systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
target ^[[0;1;39mLocal Verity Pro[   13.856919] systemd[1]: Starting Remount Root and Kernel File Systems...
tected Volumes^[[[   13.865111] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
0m.
[^[[0;32m  OK  ^[[0m] Listen[   13.877201] systemd[1]: Starting Coldplug All udev Devices...
ing on ^[[0;1;39mDevice-mapper event daemon FIFOs[   13.887433] systemd[1]: Activated swap /dev/mapper/rhel_sharavati-swap.
^[[0m.
[^[[0;32m[   13.895714] systemd[1]: Started Journal Service.
  OK  ^[[0m] Listening on ^[[0;1;39mLVM2 poll daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mRPCbind Server Activation Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mR[   13.917365] systemd-journald[1732]: Received client request to flush runtime journal.
PC Port Mapper^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mProcess Core Dump Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39minitctl Compatibility Named Pipe^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
         Activating swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m...
         Mounting ^[[0;1;39mHuge Pages File System^[[0m...
         Mounting ^[[0;1;39mPOSIX Message Queue File System^[[0m...
         Mounting ^[[0;1;39mKernel Debug File System^[[0m...
         Mounting ^[[0;1;39mKernel Trace File System^[[0m...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
         Starting ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module drm^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mJournal Service^[[0m.
         Starting ^[[0;1;39mJournal Service^[[0m...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
         Starting ^[[0;1;39mGenerate network units from Kernel command line^[[0m...
         Starting ^[[0;1;39mRemount Root and Kernel File Systems^[[0m...
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[^[[0;32m  OK  ^[[0m] Activated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mHuge Pages File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mPOSIX Message Queue File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Debug File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Trace File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMonitoring of LVM2 mirror…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module drm^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRead and set NIS [   14.140625] IPMI message handler: version 39.2
domainname from /etc/sysconfig/n[   14.148738] ipmi device interface
etwork^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;[   14.160767] ipmi_si: IPMI System Interface driver
1;39mGenerate ne[   14.161048] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
twork units from[   14.166921] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
 Kernel command [   14.175596] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
line^[[0m.
[^[[0[   14.177611] pstore: backend 'erst' already in use: ignoring 'efi_pstore'
[   14.180003] input: PC Speaker as /devices/platform/pcspkr/input/input1
;32m  OK  ^[[0m] [   14.180920] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
Finished ^[[0;1;3[   14.180923] RAPL PMU: hw unit of domain package 2^-16 Joules
9mRemount Root a[   14.180925] RAPL PMU: hw unit of domain core 2^-16 Joules
nd Kernel File S[   14.182177] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
ystems^[[0m.
[^[[   14.182853] i2c i2c-3: Successfully instantiated SPD at 0x50
[0;32m  OK  ^[[0m[   14.183335] ipmi_platform: ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 10
] Reached target[   14.183340] ipmi_si: Adding SMBIOS-specified kcs state machine
 ^[[0;1;39mSwaps^[[   14.183463] i2c i2c-3: Successfully instantiated SPD at 0x51
[0m.
         [   14.183468] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
Mounting ^[[0;1;3[   14.183498] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca8] regsize 1 spacing 4 irq 10
9mFUSE Control F[   14.183669] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
ile System^[[0m..[   14.183671] ipmi_si: Adding ACPI-specified kcs state machine
[   14.183738] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 10
.
         Mou[   14.312865] i2c i2c-3: Successfully instantiated SPD at 0x52
nting ^[[0;1;39mKernel Configuration File System^[[0m...
         Starting ^[[0;1[   14.324898] i2c i2c-3: Successfully instantiated SPD at 0x53
;39mFlush Journa[   14.332291] i2c i2c-3: Successfully instantiated SPD at 0x54
l to Persistent [   14.339509] i2c i2c-3: Successfully instantiated SPD at 0x55
Storage^[[0m...\r\r[   14.346555] i2c i2c-3: Successfully instantiated SPD at 0x56

         Starti[   14.353595] i2c i2c-3: Successfully instantiated SPD at 0x57
ng ^[[0;1;39mLoad/Save OS Random Seed^[[0m...
         Starting ^[[0;1;39mApply Kernel Variables^[[0m...
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mFUSE Control File System^[[0[   14.379437] ee1004 3-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
m.
[^[[0;32m  OK  ^[[0m] Mounted[   14.389362] ee1004 3-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
 ^[[0;1;39mKernel Configuration F[   14.399055] ee1004 3-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
ile System^[[0m.\r[   14.399190] kvm_amd: TSC scaling supported

[^[[0;32m  OK  [   14.408698] ee1004 3-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
^[[0m] Finished ^[[   14.412516] kvm_amd: Nested Virtualization enabled
[0;1;39mLoad/Sav[   14.422434] ee1004 3-0054: 512 byte EE1004-compliant SPD EEPROM, read-only
e OS Random Seed[   14.426953] kvm_amd: Nested Paging enabled
^[[0m.
[^[[0;32m[   14.436824] ee1004 3-0055: 512 byte EE1004-compliant SPD EEPROM, read-only
  OK  ^[[0m] Fini[   14.440697] kvm_amd: LBR virtualization supported
shed ^[[0;1;39mFl[   14.450618] ee1004 3-0056: 512 byte EE1004-compliant SPD EEPROM, read-only
ush Journal to Persistent Storag[   14.465808] ee1004 3-0057: 512 byte EE1004-compliant SPD EEPROM, read-only
e^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
         Starting ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mColdplug All udev Devices^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mLoad/Save RF Kill Switch Status /dev/rfkill Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39m/usr/sbin/lvm vgchange -aa…utoactivation event rhel_sharavati^[[0m.
[   14.676255] ipmi_si IPI0001:00: The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.
[   14.748327] ipmi_si IPI0001:00: Using irq 10
[   14.781521] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20)
[   14.831765] ipmi_si IPI0001:00: IPMI kcs interface initialized
[   14.840181] ipmi_ssif: IPMI SSIF Interface driver
[   14.852373] power_meter ACPI000D:00: Found ACPI power meter.
[^[[0m^[[0;31m*     ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;1;31m*^[[0m^[[0;31m*    ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*   ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
[   18.011116] ccp 0000:46:00.1: SEV-SNP API:1.55 build:22
[   18.065488] ccp 0000:46:00.1: SEV API:1.55 build:22
[   18.072520] kvm_amd: SEV enabled (ASIDs 101 - 509)
[   18.077317] kvm_amd: SEV-ES enabled (ASIDs 1 - 100)
[   18.082194] kvm_amd: SEV-SNP enabled (ASIDs 1 - 100)
[   18.087331] kvm_amd: Virtual VMLOAD VMSAVE supported
[   18.092300] kvm_amd: Virtual GIF supported
[   18.118148] EDAC MC0: Giving out device to module amd64_edac controller F19h: DEV 0000:00:18.3 (INTERRUPT)
[   18.127804] EDAC amd64: F19h detected (node 0).
[   18.132362] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.137086] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.141813] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.146531] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.151258] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.155976] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.160699] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.165414] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.170135] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.174853] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.179581] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.184295] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.189020] EDAC amd64: MC: 0:     0MB 1:     0MB
^[M\r^[[K[ ^[[0;31m*[   18.193736] EDAC amd64: MC: 2: 16384MB 3: 16384MB
^[[0;1;31m*^[[0m^[[[   18.199844] EDAC amd64: MC: 0:     0MB 1:     0MB
0;31m*  ^[[0m] A [   18.205929] EDAC amd64: MC: 2: 16384MB 3: 16384MB
start job is running for Wait for…ice Initialization (4s / no limit)
[   18.218980] intel_rapl_common: Found RAPL domain package
[   18.220148] amd_atl: AMD Address Translation Library initialized
[   18.224301] intel_rapl_common: Found RAPL domain core
^[M\r^[[K[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Wait for…ice Initialization (5s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Local File Systems^[[0m.
         Mounting ^[[0;1;39m/boot^[[0m...
      [   18.599946] XFS (sda6): Mounting V5 Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
   Mounting ^[[0;[   18.602346] XFS (dm-0): Mounting V5 Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
1;39m/home^[[0m...
         Starting ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m...
[   18.626620] XFS (sda6): Ending clean mount
[   18.634531] XFS (dm-0): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
         Mounting ^[[0;1;39m/boot/efi^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
         Starting ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Mounting ^[[0;1;39mRPC Pipe File System^[[0m...
         Starting ^[[0;1;39mSecurity Auditing Service^[[0m...
         Starting ^[[0;1;39mRPC Bind^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRPC Bind^[[0m.
[   18.745256] RPC: Registered named UNIX socket transport module.
[   18.751189] RPC: Registered udp transport module.
[   18.755902] RPC: Registered tcp transport module.
[   18.760606] RPC: Registered tcp-with-tls transport module.
[   18.766092] RPC: Registered tcp NFSv4.1 backchannel transport module.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mRPC Pipe File System^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mrpc_pipefs.target^[[0m.
         Starting ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdnf makecache --timer^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily rotation of log files^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUpdates mlocate database every day^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily Cleanup of Temporary Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdaily update of the root trust anchor for DNSSEC^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt interface daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt network daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nodedev daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nwfilter daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt proxy daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt secret daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt storage daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
         Starting ^[[0;1;39mD-Bus System Message Bus^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mBasic System^[[0m.
         Starting ^[[0;1;39mNTP client/server^[[0m...
         Starting ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m...
         Starting ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mirqbalance daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mlibstoragemgmt plug-in server daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mMachine Check Exception Logging Daemon^[[0m.
         Starting ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msshd-keygen.target^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUser and Group Name Lookups^[[0m.
         Starting ^[[0;1;39mUser Login Management^[[0m...
         Starting ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNTP client/server^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Network^[[0m.
         Starting ^[[0;1;39mNetwork Manager^[[0m...
         Starting ^[[0;1;39mHostname Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mHostname Service^[[0m.
         Starting ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork^[[0m.
         Starting ^[[0;1;39mNetwork Manager Wait Online^[[0m...
         Starting ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
         Starting ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m...
         Starting ^[[0;1;39mOpenSSH server daemon^[[0m...
         Starting ^[[0;1;39mDynamic System Tuning Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNFS client services^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mOpenSSH server daemon^[[0m.
         Starting ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
^[M\r^[[K[    ^[[0;3[   22.933171] tg3 0000:c1:00.0 eth0: Link is up at 1000 Mbps, full duplex
1m*^[[0;1;31m*^[[0[   22.941166] tg3 0000:c1:00.0 eth0: Flow control is off for TX and off for RX
m] A start job i[   22.949597] tg3 0000:c1:00.0 eth0: EEE is disabled
s running for Network Manager Wait Online (9s / no limit)
^[M\r^[[K[     ^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[ ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*  ^[[0m] A start job is running for Network …nager Wait Online (12s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mNetwork Manager Wait Online^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork is Online^[[0m.
         Starting ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m...
         Starting ^[[0;1;39mNotify NFS peers of a restart^[[0m...
         Starting ^[[0;1;39mSystem Logging Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNotify NFS peers of a restart^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mCrash recovery kernel arming^[[0m...
         Starting ^[[0;1;39mPermit User Sessions^[[0m...
         Starting ^[[0;1;39mlibvirt QEMU daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDeferred execution scheduler^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mCommand Scheduler^[[0m.
         Starting ^[[0;1;39mHold until boot process finishes up^[[0m...
         Starting ^[[0;1;39mTerminate Plymouth Boot Screen^[[0m...
[^[[0;1;31mFAILED^[[0m] Failed to start ^[[0;1;39mCrash recovery kernel arming^[[0m.
See 'systemctl status kdump.service' for details.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSystem Logging Service^[[0m.
[   25.734837] fbcon: Taking over console
[   25.755683] Console: switching to colour frame buffer device 128x48

Red Hat Enterprise Linux 9.5 (Plow)
Kernel 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e on an x86_64

Activate the web console with: systemctl enable --now cockpit.socket

sharavati login: [   43.286929] /proc/cgroups lists only v1 controllers, use cgroup.controllers of root cgroup for v2 info
[  289.403833] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[  289.444480] systemd-rc-local-generator[3155]: /etc/rc.d/rc.local is not marked executable, skipping.
[  311.019399] virbr0: port 1(t0-PNPbfd) entered blocking state
[  311.025085] virbr0: port 1(t0-PNPbfd) entered disabled state
[  311.030866] t0-PNPbfd: entered allmulticast mode
[  311.035568] t0-PNPbfd: entered promiscuous mode
[  311.044583] virbr0: port 1(t0-PNPbfd) entered blocking state
[  311.050251] virbr0: port 1(t0-PNPbfd) entered listening state
[  313.085875] virbr0: port 1(t0-PNPbfd) entered learning state
[  315.101833] virbr0: port 1(t0-PNPbfd) entered forwarding state
[  315.107675] virbr0: topology change detected, propagating
[  323.651351] virbr0: port 1(t0-PNPbfd) entered disabled state
[  323.658163] t0-PNPbfd (unregistering): left allmulticast mode
[  323.663923] t0-PNPbfd (unregistering): left promiscuous mode
[  323.669607] virbr0: port 1(t0-PNPbfd) entered disabled state
[  328.448423] virbr0: port 1(t0-2VXGpP) entered blocking state
[  328.454089] virbr0: port 1(t0-2VXGpP) entered disabled state
[  328.459783] t0-2VXGpP: entered allmulticast mode
[  328.464484] t0-2VXGpP: entered promiscuous mode
[  328.473106] virbr0: port 1(t0-2VXGpP) entered blocking state
[  328.478771] virbr0: port 1(t0-2VXGpP) entered listening state
[  330.493446] virbr0: port 1(t0-2VXGpP) entered learning state
[  332.509401] virbr0: port 1(t0-2VXGpP) entered forwarding state
[  332.515248] virbr0: topology change detected, propagating
[  341.043555] virbr0: port 1(t0-2VXGpP) entered disabled state
[  341.050372] t0-2VXGpP (unregistering): left allmulticast mode
[  341.056135] t0-2VXGpP (unregistering): left promiscuous mode
[  341.061813] virbr0: port 1(t0-2VXGpP) entered disabled state
[  382.683880] JFS: nTxBlock = 8192, nTxLock = 65536
[  382.721738] QNX4 filesystem 0.2.3 registered.
[  382.804196] raid6: avx2x4   gen() 28824 MB/s
[  382.876194] raid6: avx2x2   gen() 29184 MB/s
[  382.948193] raid6: avx2x1   gen() 20421 MB/s
[  382.952464] raid6: using algorithm avx2x2 gen() 29184 MB/s
[  383.024192] raid6: .... xor() 26932 MB/s, rmw enabled
[  383.029249] raid6: using avx2x2 recovery algorithm
[  383.036116] xor: automatically using best checksumming function   avx       
[  383.133677] Btrfs loaded, zoned=yes, fsverity=yes
[  387.537597] sda6: Can't mount, would change RO state
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Runtime Directory /run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser Slice of UID 0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNFS client services^[[0m.
         Stopping ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mUser and Group Name Lookups^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mShow Plymouth Reboot Screen^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSystem Logging Service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork is Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager Wait Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
         Stopping ^[[0;1;39mNetwork Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Network^[[0m.
         Stopping ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGenerate network units from Kernel command line^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
         Stopping ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Plymouth Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mVirtual Machine and Container Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Clos[  389.024497] audit: type=1305 audit(1750146246.070:289): op=set audit_pid=0 old=2280 auid=4294967295 ses=4294967295 subj=unconfined res=1
ed ^[[0;1;39mlibvirt locking daem[  389.039159] audit: type=1131 audit(1750146246.082:290): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=auditd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
on admin socket^[[0m.
[^[[0;32m [  389.061131] audit: type=1131 audit(1750146246.106:291): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
 OK  ^[[0m] Closed ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon socket^[[0m.
         Stopping ^[[0;1;39mD-Bus System Message Bus^[[0m...
         Starting ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  O[  389.132809] audit: type=1131 audit(1750146246.178:292): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-fsck@dev-disk-by\x2duuid-FBE5\x2d86EF comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
K  ^[[0m] Unset a[  389.149162] XFS (dm-0): Unmounting Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
utomount ^[[0;1;3[  389.156886] XFS (sda6): Unmounting Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
9mArbitrary Executab…ormats File System Automount Point^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Encrypted Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Integrity Protected Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Verity Protected Volumes^[[0m.
         Deactivating swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
         Stopping ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-sysctl.service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
         Stopping ^[[0;1;39mSecurity Auditing Service^[[0m...
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/rhel_sharavati/swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;3[  389.284674] audit: type=1131 audit(1750146246.330:293): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
9m/dev/disk/by-u[  389.305374] audit: type=1131 audit(1750146246.350:294): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
uid…8d2e1f-0fb1-4c94-97ac-38505613fcbf^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/d…kEo36yeb12DWUnp5czhD1hrKFNCXkJMetK^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/dm-2^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
         Unmounting ^[[0;1;39m/boot/efi^[[0m...
         Unmounting ^[[0;1;39m/home^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-[  389.401904] audit: type=1131 audit(1750146246.446:295): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
setup-dev.servic[  389.423061] audit: type=1130 audit(1750146246.466:296): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
e^[[0m...
[^[[0;[  389.444235] audit: type=1131 audit(1750146246.466:297): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK [  389.470652] audit: type=1334 audit(1750146246.514:298): prog-id=37 op=UNLOAD
 ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m.
         Unmounting ^[[0;1;39m/boot^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32[  389.512426] watchdog: watchdog0: watchdog did not stop!
m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m][  389.523618] systemd-shutdown[1]: Using hardware watchdog 'SP5100 TCO timer', version 0, device /dev/watchdog0
 Unmounted ^[[0;1[  389.533712] systemd-shutdown[1]: Watchdog running with a timeout of 10min.
;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Local File Systems^[[0m.
[^[[0;32m [  389.550988] systemd-shutdown[1]: Syncing filesystems and block devices.
 OK  ^[[0m] Reach[  389.558301] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
ed target ^[[0;1;39mUnmount All Filesystems^[[0m.
         Stopping ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRemount Root and Kernel File Systems^[[0m[  389.585522] systemd-journald[1732]: Received SIGTERM from PID 1 (systemd-shutdow).
.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mMonitoring of LVM2 mirrors…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLate Shutdown Services^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSystem Reboot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Reboot^[[0m.
[  389.640557] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
[  389.666345] systemd-shutdown[1]: Unmounting file systems.
[  389.672492] [7877]: Remounting '/' read-only with options 'attr2,inode64,logbufs=8,logbsize=32k,noquota'.
[  389.692496] systemd-shutdown[1]: All filesystems unmounted.
[  389.698073] systemd-shutdown[1]: Deactivating swaps.
[  389.703064] systemd-shutdown[1]: All swaps deactivated.
[  389.708626] systemd-shutdown[1]: Detaching loop devices.
[  389.714520] systemd-shutdown[1]: All loop devices detached.
[  389.720092] systemd-shutdown[1]: Stopping MD devices.
[  389.725274] systemd-shutdown[1]: All MD devices stopped.
[  389.730587] systemd-shutdown[1]: Detaching DM devices.
[  389.736103] systemd-shutdown[1]: Detaching DM /dev/dm-2 (253:2).
[  389.784135] systemd-shutdown[1]: Detaching DM /dev/dm-0 (253:0).
[  389.852180] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  389.858672] systemd-shutdown[1]: Detaching DM devices.
[  389.863991] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  389.870454] systemd-shutdown[1]: Cannot finalize remaining DM devices, continuing.
[  389.878020] watchdog: watchdog0: watchdog did not stop!
[  389.972352] systemd-shutdown[1]: Successfully changed into root pivot.
[  389.978887] systemd-shutdown[1]: Returning to initrd...
[  390.031593] dracut Warning: Killing all remaining processes
dracut Warning: Killing all remaining processes
[  390.111594] XFS (dm-1): Unmounting Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[  390.126728] dracut Warning: Unmounted /oldroot.
dracut Warning: Unmounted /oldroot.
[  390.142725] dracut: Disassembling device-mapper devices
Rebooting.
[  390.350355] sd 8:0:2:0: [sdc] Synchronizing SCSI cache
[  390.355623] sd 8:0:0:0: [sda] Synchronizing SCSI cache
[  391.825565] mpt3sas_cm0: sending message unit reset !!
[  391.832003] mpt3sas_cm0: message unit reset: SUCCESS
[  391.839545] ACPI: PM: Preparing to enter system sleep state S5
[  391.845477] kvm: exiting hardware virtualization
[  391.850135] reboot: Restarting system
[  391.853806] reboot: machine restart
^[[c^[[2J^[[01;01H^[[=3h^[[2J^[[01;01HKEY MAPPING FOR CONSOLE REDIRECTION:

Use the <ESC><1> key sequence for <F1>
Use the <ESC><2> key sequence for <F2>
Use the <ESC><3> key sequence for <F3>
Use the <ESC><0> key sequence for <F10>
Use the <ESC><!> key sequence for <F11>
Use the <ESC><@> key sequence for <F12>

Use the <ESC><Ctrl><M> key sequence for <Ctrl><M>
Use the <ESC><Ctrl><H> key sequence for <Ctrl><H>
Use the <ESC><Ctrl><I> key sequence for <Ctrl><I>
Use the <ESC><Ctrl><J> key sequence for <Ctrl><J>

Use the <ESC><X><X> key sequence for <Alt><x>, where x is any letter
key, and X is the upper case of that key

Use the <ESC><R><ESC><r><ESC><R> key sequence for <Ctrl><Alt><Del>

Press the spacebar to pause...
Initializing PCIe, USB, and Video... Done
PowerEdge R6515
BIOS Version: 2.17.0
Console Redirection Enabled Requested by iDRAC

F2	 = System Setup
F10	 = Lifecycle Controller (Config
	   iDRAC, Update FW, Install OS)
F11	 = Boot Manager
F12	 = PXE Boot
iDRAC IPV4:  10.86.18.202 [Dedicated]
                                
Initializing Firmware Interfaces...
 





Enumerating Boot options...
Enumerating Boot options... Done
Loading Lifecycle Controller Drivers...
Loading Lifecycle Controller Drivers...Done
Lifecycle Controller: Collecting System Inventory...

iDRAC IPV4:  10.86.18.202 [Dedicated]

^[[2J^[[01;01HLifecycle Controller: Done
Booting...
^[[2J^[[01;01HBooting from Integrated Storage Controller 1: Red Hat Enterprise Linux
^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[02;32HGRUB version 2.06

\r^[[04;02H/----------------------------------------------------------------------------\^[[05;02H|^[[05;79H|^[[06;02H|^[[06;79H|^[[07;02H|^[[07;79H|^[[08;02H|^[[08;79H|^[[09;02H|^[[09;79H|^[[10;02H|^[[10;79H|^[[11;02H|^[[11;79H|^[[12;02H|^[[12;79H|^[[13;02H|^[[13;79H|^[[14;02H|^[[14;79H|^[[15;02H|^[[15;79H|^[[16;02H|^[[16;79H|^[[17;02H\----------------------------------------------------------------------------/^[[18;02H^[[19;02H     Use the ^ and v keys to select which entry is highlighted.          
\r      Press enter to boot the selected OS, `e' to edit the commands       
\r      before booting or `c' for a command-line. ESC to return previous    
\r      menu.                                                               ^[[05;80H ^[[0m^[[30m^[[47m^[[05;03H*Red Hat Enterprise Linux (6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e)>
\r^[[06;01H^[[0m^[[37m^[[40m^[[05;78H^[[06;03H Red Hat Enterprise Linux (6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997)>
\r^[[07;01H^[[06;78H^[[07;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250613-bc6e0ba6c9-dc42f4ece61)>
\r^[[08;01H^[[07;78H^[[08;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250612-0bb71d3018-d909e6968a1)>
\r^[[09;01H^[[08;78H^[[09;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250611-19a60293b9-72d7c68e20e)>
\r^[[10;01H^[[09;78H^[[10;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250610-b27cc623e0-9a3b1b1b837)>
\r^[[11;01H^[[10;78H^[[11;03H Red Hat Enterprise Linux (6.15.0-rc7-next-20250526-3be1a7a31f-22d449bcd69)>
\r^[[12;01H^[[11;78H^[[12;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250514-bdd609656f-ccb396cc166)>
\r^[[13;01H^[[12;78H^[[13;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250513-aa94665adc-e0bf3d3816b)>
\r^[[14;01H^[[13;78H^[[14;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250512-edef457004-450c56522a8)>
\r^[[15;01H^[[14;78H^[[15;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250508-f48887a98b-19c541fe872)>
\r^[[16;01H^[[15;78H^[[16;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250507-08710e6960-81586bd2ca8)>
\r^[[17;01H^[[16;78H^[[16;80Hv^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 5s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 4s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 3s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 2s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 1s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 0s.                 ^[[05;78H^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m  Booting `Red Hat Enterprise Linux
\r(6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e) 9.5 (Plow)'

\r[    0.000000] Linux version 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e (root@sharavati•amd.com) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-5), GNU ld version 2.35.2-63.el9) #1 SMP PREEMPT_DYNAMIC Tue Jun 17 12:09:52 IST 2025
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] SEV-SNP: RMP table physical range [0x0000000015e00000 - 0x00000000566fffff]
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000015dfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000015e00000-0x00000000566fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000056700000-0x00000000567fbfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000567fc000-0x00000000567fcfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000567fd000-0x000000005a142fff] usable
[    0.000000] BIOS-e820: [mem 0x000000005a143000-0x000000005a342fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005a343000-0x0000000067acefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000067acf000-0x000000006dfcefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006dfcf000-0x000000006edfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006edff000-0x000000006effefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000006efff000-0x000000006effffff] usable
[    0.000000] BIOS-e820: [mem 0x000000006f000000-0x000000006f00afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006f00b000-0x000000006fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000070000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa000000-0x00000000aaffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c5000000-0x00000000c5ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e0ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000207fcfffff] usable
[    0.000000] BIOS-e820: [mem 0x000000207fd00000-0x000000207fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000002080000000-0x000000407f1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000407f200000-0x000000407fffffff] reserved
[    0.000000] printk: legacy bootconsole [earlyser0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by Dell Inc.
[    0.000000] efi: ACPI=0x6effe000 ACPI 2.0=0x6effe014 MEMATTR=0x63f376a0 SMBIOS=0x6979e000 SMBIOS 3.0=0x6979c000 MOKvar=0x67bcc000 RNG=0x6efb4020 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem56: MMIO range=[0x80000000-0x8fffffff] (256MB) from e820 map
[    0.000000] efi: Remove mem57: MMIO range=[0xaa000000-0xaaffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem58: MMIO range=[0xc5000000-0xc5ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem59: MMIO range=[0xe0000000-0xe0ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem60: MMIO range=[0xfd000000-0xffffffff] (48MB) from e820 map
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[    0.000000] DMI: Memory slots populated: 8/16
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1996.412 MHz processor
[    0.000028] last_pfn = 0x407f200 max_arch_pfn = 0x400000000
[    0.005552] MTRR map: 7 entries (2 fixed + 5 variable; max 19), built from 9 variable MTRRs
[    0.013864] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Memory KASLR using RDRAND RDTSC...
[    0.023934] x2apic: enabled by BIOS, switching to x2apic ops
[    0.029594] last_pfn = 0x70000 max_arch_pfn = 0x400000000
[    0.039450] SEV-SNP: Reserving start/end of RMP table on a 2MB boundary [0x0000000056600000]
[    0.047720] Using GB pages for direct mapping
[    0.052605] Secure boot disabled
[    0.055659] RAMDISK: [mem 0x0bb2c000-0x0e0d4fff]
[    0.060257] ACPI: Early table checksum verification disabled
[    0.065886] ACPI: RSDP 0x000000006EFFE014 000024 (v02 DELL  )
[    0.071604] ACPI: XSDT 0x000000006EFB7188 0000DC (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.080100] ACPI: FACP 0x000000006EFF9000 000114 (v06 DELL   PE_SC3   00000002 DELL 00000001)
[    0.088592] ACPI: DSDT 0x000000006EFDA000 019528 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.097083] ACPI: FACS 0x000000006EDB9000 000040
[    0.101675] ACPI: BERT 0x000000006EFFC000 000030 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.110167] ACPI: ERST 0x000000006EFFB000 000230 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.118660] ACPI: HEST 0x000000006EFFA000 0007F4 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.127152] ACPI: HPET 0x000000006EFF8000 000038 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.135644] ACPI: APIC 0x000000006EFF6000 0018BE (v05 DELL   PE_SC3   00000002 DELL 00000001)
[    0.144137] ACPI: MCFG 0x000000006EFF5000 00003C (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.152629] ACPI: WSMT 0x000000006EFF4000 000028 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.161123] ACPI: SSDT 0x000000006EFD9000 000629 (v02 DELL   xhc_port 00000001 INTL 20210331)
[    0.169615] ACPI: SSDT 0x000000006EFD8000 000D6E (v02 AMD    CPMRAS   00000001 INTL 20210331)
[    0.178107] ACPI: EINJ 0x000000006EFD7000 000170 (v01 AMD    PE_SC3   00000001 AMD  00000001)
[    0.186599] ACPI: PCCT 0x000000006EFD6000 00006E (v02 DELL   AmdTable 00000001 AMD  00000001)
[    0.195092] ACPI: SSDT 0x000000006EFC7000 00E849 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.203584] ACPI: SRAT 0x000000006EFC6000 000CD0 (v03 DELL   PE_SC3   00000001 AMD  00000001)
[    0.212077] ACPI: MSCT 0x000000006EFC5000 00004E (v01 DELL   PE_SC3   00000000 AMD  00000001)
[    0.220569] ACPI: SLIT 0x000000006EFC4000 000030 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.229062] ACPI: CRAT 0x000000006EFBC000 0072F8 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.237571] ACPI: CDIT 0x000000006EFBB000 00002C (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.246099] ACPI: IVRS 0x000000006EFBA000 0001F0 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.254590] ACPI: SPCR 0x000000006EFB9000 000050 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.263083] ACPI: SLIC 0x000000006EFB8000 000176 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.271576] ACPI: SSDT 0x000000006EFFD000 000D66 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.280067] ACPI: SSDT 0x000000006EFB5000 00193C (v02 AMD    CPMCMN   00000001 INTL 20210331)
[    0.288560] ACPI: Reserving FACP table memory at [mem 0x6eff9000-0x6eff9113]
[    0.295579] ACPI: Reserving DSDT table memory at [mem 0x6efda000-0x6eff3527]
[    0.302599] ACPI: Reserving FACS table memory at [mem 0x6edb9000-0x6edb903f]
[    0.309618] ACPI: Reserving BERT table memory at [mem 0x6effc000-0x6effc02f]
[    0.316638] ACPI: Reserving ERST table memory at [mem 0x6effb000-0x6effb22f]
[    0.323655] ACPI: Reserving HEST table memory at [mem 0x6effa000-0x6effa7f3]
[    0.330675] ACPI: Reserving HPET table memory at [mem 0x6eff8000-0x6eff8037]
[    0.337694] ACPI: Reserving APIC table memory at [mem 0x6eff6000-0x6eff78bd]
[    0.344774] ACPI: Reserving MCFG table memory at [mem 0x6eff5000-0x6eff503b]
[    0.351794] ACPI: Reserving WSMT table memory at [mem 0x6eff4000-0x6eff4027]
[    0.358813] ACPI: Reserving SSDT table memory at [mem 0x6efd9000-0x6efd9628]
[    0.365832] ACPI: Reserving SSDT table memory at [mem 0x6efd8000-0x6efd8d6d]
[    0.372851] ACPI: Reserving EINJ table memory at [mem 0x6efd7000-0x6efd716f]
[    0.379870] ACPI: Reserving PCCT table memory at [mem 0x6efd6000-0x6efd606d]
[    0.386891] ACPI: Reserving SSDT table memory at [mem 0x6efc7000-0x6efd5848]
[    0.393909] ACPI: Reserving SRAT table memory at [mem 0x6efc6000-0x6efc6ccf]
[    0.400928] ACPI: Reserving MSCT table memory at [mem 0x6efc5000-0x6efc504d]
[    0.407948] ACPI: Reserving SLIT table memory at [mem 0x6efc4000-0x6efc402f]
[    0.414966] ACPI: Reserving CRAT table memory at [mem 0x6efbc000-0x6efc32f7]
[    0.421987] ACPI: Reserving CDIT table memory at [mem 0x6efbb000-0x6efbb02b]
[    0.429006] ACPI: Reserving IVRS table memory at [mem 0x6efba000-0x6efba1ef]
[    0.436024] ACPI: Reserving SPCR table memory at [mem 0x6efb9000-0x6efb904f]
[    0.443069] ACPI: Reserving SLIC table memory at [mem 0x6efb8000-0x6efb8175]
[    0.450090] ACPI: Reserving SSDT table memory at [mem 0x6effd000-0x6effdd65]
[    0.457108] ACPI: Reserving SSDT table memory at [mem 0x6efb5000-0x6efb693b]
[    0.464200] APIC: Switched APIC routing to: cluster x2apic
[    0.469603] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.475567] ACPI: SRAT: Node 0 PXM 0 [mem 0x000c0000-0x7fffffff]
[    0.481546] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.487785] ACPI: SRAT: Node 1 PXM 1 [mem 0x2080000000-0x407fffffff]
[    0.494117] NUMA: Node 0 [mem 0x00001000-0x0009ffff] + [mem 0x000c0000-0x7fffffff] -> [mem 0x00001000-0x7fffffff]
[    0.504337] NUMA: Node 0 [mem 0x00001000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00001000-0x207fffffff]
[    0.515002] NODE_DATA(0) allocated [mem 0x207fcd59c0-0x207fcfffff]
[    0.521158] NODE_DATA(1) allocated [mem 0x407f1d49c0-0x407f1fefff]
[    0.527441] cannot allocate crashkernel low memory (size:0x10800000).
[    0.533956] Zone ranges:
[    0.536313]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.542466]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.548619]   Normal   [mem 0x0000000100000000-0x000000407f1fffff]
[    0.554780]   Device   empty
[    0.557639] Movable zone start for each node
[    0.561887] Early memory node ranges
[    0.565439]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.571679]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.577918]   node   0: [mem 0x0000000000100000-0x0000000015dfffff]
[    0.584157]   node   0: [mem 0x0000000056700000-0x00000000567fbfff]
[    0.590396]   node   0: [mem 0x00000000567fd000-0x000000005a142fff]
[    0.596636]   node   0: [mem 0x000000005a343000-0x0000000067acefff]
[    0.602875]   node   0: [mem 0x000000006efff000-0x000000006effffff]
[    0.609114]   node   0: [mem 0x000000006f00b000-0x000000006fffffff]
[    0.615354]   node   0: [mem 0x0000000100000000-0x000000207fcfffff]
[    0.621603]   node   1: [mem 0x0000002080000000-0x000000407f1fffff]
[    0.627843] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fcfffff]
[    0.634854] Initmem setup node 1 [mem 0x0000002080000000-0x000000407f1fffff]
[    0.641873] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.647677] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.653493] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.659780] On node 0, zone DMA32: 35072 pages in unavailable ranges
[    0.665994] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.672089] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.678179] On node 0, zone DMA32: 30000 pages in unavailable ranges
[    0.684423] On node 0, zone DMA32: 11 pages in unavailable ranges
[    0.909556] On node 1, zone Normal: 768 pages in unavailable ranges
[    0.915653] On node 1, zone Normal: 3584 pages in unavailable ranges
[    0.922135] ACPI: PM-Timer IO Port: 0x408
[    0.926006] ACPI: X2APIC_NMI (uid[0xffffffff] high edge lint[0x1])
[    0.932132] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.938037] IOAPIC[0]: apic_id 240, version 33, address 0xfec00000, GSI 0-23
[    0.945046] IOAPIC[1]: apic_id 241, version 33, address 0xe0100000, GSI 120-151
[    0.952325] IOAPIC[2]: apic_id 242, version 33, address 0xc5100000, GSI 88-119
[    0.959517] IOAPIC[3]: apic_id 243, version 33, address 0xaa100000, GSI 56-87
[    0.966625] IOAPIC[4]: apic_id 244, version 33, address 0xfd100000, GSI 24-55
[    0.973728] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.980052] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.986559] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.992963] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.998079] ACPI: SPCR: console: uart,io,0x2f8,115200
[    1.003108] CPU topo: Max. logical packages:   1
[    1.007696] CPU topo: Max. logical dies:       1
[    1.012287] CPU topo: Max. dies per package:   1
[    1.016886] CPU topo: Max. threads per core:   2
[    1.021526] CPU topo: Num. cores per package:    64
[    1.026379] CPU topo: Num. threads per package: 128
[    1.031231] CPU topo: Allowing 128 present CPUs plus 0 hotplug CPUs
[    1.037497] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    1.045011] PM: hibernation: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    1.052550] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    1.060090] PM: hibernation: Registered nosave memory: [mem 0x15e00000-0x567fffff]
[    1.067629] PM: hibernation: Registered nosave memory: [mem 0x5a143000-0x5a342fff]
[    1.075168] PM: hibernation: Registered nosave memory: [mem 0x67acf000-0x6effefff]
[    1.082707] PM: hibernation: Registered nosave memory: [mem 0x6f000000-0x6f00afff]
[    1.090247] PM: hibernation: Registered nosave memory: [mem 0x70000000-0xffffffff]
[    1.097785] PM: hibernation: Registered nosave memory: [mem 0x207fd00000-0x207fffffff]
[    1.105671] [mem 0x56800000-0xffffffff] available for PCI devices
[    1.111737] Booting paravirtualized kernel on bare hardware
[    1.117284] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    1.127691] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:128 nr_cpu_ids:128 nr_node_ids:2
[    1.138592] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[    1.145064] Kernel command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    1.174388] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e biosdevname=0 mem_encrypt=off", will be passed to user space.
[    1.191235] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    1.198152] printk: log_buf_len total cpu_extra contributions: 520192 bytes
[    1.205084] printk: log_buf_len min size: 262144 bytes
[    1.210536] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[    1.217918] printk: early log buf free: 246352(93%)
[    1.224267] software IO TLB: area num 128.
[    1.228227] software IO TLB: swiotlb_memblock_alloc: Failed to allocate 268435456 bytes tlb structure
[    1.243294] software IO TLB: SWIOTLB bounce buffer size adjusted 131072 -> 65536 slabs
[    1.249404] Fallback order for Node 0: 0 1 
[    1.249408] Fallback order for Node 1: 1 0 
[    1.249422] Built 2 zonelists, mobility grouping on.  Total pages: 66743906
[    1.272409] Policy zone: Normal
[    1.275536] mem auto-init: stack:off, heap alloc:on, heap free:off
[    1.697473] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=128, Nodes=2
Poking KASLR using RDRAND RDTSC...
[    1.718089] ftrace: allocating 53763 entries in 212 pages
[    1.723303] ftrace: allocated 212 pages with 4 groups
[    1.729205] Dynamic Preempt: voluntary
[    1.733141] rcu: Preemptible hierarchical RCU implementation.
[    1.738703] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=128.
[    1.745636] 	Trampoline variant of Tasks RCU enabled.
[    1.750662] 	Rude variant of Tasks RCU enabled.
[    1.755168] 	Tracing variant of Tasks RCU enabled.
[    1.759934] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.767473] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=128
[    1.774359] RCU Tasks: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.783162] RCU Tasks Rude: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.792435] RCU Tasks Trace: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.805293] NR_IRQS: 524544, nr_irqs: 3624, preallocated irqs: 16
[    1.811478] rcu: srcu_init: Setting srcu_struct sizes to big.
[    1.817223] Console: colour dummy device 80x25
[    1.821506] printk: legacy console [ttyS0] enabled
[    1.821506] printk: legacy console [ttyS0] enabled
[    1.831037] printk: legacy bootconsole [earlyser0] disabled
[    1.831037] printk: legacy bootconsole [earlyser0] disabled
[    1.842223] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    1.853500] ACPI: Core revision 20250404
[    1.857650] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    1.866791] APIC: Switch to symmetric I/O mode setup
[    1.872198] AMD-Vi: Using global IVHD EFR:0x841f77e022094ace, EFR2:0x0
[    1.881134] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    1.906790] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x398de1f20e6, max_idle_ns: 881590667604 ns
[    1.917301] Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.82 BogoMIPS (lpj=7985648)
[    1.921311] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    1.925403] LVT offset 2 assigned for vector 0xf4
[    1.929330] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    1.933298] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    1.937299] process: using mwait in idle threads
[    1.941302] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    1.945298] Spectre V2 : Mitigation: Retpolines
[    1.949298] Spectre V2 : User space: Mitigation: STIBP always-on protection
[    1.953298] Speculative Return Stack Overflow: Mitigation: Safe RET
[    1.957298] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.961298] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
[    1.965298] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    1.969299] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    1.973302] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.977298] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.981298] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.985298] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    1.989298] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    1.993298] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    1.997298] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    2.001298] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    2.005298] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[    2.043853] Freeing SMP alternatives memory: 48K
[    2.045300] pid_max: default: 131072 minimum: 1024
[    2.057383] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm
[    2.061350] Yama: becoming mindful.
[    2.065422] AppArmor: AppArmor initialized
[    2.078571] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    2.086861] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    2.089448] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.093394] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.206656] smpboot: CPU0: AMD EPYC 7713 64-Core Processor (family: 0x19, model: 0x1, stepping: 0x1)
[    2.209656] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    2.213300] ... version:                0
[    2.217299] ... bit width:              48
[    2.221300] ... generic registers:      6
[    2.225299] ... value mask:             0000ffffffffffff
[    2.229299] ... max period:             00007fffffffffff
[    2.233299] ... fixed-purpose events:   0
[    2.237299] ... event mask:             000000000000003f
[    2.241731] signal: max sigframe size: 3376
[    2.245359] rcu: Hierarchical SRCU implementation.
[    2.249299] rcu: 	Max phase no-delay instances is 1000.
[    2.253355] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
[    2.265662] MCE: In-kernel MCE decoding enabled.
[    2.269347] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    2.278246] smp: Bringing up secondary CPUs ...
[    2.281447] smpboot: x86: Booting SMP configuration:
[    2.285301] .... node  #0, CPUs:          #1   #2   #3   #4   #5   #6   #7   #8   #9  #10  #11  #12  #13  #14  #15  #16  #17  #18  #19  #20  #21  #22  #23  #24  #25  #26  #27  #28  #29  #30  #31
[    2.297301] .... node  #1, CPUs:    #32  #33  #34  #35  #36  #37  #38  #39  #40  #41  #42  #43  #44  #45  #46  #47  #48  #49  #50  #51  #52  #53  #54  #55  #56  #57  #58  #59  #60  #61  #62  #63
[    2.449301] .... node  #0, CPUs:    #64  #65  #66  #67  #68  #69  #70  #71  #72  #73  #74  #75  #76  #77  #78  #79  #80  #81  #82  #83  #84  #85  #86  #87  #88  #89  #90  #91  #92  #93  #94  #95
[    2.457303] .... node  #1, CPUs:    #96  #97  #98  #99 #100 #101 #102 #103 #104 #105 #106 #107 #108 #109 #110 #111 #112 #113 #114 #115 #116 #117 #118 #119 #120 #121 #122 #123 #124 #125 #126 #127
[    2.465601] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[    2.617463] smp: Brought up 2 nodes, 128 CPUs
[    2.621304] smpboot: Total of 128 processors activated (511081.47 BogoMIPS)
[    2.635620] Memory: 262224964K/266975624K available (18401K kernel code, 3299K rwdata, 7944K rodata, 4760K init, 6092K bss, 4428308K reserved, 0K cma-reserved)
[    2.643412] devtmpfs: initialized
[    2.645405] x86/mm: Memory block size: 2048MB
[    2.660068] ACPI: PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    2.661301] ACPI: PM: Registering ACPI NVS region [mem 0x6dfcf000-0x6edfefff] (14876672 bytes)
[    2.669384] ACPI: PM: Registering ACPI NVS region [mem 0x6f000000-0x6f00afff] (45056 bytes)
[    2.673420] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    2.677362] posixtimers hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.681515] futex hash table entries: 16384 (1048576 bytes on 2 NUMA nodes, total 2048 KiB, linear).
[    2.685529] pinctrl core: initialized pinctrl subsystem
[    2.689452] PM: RTC time: 13:16:21, date: 2025-06-17
[    2.694070] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    2.697904] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    2.701482] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    2.705481] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    2.709306] audit: initializing netlink subsys (disabled)
[    2.713329] audit: type=2000 audit(1750166180.832:1): state=initialized audit_enabled=0 res=1
[    2.713502] thermal_sys: Registered thermal governor 'fair_share'
[    2.717300] thermal_sys: Registered thermal governor 'bang_bang'
[    2.721300] thermal_sys: Registered thermal governor 'step_wise'
[    2.725299] thermal_sys: Registered thermal governor 'user_space'
[    2.729323] cpuidle: using governor ladder
[    2.737309] cpuidle: using governor menu
[    2.741346] Detected 1 PCC Subspaces
[    2.745300] Registering PCC driver as Mailbox controller
[    2.753473] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    2.757303] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    2.761477] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    2.765310] PCI: Using configuration type 1 for base access
[    2.769307] PCI: Dell System detected, enabling pci=bfsort.
[    2.777368] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    2.781517] HugeTLB: allocation took 0ms with hugepage_allocation_threads=32
[    2.785324] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    2.789299] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    2.793299] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    2.797299] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    2.805949] ACPI: Added _OSI(Module Device)
[    2.809300] ACPI: Added _OSI(Processor Device)
[    2.813299] ACPI: Added _OSI(Processor Aggregator Device)
[    2.859082] ACPI: 6 ACPI AML tables successfully acquired and loaded
[    2.871012] ACPI: Interpreter enabled
[    2.873312] ACPI: PM: (supports S0 S5)
[    2.877299] ACPI: Using IOAPIC for interrupt routing
[    2.881917] HEST: Table parsing has been initialized.
[    2.889315] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    2.893302] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.897299] PCI: Ignoring E820 reservations for host bridge windows
[    2.906484] ACPI: Enabled 1 GPEs in block 00 to 1F
[    2.948455] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    2.949481] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    2.953377] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    2.957378] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    2.961377] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    2.965377] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    2.969377] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    2.973377] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    2.977800] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-3f])
[    2.981303] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.985467] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER DPC]
[    2.989618] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    2.993299] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.001748] PCI host bridge to bus 0000:00
[    3.005303] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    3.009299] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    3.013300] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000fffff window]
[    3.017299] pci_bus 0000:00: root bus resource [io  0x0d00-0x3fff window]
[    3.021300] pci_bus 0000:00: root bus resource [mem 0xe1000000-0xfebfffff window]
[    3.025299] pci_bus 0000:00: root bus resource [mem 0x63dc0000000-0x7fcffffffff window]
[    3.029299] pci_bus 0000:00: root bus resource [bus 00-3f]
[    3.033313] pci 0000:00:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.037452] pci 0000:00:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.041410] pci 0000:00:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.045395] pci 0000:00:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.049392] pci 0000:00:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.053398] pci 0000:00:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.057315] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.061303] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    3.065300] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    3.069370] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    3.074322] pci 0000:00:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.077397] pci 0000:00:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.081394] pci 0000:00:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.085394] pci 0000:00:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.089315] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.093304] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    3.097311] pci 0000:00:07.1: enabling Extended Tags
[    3.101347] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    3.105458] pci 0000:00:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.109393] pci 0000:00:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.113315] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.117303] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    3.121312] pci 0000:00:08.1: enabling Extended Tags
[    3.125349] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    3.129490] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
[    3.133415] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
[    3.137472] pci 0000:00:18.0: [1022:1650] type 00 class 0x060000 conventional PCI endpoint
[    3.141411] pci 0000:00:18.1: [1022:1651] type 00 class 0x060000 conventional PCI endpoint
[    3.145365] pci 0000:00:18.2: [1022:1652] type 00 class 0x060000 conventional PCI endpoint
[    3.149371] pci 0000:00:18.3: [1022:1653] type 00 class 0x060000 conventional PCI endpoint
[    3.153364] pci 0000:00:18.4: [1022:1654] type 00 class 0x060000 conventional PCI endpoint
[    3.157364] pci 0000:00:18.5: [1022:1655] type 00 class 0x060000 conventional PCI endpoint
[    3.161369] pci 0000:00:18.6: [1022:1656] type 00 class 0x060000 conventional PCI endpoint
[    3.165365] pci 0000:00:18.7: [1022:1657] type 00 class 0x060000 conventional PCI endpoint
[    3.169436] pci 0000:01:00.0: [1000:0097] type 00 class 0x010700 PCIe Endpoint
[    3.173330] pci 0000:01:00.0: BAR 0 [io  0x1000-0x10ff]
[    3.177301] pci 0000:01:00.0: BAR 1 [mem 0xf7400000-0xf740ffff 64bit]
[    3.181301] pci 0000:01:00.0: BAR 3 [mem 0xf7300000-0xf73fffff 64bit]
[    3.185301] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]
[    3.189304] pci 0000:01:00.0: enabling Extended Tags
[    3.193384] pci 0000:01:00.0: supports D1 D2
[    3.197341] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[    3.201299] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x000fffff 64bit]: contains BAR 0 for 16 VFs
[    3.205300] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x000fffff 64bit]
[    3.209299] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x00ffffff 64bit]: contains BAR 2 for 16 VFs
[    3.213451] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.217388] pci 0000:02:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.221333] pci 0000:02:00.0: enabling Extended Tags
[    3.225462] pci 0000:02:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.229326] pci 0000:02:00.2: BAR 2 [mem 0xf7200000-0xf727ffff]
[    3.233301] pci 0000:02:00.2: BAR 5 [mem 0xf7280000-0xf7281fff]
[    3.237304] pci 0000:02:00.2: enabling Extended Tags
[    3.241500] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.245435] pci 0000:03:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.249336] pci 0000:03:00.0: enabling Extended Tags
[    3.253511] pci 0000:03:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.257329] pci 0000:03:00.2: BAR 2 [mem 0xf7100000-0xf717ffff]
[    3.261301] pci 0000:03:00.2: BAR 5 [mem 0xf7180000-0xf7181fff]
[    3.265304] pci 0000:03:00.2: enabling Extended Tags
[    3.269493] pci 0000:03:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.273328] pci 0000:03:00.3: BAR 0 [mem 0xf7000000-0xf70fffff 64bit]
[    3.277308] pci 0000:03:00.3: enabling Extended Tags
[    3.281350] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
[    3.285483] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.293997] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 40-7f])
[    3.297302] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.301466] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.309613] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.313300] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.318230] PCI host bridge to bus 0000:40
[    3.321303] pci_bus 0000:40: root bus resource [io  0x4000-0x6fff window]
[    3.325299] pci_bus 0000:40: root bus resource [mem 0x90000000-0xaaffffff window]
[    3.329299] pci_bus 0000:40: root bus resource [mem 0x47e80000000-0x63dbfffffff window]
[    3.333299] pci_bus 0000:40: root bus resource [bus 40-7f]
[    3.337308] pci 0000:40:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.341398] pci 0000:40:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.345403] pci 0000:40:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.349384] pci 0000:40:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.353385] pci 0000:40:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.357394] pci 0000:40:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.361318] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.365304] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    3.369398] pci 0000:40:03.1: PME# supported from D0 D3hot D3cold
[    3.385928] pci 0000:40:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.389325] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.393306] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    3.397421] pci 0000:40:03.2: PME# supported from D0 D3hot D3cold
[    3.415613] pci 0000:40:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.417323] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.421305] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    3.425409] pci 0000:40:03.3: PME# supported from D0 D3hot D3cold
[    3.445461] pci 0000:40:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.449321] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.453306] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    3.457424] pci 0000:40:03.4: PME# supported from D0 D3hot D3cold
[    3.475641] pci 0000:40:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.477416] pci 0000:40:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.481389] pci 0000:40:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.485390] pci 0000:40:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.489319] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.493305] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    3.497312] pci 0000:40:07.1: enabling Extended Tags
[    3.501350] pci 0000:40:07.1: PME# supported from D0 D3hot D3cold
[    3.509469] pci 0000:40:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.517392] pci 0000:40:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.525316] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.529304] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    3.537311] pci 0000:40:08.1: enabling Extended Tags
[    3.541347] pci 0000:40:08.1: PME# supported from D0 D3hot D3cold
[    3.549552] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.553388] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.557380] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.561381] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.569389] pci 0000:45:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.577333] pci 0000:45:00.0: enabling Extended Tags
[    3.581459] pci 0000:45:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.589327] pci 0000:45:00.2: BAR 2 [mem 0xa5300000-0xa537ffff]
[    3.593302] pci 0000:45:00.2: BAR 5 [mem 0xa5380000-0xa5381fff]
[    3.601304] pci 0000:45:00.2: enabling Extended Tags
[    3.605496] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.609433] pci 0000:46:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.617335] pci 0000:46:00.0: enabling Extended Tags
[    3.621508] pci 0000:46:00.1: [1022:1486] type 00 class 0x108000 PCIe Endpoint
[    3.629328] pci 0000:46:00.1: BAR 2 [mem 0xa5100000-0xa51fffff]
[    3.637301] pci 0000:46:00.1: BAR 5 [mem 0xa5282000-0xa5283fff]
[    3.641304] pci 0000:46:00.1: enabling Extended Tags
[    3.645492] pci 0000:46:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.653329] pci 0000:46:00.2: BAR 2 [mem 0xa5200000-0xa527ffff]
[    3.661302] pci 0000:46:00.2: BAR 5 [mem 0xa5280000-0xa5281fff]
[    3.665304] pci 0000:46:00.2: enabling Extended Tags
[    3.669490] pci 0000:46:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.677327] pci 0000:46:00.3: BAR 0 [mem 0xa5000000-0xa50fffff 64bit]
[    3.685307] pci 0000:46:00.3: enabling Extended Tags
[    3.689349] pci 0000:46:00.3: PME# supported from D0 D3hot D3cold
[    3.697480] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.701965] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 80-bf])
[    3.709309] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.717470] acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.725618] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.733300] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.742209] PCI host bridge to bus 0000:80
[    3.745303] pci_bus 0000:80: root bus resource [io  0x7000-0x9fff window]
[    3.753299] pci_bus 0000:80: root bus resource [mem 0xab000000-0xc5ffffff window]
[    3.761299] pci_bus 0000:80: root bus resource [mem 0x2bf40000000-0x47e7fffffff window]
[    3.769299] pci_bus 0000:80: root bus resource [bus 80-bf]
[    3.773310] pci 0000:80:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.781403] pci 0000:80:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.789401] pci 0000:80:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.797393] pci 0000:80:01.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.805319] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.813304] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    3.817393] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    3.838808] pci 0000:80:01.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.845325] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.849306] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    3.857376] pci 0000:80:01.2: PME# supported from D0 D3hot D3cold
[    3.877965] pci 0000:80:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.881399] pci 0000:80:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.885420] pci 0000:80:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.889386] pci 0000:80:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.893441] pci 0000:80:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.897391] pci 0000:80:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.901314] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.905303] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    3.909310] pci 0000:80:07.1: enabling Extended Tags
[    3.913347] pci 0000:80:07.1: PME# supported from D0 D3hot D3cold
[    3.917455] pci 0000:80:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.921392] pci 0000:80:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.925315] pci 0000:80:08.1: PCI bridge to [bus 84]
[    3.929303] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    3.933311] pci 0000:80:08.1: enabling Extended Tags
[    3.937349] pci 0000:80:08.1: PME# supported from D0 D3hot D3cold
[    3.941580] pci 0000:80:08.2: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.945316] pci 0000:80:08.2: PCI bridge to [bus 85]
[    3.949303] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    3.953311] pci 0000:80:08.2: enabling Extended Tags
[    3.957348] pci 0000:80:08.2: PME# supported from D0 D3hot D3cold
[    3.961543] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.965391] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.969388] pci 0000:83:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.973332] pci 0000:83:00.0: enabling Extended Tags
[    3.977461] pci 0000:83:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.981326] pci 0000:83:00.2: BAR 2 [mem 0xbfa00000-0xbfa7ffff]
[    3.985301] pci 0000:83:00.2: BAR 5 [mem 0xbfa80000-0xbfa81fff]
[    3.989304] pci 0000:83:00.2: enabling Extended Tags
[    3.993498] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.997436] pci 0000:84:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.001335] pci 0000:84:00.0: enabling Extended Tags
[    4.005513] pci 0000:84:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.009330] pci 0000:84:00.2: BAR 2 [mem 0xbf900000-0xbf97ffff]
[    4.013301] pci 0000:84:00.2: BAR 5 [mem 0xbf980000-0xbf981fff]
[    4.017305] pci 0000:84:00.2: enabling Extended Tags
[    4.021505] pci 0000:80:08.1: PCI bridge to [bus 84]
[    4.025433] pci 0000:85:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[    4.029331] pci 0000:85:00.0: BAR 5 [mem 0xbf800000-0xbf8007ff]
[    4.033304] pci 0000:85:00.0: enabling Extended Tags
[    4.037363] pci 0000:85:00.0: PME# supported from D3hot D3cold
[    4.045369] pci 0000:80:08.2: PCI bridge to [bus 85]
[    4.050019] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus c0-ff])
[    4.053303] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    4.057465] acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug AER DPC]
[    4.061617] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    4.065300] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
[    4.070332] PCI host bridge to bus 0000:c0
[    4.073303] pci_bus 0000:c0: root bus resource [io  0xa000-0xffff window]
[    4.077299] pci_bus 0000:c0: root bus resource [mem 0xc6000000-0xe0ffffff window]
[    4.081299] pci_bus 0000:c0: root bus resource [mem 0x10000000000-0x2bf3fffffff window]
[    4.085299] pci_bus 0000:c0: root bus resource [io  0x03b0-0x03df window]
[    4.089299] pci_bus 0000:c0: root bus resource [mem 0x000a0000-0x000bffff window]
[    4.093300] pci_bus 0000:c0: root bus resource [bus c0-ff]
[    4.097309] pci 0000:c0:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    4.101396] pci 0000:c0:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    4.105402] pci 0000:c0:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.109383] pci 0000:c0:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.113384] pci 0000:c0:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.117391] pci 0000:c0:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.121321] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.125305] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    4.129420] pci 0000:c0:03.1: PME# supported from D0 D3hot D3cold
[    4.150810] pci 0000:c0:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.153322] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.157306] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    4.161420] pci 0000:c0:03.2: PME# supported from D0 D3hot D3cold
[    4.181799] pci 0000:c0:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.185318] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.189304] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    4.193391] pci 0000:c0:03.3: PME# supported from D0 D3hot D3cold
[    4.212955] pci 0000:c0:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.213321] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.221304] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    4.225410] pci 0000:c0:03.4: PME# supported from D0 D3hot D3cold
[    4.244353] pci 0000:c0:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.245394] pci 0000:c0:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.249420] pci 0000:c0:05.1: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.253314] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.257313] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    4.261404] pci 0000:c0:05.1: PME# supported from D0 D3hot D3cold
[    4.265453] pci 0000:c0:05.2: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.269314] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.273303] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    4.277306] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.281344] pci 0000:c0:05.2: PME# supported from D0 D3hot D3cold
[    4.285548] pci 0000:c0:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.289388] pci 0000:c0:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.293314] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.297303] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    4.301311] pci 0000:c0:07.1: enabling Extended Tags
[    4.305346] pci 0000:c0:07.1: PME# supported from D0 D3hot D3cold
[    4.309449] pci 0000:c0:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.313390] pci 0000:c0:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.317314] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.321303] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    4.325310] pci 0000:c0:08.1: enabling Extended Tags
[    4.329347] pci 0000:c0:08.1: PME# supported from D0 D3hot D3cold
[    4.333543] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.337383] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.341382] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.345390] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.349400] pci 0000:c1:00.0: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.353344] pci 0000:c1:00.0: BAR 0 [mem 0xc7030000-0xc703ffff 64bit pref]
[    4.357301] pci 0000:c1:00.0: BAR 2 [mem 0xc7040000-0xc704ffff 64bit pref]
[    4.361301] pci 0000:c1:00.0: BAR 4 [mem 0xc7050000-0xc705ffff 64bit pref]
[    4.365302] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.369387] pci 0000:c1:00.0: PME# supported from D0 D3hot D3cold
[    4.373354] pci 0000:c1:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:c0:05.1 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
[    4.378733] pci 0000:c1:00.1: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.381345] pci 0000:c1:00.1: BAR 0 [mem 0xc7000000-0xc700ffff 64bit pref]
[    4.385301] pci 0000:c1:00.1: BAR 2 [mem 0xc7010000-0xc701ffff 64bit pref]
[    4.389301] pci 0000:c1:00.1: BAR 4 [mem 0xc7020000-0xc702ffff 64bit pref]
[    4.393300] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.401348] pci 0000:c1:00.1: PME# supported from D0 D3hot D3cold
[    4.413333] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.417382] pci 0000:c2:00.0: [1556:be00] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    4.421326] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.425306] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    4.429309] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.441320] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.445334] pci_bus 0000:c3: extended config space not accessible
[    4.449327] pci 0000:c3:00.0: [102b:0536] type 00 class 0x030000 conventional PCI endpoint
[    4.453345] pci 0000:c3:00.0: BAR 0 [mem 0xc6000000-0xc6ffffff pref]
[    4.457300] pci 0000:c3:00.0: BAR 1 [mem 0xda808000-0xda80bfff]
[    4.461300] pci 0000:c3:00.0: BAR 2 [mem 0xda000000-0xda7fffff]
[    4.465319] pci 0000:c3:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    4.469425] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.473399] pci 0000:c8:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    4.477331] pci 0000:c8:00.0: enabling Extended Tags
[    4.481458] pci 0000:c8:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.485326] pci 0000:c8:00.2: BAR 2 [mem 0xdbb00000-0xdbb7ffff]
[    4.489301] pci 0000:c8:00.2: BAR 5 [mem 0xdbb80000-0xdbb81fff]
[    4.493304] pci 0000:c8:00.2: enabling Extended Tags
[    4.501399] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.505434] pci 0000:c9:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.509334] pci 0000:c9:00.0: enabling Extended Tags
[    4.513508] pci 0000:c9:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.517328] pci 0000:c9:00.2: BAR 2 [mem 0xdba00000-0xdba7ffff]
[    4.521301] pci 0000:c9:00.2: BAR 5 [mem 0xdba80000-0xdba81fff]
[    4.525304] pci 0000:c9:00.2: enabling Extended Tags
[    4.529503] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.540388] iommu: Default domain type: Translated
[    4.541300] iommu: DMA domain TLB invalidation policy: lazy mode
[    4.549597] SCSI subsystem initialized
[    4.553342] ACPI: bus type USB registered
[    4.557324] usbcore: registered new interface driver usbfs
[    4.561309] usbcore: registered new interface driver hub
[    4.565335] usbcore: registered new device driver usb
[    4.569332] pps_core: LinuxPPS API ver. 1 registered
[    4.573299] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux•it>
[    4.577304] PTP clock support registered
[    4.581381] EDAC MC: Ver: 3.0.0
[    4.585515] efivars: Registered efivars operations
[    4.589754] NetLabel: Initializing
[    4.593301] NetLabel:  domain hash size = 128
[    4.597299] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    4.601322] NetLabel:  unlabeled traffic allowed by default
[    4.605343] PCI: Using ACPI for IRQ routing
[    4.617453] pci 0000:c3:00.0: vgaarb: setting as boot VGA device
[    4.621297] pci 0000:c3:00.0: vgaarb: bridge control possible
[    4.621297] pci 0000:c3:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    4.621300] vgaarb: loaded
[    4.624014] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    4.625299] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    4.633517] clocksource: Switched to clocksource tsc-early
[    4.639122] VFS: Disk quotas dquot_6.6.0
[    4.643074] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.650196] AppArmor: AppArmor Filesystem Enabled
[    4.655019] pnp: PnP ACPI init
[    4.658323] system 00:00: [mem 0x80000000-0x8fffffff] has been reserved
[    4.665031] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[    4.673263] pnp: PnP ACPI: found 5 devices
[    4.684375] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    4.693346] NET: Registered PF_INET protocol family
[    4.698350] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.710116] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.719063] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    4.727093] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.736845] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.745227] TCP: Hash tables configured (established 524288 bind 65536)
[    4.752204] UDP hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.760652] UDP-Lite hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.769489] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    4.775158] NET: Registered PF_XDP protocol family
[    4.779953] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.789773] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.799590] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.809409] pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
[    4.815077] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: can't assign; no space
[    4.822813] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: failed to assign
[    4.830034] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: can't assign; no space
[    4.838289] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: failed to assign
[    4.846028] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: can't assign; no space
[    4.854288] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: failed to assign
[    4.862034] pci 0000:00:03.2: PCI bridge to [bus 01]
[    4.867000] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    4.873092] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    4.879880] pci 0000:00:07.1: PCI bridge to [bus 02]
[    4.884851] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    4.891641] pci 0000:00:08.1: PCI bridge to [bus 03]
[    4.896610] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    4.903398] PCI: No. 2 try to assign unassigned res
[    4.908279] pci 0000:00:03.2: resource 14 [mem 0xf7300000-0xf74fffff] released
[    4.915501] pci 0000:00:03.2: PCI bridge to [bus 01]
[    4.920471] pci 0000:00:03.2: bridge window [mem 0x00100000-0x002fffff] to [bus 01] add_size 1200000 add_align 100000
[    4.931080] pci 0000:00:03.2: bridge window [mem 0xe1000000-0xe23fffff]: assigned
[    4.938563] pci 0000:01:00.0: BAR 3 [mem 0xe1000000-0xe10fffff 64bit]: assigned
[    4.945871] pci 0000:01:00.0: ROM [mem 0xe1100000-0xe11fffff pref]: assigned
[    4.952923] pci 0000:01:00.0: VF BAR 2 [mem 0xe1200000-0xe21fffff 64bit]: assigned
[    4.960541] pci 0000:01:00.0: BAR 1 [mem 0xe2200000-0xe220ffff 64bit]: assigned
[    4.967858] pci 0000:01:00.0: VF BAR 0 [mem 0xe2210000-0xe230ffff 64bit]: assigned
[    4.975428] pci 0000:00:03.2: PCI bridge to [bus 01]
[    4.980394] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    4.986485] pci 0000:00:03.2:   bridge window [mem 0xe1000000-0xe23fffff]
[    4.993271] pci 0000:00:07.1: PCI bridge to [bus 02]
[    4.998234] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    5.005022] pci 0000:00:08.1: PCI bridge to [bus 03]
[    5.009985] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.016774] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    5.022958] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    5.029137] pci_bus 0000:00: resource 6 [mem 0x000c0000-0x000fffff window]
[    5.036008] pci_bus 0000:00: resource 7 [io  0x0d00-0x3fff window]
[    5.042186] pci_bus 0000:00: resource 8 [mem 0xe1000000-0xfebfffff window]
[    5.049058] pci_bus 0000:00: resource 9 [mem 0x63dc0000000-0x7fcffffffff window]
[    5.056452] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[    5.062048] pci_bus 0000:01: resource 1 [mem 0xe1000000-0xe23fffff]
[    5.068365] pci_bus 0000:02: resource 1 [mem 0xf7200000-0xf72fffff]
[    5.074629] pci_bus 0000:03: resource 1 [mem 0xf7000000-0xf71fffff]
[    5.080993] pci 0000:40:03.1: bridge window [io  0x1000-0x0fff] to [bus 41] add_size 1000
[    5.089168] pci 0000:40:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 41] add_size 200000 add_align 100000
[    5.100649] pci 0000:40:03.2: bridge window [io  0x1000-0x0fff] to [bus 42] add_size 1000
[    5.108829] pci 0000:40:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 42] add_size 200000 add_align 100000
[    5.120299] pci 0000:40:03.3: bridge window [io  0x1000-0x0fff] to [bus 43] add_size 1000
[    5.128471] pci 0000:40:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 43] add_size 200000 add_align 100000
[    5.139935] pci 0000:40:03.4: bridge window [io  0x1000-0x0fff] to [bus 44] add_size 1000
[    5.148109] pci 0000:40:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 44] add_size 200000 add_align 100000
[    5.159579] pci 0000:40:03.1: bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]: assigned
[    5.168534] pci 0000:40:03.2: bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]: assigned
[    5.177519] pci 0000:40:03.3: bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]: assigned
[    5.186470] pci 0000:40:03.4: bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]: assigned
[    5.195422] pci 0000:40:03.1: bridge window [io  0x4000-0x4fff]: assigned
[    5.202208] pci 0000:40:03.2: bridge window [io  0x5000-0x5fff]: assigned
[    5.208992] pci 0000:40:03.3: bridge window [io  0x6000-0x6fff]: assigned
[    5.215778] pci 0000:40:03.4: bridge window [io  size 0x1000]: can't assign; no space
[    5.223604] pci 0000:40:03.4: bridge window [io  size 0x1000]: failed to assign
[    5.230914] pci 0000:40:03.4: bridge window [io  0x4000-0x4fff]: assigned
[    5.237705] pci 0000:40:03.3: bridge window [io  0x5000-0x5fff]: assigned
[    5.244488] pci 0000:40:03.2: bridge window [io  0x6000-0x6fff]: assigned
[    5.251273] pci 0000:40:03.1: bridge window [io  size 0x1000]: can't assign; no space
[    5.259099] pci 0000:40:03.1: bridge window [io  size 0x1000]: failed to assign
[    5.266406] pci 0000:40:03.1: PCI bridge to [bus 41]
[    5.271372] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    5.278156] pci 0000:40:03.1:   bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.286414] pci 0000:40:03.2: PCI bridge to [bus 42]
[    5.291380] pci 0000:40:03.2:   bridge window [io  0x6000-0x6fff]
[    5.297472] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    5.304258] pci 0000:40:03.2:   bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.312518] pci 0000:40:03.3: PCI bridge to [bus 43]
[    5.317487] pci 0000:40:03.3:   bridge window [io  0x5000-0x5fff]
[    5.323583] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    5.330368] pci 0000:40:03.3:   bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.338631] pci 0000:40:03.4: PCI bridge to [bus 44]
[    5.343599] pci 0000:40:03.4:   bridge window [io  0x4000-0x4fff]
[    5.349692] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    5.356478] pci 0000:40:03.4:   bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.364738] pci 0000:40:07.1: PCI bridge to [bus 45]
[    5.369709] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    5.376498] pci 0000:40:08.1: PCI bridge to [bus 46]
[    5.381469] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    5.388301] pci_bus 0000:40: Some PCI device resources are unassigned, try booting with pci=realloc
[    5.397341] pci_bus 0000:40: resource 4 [io  0x4000-0x6fff window]
[    5.403521] pci_bus 0000:40: resource 5 [mem 0x90000000-0xaaffffff window]
[    5.410393] pci_bus 0000:40: resource 6 [mem 0x47e80000000-0x63dbfffffff window]
[    5.417786] pci_bus 0000:41: resource 1 [mem 0xa4c00000-0xa4ffffff]
[    5.424050] pci_bus 0000:41: resource 2 [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.431788] pci_bus 0000:42: resource 0 [io  0x6000-0x6fff]
[    5.437362] pci_bus 0000:42: resource 1 [mem 0xa4800000-0xa4bfffff]
[    5.443628] pci_bus 0000:42: resource 2 [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.451364] pci_bus 0000:43: resource 0 [io  0x5000-0x5fff]
[    5.456937] pci_bus 0000:43: resource 1 [mem 0xa4400000-0xa47fffff]
[    5.463203] pci_bus 0000:43: resource 2 [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.470942] pci_bus 0000:44: resource 0 [io  0x4000-0x4fff]
[    5.476512] pci_bus 0000:44: resource 1 [mem 0xa4000000-0xa43fffff]
[    5.482778] pci_bus 0000:44: resource 2 [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.490517] pci_bus 0000:45: resource 1 [mem 0xa5300000-0xa53fffff]
[    5.496783] pci_bus 0000:46: resource 1 [mem 0xa5000000-0xa52fffff]
[    5.503128] pci 0000:80:01.1: bridge window [io  0x1000-0x0fff] to [bus 81] add_size 1000
[    5.511296] pci 0000:80:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 81] add_size 200000 add_align 100000
[    5.522764] pci 0000:80:01.2: bridge window [io  0x1000-0x0fff] to [bus 82] add_size 1000
[    5.530937] pci 0000:80:01.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 82] add_size 200000 add_align 100000
[    5.542404] pci 0000:80:01.1: bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]: assigned
[    5.551361] pci 0000:80:01.2: bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]: assigned
[    5.560311] pci 0000:80:01.1: bridge window [io  0x7000-0x7fff]: assigned
[    5.567095] pci 0000:80:01.2: bridge window [io  0x8000-0x8fff]: assigned
[    5.573881] pci 0000:80:01.1: PCI bridge to [bus 81]
[    5.578848] pci 0000:80:01.1:   bridge window [io  0x7000-0x7fff]
[    5.584941] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    5.591761] pci 0000:80:01.1:   bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.600023] pci 0000:80:01.2: PCI bridge to [bus 82]
[    5.604993] pci 0000:80:01.2:   bridge window [io  0x8000-0x8fff]
[    5.611089] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    5.617879] pci 0000:80:01.2:   bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.626139] pci 0000:80:07.1: PCI bridge to [bus 83]
[    5.631104] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    5.637891] pci 0000:80:08.1: PCI bridge to [bus 84]
[    5.642863] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    5.649654] pci 0000:80:08.2: PCI bridge to [bus 85]
[    5.654622] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    5.661410] pci_bus 0000:80: resource 4 [io  0x7000-0x9fff window]
[    5.667592] pci_bus 0000:80: resource 5 [mem 0xab000000-0xc5ffffff window]
[    5.674465] pci_bus 0000:80: resource 6 [mem 0x2bf40000000-0x47e7fffffff window]
[    5.681858] pci_bus 0000:81: resource 0 [io  0x7000-0x7fff]
[    5.687427] pci_bus 0000:81: resource 1 [mem 0xbf400000-0xbf7fffff]
[    5.693719] pci_bus 0000:81: resource 2 [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.701468] pci_bus 0000:82: resource 0 [io  0x8000-0x8fff]
[    5.707040] pci_bus 0000:82: resource 1 [mem 0xbf000000-0xbf3fffff]
[    5.713307] pci_bus 0000:82: resource 2 [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.721043] pci_bus 0000:83: resource 1 [mem 0xbfa00000-0xbfafffff]
[    5.727309] pci_bus 0000:84: resource 1 [mem 0xbf900000-0xbf9fffff]
[    5.733575] pci_bus 0000:85: resource 1 [mem 0xbf800000-0xbf8fffff]
[    5.739922] pci 0000:c0:03.1: bridge window [io  0x1000-0x0fff] to [bus c4] add_size 1000
[    5.748108] pci 0000:c0:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c4] add_size 200000 add_align 100000
[    5.759587] pci 0000:c0:03.2: bridge window [io  0x1000-0x0fff] to [bus c5] add_size 1000
[    5.767761] pci 0000:c0:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c5] add_size 200000 add_align 100000
[    5.779225] pci 0000:c0:03.3: bridge window [io  0x1000-0x0fff] to [bus c6] add_size 1000
[    5.787397] pci 0000:c0:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c6] add_size 200000 add_align 100000
[    5.798864] pci 0000:c0:03.4: bridge window [io  0x1000-0x0fff] to [bus c7] add_size 1000
[    5.807060] pci 0000:c0:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c7] add_size 200000 add_align 100000
[    5.818526] pci 0000:c0:05.1: bridge window [mem 0x00100000-0x000fffff] to [bus c1] add_size 100000 add_align 100000
[    5.829048] pci 0000:c0:03.1: bridge window [mem 0x10000000000-0x100001fffff 64bit pref]: assigned
[    5.838005] pci 0000:c0:03.2: bridge window [mem 0x10000200000-0x100003fffff 64bit pref]: assigned
[    5.846956] pci 0000:c0:03.3: bridge window [mem 0x10000400000-0x100005fffff 64bit pref]: assigned
[    5.855914] pci 0000:c0:03.4: bridge window [mem 0x10000600000-0x100007fffff 64bit pref]: assigned
[    5.864871] pci 0000:c0:05.1: bridge window [mem 0xc7100000-0xc71fffff]: assigned
[    5.872346] pci 0000:c0:03.1: bridge window [io  0xa000-0xafff]: assigned
[    5.879133] pci 0000:c0:03.2: bridge window [io  0xb000-0xbfff]: assigned
[    5.885917] pci 0000:c0:03.3: bridge window [io  0xc000-0xcfff]: assigned
[    5.892704] pci 0000:c0:03.4: bridge window [io  0xd000-0xdfff]: assigned
[    5.899490] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    5.904497] pci 0000:c0:03.1:   bridge window [io  0xa000-0xafff]
[    5.910591] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    5.917377] pci 0000:c0:03.1:   bridge window [mem 0x10000000000-0x100001fffff 64bit pref]
[    5.925635] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    5.930599] pci 0000:c0:03.2:   bridge window [io  0xb000-0xbfff]
[    5.936691] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    5.943477] pci 0000:c0:03.2:   bridge window [mem 0x10000200000-0x100003fffff 64bit pref]
[    5.951738] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    5.956700] pci 0000:c0:03.3:   bridge window [io  0xc000-0xcfff]
[    5.962795] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    5.969578] pci 0000:c0:03.3:   bridge window [mem 0x10000400000-0x100005fffff 64bit pref]
[    5.977836] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    5.982802] pci 0000:c0:03.4:   bridge window [io  0xd000-0xdfff]
[    5.988896] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    5.995678] pci 0000:c0:03.4:   bridge window [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.003941] pci 0000:c1:00.0: ROM [mem 0xc7100000-0xc713ffff pref]: assigned
[    6.011007] pci 0000:c1:00.1: ROM [mem 0xc7140000-0xc717ffff pref]: assigned
[    6.018052] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    6.023019] pci 0000:c0:05.1:   bridge window [mem 0xc7100000-0xc71fffff]
[    6.029806] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.037545] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    6.042512] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    6.049303] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.057044] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    6.062275] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    6.069060] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.076800] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    6.081766] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    6.088554] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    6.093526] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    6.100313] pci_bus 0000:c0: resource 4 [io  0xa000-0xffff window]
[    6.106494] pci_bus 0000:c0: resource 5 [mem 0xc6000000-0xe0ffffff window]
[    6.113370] pci_bus 0000:c0: resource 6 [mem 0x10000000000-0x2bf3fffffff window]
[    6.120760] pci_bus 0000:c0: resource 7 [io  0x03b0-0x03df window]
[    6.126938] pci_bus 0000:c0: resource 8 [mem 0x000a0000-0x000bffff window]
[    6.133809] pci_bus 0000:c4: resource 0 [io  0xa000-0xafff]
[    6.139384] pci_bus 0000:c4: resource 1 [mem 0xdb600000-0xdb9fffff]
[    6.145648] pci_bus 0000:c4: resource 2 [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.153385] pci_bus 0000:c5: resource 0 [io  0xb000-0xbfff]
[    6.158958] pci_bus 0000:c5: resource 1 [mem 0xdb200000-0xdb5fffff]
[    6.165221] pci_bus 0000:c5: resource 2 [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.172964] pci_bus 0000:c6: resource 0 [io  0xc000-0xcfff]
[    6.178534] pci_bus 0000:c6: resource 1 [mem 0xdae00000-0xdb1fffff]
[    6.184799] pci_bus 0000:c6: resource 2 [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.192538] pci_bus 0000:c7: resource 0 [io  0xd000-0xdfff]
[    6.198108] pci_bus 0000:c7: resource 1 [mem 0xdaa00000-0xdadfffff]
[    6.204375] pci_bus 0000:c7: resource 2 [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.212149] pci_bus 0000:c1: resource 1 [mem 0xc7100000-0xc71fffff]
[    6.218421] pci_bus 0000:c1: resource 2 [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.225641] pci_bus 0000:c2: resource 1 [mem 0xda000000-0xda8fffff]
[    6.231905] pci_bus 0000:c2: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.239125] pci_bus 0000:c3: resource 1 [mem 0xda000000-0xda8fffff]
[    6.245391] pci_bus 0000:c3: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.252610] pci_bus 0000:c8: resource 1 [mem 0xdbb00000-0xdbbfffff]
[    6.258874] pci_bus 0000:c9: resource 1 [mem 0xdba00000-0xdbafffff]
[    6.265807] PCI: CLS 64 bytes, default 64
[    6.269911] Trying to unpack rootfs image as initramfs...
[    6.329833] AMD-Vi: IOMMU SNP support enabled.
[    6.334468] pci 0000:c0:00.2: AMD-Vi: IOMMU performance counters supported
[    6.341512] pci 0000:c0:01.0: Adding to iommu group 0
[    6.346619] pci 0000:c0:02.0: Adding to iommu group 1
[    6.351829] pci 0000:c0:03.0: Adding to iommu group 2
[    6.356932] pci 0000:c0:03.1: Adding to iommu group 2
[    6.362037] pci 0000:c0:03.2: Adding to iommu group 2
[    6.367138] pci 0000:c0:03.3: Adding to iommu group 2
[    6.372241] pci 0000:c0:03.4: Adding to iommu group 2
[    6.377347] pci 0000:c0:04.0: Adding to iommu group 3
[    6.382495] pci 0000:c0:05.0: Adding to iommu group 4
[    6.387600] pci 0000:c0:05.1: Adding to iommu group 4
[    6.392702] pci 0000:c0:05.2: Adding to iommu group 4
[    6.397808] pci 0000:c0:07.0: Adding to iommu group 5
[    6.402899] pci 0000:c0:07.1: Adding to iommu group 6
[    6.408007] pci 0000:c0:08.0: Adding to iommu group 7
[    6.413090] pci 0000:c0:08.1: Adding to iommu group 8
[    6.418150] pci 0000:c1:00.0: Adding to iommu group 4
[    6.423209] pci 0000:c1:00.1: Adding to iommu group 4
[    6.428273] pci 0000:c2:00.0: Adding to iommu group 4
[    6.433333] pci 0000:c3:00.0: Adding to iommu group 4
[    6.438418] pci 0000:c8:00.0: Adding to iommu group 9
[    6.443505] pci 0000:c8:00.2: Adding to iommu group 10
[    6.448680] pci 0000:c9:00.0: Adding to iommu group 11
[    6.453853] pci 0000:c9:00.2: Adding to iommu group 12
[    6.465358] pci 0000:80:00.2: AMD-Vi: IOMMU performance counters supported
[    6.472412] pci 0000:80:01.0: Adding to iommu group 13
[    6.477596] pci 0000:80:01.1: Adding to iommu group 13
[    6.482779] pci 0000:80:01.2: Adding to iommu group 13
[    6.487975] pci 0000:80:02.0: Adding to iommu group 14
[    6.493173] pci 0000:80:03.0: Adding to iommu group 15
[    6.498366] pci 0000:80:04.0: Adding to iommu group 16
[    6.503562] pci 0000:80:05.0: Adding to iommu group 17
[    6.508754] pci 0000:80:07.0: Adding to iommu group 18
[    6.513923] pci 0000:80:07.1: Adding to iommu group 19
[    6.519118] pci 0000:80:08.0: Adding to iommu group 20
[    6.524288] pci 0000:80:08.1: Adding to iommu group 21
[    6.529461] pci 0000:80:08.2: Adding to iommu group 22
[    6.534636] pci 0000:83:00.0: Adding to iommu group 23
[    6.539809] pci 0000:83:00.2: Adding to iommu group 24
[    6.545000] pci 0000:84:00.0: Adding to iommu group 25
[    6.550173] pci 0000:84:00.2: Adding to iommu group 26
[    6.555345] pci 0000:85:00.0: Adding to iommu group 27
[    6.567731] pci 0000:40:00.2: AMD-Vi: IOMMU performance counters supported
[    6.574742] pci 0000:40:01.0: Adding to iommu group 28
[    6.579936] pci 0000:40:02.0: Adding to iommu group 29
[    6.585232] pci 0000:40:03.0: Adding to iommu group 30
[    6.590412] pci 0000:40:03.1: Adding to iommu group 30
[    6.595587] pci 0000:40:03.2: Adding to iommu group 30
[    6.600769] pci 0000:40:03.3: Adding to iommu group 30
[    6.605947] pci 0000:40:03.4: Adding to iommu group 30
[    6.611142] pci 0000:40:04.0: Adding to iommu group 31
[    6.616344] pci 0000:40:05.0: Adding to iommu group 32
[    6.621539] pci 0000:40:07.0: Adding to iommu group 33
[    6.626711] pci 0000:40:07.1: Adding to iommu group 34
[    6.631904] pci 0000:40:08.0: Adding to iommu group 35
[    6.637071] pci 0000:40:08.1: Adding to iommu group 36
[    6.642281] pci 0000:45:00.0: Adding to iommu group 37
[    6.647455] pci 0000:45:00.2: Adding to iommu group 38
[    6.652628] pci 0000:46:00.0: Adding to iommu group 39
[    6.657801] pci 0000:46:00.1: Adding to iommu group 40
[    6.662976] pci 0000:46:00.2: Adding to iommu group 41
[    6.668151] pci 0000:46:00.3: Adding to iommu group 42
[    6.680585] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    6.687611] pci 0000:00:00.0: Adding to iommu group 43
[    6.692807] pci 0000:00:01.0: Adding to iommu group 44
[    6.698006] pci 0000:00:02.0: Adding to iommu group 45
[    6.703197] pci 0000:00:03.0: Adding to iommu group 46
[    6.706215] Freeing initrd memory: 38564K
[    6.708368] pci 0000:00:03.2: Adding to iommu group 47
[    6.717535] pci 0000:00:04.0: Adding to iommu group 48
[    6.722727] pci 0000:00:05.0: Adding to iommu group 49
[    6.727924] pci 0000:00:07.0: Adding to iommu group 50
[    6.733100] pci 0000:00:07.1: Adding to iommu group 51
[    6.738295] pci 0000:00:08.0: Adding to iommu group 52
[    6.743477] pci 0000:00:08.1: Adding to iommu group 53
[    6.748734] pci 0000:00:14.0: Adding to iommu group 54
[    6.753903] pci 0000:00:14.3: Adding to iommu group 54
[    6.759258] pci 0000:00:18.0: Adding to iommu group 55
[    6.764432] pci 0000:00:18.1: Adding to iommu group 55
[    6.769607] pci 0000:00:18.2: Adding to iommu group 55
[    6.774778] pci 0000:00:18.3: Adding to iommu group 55
[    6.779952] pci 0000:00:18.4: Adding to iommu group 55
[    6.785128] pci 0000:00:18.5: Adding to iommu group 55
[    6.790298] pci 0000:00:18.6: Adding to iommu group 55
[    6.795474] pci 0000:00:18.7: Adding to iommu group 55
[    6.800651] pci 0000:01:00.0: Adding to iommu group 56
[    6.805822] pci 0000:02:00.0: Adding to iommu group 57
[    6.810999] pci 0000:02:00.2: Adding to iommu group 58
[    6.816178] pci 0000:03:00.0: Adding to iommu group 59
[    6.821352] pci 0000:03:00.2: Adding to iommu group 60
[    6.826523] pci 0000:03:00.3: Adding to iommu group 61
[    6.840863] AMD-Vi: Extended features (0x841f77e022094ace, 0x0): PPR X2APIC NX IA GA PC SNP
[    6.849220] AMD-Vi: Interrupt remapping enabled
[    6.853751] AMD-Vi: X2APIC enabled
[    6.858134] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    6.864581] software IO TLB: mapped [mem 0x000000005bf37000-0x0000000063f37000] (128MB)
[    6.872732] LVT offset 0 assigned for vector 0x400
[    6.879026] perf: AMD IBS detected (0x000003ff)
[    6.884867] amd_uncore: 4 amd_df counters detected
[    6.889699] amd_uncore: 6 amd_l3 counters detected
[    6.896135] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    6.903291] perf/amd_iommu: Detected AMD IOMMU #1 (2 banks, 4 counters/bank).
[    6.910455] perf/amd_iommu: Detected AMD IOMMU #2 (2 banks, 4 counters/bank).
[    6.917604] perf/amd_iommu: Detected AMD IOMMU #3 (2 banks, 4 counters/bank).
[    6.927993] Initialise system trusted keyrings
[    6.932448] Key type blacklist registered
[    6.936590] workingset: timestamp_bits=36 max_order=26 bucket_order=0
[    6.943544] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    6.949658] fuse: init (API version 7.44)
[    6.953932] integrity: Platform Keyring initialized
[    6.970721] Key type asymmetric registered
[    6.974820] Asymmetric key parser 'x509' registered
[    6.979737] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    6.987218] io scheduler mq-deadline registered
[    6.994290] ledtrig-cpu: registered to indicate activity on CPUs
[    7.000599] pcieport 0000:00:03.2: PME: Signaling with IRQ 38
[    7.006751] pcieport 0000:00:07.1: PME: Signaling with IRQ 40
[    7.012731] pcieport 0000:00:08.1: PME: Signaling with IRQ 41
[    7.018714] pcieport 0000:40:03.1: PME: Signaling with IRQ 42
[    7.024509] pcieport 0000:40:03.1: pciehp: Slot #167 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.038553] pcieport 0000:40:03.2: PME: Signaling with IRQ 43
[    7.044358] pcieport 0000:40:03.2: pciehp: Slot #166 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.058381] pcieport 0000:40:03.3: PME: Signaling with IRQ 44
[    7.064206] pcieport 0000:40:03.3: pciehp: Slot #169 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.078212] pcieport 0000:40:03.4: PME: Signaling with IRQ 45
[    7.084009] pcieport 0000:40:03.4: pciehp: Slot #168 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.098086] pcieport 0000:40:07.1: PME: Signaling with IRQ 47
[    7.104053] pcieport 0000:40:08.1: PME: Signaling with IRQ 48
[    7.110165] pcieport 0000:80:01.1: PME: Signaling with IRQ 49
[    7.115977] pcieport 0000:80:01.1: pciehp: Slot #160 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.129974] pcieport 0000:80:01.2: PME: Signaling with IRQ 50
[    7.135770] pcieport 0000:80:01.2: pciehp: Slot #161 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.149885] pcieport 0000:80:07.1: PME: Signaling with IRQ 52
[    7.155921] pcieport 0000:80:08.1: PME: Signaling with IRQ 54
[    7.161946] pcieport 0000:80:08.2: PME: Signaling with IRQ 55
[    7.167889] pcieport 0000:c0:03.1: PME: Signaling with IRQ 56
[    7.173693] pcieport 0000:c0:03.1: pciehp: Slot #163 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.187668] pcieport 0000:c0:03.2: PME: Signaling with IRQ 57
[    7.193465] pcieport 0000:c0:03.2: pciehp: Slot #162 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.207445] pcieport 0000:c0:03.3: PME: Signaling with IRQ 58
[    7.213244] pcieport 0000:c0:03.3: pciehp: Slot #165 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.227218] pcieport 0000:c0:03.4: PME: Signaling with IRQ 59
[    7.233020] pcieport 0000:c0:03.4: pciehp: Slot #164 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.247002] pcieport 0000:c0:05.1: PME: Signaling with IRQ 60
[    7.252929] pcieport 0000:c0:05.2: PME: Signaling with IRQ 61
[    7.258970] pcieport 0000:c0:07.1: PME: Signaling with IRQ 63
[    7.264992] pcieport 0000:c0:08.1: PME: Signaling with IRQ 65
[    7.271638] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    7.279109] ACPI: button: Power Button [PWRF]
[    7.727315] Estimated ratio of average max frequency by base frequency (times 1024): 1464
[    7.735805] ERST: Error Record Serialization Table (ERST) support is initialized.
[    7.743305] pstore: Using crash dump compression: deflate
[    7.748708] pstore: Registered erst as persistent store backend
[    7.754767] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    7.761323] 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    7.769468] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    7.780566] Linux agpgart interface v0.103
[    7.811070] loop: module loaded
[    7.825467] ahci 0000:85:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[    7.833469] ahci 0000:85:00.0: 8/8 ports implemented (port mask 0xff)
[    7.839906] ahci 0000:85:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part sxs 
[    7.850194] scsi host0: ahci
[    7.853311] scsi host1: ahci
[    7.856416] scsi host2: ahci
[    7.859509] scsi host3: ahci
[    7.862602] scsi host4: ahci
[    7.865714] scsi host5: ahci
[    7.868814] scsi host6: ahci
[    7.871908] scsi host7: ahci
[    7.874866] ata1: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800100 irq 67 lpm-pol 0 ext
[    7.883468] ata2: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800180 irq 68 lpm-pol 0 ext
[    7.892076] ata3: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800200 irq 69 lpm-pol 0 ext
[    7.900684] ata4: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800280 irq 70 lpm-pol 0 ext
[    7.909292] ata5: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800300 irq 71 lpm-pol 0 ext
[    7.917898] ata6: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800380 irq 72 lpm-pol 0 ext
[    7.926505] ata7: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800400 irq 73 lpm-pol 0 ext
[    7.935112] ata8: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800480 irq 74 lpm-pol 0 ext
[    7.943728] tsc: Refined TSC clocksource calibration: 1996.249 MHz
[    7.949979] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398cadd9d93, max_idle_ns: 881590552906 ns
[    7.960134] clocksource: Switched to clocksource tsc
[    7.960442] tun: Universal TUN/TAP device driver, 1.6
[    7.970223] PPP generic driver version 2.4.2
[    7.974678] VFIO - User Level meta-driver version: 0.3
[    7.980186] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    7.985426] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 1
[    7.992926] xhci_hcd 0000:03:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.002481] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.007707] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 2
[    8.015097] xhci_hcd 0000:03:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.022191] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.030457] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.037682] usb usb1: Product: xHCI Host Controller
[    8.042559] usb usb1: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.051511] usb usb1: SerialNumber: 0000:03:00.3
[    8.056332] hub 1-0:1.0: USB hub found
[    8.060088] hub 1-0:1.0: 2 ports detected
[    8.064945] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.073075] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.081338] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.088570] usb usb2: Product: xHCI Host Controller
[    8.093450] usb usb2: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.102406] usb usb2: SerialNumber: 0000:03:00.3
[    8.107165] hub 2-0:1.0: USB hub found
[    8.110933] hub 2-0:1.0: 2 ports detected
[    8.115868] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.121104] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 3
[    8.128598] xhci_hcd 0000:46:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.138115] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.143345] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 4
[    8.150737] xhci_hcd 0000:46:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.157875] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.166139] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.173366] usb usb3: Product: xHCI Host Controller
[    8.178242] usb usb3: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.187200] usb usb3: SerialNumber: 0000:46:00.3
[    8.191983] hub 3-0:1.0: USB hub found
[    8.195755] hub 3-0:1.0: 2 ports detected
[    8.200589] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.208714] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.216980] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.224200] usb usb4: Product: xHCI Host Controller
[    8.229083] usb usb4: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.238033] usb usb4: SerialNumber: 0000:46:00.3
[    8.242794] hub 4-0:1.0: USB hub found
[    8.246565] hub 4-0:1.0: 2 ports detected
[    8.251618] usbcore: registered new interface driver uas
[    8.256992] ata1: SATA link down (SStatus 0 SControl 300)
[    8.257000] usbcore: registered new interface driver usb-storage
[    8.262429] ata3: SATA link down (SStatus 0 SControl 300)
[    8.268430] i8042: PNP: No PS/2 controller found.
[    8.273824] ata4: SATA link down (SStatus 0 SControl 300)
[    8.278587] mousedev: PS/2 mouse device common for all mice
[    8.283930] ata6: SATA link down (SStatus 0 SControl 300)
[    8.289589] rtc_cmos 00:02: RTC can wake from S4
[    8.294902] ata5: SATA link down (SStatus 0 SControl 300)
[    8.299867] rtc_cmos 00:02: registered as rtc0
[    8.304919] ata8: SATA link down (SStatus 0 SControl 300)
[    8.309415] rtc_cmos 00:02: setting system clock to 2025-06-17T13:16:27 UTC (1750166187)
[    8.312249] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[    8.314762] ata2: SATA link down (SStatus 0 SControl 300)
[    8.322864] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram
[    8.329383] ata7: SATA link down (SStatus 0 SControl 300)
[    8.334760] i2c_dev: i2c /dev entries driver
[    8.351136] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    8.363316] device-mapper: uevent: version 1.0.3
[    8.368038] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists•linux.dev
[    8.376910] amd_pstate: driver load is disabled, boot with specific mode to enable this
[    8.384952] efifb: probing for efifb
[    8.388551] efifb: No BGRT, not showing boot graphics
[    8.393605] efifb: framebuffer at 0xc6000000, using 3072k, total 3072k
[    8.400130] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    8.406149] efifb: scrolling: redraw
[    8.409731] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    8.415382] fbcon: Deferring console take-over
[    8.419832] fb0: EFI VGA frame buffer device
[    8.424219] drop_monitor: Initializing network drop monitor service
[    8.430654] NET: Registered PF_INET6 protocol family
[    8.442749] Segment Routing with IPv6
[    8.446431] In-situ OAM (IOAM) with IPv6
[    8.450387] NET: Registered PF_PACKET protocol family
[    8.453163] usb 1-1: New USB device found, idVendor=0424, idProduct=2744, bcdDevice= 1.21
[    8.455517] Key type dns_resolver registered
[    8.463615] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    8.475019] usb 1-1: Product: USB2734
[    8.478682] usb 1-1: Manufacturer: Microchip Tech
[    8.483393] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[    8.498632] x86/amd: Previous system reset reason [0x00080800]: software wrote 0x6 to reset control register 0xCF9
[    8.508990] microcode: Current revision: 0x0a0011d5
[    8.513868] microcode: Updated early from: 0x0a0011d5
[    8.522325] resctrl: L3 allocation detected
[    8.526513] resctrl: MB allocation detected
[    8.530699] resctrl: L3 monitoring detected
[    8.534627] hub 1-1:1.0: USB hub found
[    8.535048] IPI shorthand broadcast: enabled
[    8.538789] hub 1-1:1.0: 4 ports detected
[    8.546609] sched_clock: Marking stable (8480001422, 64229161)->(9551374409, -1007143826)
[    8.555692] registered taskstats version 1
[    8.562107] Loading compiled-in X.509 certificates
[    8.567493] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.581925] Demotion targets for Node 0: null
[    8.586300] Demotion targets for Node 1: null
[    8.591271] Key type .fscrypt registered
[    8.595195] Key type fscrypt-provisioning registered
[    8.598292] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
[    8.616395] Key type encrypted registered
[    8.620415] AppArmor: AppArmor sha256 policy hashing enabled
[    8.624632] usb 2-1: New USB device found, idVendor=0424, idProduct=5744, bcdDevice= 1.21
[    8.626155] integrity: Loading X.509 certificate: UEFI:db
[    8.634248] usb 2-1: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[    8.639665] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    8.646777] usb 2-1: Product: USB5734
[    8.657549] integrity: Loading X.509 certificate: UEFI:db
[    8.661214] usb 2-1: Manufacturer: Microchip Tech
[    8.666628] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    8.672282] usb 3-1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    8.682425] integrity: Loading X.509 certificate: UEFI:db
[    8.690593] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.696112] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    8.710528] hub 2-1:1.0: USB hub found
[    8.711991] integrity: Loading X.509 certificate: UEFI:db
[    8.715774] hub 2-1:1.0: 4 ports detected
[    8.721278] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    8.736727] ima: No TPM chip found, activating TPM-bypass!
[    8.742216] Loading compiled-in module X.509 certificates
[    8.748047] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.757952] ima: Allocated hash algorithm: sha1
[    8.762527] ima: No architecture policies found
[    8.766335] hub 3-1:1.0: USB hub found
[    8.767074] evm: Initialising EVM extended attributes:
[    8.771032] hub 3-1:1.0: 4 ports detected
[    8.775953] evm: security.selinux
[    8.783284] evm: security.SMACK64
[    8.786602] evm: security.SMACK64EXEC
[    8.790268] evm: security.SMACK64TRANSMUTE
[    8.794367] evm: security.SMACK64MMAP
[    8.798035] evm: security.apparmor
[    8.801439] evm: security.ima
[    8.804410] evm: security.capability
[    8.807986] evm: HMAC attrs: 0x1
[    8.811598] PM:   Magic number: 13:375:281
[    8.815781] tty tty18: hash matches
[    8.819770] RAS: Correctable Errors collector initialized.
[    8.825399] clk: Disabling unused clocks
[    8.829330] PM: genpd: Disabling unused power domains
[    8.836106] Freeing unused decrypted memory: 2028K
[    8.841631] Freeing unused kernel image (initmem) memory: 4760K
[    8.847569] Write protecting the kernel read-only data: 26624k
[    8.853856] Freeing unused kernel image (text/rodata gap) memory: 28K
[    8.860480] Freeing unused kernel image (rodata/data gap) memory: 248K
[    8.953982] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    8.960473] Run /init as init process
[    8.970822] systemd[1]: Inserted module 'autofs4'
[    9.197799] systemd[1]: systemd 252-46.el9_5.3 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)
[    9.230245] systemd[1]: Detected architecture x86-64.
[    9.235300] systemd[1]: Running in initrd.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow) dracut-057-80.git20250411.el9_5 (Initramfs)^[[0m!

[    9.256336] systemd[1]: Hostname set to <sharavati.amd.com>.
[    9.354483] systemd[1]: Queued start job for default target Initrd Default Target.
[    9.362183] systemd[1]: Reached target Initrd /usr File System.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd /usr File System^[[0m.
[    9.384300] systemd[1]: Reached target Local File Systems.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
[    9.400401] systemd[1]: Reached target Slice Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSlice Units^[[0m.
[    9.420299] systemd[1]: Reached target Swaps.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwaps^[[0m.
[    9.436294] systemd[1]: Reached target Timer Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[    9.452419] systemd[1]: Listening on D-Bus System Message Bus Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[    9.472484] systemd[1]: Listening on Journal Socket (/dev/log).
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket (/dev/log)^[[0m.
[    9.484246] usb 3-1.1: new high-speed USB device number 3 using xhci_hcd
[    9.491659] systemd[1]: Listening on Journal Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket^[[0m.
[    9.508454] systemd[1]: Listening on udev Control Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[    9.524408] systemd[1]: Listening on udev Kernel Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
[    9.540298] systemd[1]: Reached target Socket Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
[    9.577163] usb 3-1.1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    9.581712] systemd[1]: Starting Create List of Static Device Nodes...
[    9.585512] usb 3-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
[    9.615027] systemd[1]: Starting Journal Service...
         Starting ^[[0;1;39mJournal Service^[[0m...
[    9.629769] systemd[1]: Starting Load Kernel Modules...
[    9.630263] hub 3-1.1:1.0: USB hub found
         Startin[    9.639161] hub 3-1.1:1.0: 4 ports detected
g ^[[0;1;39mLoad Kernel Modules^[[0m...
[    9.653692] systemd[1]: Starting Create System Users...
         Starting ^[[0;1;39mCreate System Users^[[0m...
[    9.669705] systemd[1]: Starting Setup Virtual Console...
         Starting ^[[0;1;39mSetup Virtual Console^[[0m...
[    9.689499] systemd[1]: Finished Create List of Static Device Nodes.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[    9.708415] systemd[1]: Started Journal Service.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[    9.720246] usb 3-1.4: new high-speed USB device number 4 using xhci_hcd
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSetup Virtual Console^[[0m.
         Starting ^[[0;1;39mdracut cmdline hook^[[0m...
         Starting ^[[0;1;39mApply Kernel Variables^[[0m...
[    9.817157] usb 3-1.4: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    9.825513] usb 3-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate System Users^[[0m.
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[    9.886358] hub 3-1.4:1.0: USB hub found
[    9.890535] hub 3-1.4:1.0: 4 ports detected
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut cmdline hook^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Starting ^[[0;1;39mdracut pre-udev hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-udev hook^[[0m.
         Starting ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[   10.259322] wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQBC data block query control method not found
[^[[0;32m  OK  ^[[0m] Finished ^[[0[   10.271050] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
;1;39mColdplug A[   10.271448] ccp 0000:46:00.1: no command queues available
ll udev Devices^[[   10.277485] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[   10.284286] ccp 0000:46:00.1: sev enabled
[0m.
[   10.292762] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[   10.296622] ccp 0000:46:00.1: psp enabled
[   10.304402] tg3 0000:c1:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:90
[   10.318809] tg3 0000:c1:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.318813] tg3 0000:c1:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.318816] tg3 0000:c1:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[^[[0;32m  OK  ^[[[   10.344066] ACPI: bus type drm_connector registered
0m] Reached targ[   10.344185] mpt3sas version 52.100.00.00 loaded
et ^[[0;1;39mSyst[   10.355924] mpt3sas_cm0: 63 BIT PCI BUS DMA ADDRESSING SUPPORTED, total mem (262592956 kB)
em Initializatio[   10.365030] mgag200 0000:c3:00.0: vgaarb: deactivate vga console
n^[[0m.
[   10.378922] tg3 0000:c1:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:91
[   10.389440] tg3 0000:c1:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.399279] tg3 0000:c1:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.399282] tg3 0000:c1:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[   10.399501] [drm] Initialized mgag200 1.0.0 for 0000:c3:00.0 on minor 0
[   10.413291] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[^[[0;32m  OK  ^[[[   10.428429] fbcon: mgag200drmfb (fb0) is primary device
0m] Reached targ[   10.428433] fbcon: Deferring console take-over
et ^[[0;1;39mNetw[   10.428434] mpt3sas_cm0: MSI-X vectors supported: 96
[   10.435017] mgag200 0000:c3:00.0: [drm] fb0: mgag200drmfb frame buffer device
[   10.440843] 	 no of cores: 128, max_msix_vectors: -1
ork^[[0m.
[   10.440845] mpt3sas_cm0:  0 96 96
[   10.445086] mpt3sas_cm0: High IOPs queues : disabled
[   10.468444] mpt3sas0-msix0: PCI-MSI-X enabled: IRQ 108
[   10.468445] mpt3sas0-msix1: PCI-MSI-X enabled: IRQ 109
[   10.468447] mpt3sas0-msix2: PCI-MSI-X enabled: IRQ 110
[   10.468448] mpt3sas0-msix3: PCI-MSI-X enabled: IRQ 111
[   10.468450] mpt3sas0-msix4: PCI-MSI-X enabled: IRQ 112
[   10.468451] mpt3sas0-msix5: PCI-MSI-X enabled: IRQ 113
[   10.468453] mpt3sas0-msix6: PCI-MSI-X enabled: IRQ 114
[   10.504430] mpt3sas0-msix7: PCI-MSI-X enabled: IRQ 115
[   10.509570] mpt3sas0-msix8: PCI-MSI-X enabled: IRQ 116
[   10.514709] mpt3sas0-msix9: PCI-MSI-X enabled: IRQ 117
[   10.519850] mpt3sas0-msix10: PCI-MSI-X enabled: IRQ 118
[   10.525076] mpt3sas0-msix11: PCI-MSI-X enabled: IRQ 119
[   10.530302] mpt3sas0-msix12: PCI-MSI-X enabled: IRQ 120
[   10.535529] mpt3sas0-msix13: PCI-MSI-X enabled: IRQ 121
[   10.540754] mpt3sas0-msix14: PCI-MSI-X enabled: IRQ 122
[   10.545980] mpt3sas0-msix15: PCI-MSI-X enabled: IRQ 123
[   10.551205] mpt3sas0-msix16: PCI-MSI-X enabled: IRQ 124
[   10.556432] mpt3sas0-msix17: PCI-MSI-X enabled: IRQ 125
[   10.561655] mpt3sas0-msix18: PCI-MSI-X enabled: IRQ 126
[   10.566881] mpt3sas0-msix19: PCI-MSI-X enabled: IRQ 127
[   10.572107] mpt3sas0-msix20: PCI-MSI-X enabled: IRQ 128
[   10.577334] mpt3sas0-msix21: PCI-MSI-X enabled: IRQ 129
[   10.582559] mpt3sas0-msix22: PCI-MSI-X enabled: IRQ 130
[   10.587786] mpt3sas0-msix23: PCI-MSI-X enabled: IRQ 131
[   10.593014] mpt3sas0-msix24: PCI-MSI-X enabled: IRQ 132
[   10.598237] mpt3sas0-msix25: PCI-MSI-X enabled: IRQ 133
[   10.603464] mpt3sas0-msix26: PCI-MSI-X enabled: IRQ 134
[   10.608689] mpt3sas0-msix27: PCI-MSI-X enabled: IRQ 135
[   10.613915] mpt3sas0-msix28: PCI-MSI-X enabled: IRQ 136
[   10.619141] mpt3sas0-msix29: PCI-MSI-X enabled: IRQ 137
[   10.624366] mpt3sas0-msix30: PCI-MSI-X enabled: IRQ 138
[   10.629594] mpt3sas0-msix31: PCI-MSI-X enabled: IRQ 139
[   10.634819] mpt3sas0-msix32: PCI-MSI-X enabled: IRQ 140
[   10.640045] mpt3sas0-msix33: PCI-MSI-X enabled: IRQ 141
[   10.645272] mpt3sas0-msix34: PCI-MSI-X enabled: IRQ 142
[   10.650498] mpt3sas0-msix35: PCI-MSI-X enabled: IRQ 143
[   10.655744] mpt3sas0-msix36: PCI-MSI-X enabled: IRQ 144
[   10.660973] mpt3sas0-msix37: PCI-MSI-X enabled: IRQ 145
[   10.666199] mpt3sas0-msix38: PCI-MSI-X enabled: IRQ 146
[   10.671427] mpt3sas0-msix39: PCI-MSI-X enabled: IRQ 147
[   10.676654] mpt3sas0-msix40: PCI-MSI-X enabled: IRQ 148
[   10.676656] mpt3sas0-msix41: PCI-MSI-X enabled: IRQ 149
[   10.676657] mpt3sas0-msix42: PCI-MSI-X enabled: IRQ 150
[   10.676658] mpt3sas0-msix43: PCI-MSI-X enabled: IRQ 151
[   10.676660] mpt3sas0-msix44: PCI-MSI-X enabled: IRQ 152
         Startin[   10.676661] mpt3sas0-msix45: PCI-MSI-X enabled: IRQ 153
[   10.676662] mpt3sas0-msix46: PCI-MSI-X enabled: IRQ 154
g ^[[0;1;39mdracu[   10.676664] mpt3sas0-msix47: PCI-MSI-X enabled: IRQ 155
[   10.676665] mpt3sas0-msix48: PCI-MSI-X enabled: IRQ 156
t initqueue hook[   10.676667] mpt3sas0-msix49: PCI-MSI-X enabled: IRQ 157
^[[0m...
[   10.733060] mpt3sas0-msix50: PCI-MSI-X enabled: IRQ 158
[   10.739066] mpt3sas0-msix51: PCI-MSI-X enabled: IRQ 159
[   10.744294] mpt3sas0-msix52: PCI-MSI-X enabled: IRQ 160
[   10.744296] mpt3sas0-msix53: PCI-MSI-X enabled: IRQ 161
[   10.744297] mpt3sas0-msix54: PCI-MSI-X enabled: IRQ 162
[   10.744299] mpt3sas0-msix55: PCI-MSI-X enabled: IRQ 163
[   10.744300] mpt3sas0-msix56: PCI-MSI-X enabled: IRQ 164
[   10.744302] mpt3sas0-msix57: PCI-MSI-X enabled: IRQ 165
[   10.744304] mpt3sas0-msix58: PCI-MSI-X enabled: IRQ 166
[   10.780875] mpt3sas0-msix59: PCI-MSI-X enabled: IRQ 167
[   10.780877] mpt3sas0-msix60: PCI-MSI-X enabled: IRQ 168
[   10.780878] mpt3sas0-msix61: PCI-MSI-X enabled: IRQ 169
[   10.780879] mpt3sas0-msix62: PCI-MSI-X enabled: IRQ 170
[   10.780880] mpt3sas0-msix63: PCI-MSI-X enabled: IRQ 171
[   10.780882] mpt3sas0-msix64: PCI-MSI-X enabled: IRQ 172
[   10.780883] mpt3sas0-msix65: PCI-MSI-X enabled: IRQ 173
[   10.780884] mpt3sas0-msix66: PCI-MSI-X enabled: IRQ 174
[   10.780886] mpt3sas0-msix67: PCI-MSI-X enabled: IRQ 175
         Startin[   10.827916] mpt3sas0-msix68: PCI-MSI-X enabled: IRQ 176
g ^[[0;1;39mShow [   10.834530] mpt3sas0-msix69: PCI-MSI-X enabled: IRQ 177
Plymouth Boot Sc[   10.834531] mpt3sas0-msix70: PCI-MSI-X enabled: IRQ 178
reen^[[0m...
[   10.834533] mpt3sas0-msix71: PCI-MSI-X enabled: IRQ 179
[   10.834535] mpt3sas0-msix72: PCI-MSI-X enabled: IRQ 180
[   10.834536] mpt3sas0-msix73: PCI-MSI-X enabled: IRQ 181
[   10.834537] mpt3sas0-msix74: PCI-MSI-X enabled: IRQ 182
[   10.834539] mpt3sas0-msix75: PCI-MSI-X enabled: IRQ 183
[   10.834540] mpt3sas0-msix76: PCI-MSI-X enabled: IRQ 184
[   10.834541] mpt3sas0-msix77: PCI-MSI-X enabled: IRQ 185
[   10.834543] mpt3sas0-msix78: PCI-MSI-X enabled: IRQ 186
[   10.834544] mpt3sas0-msix79: PCI-MSI-X enabled: IRQ 187
[   10.834545] mpt3sas0-msix80: PCI-MSI-X enabled: IRQ 188
[^[[0;32m  OK  ^[[[   10.834546] mpt3sas0-msix81: PCI-MSI-X enabled: IRQ 189
[   10.834548] mpt3sas0-msix82: PCI-MSI-X enabled: IRQ 190
0m] Started ^[[0;[   10.834549] mpt3sas0-msix83: PCI-MSI-X enabled: IRQ 191
[   10.834550] mpt3sas0-msix84: PCI-MSI-X enabled: IRQ 192
1;39mShow Plymou[   10.834551] mpt3sas0-msix85: PCI-MSI-X enabled: IRQ 193
th Boot Screen^[[[   10.834552] mpt3sas0-msix86: PCI-MSI-X enabled: IRQ 194
[   10.834554] mpt3sas0-msix87: PCI-MSI-X enabled: IRQ 195
0m.
[   10.834556] mpt3sas0-msix88: PCI-MSI-X enabled: IRQ 196
[   10.834557] mpt3sas0-msix89: PCI-MSI-X enabled: IRQ 197
[   10.834558] mpt3sas0-msix90: PCI-MSI-X enabled: IRQ 198
[   10.834559] mpt3sas0-msix91: PCI-MSI-X enabled: IRQ 199
[   10.834560] mpt3sas0-msix92: PCI-MSI-X enabled: IRQ 200
[   10.834562] mpt3sas0-msix93: PCI-MSI-X enabled: IRQ 201
[   10.834563] mpt3sas0-msix94: PCI-MSI-X enabled: IRQ 202
[   10.834564] mpt3sas0-msix95: PCI-MSI-X enabled: IRQ 203
[   10.834566] mpt3sas_cm0: iomem(0x00000000e2200000), mapped(0x00000000e02f8682), size(65536)
[   10.834569] mpt3sas_cm0: ioport(0x0000000000001000), size(256)
[   10.880049] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   11.007858] mpt3sas_cm0: sending message unit reset !!
[   11.009369] mpt3sas_cm0: message unit reset: SUCCESS
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mForward Password Requests to Plymouth Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mBasic System^[[0m.
[   11.039664] mpt3sas_cm0: scatter gather: sge_in_main_msg(1), sge_per_chain(7), sge_per_io(128), chains_per_io(19)
[   11.051156] mpt3sas_cm0: request pool(0x00000000793c198c) - dma(0xe0600000): depth(9700), frame_size(128), pool_size(1212 kB)
[   11.087964] mpt3sas_cm0: sense pool(0x00000000f47c9137) - dma(0xdef00000): depth(9463), element_size(96), pool_size (887 kB)
[   11.099278] mpt3sas_cm0: reply pool(0x000000001133162c) - dma(0xdec00000): depth(9764), frame_size(128), pool_size(1220 kB)
[   11.110412] mpt3sas_cm0: config page(0x00000000a463b202) - dma(0xdebee000): size(512)
[   11.118241] mpt3sas_cm0: Allocated physical memory: size(40437 kB)
[   11.124420] mpt3sas_cm0: Current Controller Queue Depth(9460),Max Controller Queue Depth(9584)
[   11.133028] mpt3sas_cm0: Scatter Gather Elements per IO(128)
[   11.184486] mpt3sas_cm0: _base_display_fwpkg_version: complete
[   11.190322] mpt3sas_cm0: FW Package Ver(16.17.01.00)
[   11.195689] mpt3sas_cm0: LSISAS3008: FWVersion(16.00.11.00), ChipRevision(0x02)
[   11.203002] mpt3sas_cm0: Protocol=(Initiator,Target), Capabilities=(TLR,EEDP,Snapshot Buffer,Diag Trace Buffer,Task Set Full,NCQ)
[   11.214729] scsi host8: Fusion MPT SAS Host
[   11.220771] mpt3sas_cm0: sending port enable !!
[   11.225705] mpt3sas_cm0: hba_port entry: 0000000037e4cb79, port: 255 is added to hba_port list
[   11.235429] mpt3sas_cm0: host_add: handle(0x0001), sas_addr(0x52cea7f0be87bf00), phys(8)
[   11.243861] mpt3sas_cm0: handle(0xa) sas_address(0x4433221100000000) port_type(0x1)
[   11.252707] scsi 8:0:0:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.260803] scsi 8:0:0:0: SATA: handle(0x000a), sas_addr(0x4433221100000000), phy(0), device_name(0x500a075131911ad0)
[   11.271400] scsi 8:0:0:0: enclosure logical id (0x52cea7f0be87bf00), slot(1) 
[   11.278533] scsi 8:0:0:0: enclosure level(0x0001), connector name(     )
[   11.285286] scsi 8:0:0:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.293723] scsi 8:0:0:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.308530]  end_device-8:0: add: handle(0x000a), sas_addr(0x4433221100000000)
[   11.315871] mpt3sas_cm0: handle(0xc) sas_address(0x58ce38ee219651a2) port_type(0x1)
[   11.324545] scsi 8:0:1:0: Direct-Access     KIOXIA   KPM6WVUG960G     BD08 PQ: 0 ANSI: 6
[   11.332638] scsi 8:0:1:0: SSP: handle(0x000c), sas_addr(0x58ce38ee219651a2), phy(4), device_name(0x58ce38ee219651a0)
[   11.343152] scsi 8:0:1:0: enclosure logical id (0x52cea7f0be87bf00), slot(0) 
[   11.350284] scsi 8:0:1:0: enclosure level(0x0001), connector name(     )
[   11.356990] scsi 8:0:1:0: qdepth(254), tagged(1), scsi_level(7), cmd_que(1)
[   11.365686]  end_device-8:1: add: handle(0x000c), sas_addr(0x58ce38ee219651a2)
[   11.373029] mpt3sas_cm0: handle(0xb) sas_address(0x4433221106000000) port_type(0x1)
[   11.381805] scsi 8:0:2:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.389900] scsi 8:0:2:0: SATA: handle(0x000b), sas_addr(0x4433221106000000), phy(6), device_name(0x500a075131911a6f)
[   11.400496] scsi 8:0:2:0: enclosure logical id (0x52cea7f0be87bf00), slot(2) 
[   11.407629] scsi 8:0:2:0: enclosure level(0x0001), connector name(     )
[   11.414381] scsi 8:0:2:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.422818] scsi 8:0:2:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.437644]  end_device-8:2: add: handle(0x000b), sas_addr(0x4433221106000000)
[   11.460246] mpt3sas_cm0: port enable: SUCCESS
[   11.464906] scsi 8:0:0:0: Attached scsi generic sg0 type 0
[   11.465541] sd 8:0:0:0: [sda] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.470685] scsi 8:0:1:0: Attached scsi generic sg1 type 0
[   11.470941] sd 8:0:1:0: [sdb] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.470945] sd 8:0:1:0: [sdb] 4096-byte physical blocks
[   11.471130] sd 8:0:1:0: [sdb] Write Protect is off
[   11.471347] sd 8:0:1:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   11.477970] sd 8:0:0:0: [sda] 4096-byte physical blocks
[   11.479990] sd 8:0:0:0: [sda] Write Protect is off
[   11.483678] sd 8:0:2:0: Attached scsi generic sg2 type 0
[   11.484297] sd 8:0:2:0: [sdc] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.484301] sd 8:0:2:0: [sdc] 4096-byte physical blocks
[   11.486305] sd 8:0:2:0: [sdc] Write Protect is off
[   11.487589] sd 8:0:2:0: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.491748] sd 8:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.605412]  sdb: sdb1 sdb2
[   11.608365] sd 8:0:1:0: [sdb] Attached SCSI disk
[   11.646135]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7
[   11.650329]  sdc: sdc1 sdc2
[   11.651647] sd 8:0:0:0: [sda] Attached SCSI disk
[   11.654050] sd 8:0:2:0: [sdc] Attached SCSI disk
[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39m/dev/mapper/rhel_sharavati-root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut initqueue hook^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m.
         Mounting ^[[0;1;39m/sysroot^[[0m...
[   12.340469] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled
[   12.350908] XFS (dm-1): Mounting V5 Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[   12.375199] XFS (dm-1): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/sysroot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root File System^[[0m.
         Starting ^[[0;1;39mMountpoints Configured in the Real Root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMountpoints Configured in the Real Root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Default Target^[[0m.
         Starting ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
         Starting ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Default Target^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd /usr File System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut initqueue hook^[[0m.
         Starting ^[[0;1;39mPlymouth switch root service^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Ke[   12.638090] systemd-journald[1089]: Received SIGTERM from PID 1 (systemd).
rnel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mColdplug All udev Devices^[[0m.
         Stopping ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Kernel Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-udev hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut cmdline hook^[[0m.
         Starting ^[[0;1;39mCleanup udev Database^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate System Users^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleanup udev Database^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSw[   12.749814] systemd[1]: RTC configured in localtime, applying delta of 330 minutes to system time.
itch Root^[[0m.
         Starting ^[[0;1;39mSwitch Root^[[0m...
[   12.775626] systemd[1]: systemd 252-46.el9_5.3 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)
[   12.808093] systemd[1]: Detected architecture x86-64.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow)^[[0m!

[   12.887420] systemd-rc-local-generator[1705]: /etc/rc.d/rc.local is not marked executable, skipping.
[   13.144563] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[   13.151890] systemd[1]: Stopped Switch Root.
[^[[0;32m  OK  ^[[[   13.156461] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
0m] Stopped ^[[0;[   13.167426] systemd[1]: Created slice Virtual Machine and Container Slice.
1;39mSwitch Root[   13.175559] systemd[1]: Created slice Slice /system/getty.
^[[0m.
[^[[0;32m[   13.182514] systemd[1]: Created slice Slice /system/modprobe.
  OK  ^[[0m] Crea[   13.189567] systemd[1]: Created slice Slice /system/serial-getty.
ted slice ^[[0;1;[   13.197019] systemd[1]: Created slice Slice /system/sshd-keygen.
39mVirtual Machi[   13.204653] systemd[1]: Created slice Slice /system/systemd-fsck.
ne and Container[   13.211887] systemd[1]: Created slice User and Session Slice.
 Slice^[[0m.
[^[[   13.218347] systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
[0;32m  OK  ^[[0m[   13.234743] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
] Created slice [   13.243761] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
^[[0;1;39mSlice /[   13.254435] systemd[1]: Reached target Local Encrypted Volumes.
system/getty^[[0m[   13.261694] systemd[1]: Stopped target Switch Root.
.
[^[[0;32m  OK[   13.267957] systemd[1]: Stopped target Initrd File Systems.
  ^[[0m] Created [   13.274930] systemd[1]: Stopped target Initrd Root File System.
slice ^[[0;1;39mS[   13.282223] systemd[1]: Reached target Local Integrity Protected Volumes.
lice /system/mod[   13.290413] systemd[1]: Reached target Path Units.
probe^[[0m.
[^[[[   13.296582] systemd[1]: Reached target Slice Units.
0;32m  OK  ^[[0m][   13.302845] systemd[1]: Reached target Local Verity Protected Volumes.
 Created slice ^[[   13.310808] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[0;1;39mSlice /s[   13.318883] systemd[1]: Listening on LVM2 poll daemon socket.
ystem/serial-get[   13.325837] systemd[1]: multipathd control socket was skipped because of an unmet condition check (ConditionPathExists=/etc/multipath.conf).
ty^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/sshd-keygen^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Set up automount ^[[0;1;39mArbitrary Executa…ormats File System Automount Point^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal Encrypted Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwitch Root^[[0m.
[^[[0;32m  OK  ^[[[   13.389716] systemd[1]: Listening on RPCbind Server Activation Socket.
0m] Stopped targ[   13.397659] systemd[1]: Reached target RPC Port Mapper.
et ^[[0;1;39mInit[   13.405404] systemd[1]: Listening on Process Core Dump Socket.
rd File Systems^[[   13.411508] systemd[1]: Listening on initctl Compatibility Named Pipe.
[0m.
[^[[0;32m [   13.420479] systemd[1]: Listening on udev Control Socket.
 OK  ^[[0m] Stopp[   13.426219] systemd[1]: Listening on udev Kernel Socket.
ed target ^[[0;1;39mInitrd Root F[   13.434177] systemd[1]: Activating swap /dev/mapper/rhel_sharavati-swap...
ile System^[[0m.\r[   13.439036] Adding 7815164k swap on /dev/mapper/rhel_sharavati-swap.  Priority:-2 extents:1 across:7815164k SS

[^[[0;32m  OK  ^[[0m] Reached ta[   13.455354] systemd[1]: Mounting Huge Pages File System...
rget ^[[0;1;39mLo[   13.463371] systemd[1]: Mounting POSIX Message Queue File System...
cal Integrity Pr[   13.470992] systemd[1]: Mounting Kernel Debug File System...
otected Volumes^[[   13.478003] systemd[1]: Mounting Kernel Trace File System...
[0m.
[^[[0;32m [   13.483909] systemd[1]: Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
 OK  ^[[0m] Reach[   13.498741] systemd[1]: iscsi-starter.service was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes).
ed target ^[[0;1;39mPath Units^[[0[   13.514106] systemd[1]: Starting Create List of Static Device Nodes...
m.
[^[[0;32m  OK  ^[[0m] Reached[   13.523582] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
 target ^[[0;1;39[   13.536248] systemd[1]: Starting Load Kernel Module configfs...
mSlice Units^[[0m[   13.543535] systemd[1]: Starting Load Kernel Module drm...
.
[^[[0;32m  OK[   13.550381] systemd[1]: Starting Load Kernel Module fuse...
  ^[[0m] Reached target ^[[0;1;39m[   13.558194] systemd[1]: Starting Read and set NIS domainname from /etc/sysconfig/network...
Local Verity Pro[   13.567370] systemd[1]: plymouth-switch-root.service: Deactivated successfully.
tected Volumes^[[[   13.576034] systemd[1]: Stopped Plymouth switch root service.
0m.
[^[[0;32m  [   13.583290] systemd[1]: systemd-fsck-root.service: Deactivated successfully.
OK  ^[[0m] Listen[   13.591589] systemd[1]: Stopped File System Check on Root Device.
ing on ^[[0;1;39m[   13.599131] systemd[1]: Stopped Journal Service.
Device-mapper event daemon FIFOs[   13.607336] systemd[1]: Starting Journal Service...
^[[0m.
[^[[0;32m  OK  ^[[0m] List[   13.614711] systemd[1]: Starting Load Kernel Modules...
ening on ^[[0;1;3[   13.619639] systemd-journald[1735]: File /run/log/journal/8f37f8055146469d8baec3ad508b0084/system.journal corrupted or uncleanly shut down, renaming and replacing.
9mLVM2 poll daemon socket^[[0m.\r\r[   13.638124] systemd[1]: Starting Generate network units from Kernel command line...

[^[[0;32m  OK  ^[[   13.647134] systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
[0m] Listening on ^[[0;1;39mRPCbi[   13.668317] systemd[1]: Starting Remount Root and Kernel File Systems...
nd Server Activa[   13.676508] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
tion Socket^[[0m.
[^[[0;32m  OK [   13.688693] systemd[1]: Starting Coldplug All udev Devices...
 ^[[0m] Reached target ^[[0;1;39mRPC Port Mapper^[[[   13.698875] systemd[1]: Activated swap /dev/mapper/rhel_sharavati-swap.
0m.
[^[[0;32m  [   13.707117] systemd[1]: Started Journal Service.
OK  ^[[0m] Listening on ^[[0;1;39mProcess Core Dump Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39minitctl Compatibility Named Pipe^[[0m.
[^[[0;32m  OK  ^[[0m] Listening [   13.727399] systemd-journald[1735]: Received client request to flush runtime journal.
on ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
         Activating swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m...
         Mounting ^[[0;1;39mHuge Pages File System^[[0m...
         Mounting ^[[0;1;39mPOSIX Message Queue File System^[[0m...
         Mounting ^[[0;1;39mKernel Debug File System^[[0m...
         Mounting ^[[0;1;39mKernel Trace File System^[[0m...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
         Starting ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module drm^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mJournal Service^[[0m.
         Starting ^[[0;1;39mJournal Service^[[0m...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
         Starting ^[[0;1;39mGenerate network units from Kernel command line^[[0m...
         Starting ^[[0;1;39mRemount Root and Kernel File Systems^[[0m...
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[^[[0;32m  OK  ^[[0m] Activated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mHuge Pages File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mPOSIX Message Queue File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Debug File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Trace File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMonitoring of LVM2 mirror…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module drm^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mGenerate network units from Kernel command line^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;3[   13.954457] IPMI message handler: version 39.2
9mRemount Root and Kernel File S[   13.961408] ipmi device interface
ystems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwaps^[[0m.
         Mounting ^[[0;1;39mFUSE Control File System^[[0m...
         Mounting ^[[0;1;39mKernel Configuration File System^[[0m...
       [   13.983097] ipmi_si: IPMI System Interface driver
  Starting ^[[0;1[   13.988030] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
;39mFlush Journa[   13.990191] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
l to Persistent [   13.991703] input: PC Speaker as /devices/platform/pcspkr/input/input1
Storage^[[0m...\r\r[   13.992852] pstore: backend 'erst' already in use: ignoring 'efi_pstore'

         Starti[   13.993082] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
ng ^[[0;1;39mLoad[   13.993085] RAPL PMU: hw unit of domain package 2^-16 Joules
/Save OS Random [   13.993087] RAPL PMU: hw unit of domain core 2^-16 Joules
Seed^[[0m...
  [   13.995699] ipmi_platform: ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 10
       Starting [   14.004441] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
^[[0;1;39mApply K[   14.012405] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
ernel Variables^[[   14.020469] ipmi_si: Adding SMBIOS-specified kcs state machine
[0m...
       [   14.030418] i2c i2c-3: Successfully instantiated SPD at 0x50
[   14.036951] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
  Starting ^[[0;1[   14.044099] i2c i2c-3: Successfully instantiated SPD at 0x51
;39mCreate Stati[   14.052323] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca8] regsize 1 spacing 4 irq 10
c Device Nodes i[   14.061782] i2c i2c-3: Successfully instantiated SPD at 0x52
n /dev^[[0m...
[   14.070112] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
[   14.077608] i2c i2c-3: Successfully instantiated SPD at 0x53
[^[[0;32m  OK  ^[[[   14.090038] ipmi_si: Adding ACPI-specified kcs state machine
[   14.097549] i2c i2c-3: Successfully instantiated SPD at 0x54
0m] Mounted ^[[0;[   14.106461] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 10
1;39mFUSE Contro[   14.113950] i2c i2c-3: Successfully instantiated SPD at 0x55
l File System^[[0[   14.160735] i2c i2c-3: Successfully instantiated SPD at 0x56
m.
[^[[0;32m  O[   14.167768] i2c i2c-3: Successfully instantiated SPD at 0x57
K  ^[[0m] Mounted ^[[0;1;39mKernel Configuration File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad/Save OS Random Seed^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFlush Journal to Persistent Storage^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;[   14.200826] ee1004 3-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
39mCreate Static Device Nodes in[   14.210547] ee1004 3-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
 /dev^[[0m.
         Starting ^[[   14.220181] ee1004 3-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
[0;1;39mRule-bas[   14.220435] kvm_amd: TSC scaling supported
ed Manager for D[   14.229835] ee1004 3-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
evice Events and[   14.233624] kvm_amd: Nested Virtualization enabled
 Files^[[0m...
[   14.233626] kvm_amd: Nested Paging enabled
[^[[0;32m  OK  ^[[[   14.233628] kvm_amd: LBR virtualization supported
0m] Started ^[[0;1;39mRule-based [   14.261351] ee1004 3-0054: 512 byte EE1004-compliant SPD EEPROM, read-only
Manager for Device Events and Fi[   14.271165] ee1004 3-0055: 512 byte EE1004-compliant SPD EEPROM, read-only
les^[[0m.
         Starting ^[[0[   14.280815] ee1004 3-0056: 512 byte EE1004-compliant SPD EEPROM, read-only
;1;39mLoad Kernel Module configf[   14.290351] ee1004 3-0057: 512 byte EE1004-compliant SPD EEPROM, read-only
s^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mColdplug All udev Devices^[[0m.
         Starting ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mLoad/Save RF Kill Switch Status /dev/rfkill Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39m/usr/sbin/lvm vgchange -aa…utoactivation event rhel_sharavati^[[0m.
[   14.568261] ipmi_si IPI0001:00: The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.
[   14.640330] ipmi_si IPI0001:00: Using irq 10
[   14.664377] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20)
[   14.722444] ipmi_si IPI0001:00: IPMI kcs interface initialized
[   14.730906] ipmi_ssif: IPMI SSIF Interface driver
[   14.751434] power_meter ACPI000D:00: Found ACPI power meter.
[^[[0m^[[0;31m*     ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;1;31m*^[[0m^[[0;31m*    ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
^[M\r^[[K[^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*   ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
[   17.789936] ccp 0000:46:00.1: SEV-SNP API:1.55 build:22
[   17.845077] ccp 0000:46:00.1: SEV API:1.55 build:22
[   17.851820] kvm_amd: SEV enabled (ASIDs 101 - 509)
[   17.856625] kvm_amd: SEV-ES enabled (ASIDs 1 - 100)
[   17.861507] kvm_amd: SEV-SNP enabled (ASIDs 1 - 100)
[   17.866640] kvm_amd: Virtual VMLOAD VMSAVE supported
[   17.871603] kvm_amd: Virtual GIF supported
[   17.897967] EDAC MC0: Giving out device to module amd64_edac controller F19h: DEV 0000:00:18.3 (INTERRUPT)
[   17.907618] EDAC amd64: F19h detected (node 0).
[   17.912174] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.916891] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.921621] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.926345] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.931077] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.935799] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.940521] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.945237] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.949959] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.954680] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.959407] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.964130] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.968852] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.973568] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.978298] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.983017] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.995404] intel_rapl_common: Found RAPL domain package
[   17.996620] amd_atl: AMD Address Translation Library initialized
[   18.000728] intel_rapl_common: Found RAPL domain core
^[M\r^[[K[ ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*  ^[[0m] A start job is running for Wait for…ice Initialization (5s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Local File Systems^[[0m.
         Mounting ^[[0;1;39m/boot^[[0m...
      [   18.399762] XFS (sda6): Mounting V5 Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
   Mounting ^[[0;[   18.401876] XFS (dm-0): Mounting V5 Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
1;39m/home^[[0m...
         Starting ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m...
[   18.430060] XFS (sda6): Ending clean mount
[   18.434736] XFS (dm-0): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
         Mounting ^[[0;1;39m/boot/efi^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
         Starting ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Mounting ^[[0;1;39mRPC Pipe File System^[[0m...
         Starting ^[[0;1;39mSecurity Auditing Service^[[0m...
         Starting ^[[0;1;39mRPC Bind^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRPC Bind^[[0m.
[   18.547233] RPC: Registered named UNIX socket transport module.
[   18.553162] RPC: Registered udp transport module.
[   18.557866] RPC: Registered tcp transport module.
[   18.562572] RPC: Registered tcp-with-tls transport module.
[   18.568058] RPC: Registered tcp NFSv4.1 backchannel transport module.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mRPC Pipe File System^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mrpc_pipefs.target^[[0m.
         Starting ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdnf makecache --timer^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily rotation of log files^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUpdates mlocate database every day^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily Cleanup of Temporary Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdaily update of the root trust anchor for DNSSEC^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt interface daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt network daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nodedev daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nwfilter daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt proxy daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt secret daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt storage daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
         Starting ^[[0;1;39mD-Bus System Message Bus^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mBasic System^[[0m.
         Starting ^[[0;1;39mNTP client/server^[[0m...
         Starting ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m...
         Starting ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mirqbalance daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mlibstoragemgmt plug-in server daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mMachine Check Exception Logging Daemon^[[0m.
         Starting ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msshd-keygen.target^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUser and Group Name Lookups^[[0m.
         Starting ^[[0;1;39mUser Login Management^[[0m...
         Starting ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNTP client/server^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Network^[[0m.
         Starting ^[[0;1;39mNetwork Manager^[[0m...
         Starting ^[[0;1;39mHostname Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mHostname Service^[[0m.
         Starting ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork^[[0m.
         Starting ^[[0;1;39mNetwork Manager Wait Online^[[0m...
         Starting ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
         Starting ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m...
         Starting ^[[0;1;39mOpenSSH server daemon^[[0m...
         Starting ^[[0;1;39mDynamic System Tuning Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNFS client services^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mOpenSSH server daemon^[[0m.
         Starting ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
[   22.765024] tg3 0000:c1:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   22.771645] tg3 0000:c1:00.0 eth0: Flow control is off for TX and off for RX
[   22.778697] tg3 0000:c1:00.0 eth0: EEE is disabled
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[     ^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Network …nager Wait Online (12s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mNetwork Manager Wait Online^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork is Online^[[0m.
         Starting ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m...
         Starting ^[[0;1;39mNotify NFS peers of a restart^[[0m...
         Starting ^[[0;1;39mSystem Logging Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNotify NFS peers of a restart^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mCrash recovery kernel arming^[[0m...
         Starting ^[[0;1;39mPermit User Sessions^[[0m...
         Starting ^[[0;1;39mlibvirt QEMU daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDeferred execution scheduler^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mCommand Scheduler^[[0m.
         Starting ^[[0;1;39mHold until boot process finishes up^[[0m...
         Starting ^[[0;1;39mTerminate Plymouth Boot Screen^[[0m...
[^[[0;1;31mFAILED^[[0m] Failed to start ^[[0;1;39mCrash recovery kernel arming^[[0m.
See 'systemctl status kdump.service' for details.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSystem Logging Service^[[0m.
[   25.498841] fbcon: Taking over console
[   25.518656] Console: switching to colour frame buffer device 128x48

Red Hat Enterprise Linux 9.5 (Plow)
Kernel 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e on an x86_64

Activate the web console with: systemctl enable --now cockpit.socket

sharavati login: [  125.793295] /proc/cgroups lists only v1 controllers, use cgroup.controllers of root cgroup for v2 info
[  315.303271] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[  315.359960] systemd-rc-local-generator[3159]: /etc/rc.d/rc.local is not marked executable, skipping.
[  337.012976] virbr0: port 1(t0-m3dMeE) entered blocking state
[  337.018660] virbr0: port 1(t0-m3dMeE) entered disabled state
[  337.024359] t0-m3dMeE: entered allmulticast mode
[  337.029055] t0-m3dMeE: entered promiscuous mode
[  337.038011] virbr0: port 1(t0-m3dMeE) entered blocking state
[  337.043675] virbr0: port 1(t0-m3dMeE) entered listening state
[  339.070692] virbr0: port 1(t0-m3dMeE) entered learning state
[  341.086637] virbr0: port 1(t0-m3dMeE) entered forwarding state
[  341.092475] virbr0: topology change detected, propagating
[  356.287997] virbr0: port 1(t0-m3dMeE) entered disabled state
[  356.294762] t0-m3dMeE (unregistering): left allmulticast mode
[  356.300527] t0-m3dMeE (unregistering): left promiscuous mode
[  356.306192] virbr0: port 1(t0-m3dMeE) entered disabled state
[  360.689982] virbr0: port 1(t0-kL6iUS) entered blocking state
[  360.695663] virbr0: port 1(t0-kL6iUS) entered disabled state
[  360.701363] t0-kL6iUS: entered allmulticast mode
[  360.706081] t0-kL6iUS: entered promiscuous mode
[  360.714703] virbr0: port 1(t0-kL6iUS) entered blocking state
[  360.720366] virbr0: port 1(t0-kL6iUS) entered listening state
[  362.750188] virbr0: port 1(t0-kL6iUS) entered learning state
[  364.766140] virbr0: port 1(t0-kL6iUS) entered forwarding state
[  364.771986] virbr0: topology change detected, propagating
[  379.915120] virbr0: port 1(t0-kL6iUS) entered disabled state
[  379.921871] t0-kL6iUS (unregistering): left allmulticast mode
[  379.927623] t0-kL6iUS (unregistering): left promiscuous mode
[  379.933292] virbr0: port 1(t0-kL6iUS) entered disabled state
[  384.346511] virbr0: port 1(t0-oglSQW) entered blocking state
[  384.352182] virbr0: port 1(t0-oglSQW) entered disabled state
[  384.357900] t0-oglSQW: entered allmulticast mode
[  384.362600] t0-oglSQW: entered promiscuous mode
[  384.371237] virbr0: port 1(t0-oglSQW) entered blocking state
[  384.376903] virbr0: port 1(t0-oglSQW) entered listening state
[  386.397696] virbr0: port 1(t0-oglSQW) entered learning state
[  388.413653] virbr0: port 1(t0-oglSQW) entered forwarding state
[  388.419494] virbr0: topology change detected, propagating
[  402.591093] virbr0: port 1(t0-oglSQW) entered disabled state
[  402.597941] t0-oglSQW (unregistering): left allmulticast mode
[  402.603696] t0-oglSQW (unregistering): left promiscuous mode
[  402.609368] virbr0: port 1(t0-oglSQW) entered disabled state
[  407.063592] virbr0: port 1(t0-ZSVfyB) entered blocking state
[  407.069267] virbr0: port 1(t0-ZSVfyB) entered disabled state
[  407.074967] t0-ZSVfyB: entered allmulticast mode
[  407.079683] t0-ZSVfyB: entered promiscuous mode
[  407.088485] virbr0: port 1(t0-ZSVfyB) entered blocking state
[  407.094153] virbr0: port 1(t0-ZSVfyB) entered listening state
[  409.117235] virbr0: port 1(t0-ZSVfyB) entered learning state
[  411.133190] virbr0: port 1(t0-ZSVfyB) entered forwarding state
[  411.139039] virbr0: topology change detected, propagating
[  425.346018] virbr0: port 1(t0-ZSVfyB) entered disabled state
[  425.352686] t0-ZSVfyB (unregistering): left allmulticast mode
[  425.358445] t0-ZSVfyB (unregistering): left promiscuous mode
[  425.364122] virbr0: port 1(t0-ZSVfyB) entered disabled state
[  429.708725] virbr0: port 1(t0-Ca7fa3) entered blocking state
[  429.714410] virbr0: port 1(t0-Ca7fa3) entered disabled state
[  429.720123] t0-Ca7fa3: entered allmulticast mode
[  429.724829] t0-Ca7fa3: entered promiscuous mode
[  429.733629] virbr0: port 1(t0-Ca7fa3) entered blocking state
[  429.739294] virbr0: port 1(t0-Ca7fa3) entered listening state
[  431.772757] virbr0: port 1(t0-Ca7fa3) entered learning state
[  433.788726] virbr0: port 1(t0-Ca7fa3) entered forwarding state
[  433.794572] virbr0: topology change detected, propagating
[  448.513434] virbr0: port 1(t0-Ca7fa3) entered disabled state
[  448.520380] t0-Ca7fa3 (unregistering): left allmulticast mode
[  448.526137] t0-Ca7fa3 (unregistering): left promiscuous mode
[  448.531812] virbr0: port 1(t0-Ca7fa3) entered disabled state
[  452.986175] virbr0: port 1(t0-z7wNo8) entered blocking state
[  452.991856] virbr0: port 1(t0-z7wNo8) entered disabled state
[  452.997576] t0-z7wNo8: entered allmulticast mode
[  453.002281] t0-z7wNo8: entered promiscuous mode
[  453.011096] virbr0: port 1(t0-z7wNo8) entered blocking state
[  453.016760] virbr0: port 1(t0-z7wNo8) entered listening state
[  455.036293] virbr0: port 1(t0-z7wNo8) entered learning state
[  457.052245] virbr0: port 1(t0-z7wNo8) entered forwarding state
[  457.058092] virbr0: topology change detected, propagating
[  472.289413] virbr0: port 1(t0-z7wNo8) entered disabled state
[  472.296045] t0-z7wNo8 (unregistering): left allmulticast mode
[  472.301797] t0-z7wNo8 (unregistering): left promiscuous mode
[  472.307471] virbr0: port 1(t0-z7wNo8) entered disabled state
[  476.775173] virbr0: port 1(t0-zo5XOF) entered blocking state
[  476.780844] virbr0: port 1(t0-zo5XOF) entered disabled state
[  476.786544] t0-zo5XOF: entered allmulticast mode
[  476.791253] t0-zo5XOF: entered promiscuous mode
[  476.800068] virbr0: port 1(t0-zo5XOF) entered blocking state
[  476.805737] virbr0: port 1(t0-zo5XOF) entered listening state
[  478.811793] virbr0: port 1(t0-zo5XOF) entered learning state
[  480.827749] virbr0: port 1(t0-zo5XOF) entered forwarding state
[  480.833590] virbr0: topology change detected, propagating
[  494.572627] virbr0: port 1(t0-zo5XOF) entered disabled state
[  494.579250] t0-zo5XOF (unregistering): left allmulticast mode
[  494.585001] t0-zo5XOF (unregistering): left promiscuous mode
[  494.590672] virbr0: port 1(t0-zo5XOF) entered disabled state
[  498.983924] virbr0: port 1(t0-Ac34Kl) entered blocking state
[  498.989600] virbr0: port 1(t0-Ac34Kl) entered disabled state
[  498.995289] t0-Ac34Kl: entered allmulticast mode
[  498.999990] t0-Ac34Kl: entered promiscuous mode
[  499.008598] virbr0: port 1(t0-Ac34Kl) entered blocking state
[  499.014263] virbr0: port 1(t0-Ac34Kl) entered listening state
[  501.051346] virbr0: port 1(t0-Ac34Kl) entered learning state
[  503.067311] virbr0: port 1(t0-Ac34Kl) entered forwarding state
[  503.073149] virbr0: topology change detected, propagating
[  517.372453] virbr0: port 1(t0-Ac34Kl) entered disabled state
[  517.379268] t0-Ac34Kl (unregistering): left allmulticast mode
[  517.385019] t0-Ac34Kl (unregistering): left promiscuous mode
[  517.390688] virbr0: port 1(t0-Ac34Kl) entered disabled state
[  558.513770] JFS: nTxBlock = 8192, nTxLock = 65536
[  558.552317] QNX4 filesystem 0.2.3 registered.
[  558.634148] raid6: avx2x4   gen() 29443 MB/s
[  558.706146] raid6: avx2x2   gen() 30047 MB/s
[  558.778145] raid6: avx2x1   gen() 21051 MB/s
[  558.782415] raid6: using algorithm avx2x2 gen() 30047 MB/s
[  558.854142] raid6: .... xor() 27393 MB/s, rmw enabled
[  558.859237] raid6: using avx2x2 recovery algorithm
[  558.866183] xor: automatically using best checksumming function   avx       
[  558.966289] Btrfs loaded, zoned=yes, fsverity=yes
[  563.379267] sda6: Can't mount, would change RO state
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNFS client services^[[0m.
         Stopping ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Runtime Directory /run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser Slice of UID 0^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mShow Plymouth Reboot Screen^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mUser and Group Name Lookups^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSystem Logging Service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork is Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager Wait Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
         Stopping ^[[0;1;39mNetwork Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Network^[[0m.
         Stopping ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGenerate network units from Kernel command line^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
         Stopping ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Plymouth Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mVirtual Machine and Container Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon read-only s[  564.846623] audit: type=1305 audit(1750146944.095:312): op=set audit_pid=0 old=2288 auid=4294967295 ses=4294967295 subj=unconfined res=1
ocket^[[0m.
[^[[[  564.859981] audit: type=1334 audit(1750146944.103:313): prog-id=40 op=UNLOAD
0;32m  OK  ^[[0m] Closed ^[[0;1;39[  564.870139] audit: type=1131 audit(1750146944.119:314): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=auditd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
mlibvirt legacy [  564.891771] audit: type=1131 audit(1750146944.139:315): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
monolithic daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon socket^[[0m.
         Stopping ^[[0;1;39mD-Bus System Message Bus^[[0m...
         Starting ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mD-Bus System Message Bus^[[0m.\r\r[  564.966739] audit: type=1131 audit(1750146944.215:316): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-fsck@dev-disk-by\x2duuid-FBE5\x2d86EF comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  564.987455] XFS (dm-0): Unmounting Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47

[^[[0;32m  OK  ^[[  564.998356] XFS (sda6): Unmounting Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0[  565.011086] audit: type=1131 audit(1750146944.259:317): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
;32m  OK  ^[[0m] [  565.032332] audit: type=1131 audit(1750146944.279:318): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Unset automount ^[[0;1;39mArbitrary Executab…ormats File System Automount Point^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Encrypted Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Integrity Protected Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Verity Protected Volumes^[[0m.
         Deactivating swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m...
[^[[0;32m  OK [  565.111426] audit: type=1131 audit(1750146944.359:319): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
 ^[[0m] Stopped ^[[  565.131877] audit: type=1130 audit(1750146944.379:320): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[0;1;39mRead and[  565.153153] audit: type=1131 audit(1750146944.379:321): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
 set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
         Stopping ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-sysctl.service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
        [  565.218414] watchdog: watchdog0: watchdog did not stop!
 Stopping ^[[0;1;39mSecurity Auditing Service^[[0m...
[^[[0;32m  [  565.229490] systemd-shutdown[1]: Using hardware watchdog 'SP5100 TCO timer', version 0, device /dev/watchdog0
OK  ^[[0m] Deacti[  565.239752] systemd-shutdown[1]: Watchdog running with a timeout of 10min.
vated swap ^[[0;1;39m/dev/rhel_sharavati/swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-i[  565.256510] systemd-shutdown[1]: Syncing filesystems and block devices.
d/dm-name-rhel_s[  565.264358] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
haravati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-uuid…8d2e1f-0fb1-4c94-97ac-38505613fcbf^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/d…kEo36yeb12DWUnp5czhD1hrKFNCXkJMetK^[[0m.
[^[[[  565.292065] systemd-journald[1735]: Received SIGTERM from PID 1 (systemd-shutdow).
0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/dm-2^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
         Unmounting ^[[0;1;39m/boot/efi^[[0m...
         Unmounting ^[[0;1;39m/home^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m.
         Unmounting ^[[0;1;39m/boot^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Local File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUnmount All Filesystems^[[0m.
         Stopping ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRemount Root and Kernel File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mMonitoring of LVM2 mirrors…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLate Shutdown Services^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSystem Reboot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Reboot^[[0m.
[  565.478576] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
[  565.503180] systemd-shutdown[1]: Unmounting file systems.
[  565.509256] [10808]: Remounting '/' read-only with options 'attr2,inode64,logbufs=8,logbsize=32k,noquota'.
[  565.529125] systemd-shutdown[1]: All filesystems unmounted.
[  565.535206] systemd-shutdown[1]: Deactivating swaps.
[  565.540199] systemd-shutdown[1]: All swaps deactivated.
[  565.545422] systemd-shutdown[1]: Detaching loop devices.
[  565.551241] systemd-shutdown[1]: All loop devices detached.
[  565.556819] systemd-shutdown[1]: Stopping MD devices.
[  565.561926] systemd-shutdown[1]: All MD devices stopped.
[  565.567236] systemd-shutdown[1]: Detaching DM devices.
[  565.572729] systemd-shutdown[1]: Detaching DM /dev/dm-2 (253:2).
[  565.606173] systemd-shutdown[1]: Detaching DM /dev/dm-0 (253:0).
[  565.662106] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  565.668596] systemd-shutdown[1]: Detaching DM devices.
[  565.673962] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  565.680408] systemd-shutdown[1]: Cannot finalize remaining DM devices, continuing.
[  565.687980] watchdog: watchdog0: watchdog did not stop!
[  565.782952] systemd-shutdown[1]: Successfully changed into root pivot.
[  565.789485] systemd-shutdown[1]: Returning to initrd...
[  565.841311] dracut Warning: Killing all remaining processes
dracut Warning: Killing all remaining processes
[  565.921118] XFS (dm-1): Unmounting Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[  565.935985] dracut Warning: Unmounted /oldroot.
dracut Warning: Unmounted /oldroot.
[  565.952685] dracut: Disassembling device-mapper devices
Rebooting.
[  566.149373] sd 8:0:2:0: [sdc] Synchronizing SCSI cache
[  566.154653] sd 8:0:0:0: [sda] Synchronizing SCSI cache
[  567.623461] mpt3sas_cm0: sending message unit reset !!
[  567.629947] mpt3sas_cm0: message unit reset: SUCCESS
[  567.637466] ACPI: PM: Preparing to enter system sleep state S5
[  567.643403] kvm: exiting hardware virtualization
[  567.648105] reboot: Restarting system
[  567.651768] reboot: machine restart
^[[c^[[2J^[[01;01H^[[=3h^[[2J^[[01;01HKEY MAPPING FOR CONSOLE REDIRECTION:

Use the <ESC><1> key sequence for <F1>
Use the <ESC><2> key sequence for <F2>
Use the <ESC><3> key sequence for <F3>
Use the <ESC><0> key sequence for <F10>
Use the <ESC><!> key sequence for <F11>
Use the <ESC><@> key sequence for <F12>

Use the <ESC><Ctrl><M> key sequence for <Ctrl><M>
Use the <ESC><Ctrl><H> key sequence for <Ctrl><H>
Use the <ESC><Ctrl><I> key sequence for <Ctrl><I>
Use the <ESC><Ctrl><J> key sequence for <Ctrl><J>

Use the <ESC><X><X> key sequence for <Alt><x>, where x is any letter
key, and X is the upper case of that key

Use the <ESC><R><ESC><r><ESC><R> key sequence for <Ctrl><Alt><Del>

Press the spacebar to pause...
Initializing PCIe, USB, and Video... Done
PowerEdge R6515
BIOS Version: 2.17.0
Console Redirection Enabled Requested by iDRAC

F2	 = System Setup
F10	 = Lifecycle Controller (Config
	   iDRAC, Update FW, Install OS)
F11	 = Boot Manager
F12	 = PXE Boot
iDRAC IPV4:  10.86.18.202 [Dedicated]
                                
Initializing Firmware Interfaces...
 





Enumerating Boot options...
Enumerating Boot options... Done
Loading Lifecycle Controller Drivers...
Loading Lifecycle Controller Drivers...Done
Lifecycle Controller: Collecting System Inventory...

iDRAC IPV4:  10.86.18.202 [Dedicated]

^[[2J^[[01;01HLifecycle Controller: Done
Booting...
^[[2J^[[01;01HBooting from Integrated Storage Controller 1: Red Hat Enterprise Linux
^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[02;32HGRUB version 2.06

\r^[[04;02H/----------------------------------------------------------------------------\^[[05;02H|^[[05;79H|^[[06;02H|^[[06;79H|^[[07;02H|^[[07;79H|^[[08;02H|^[[08;79H|^[[09;02H|^[[09;79H|^[[10;02H|^[[10;79H|^[[11;02H|^[[11;79H|^[[12;02H|^[[12;79H|^[[13;02H|^[[13;79H|^[[14;02H|^[[14;79H|^[[15;02H|^[[15;79H|^[[16;02H|^[[16;79H|^[[17;02H\----------------------------------------------------------------------------/^[[18;02H^[[19;02H     Use the ^ and v keys to select which entry is highlighted.          
\r      Press enter to boot the selected OS, `e' to edit the commands       
\r      before booting or `c' for a command-line. ESC to return previous    
\r      menu.                                                               ^[[05;80H ^[[0m^[[30m^[[47m^[[05;03H*Red Hat Enterprise Linux (6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e)>
\r^[[06;01H^[[0m^[[37m^[[40m^[[05;78H^[[06;03H Red Hat Enterprise Linux (6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997)>
\r^[[07;01H^[[06;78H^[[07;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250613-bc6e0ba6c9-dc42f4ece61)>
\r^[[08;01H^[[07;78H^[[08;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250612-0bb71d3018-d909e6968a1)>
\r^[[09;01H^[[08;78H^[[09;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250611-19a60293b9-72d7c68e20e)>
\r^[[10;01H^[[09;78H^[[10;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250610-b27cc623e0-9a3b1b1b837)>
\r^[[11;01H^[[10;78H^[[11;03H Red Hat Enterprise Linux (6.15.0-rc7-next-20250526-3be1a7a31f-22d449bcd69)>
\r^[[12;01H^[[11;78H^[[12;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250514-bdd609656f-ccb396cc166)>
\r^[[13;01H^[[12;78H^[[13;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250513-aa94665adc-e0bf3d3816b)>
\r^[[14;01H^[[13;78H^[[14;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250512-edef457004-450c56522a8)>
\r^[[15;01H^[[14;78H^[[15;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250508-f48887a98b-19c541fe872)>
\r^[[16;01H^[[15;78H^[[16;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250507-08710e6960-81586bd2ca8)>
\r^[[17;01H^[[16;78H^[[16;80Hv^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 5s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 4s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 3s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 2s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 1s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 0s.                 ^[[05;78H^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m  Booting `Red Hat Enterprise Linux
\r(6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e) 9.5 (Plow)'

\r[    0.000000] Linux version 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e (root@sharavati•amd.com) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-5), GNU ld version 2.35.2-63.el9) #1 SMP PREEMPT_DYNAMIC Tue Jun 17 12:09:52 IST 2025
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] SEV-SNP: RMP table physical range [0x0000000015e00000 - 0x00000000566fffff]
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000015dfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000015e00000-0x00000000566fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000056700000-0x00000000567fbfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000567fc000-0x00000000567fcfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000567fd000-0x000000005a142fff] usable
[    0.000000] BIOS-e820: [mem 0x000000005a143000-0x000000005a342fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005a343000-0x0000000067acefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000067acf000-0x000000006dfcefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006dfcf000-0x000000006edfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006edff000-0x000000006effefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000006efff000-0x000000006effffff] usable
[    0.000000] BIOS-e820: [mem 0x000000006f000000-0x000000006f00afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006f00b000-0x000000006fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000070000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa000000-0x00000000aaffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c5000000-0x00000000c5ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e0ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000207fcfffff] usable
[    0.000000] BIOS-e820: [mem 0x000000207fd00000-0x000000207fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000002080000000-0x000000407f1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000407f200000-0x000000407fffffff] reserved
[    0.000000] printk: legacy bootconsole [earlyser0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by Dell Inc.
[    0.000000] efi: ACPI=0x6effe000 ACPI 2.0=0x6effe014 MEMATTR=0x63f376a0 SMBIOS=0x6979e000 SMBIOS 3.0=0x6979c000 MOKvar=0x67bcc000 RNG=0x6efb4020 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem56: MMIO range=[0x80000000-0x8fffffff] (256MB) from e820 map
[    0.000000] efi: Remove mem57: MMIO range=[0xaa000000-0xaaffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem58: MMIO range=[0xc5000000-0xc5ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem59: MMIO range=[0xe0000000-0xe0ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem60: MMIO range=[0xfd000000-0xffffffff] (48MB) from e820 map
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[    0.000000] DMI: Memory slots populated: 8/16
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1996.227 MHz processor
[    0.000028] last_pfn = 0x407f200 max_arch_pfn = 0x400000000
[    0.005552] MTRR map: 7 entries (2 fixed + 5 variable; max 19), built from 9 variable MTRRs
[    0.013866] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Memory KASLR using RDRAND RDTSC...
[    0.023936] x2apic: enabled by BIOS, switching to x2apic ops
[    0.029571] last_pfn = 0x70000 max_arch_pfn = 0x400000000
[    0.039552] SEV-SNP: Reserving start/end of RMP table on a 2MB boundary [0x0000000056600000]
[    0.047818] Using GB pages for direct mapping
[    0.052760] Secure boot disabled
[    0.055811] RAMDISK: [mem 0x0bb2c000-0x0e0d4fff]
[    0.060408] ACPI: Early table checksum verification disabled
[    0.066040] ACPI: RSDP 0x000000006EFFE014 000024 (v02 DELL  )
[    0.071758] ACPI: XSDT 0x000000006EFB7188 0000DC (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.080254] ACPI: FACP 0x000000006EFF9000 000114 (v06 DELL   PE_SC3   00000002 DELL 00000001)
[    0.088747] ACPI: DSDT 0x000000006EFDA000 019528 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.097238] ACPI: FACS 0x000000006EDB9000 000040
[    0.101831] ACPI: BERT 0x000000006EFFC000 000030 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.110325] ACPI: ERST 0x000000006EFFB000 000230 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.118818] ACPI: HEST 0x000000006EFFA000 0007F4 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.127310] ACPI: HPET 0x000000006EFF8000 000038 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.135804] ACPI: APIC 0x000000006EFF6000 0018BE (v05 DELL   PE_SC3   00000002 DELL 00000001)
[    0.144298] ACPI: MCFG 0x000000006EFF5000 00003C (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.152791] ACPI: WSMT 0x000000006EFF4000 000028 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.161285] ACPI: SSDT 0x000000006EFD9000 000629 (v02 DELL   xhc_port 00000001 INTL 20210331)
[    0.169777] ACPI: SSDT 0x000000006EFD8000 000D6E (v02 AMD    CPMRAS   00000001 INTL 20210331)
[    0.178271] ACPI: EINJ 0x000000006EFD7000 000170 (v01 AMD    PE_SC3   00000001 AMD  00000001)
[    0.186763] ACPI: PCCT 0x000000006EFD6000 00006E (v02 DELL   AmdTable 00000001 AMD  00000001)
[    0.195257] ACPI: SSDT 0x000000006EFC7000 00E849 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.203750] ACPI: SRAT 0x000000006EFC6000 000CD0 (v03 DELL   PE_SC3   00000001 AMD  00000001)
[    0.212243] ACPI: MSCT 0x000000006EFC5000 00004E (v01 DELL   PE_SC3   00000000 AMD  00000001)
[    0.220737] ACPI: SLIT 0x000000006EFC4000 000030 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.229229] ACPI: CRAT 0x000000006EFBC000 0072F8 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.237723] ACPI: CDIT 0x000000006EFBB000 00002C (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.246233] ACPI: IVRS 0x000000006EFBA000 0001F0 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.254727] ACPI: SPCR 0x000000006EFB9000 000050 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.263220] ACPI: SLIC 0x000000006EFB8000 000176 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.271714] ACPI: SSDT 0x000000006EFFD000 000D66 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.280206] ACPI: SSDT 0x000000006EFB5000 00193C (v02 AMD    CPMCMN   00000001 INTL 20210331)
[    0.288700] ACPI: Reserving FACP table memory at [mem 0x6eff9000-0x6eff9113]
[    0.295718] ACPI: Reserving DSDT table memory at [mem 0x6efda000-0x6eff3527]
[    0.302738] ACPI: Reserving FACS table memory at [mem 0x6edb9000-0x6edb903f]
[    0.309759] ACPI: Reserving BERT table memory at [mem 0x6effc000-0x6effc02f]
[    0.316779] ACPI: Reserving ERST table memory at [mem 0x6effb000-0x6effb22f]
[    0.323799] ACPI: Reserving HEST table memory at [mem 0x6effa000-0x6effa7f3]
[    0.330818] ACPI: Reserving HPET table memory at [mem 0x6eff8000-0x6eff8037]
[    0.337838] ACPI: Reserving APIC table memory at [mem 0x6eff6000-0x6eff78bd]
[    0.344858] ACPI: Reserving MCFG table memory at [mem 0x6eff5000-0x6eff503b]
[    0.351877] ACPI: Reserving WSMT table memory at [mem 0x6eff4000-0x6eff4027]
[    0.358897] ACPI: Reserving SSDT table memory at [mem 0x6efd9000-0x6efd9628]
[    0.365918] ACPI: Reserving SSDT table memory at [mem 0x6efd8000-0x6efd8d6d]
[    0.372938] ACPI: Reserving EINJ table memory at [mem 0x6efd7000-0x6efd716f]
[    0.379957] ACPI: Reserving PCCT table memory at [mem 0x6efd6000-0x6efd606d]
[    0.386978] ACPI: Reserving SSDT table memory at [mem 0x6efc7000-0x6efd5848]
[    0.393998] ACPI: Reserving SRAT table memory at [mem 0x6efc6000-0x6efc6ccf]
[    0.401018] ACPI: Reserving MSCT table memory at [mem 0x6efc5000-0x6efc504d]
[    0.408037] ACPI: Reserving SLIT table memory at [mem 0x6efc4000-0x6efc402f]
[    0.415058] ACPI: Reserving CRAT table memory at [mem 0x6efbc000-0x6efc32f7]
[    0.422076] ACPI: Reserving CDIT table memory at [mem 0x6efbb000-0x6efbb02b]
[    0.429097] ACPI: Reserving IVRS table memory at [mem 0x6efba000-0x6efba1ef]
[    0.436116] ACPI: Reserving SPCR table memory at [mem 0x6efb9000-0x6efb904f]
[    0.443138] ACPI: Reserving SLIC table memory at [mem 0x6efb8000-0x6efb8175]
[    0.450156] ACPI: Reserving SSDT table memory at [mem 0x6effd000-0x6effdd65]
[    0.457203] ACPI: Reserving SSDT table memory at [mem 0x6efb5000-0x6efb693b]
[    0.464296] APIC: Switched APIC routing to: cluster x2apic
[    0.469698] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.475662] ACPI: SRAT: Node 0 PXM 0 [mem 0x000c0000-0x7fffffff]
[    0.481643] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.487882] ACPI: SRAT: Node 1 PXM 1 [mem 0x2080000000-0x407fffffff]
[    0.494214] NUMA: Node 0 [mem 0x00001000-0x0009ffff] + [mem 0x000c0000-0x7fffffff] -> [mem 0x00001000-0x7fffffff]
[    0.504435] NUMA: Node 0 [mem 0x00001000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00001000-0x207fffffff]
[    0.515102] NODE_DATA(0) allocated [mem 0x207fcd59c0-0x207fcfffff]
[    0.521257] NODE_DATA(1) allocated [mem 0x407f1d49c0-0x407f1fefff]
[    0.527541] cannot allocate crashkernel low memory (size:0x10800000).
[    0.534075] Zone ranges:
[    0.536432]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.542585]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.548738]   Normal   [mem 0x0000000100000000-0x000000407f1fffff]
[    0.554901]   Device   empty
[    0.557761] Movable zone start for each node
[    0.562009] Early memory node ranges
[    0.565561]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.571801]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.578040]   node   0: [mem 0x0000000000100000-0x0000000015dfffff]
[    0.584280]   node   0: [mem 0x0000000056700000-0x00000000567fbfff]
[    0.590521]   node   0: [mem 0x00000000567fd000-0x000000005a142fff]
[    0.596759]   node   0: [mem 0x000000005a343000-0x0000000067acefff]
[    0.603000]   node   0: [mem 0x000000006efff000-0x000000006effffff]
[    0.609240]   node   0: [mem 0x000000006f00b000-0x000000006fffffff]
[    0.615480]   node   0: [mem 0x0000000100000000-0x000000207fcfffff]
[    0.621730]   node   1: [mem 0x0000002080000000-0x000000407f1fffff]
[    0.627971] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fcfffff]
[    0.634982] Initmem setup node 1 [mem 0x0000002080000000-0x000000407f1fffff]
[    0.642001] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.647805] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.653624] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.659857] On node 0, zone DMA32: 35072 pages in unavailable ranges
[    0.666100] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.672195] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.678285] On node 0, zone DMA32: 30000 pages in unavailable ranges
[    0.684529] On node 0, zone DMA32: 11 pages in unavailable ranges
[    0.910163] On node 1, zone Normal: 768 pages in unavailable ranges
[    0.916267] On node 1, zone Normal: 3584 pages in unavailable ranges
[    0.922723] ACPI: PM-Timer IO Port: 0x408
[    0.926595] ACPI: X2APIC_NMI (uid[0xffffffff] high edge lint[0x1])
[    0.932720] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.938627] IOAPIC[0]: apic_id 240, version 33, address 0xfec00000, GSI 0-23
[    0.945637] IOAPIC[1]: apic_id 241, version 33, address 0xe0100000, GSI 120-151
[    0.952916] IOAPIC[2]: apic_id 242, version 33, address 0xc5100000, GSI 88-119
[    0.960110] IOAPIC[3]: apic_id 243, version 33, address 0xaa100000, GSI 56-87
[    0.967215] IOAPIC[4]: apic_id 244, version 33, address 0xfd100000, GSI 24-55
[    0.974321] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.980645] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.987153] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.993559] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.998674] ACPI: SPCR: console: uart,io,0x2f8,115200
[    1.003703] CPU topo: Max. logical packages:   1
[    1.008291] CPU topo: Max. logical dies:       1
[    1.012885] CPU topo: Max. dies per package:   1
[    1.017481] CPU topo: Max. threads per core:   2
[    1.022090] CPU topo: Num. cores per package:    64
[    1.026942] CPU topo: Num. threads per package: 128
[    1.031794] CPU topo: Allowing 128 present CPUs plus 0 hotplug CPUs
[    1.038060] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    1.045576] PM: hibernation: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    1.053116] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    1.060655] PM: hibernation: Registered nosave memory: [mem 0x15e00000-0x567fffff]
[    1.068196] PM: hibernation: Registered nosave memory: [mem 0x5a143000-0x5a342fff]
[    1.075735] PM: hibernation: Registered nosave memory: [mem 0x67acf000-0x6effefff]
[    1.083276] PM: hibernation: Registered nosave memory: [mem 0x6f000000-0x6f00afff]
[    1.090815] PM: hibernation: Registered nosave memory: [mem 0x70000000-0xffffffff]
[    1.098355] PM: hibernation: Registered nosave memory: [mem 0x207fd00000-0x207fffffff]
[    1.106241] [mem 0x56800000-0xffffffff] available for PCI devices
[    1.112308] Booting paravirtualized kernel on bare hardware
[    1.117855] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    1.128292] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:128 nr_cpu_ids:128 nr_node_ids:2
[    1.139162] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[    1.145637] Kernel command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    1.174965] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e biosdevname=0 mem_encrypt=off", will be passed to user space.
[    1.191814] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    1.198730] printk: log_buf_len total cpu_extra contributions: 520192 bytes
[    1.205663] printk: log_buf_len min size: 262144 bytes
[    1.211113] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[    1.218498] printk: early log buf free: 246352(93%)
[    1.224845] software IO TLB: area num 128.
[    1.228764] software IO TLB: swiotlb_memblock_alloc: Failed to allocate 268435456 bytes tlb structure
[    1.244234] software IO TLB: SWIOTLB bounce buffer size adjusted 131072 -> 65536 slabs
[    1.250342] Fallback order for Node 0: 0 1 
[    1.250347] Fallback order for Node 1: 1 0 
[    1.250360] Built 2 zonelists, mobility grouping on.  Total pages: 66743906
[    1.273348] Policy zone: Normal
[    1.276477] mem auto-init: stack:off, heap alloc:on, heap free:off
[    1.694948] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=128, Nodes=2
Poking KASLR using RDRAND RDTSC...
[    1.715570] ftrace: allocating 53763 entries in 212 pages
[    1.720785] ftrace: allocated 212 pages with 4 groups
[    1.726728] Dynamic Preempt: voluntary
[    1.730686] rcu: Preemptible hierarchical RCU implementation.
[    1.736247] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=128.
[    1.743180] 	Trampoline variant of Tasks RCU enabled.
[    1.748207] 	Rude variant of Tasks RCU enabled.
[    1.752731] 	Tracing variant of Tasks RCU enabled.
[    1.757497] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.765037] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=128
[    1.771925] RCU Tasks: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.780726] RCU Tasks Rude: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.790001] RCU Tasks Trace: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.802874] NR_IRQS: 524544, nr_irqs: 3624, preallocated irqs: 16
[    1.809065] rcu: srcu_init: Setting srcu_struct sizes to big.
[    1.814809] Console: colour dummy device 80x25
[    1.819091] printk: legacy console [ttyS0] enabled
[    1.819091] printk: legacy console [ttyS0] enabled
[    1.828624] printk: legacy bootconsole [earlyser0] disabled
[    1.828624] printk: legacy bootconsole [earlyser0] disabled
[    1.839824] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    1.851090] ACPI: Core revision 20250404
[    1.855244] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    1.864382] APIC: Switch to symmetric I/O mode setup
[    1.869806] AMD-Vi: Using global IVHD EFR:0x841f77e022094ace, EFR2:0x0
[    1.878747] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    1.904385] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x398c83ce231, max_idle_ns: 881590625107 ns
[    1.914897] Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.45 BogoMIPS (lpj=7984908)
[    1.918909] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    1.923009] LVT offset 2 assigned for vector 0xf4
[    1.926929] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    1.930895] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    1.934897] process: using mwait in idle threads
[    1.938900] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    1.942895] Spectre V2 : Mitigation: Retpolines
[    1.946895] Spectre V2 : User space: Mitigation: STIBP always-on protection
[    1.950895] Speculative Return Stack Overflow: Mitigation: Safe RET
[    1.954895] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.958895] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
[    1.962895] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    1.966896] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    1.970900] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.974895] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.978895] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.982895] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    1.986895] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    1.990896] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    1.994895] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    1.998895] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    2.002895] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[    2.041422] Freeing SMP alternatives memory: 48K
[    2.042897] pid_max: default: 131072 minimum: 1024
[    2.054983] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm
[    2.058948] Yama: becoming mindful.
[    2.063023] AppArmor: AppArmor initialized
[    2.076211] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    2.084513] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    2.087036] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.091002] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.204290] smpboot: CPU0: AMD EPYC 7713 64-Core Processor (family: 0x19, model: 0x1, stepping: 0x1)
[    2.207253] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    2.210897] ... version:                0
[    2.214896] ... bit width:              48
[    2.218897] ... generic registers:      6
[    2.222896] ... value mask:             0000ffffffffffff
[    2.226896] ... max period:             00007fffffffffff
[    2.230896] ... fixed-purpose events:   0
[    2.234896] ... event mask:             000000000000003f
[    2.239328] signal: max sigframe size: 3376
[    2.242958] rcu: Hierarchical SRCU implementation.
[    2.246897] rcu: 	Max phase no-delay instances is 1000.
[    2.250952] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
[    2.263259] MCE: In-kernel MCE decoding enabled.
[    2.266944] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    2.275859] smp: Bringing up secondary CPUs ...
[    2.279041] smpboot: x86: Booting SMP configuration:
[    2.282898] .... node  #0, CPUs:          #1   #2   #3   #4   #5   #6   #7   #8   #9  #10  #11  #12  #13  #14  #15  #16  #17  #18  #19  #20  #21  #22  #23  #24  #25  #26  #27  #28  #29  #30  #31
[    2.294898] .... node  #1, CPUs:    #32  #33  #34  #35  #36  #37  #38  #39  #40  #41  #42  #43  #44  #45  #46  #47  #48  #49  #50  #51  #52  #53  #54  #55  #56  #57  #58  #59  #60  #61  #62  #63
[    2.446898] .... node  #0, CPUs:    #64  #65  #66  #67  #68  #69  #70  #71  #72  #73  #74  #75  #76  #77  #78  #79  #80  #81  #82  #83  #84  #85  #86  #87  #88  #89  #90  #91  #92  #93  #94  #95
[    2.454900] .... node  #1, CPUs:    #96  #97  #98  #99 #100 #101 #102 #103 #104 #105 #106 #107 #108 #109 #110 #111 #112 #113 #114 #115 #116 #117 #118 #119 #120 #121 #122 #123 #124 #125 #126 #127
[    2.463198] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[    2.615059] smp: Brought up 2 nodes, 128 CPUs
[    2.618901] smpboot: Total of 128 processors activated (511034.11 BogoMIPS)
[    2.629233] Memory: 262224972K/266975624K available (18401K kernel code, 3299K rwdata, 7944K rodata, 4760K init, 6092K bss, 4428304K reserved, 0K cma-reserved)
[    2.637124] devtmpfs: initialized
[    2.639002] x86/mm: Memory block size: 2048MB
[    2.653763] ACPI: PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    2.654899] ACPI: PM: Registering ACPI NVS region [mem 0x6dfcf000-0x6edfefff] (14876672 bytes)
[    2.663082] ACPI: PM: Registering ACPI NVS region [mem 0x6f000000-0x6f00afff] (45056 bytes)
[    2.667020] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    2.670959] posixtimers hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.675112] futex hash table entries: 16384 (1048576 bytes on 2 NUMA nodes, total 2048 KiB, linear).
[    2.679130] pinctrl core: initialized pinctrl subsystem
[    2.683046] PM: RTC time: 13:27:58, date: 2025-06-17
[    2.687672] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    2.691481] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    2.695079] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    2.699077] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    2.702903] audit: initializing netlink subsys (disabled)
[    2.706924] audit: type=2000 audit(1750166877.828:1): state=initialized audit_enabled=0 res=1
[    2.707098] thermal_sys: Registered thermal governor 'fair_share'
[    2.710898] thermal_sys: Registered thermal governor 'bang_bang'
[    2.714897] thermal_sys: Registered thermal governor 'step_wise'
[    2.718896] thermal_sys: Registered thermal governor 'user_space'
[    2.722916] cpuidle: using governor ladder
[    2.730907] cpuidle: using governor menu
[    2.734943] Detected 1 PCC Subspaces
[    2.738898] Registering PCC driver as Mailbox controller
[    2.743068] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    2.746899] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    2.751078] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    2.754908] PCI: Using configuration type 1 for base access
[    2.758908] PCI: Dell System detected, enabling pci=bfsort.
[    2.766967] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    2.771119] HugeTLB: allocation took 0ms with hugepage_allocation_threads=32
[    2.774921] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    2.778897] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    2.782897] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    2.786896] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    2.795506] ACPI: Added _OSI(Module Device)
[    2.798897] ACPI: Added _OSI(Processor Device)
[    2.802897] ACPI: Added _OSI(Processor Aggregator Device)
[    2.848121] ACPI: 6 ACPI AML tables successfully acquired and loaded
[    2.864073] ACPI: Interpreter enabled
[    2.866909] ACPI: PM: (supports S0 S5)
[    2.870896] ACPI: Using IOAPIC for interrupt routing
[    2.875511] HEST: Table parsing has been initialized.
[    2.879297] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    2.882900] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.886896] PCI: Ignoring E820 reservations for host bridge windows
[    2.895566] ACPI: Enabled 1 GPEs in block 00 to 1F
[    2.937608] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    2.938976] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    2.942975] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    2.946974] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    2.950975] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    2.954975] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    2.958974] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    2.962974] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    2.967398] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-3f])
[    2.970900] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.975061] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER DPC]
[    2.979212] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    2.982897] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.990932] PCI host bridge to bus 0000:00
[    2.994900] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    2.998896] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    3.002897] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000fffff window]
[    3.006896] pci_bus 0000:00: root bus resource [io  0x0d00-0x3fff window]
[    3.010896] pci_bus 0000:00: root bus resource [mem 0xe1000000-0xfebfffff window]
[    3.014898] pci_bus 0000:00: root bus resource [mem 0x63dc0000000-0x7fcffffffff window]
[    3.018897] pci_bus 0000:00: root bus resource [bus 00-3f]
[    3.022911] pci 0000:00:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.027050] pci 0000:00:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.031006] pci 0000:00:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.034989] pci 0000:00:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.038988] pci 0000:00:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.042990] pci 0000:00:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.046912] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.050900] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    3.054898] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    3.062950] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    3.067905] pci 0000:00:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.070991] pci 0000:00:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.074992] pci 0000:00:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.078991] pci 0000:00:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.082912] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.086901] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    3.090909] pci 0000:00:07.1: enabling Extended Tags
[    3.094944] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    3.099053] pci 0000:00:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.102990] pci 0000:00:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.106912] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.110901] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    3.114908] pci 0000:00:08.1: enabling Extended Tags
[    3.118946] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    3.123091] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
[    3.127012] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
[    3.131068] pci 0000:00:18.0: [1022:1650] type 00 class 0x060000 conventional PCI endpoint
[    3.135005] pci 0000:00:18.1: [1022:1651] type 00 class 0x060000 conventional PCI endpoint
[    3.138962] pci 0000:00:18.2: [1022:1652] type 00 class 0x060000 conventional PCI endpoint
[    3.142962] pci 0000:00:18.3: [1022:1653] type 00 class 0x060000 conventional PCI endpoint
[    3.146963] pci 0000:00:18.4: [1022:1654] type 00 class 0x060000 conventional PCI endpoint
[    3.150961] pci 0000:00:18.5: [1022:1655] type 00 class 0x060000 conventional PCI endpoint
[    3.154964] pci 0000:00:18.6: [1022:1656] type 00 class 0x060000 conventional PCI endpoint
[    3.158961] pci 0000:00:18.7: [1022:1657] type 00 class 0x060000 conventional PCI endpoint
[    3.163031] pci 0000:01:00.0: [1000:0097] type 00 class 0x010700 PCIe Endpoint
[    3.166927] pci 0000:01:00.0: BAR 0 [io  0x1000-0x10ff]
[    3.170898] pci 0000:01:00.0: BAR 1 [mem 0xf7400000-0xf740ffff 64bit]
[    3.174898] pci 0000:01:00.0: BAR 3 [mem 0xf7300000-0xf73fffff 64bit]
[    3.178898] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]
[    3.182901] pci 0000:01:00.0: enabling Extended Tags
[    3.186982] pci 0000:01:00.0: supports D1 D2
[    3.190937] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[    3.194898] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x000fffff 64bit]: contains BAR 0 for 16 VFs
[    3.198898] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x000fffff 64bit]
[    3.202896] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x00ffffff 64bit]: contains BAR 2 for 16 VFs
[    3.207048] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.210985] pci 0000:02:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.214930] pci 0000:02:00.0: enabling Extended Tags
[    3.219058] pci 0000:02:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.222924] pci 0000:02:00.2: BAR 2 [mem 0xf7200000-0xf727ffff]
[    3.226898] pci 0000:02:00.2: BAR 5 [mem 0xf7280000-0xf7281fff]
[    3.230901] pci 0000:02:00.2: enabling Extended Tags
[    3.235098] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.239033] pci 0000:03:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.242933] pci 0000:03:00.0: enabling Extended Tags
[    3.247115] pci 0000:03:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.250926] pci 0000:03:00.2: BAR 2 [mem 0xf7100000-0xf717ffff]
[    3.254900] pci 0000:03:00.2: BAR 5 [mem 0xf7180000-0xf7181fff]
[    3.258902] pci 0000:03:00.2: enabling Extended Tags
[    3.263090] pci 0000:03:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.266925] pci 0000:03:00.3: BAR 0 [mem 0xf7000000-0xf70fffff 64bit]
[    3.270905] pci 0000:03:00.3: enabling Extended Tags
[    3.274947] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
[    3.279079] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.287328] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 40-7f])
[    3.290899] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.299060] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.306941] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.310896] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.315831] PCI host bridge to bus 0000:40
[    3.318900] pci_bus 0000:40: root bus resource [io  0x4000-0x6fff window]
[    3.322896] pci_bus 0000:40: root bus resource [mem 0x90000000-0xaaffffff window]
[    3.326896] pci_bus 0000:40: root bus resource [mem 0x47e80000000-0x63dbfffffff window]
[    3.330896] pci_bus 0000:40: root bus resource [bus 40-7f]
[    3.334906] pci 0000:40:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.338995] pci 0000:40:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.342998] pci 0000:40:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.346981] pci 0000:40:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.350982] pci 0000:40:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.354990] pci 0000:40:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.358914] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.362901] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    3.366987] pci 0000:40:03.1: PME# supported from D0 D3hot D3cold
[    3.383182] pci 0000:40:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.386921] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.390904] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    3.395018] pci 0000:40:03.2: PME# supported from D0 D3hot D3cold
[    3.412134] pci 0000:40:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.418915] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.422903] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    3.430989] pci 0000:40:03.3: PME# supported from D0 D3hot D3cold
[    3.449859] pci 0000:40:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.454920] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.458904] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    3.466973] pci 0000:40:03.4: PME# supported from D0 D3hot D3cold
[    3.484463] pci 0000:40:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.486994] pci 0000:40:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.491005] pci 0000:40:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.494992] pci 0000:40:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.498916] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.502903] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    3.506910] pci 0000:40:07.1: enabling Extended Tags
[    3.510938] pci 0000:40:07.1: PME# supported from D0 D3hot D3cold
[    3.519055] pci 0000:40:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.526991] pci 0000:40:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.534913] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.538901] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    3.546908] pci 0000:40:08.1: enabling Extended Tags
[    3.550945] pci 0000:40:08.1: PME# supported from D0 D3hot D3cold
[    3.555148] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.562980] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.566978] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.570979] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.574988] pci 0000:45:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.582929] pci 0000:45:00.0: enabling Extended Tags
[    3.591056] pci 0000:45:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.594924] pci 0000:45:00.2: BAR 2 [mem 0xa5300000-0xa537ffff]
[    3.602898] pci 0000:45:00.2: BAR 5 [mem 0xa5380000-0xa5381fff]
[    3.606901] pci 0000:45:00.2: enabling Extended Tags
[    3.614934] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.619029] pci 0000:46:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.626933] pci 0000:46:00.0: enabling Extended Tags
[    3.631104] pci 0000:46:00.1: [1022:1486] type 00 class 0x108000 PCIe Endpoint
[    3.638925] pci 0000:46:00.1: BAR 2 [mem 0xa5100000-0xa51fffff]
[    3.642899] pci 0000:46:00.1: BAR 5 [mem 0xa5282000-0xa5283fff]
[    3.650902] pci 0000:46:00.1: enabling Extended Tags
[    3.655091] pci 0000:46:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.662926] pci 0000:46:00.2: BAR 2 [mem 0xa5200000-0xa527ffff]
[    3.666899] pci 0000:46:00.2: BAR 5 [mem 0xa5280000-0xa5281fff]
[    3.674901] pci 0000:46:00.2: enabling Extended Tags
[    3.679094] pci 0000:46:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.686925] pci 0000:46:00.3: BAR 0 [mem 0xa5000000-0xa50fffff 64bit]
[    3.694904] pci 0000:46:00.3: enabling Extended Tags
[    3.698946] pci 0000:46:00.3: PME# supported from D0 D3hot D3cold
[    3.703087] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.711561] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 80-bf])
[    3.714901] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.727063] acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.735213] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.742897] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.751803] PCI host bridge to bus 0000:80
[    3.754900] pci_bus 0000:80: root bus resource [io  0x7000-0x9fff window]
[    3.762896] pci_bus 0000:80: root bus resource [mem 0xab000000-0xc5ffffff window]
[    3.770896] pci_bus 0000:80: root bus resource [mem 0x2bf40000000-0x47e7fffffff window]
[    3.778898] pci_bus 0000:80: root bus resource [bus 80-bf]
[    3.782906] pci 0000:80:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.790998] pci 0000:80:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.799003] pci 0000:80:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.806992] pci 0000:80:01.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.814914] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.818901] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    3.826988] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    3.847567] pci 0000:80:01.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.854905] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.858903] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    3.866969] pci 0000:80:01.2: PME# supported from D0 D3hot D3cold
[    3.886532] pci 0000:80:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.890897] pci 0000:80:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.895069] pci 0000:80:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.898986] pci 0000:80:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.902997] pci 0000:80:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.906988] pci 0000:80:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.910912] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.914901] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    3.918908] pci 0000:80:07.1: enabling Extended Tags
[    3.922945] pci 0000:80:07.1: PME# supported from D0 D3hot D3cold
[    3.927054] pci 0000:80:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.930990] pci 0000:80:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.934912] pci 0000:80:08.1: PCI bridge to [bus 84]
[    3.938901] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    3.942908] pci 0000:80:08.1: enabling Extended Tags
[    3.946946] pci 0000:80:08.1: PME# supported from D0 D3hot D3cold
[    3.951062] pci 0000:80:08.2: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.954913] pci 0000:80:08.2: PCI bridge to [bus 85]
[    3.958901] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    3.962908] pci 0000:80:08.2: enabling Extended Tags
[    3.966945] pci 0000:80:08.2: PME# supported from D0 D3hot D3cold
[    3.971141] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.974982] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.978985] pci 0000:83:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.982930] pci 0000:83:00.0: enabling Extended Tags
[    3.987059] pci 0000:83:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.990925] pci 0000:83:00.2: BAR 2 [mem 0xbfa00000-0xbfa7ffff]
[    3.994899] pci 0000:83:00.2: BAR 5 [mem 0xbfa80000-0xbfa81fff]
[    3.998901] pci 0000:83:00.2: enabling Extended Tags
[    4.003099] pci 0000:80:07.1: PCI bridge to [bus 83]
[    4.007029] pci 0000:84:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.010932] pci 0000:84:00.0: enabling Extended Tags
[    4.015108] pci 0000:84:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.018926] pci 0000:84:00.2: BAR 2 [mem 0xbf900000-0xbf97ffff]
[    4.022899] pci 0000:84:00.2: BAR 5 [mem 0xbf980000-0xbf981fff]
[    4.026902] pci 0000:84:00.2: enabling Extended Tags
[    4.031106] pci 0000:80:08.1: PCI bridge to [bus 84]
[    4.035029] pci 0000:85:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[    4.038928] pci 0000:85:00.0: BAR 5 [mem 0xbf800000-0xbf8007ff]
[    4.042902] pci 0000:85:00.0: enabling Extended Tags
[    4.046960] pci 0000:85:00.0: PME# supported from D3hot D3cold
[    4.051072] pci 0000:80:08.2: PCI bridge to [bus 85]
[    4.059472] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus c0-ff])
[    4.062899] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    4.067061] acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug AER DPC]
[    4.075100] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    4.078897] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
[    4.083920] PCI host bridge to bus 0000:c0
[    4.086900] pci_bus 0000:c0: root bus resource [io  0xa000-0xffff window]
[    4.090896] pci_bus 0000:c0: root bus resource [mem 0xc6000000-0xe0ffffff window]
[    4.094896] pci_bus 0000:c0: root bus resource [mem 0x10000000000-0x2bf3fffffff window]
[    4.098896] pci_bus 0000:c0: root bus resource [io  0x03b0-0x03df window]
[    4.102896] pci_bus 0000:c0: root bus resource [mem 0x000a0000-0x000bffff window]
[    4.106896] pci_bus 0000:c0: root bus resource [bus c0-ff]
[    4.110906] pci 0000:c0:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    4.114994] pci 0000:c0:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    4.119027] pci 0000:c0:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.122981] pci 0000:c0:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.126984] pci 0000:c0:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.130989] pci 0000:c0:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.134915] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.138901] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    4.142988] pci 0000:c0:03.1: PME# supported from D0 D3hot D3cold
[    4.163006] pci 0000:c0:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.166915] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.170906] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    4.175054] pci 0000:c0:03.2: PME# supported from D0 D3hot D3cold
[    4.193911] pci 0000:c0:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.194920] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.198902] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    4.203006] pci 0000:c0:03.3: PME# supported from D0 D3hot D3cold
[    4.220966] pci 0000:c0:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.222919] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.226903] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    4.231014] pci 0000:c0:03.4: PME# supported from D0 D3hot D3cold
[    4.252324] pci 0000:c0:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.255026] pci 0000:c0:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.258990] pci 0000:c0:05.1: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.262916] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.266908] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    4.270990] pci 0000:c0:05.1: PME# supported from D0 D3hot D3cold
[    4.275054] pci 0000:c0:05.2: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.278912] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.282901] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    4.286903] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.290941] pci 0000:c0:05.2: PME# supported from D0 D3hot D3cold
[    4.295040] pci 0000:c0:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.298988] pci 0000:c0:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.302911] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.306900] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    4.310907] pci 0000:c0:07.1: enabling Extended Tags
[    4.314945] pci 0000:c0:07.1: PME# supported from D0 D3hot D3cold
[    4.319048] pci 0000:c0:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.322987] pci 0000:c0:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.326912] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.330901] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    4.334908] pci 0000:c0:08.1: enabling Extended Tags
[    4.338944] pci 0000:c0:08.1: PME# supported from D0 D3hot D3cold
[    4.343137] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.346981] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.350978] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.354978] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.358998] pci 0000:c1:00.0: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.362942] pci 0000:c1:00.0: BAR 0 [mem 0xc7030000-0xc703ffff 64bit pref]
[    4.366899] pci 0000:c1:00.0: BAR 2 [mem 0xc7040000-0xc704ffff 64bit pref]
[    4.370899] pci 0000:c1:00.0: BAR 4 [mem 0xc7050000-0xc705ffff 64bit pref]
[    4.374899] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.378984] pci 0000:c1:00.0: PME# supported from D0 D3hot D3cold
[    4.382951] pci 0000:c1:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:c0:05.1 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
[    4.391146] pci 0000:c1:00.1: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.394942] pci 0000:c1:00.1: BAR 0 [mem 0xc7000000-0xc700ffff 64bit pref]
[    4.398899] pci 0000:c1:00.1: BAR 2 [mem 0xc7010000-0xc701ffff 64bit pref]
[    4.402899] pci 0000:c1:00.1: BAR 4 [mem 0xc7020000-0xc702ffff 64bit pref]
[    4.406898] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.410985] pci 0000:c1:00.1: PME# supported from D0 D3hot D3cold
[    4.422923] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.426977] pci 0000:c2:00.0: [1556:be00] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    4.430923] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.434904] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    4.438906] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.450913] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.454933] pci_bus 0000:c3: extended config space not accessible
[    4.458926] pci 0000:c3:00.0: [102b:0536] type 00 class 0x030000 conventional PCI endpoint
[    4.462943] pci 0000:c3:00.0: BAR 0 [mem 0xc6000000-0xc6ffffff pref]
[    4.466898] pci 0000:c3:00.0: BAR 1 [mem 0xda808000-0xda80bfff]
[    4.470898] pci 0000:c3:00.0: BAR 2 [mem 0xda000000-0xda7fffff]
[    4.474916] pci 0000:c3:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    4.479022] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.482996] pci 0000:c8:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    4.486929] pci 0000:c8:00.0: enabling Extended Tags
[    4.491056] pci 0000:c8:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.494923] pci 0000:c8:00.2: BAR 2 [mem 0xdbb00000-0xdbb7ffff]
[    4.498898] pci 0000:c8:00.2: BAR 5 [mem 0xdbb80000-0xdbb81fff]
[    4.502901] pci 0000:c8:00.2: enabling Extended Tags
[    4.510980] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.515031] pci 0000:c9:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.518932] pci 0000:c9:00.0: enabling Extended Tags
[    4.523105] pci 0000:c9:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.526925] pci 0000:c9:00.2: BAR 2 [mem 0xdba00000-0xdba7ffff]
[    4.530899] pci 0000:c9:00.2: BAR 5 [mem 0xdba80000-0xdba81fff]
[    4.534901] pci 0000:c9:00.2: enabling Extended Tags
[    4.539099] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.549961] iommu: Default domain type: Translated
[    4.550898] iommu: DMA domain TLB invalidation policy: lazy mode
[    4.559194] SCSI subsystem initialized
[    4.562939] ACPI: bus type USB registered
[    4.566921] usbcore: registered new interface driver usbfs
[    4.570906] usbcore: registered new interface driver hub
[    4.574931] usbcore: registered new device driver usb
[    4.578928] pps_core: LinuxPPS API ver. 1 registered
[    4.582896] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux•it>
[    4.586903] PTP clock support registered
[    4.590977] EDAC MC: Ver: 3.0.0
[    4.595112] efivars: Registered efivars operations
[    4.603347] NetLabel: Initializing
[    4.606750] NetLabel:  domain hash size = 128
[    4.606898] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    4.610919] NetLabel:  unlabeled traffic allowed by default
[    4.614930] PCI: Using ACPI for IRQ routing
[    4.627069] pci 0000:c3:00.0: vgaarb: setting as boot VGA device
[    4.630895] pci 0000:c3:00.0: vgaarb: bridge control possible
[    4.630895] pci 0000:c3:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    4.630897] vgaarb: loaded
[    4.633610] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    4.634897] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    4.643091] clocksource: Switched to clocksource tsc-early
[    4.648708] VFS: Disk quotas dquot_6.6.0
[    4.652661] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.659786] AppArmor: AppArmor Filesystem Enabled
[    4.664511] pnp: PnP ACPI init
[    4.667808] system 00:00: [mem 0x80000000-0x8fffffff] has been reserved
[    4.674515] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[    4.682733] pnp: PnP ACPI: found 5 devices
[    4.693850] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    4.702822] NET: Registered PF_INET protocol family
[    4.707833] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.719567] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.728765] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    4.736802] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.746297] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.754673] TCP: Hash tables configured (established 524288 bind 65536)
[    4.761648] UDP hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.770074] UDP-Lite hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.778914] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    4.784581] NET: Registered PF_XDP protocol family
[    4.789378] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.799195] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.809014] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.818834] pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
[    4.824506] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: can't assign; no space
[    4.832251] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: failed to assign
[    4.839469] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: can't assign; no space
[    4.847726] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: failed to assign
[    4.855468] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: can't assign; no space
[    4.863726] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: failed to assign
[    4.871468] pci 0000:00:03.2: PCI bridge to [bus 01]
[    4.876432] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    4.882525] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    4.889316] pci 0000:00:07.1: PCI bridge to [bus 02]
[    4.894286] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    4.901073] pci 0000:00:08.1: PCI bridge to [bus 03]
[    4.906036] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    4.912827] PCI: No. 2 try to assign unassigned res
[    4.917713] pci 0000:00:03.2: resource 14 [mem 0xf7300000-0xf74fffff] released
[    4.924930] pci 0000:00:03.2: PCI bridge to [bus 01]
[    4.929900] pci 0000:00:03.2: bridge window [mem 0x00100000-0x002fffff] to [bus 01] add_size 1200000 add_align 100000
[    4.940507] pci 0000:00:03.2: bridge window [mem 0xe1000000-0xe23fffff]: assigned
[    4.947992] pci 0000:01:00.0: BAR 3 [mem 0xe1000000-0xe10fffff 64bit]: assigned
[    4.955305] pci 0000:01:00.0: ROM [mem 0xe1100000-0xe11fffff pref]: assigned
[    4.962350] pci 0000:01:00.0: VF BAR 2 [mem 0xe1200000-0xe21fffff 64bit]: assigned
[    4.969920] pci 0000:01:00.0: BAR 1 [mem 0xe2200000-0xe220ffff 64bit]: assigned
[    4.977227] pci 0000:01:00.0: VF BAR 0 [mem 0xe2210000-0xe230ffff 64bit]: assigned
[    4.984802] pci 0000:00:03.2: PCI bridge to [bus 01]
[    4.989774] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    4.995867] pci 0000:00:03.2:   bridge window [mem 0xe1000000-0xe23fffff]
[    5.002655] pci 0000:00:07.1: PCI bridge to [bus 02]
[    5.007626] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    5.014414] pci 0000:00:08.1: PCI bridge to [bus 03]
[    5.019380] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.026167] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    5.032388] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    5.038566] pci_bus 0000:00: resource 6 [mem 0x000c0000-0x000fffff window]
[    5.045437] pci_bus 0000:00: resource 7 [io  0x0d00-0x3fff window]
[    5.051617] pci_bus 0000:00: resource 8 [mem 0xe1000000-0xfebfffff window]
[    5.058488] pci_bus 0000:00: resource 9 [mem 0x63dc0000000-0x7fcffffffff window]
[    5.065884] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[    5.071455] pci_bus 0000:01: resource 1 [mem 0xe1000000-0xe23fffff]
[    5.077720] pci_bus 0000:02: resource 1 [mem 0xf7200000-0xf72fffff]
[    5.083986] pci_bus 0000:03: resource 1 [mem 0xf7000000-0xf71fffff]
[    5.090327] pci 0000:40:03.1: bridge window [io  0x1000-0x0fff] to [bus 41] add_size 1000
[    5.098502] pci 0000:40:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 41] add_size 200000 add_align 100000
[    5.109969] pci 0000:40:03.2: bridge window [io  0x1000-0x0fff] to [bus 42] add_size 1000
[    5.118142] pci 0000:40:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 42] add_size 200000 add_align 100000
[    5.129606] pci 0000:40:03.3: bridge window [io  0x1000-0x0fff] to [bus 43] add_size 1000
[    5.137806] pci 0000:40:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 43] add_size 200000 add_align 100000
[    5.149272] pci 0000:40:03.4: bridge window [io  0x1000-0x0fff] to [bus 44] add_size 1000
[    5.157444] pci 0000:40:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 44] add_size 200000 add_align 100000
[    5.168917] pci 0000:40:03.1: bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]: assigned
[    5.177871] pci 0000:40:03.2: bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]: assigned
[    5.186824] pci 0000:40:03.3: bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]: assigned
[    5.195775] pci 0000:40:03.4: bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]: assigned
[    5.204730] pci 0000:40:03.1: bridge window [io  0x4000-0x4fff]: assigned
[    5.211515] pci 0000:40:03.2: bridge window [io  0x5000-0x5fff]: assigned
[    5.218299] pci 0000:40:03.3: bridge window [io  0x6000-0x6fff]: assigned
[    5.225086] pci 0000:40:03.4: bridge window [io  size 0x1000]: can't assign; no space
[    5.232912] pci 0000:40:03.4: bridge window [io  size 0x1000]: failed to assign
[    5.240219] pci 0000:40:03.4: bridge window [io  0x4000-0x4fff]: assigned
[    5.247006] pci 0000:40:03.3: bridge window [io  0x5000-0x5fff]: assigned
[    5.253790] pci 0000:40:03.2: bridge window [io  0x6000-0x6fff]: assigned
[    5.260577] pci 0000:40:03.1: bridge window [io  size 0x1000]: can't assign; no space
[    5.268403] pci 0000:40:03.1: bridge window [io  size 0x1000]: failed to assign
[    5.275709] pci 0000:40:03.1: PCI bridge to [bus 41]
[    5.280675] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    5.287460] pci 0000:40:03.1:   bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.295724] pci 0000:40:03.2: PCI bridge to [bus 42]
[    5.300695] pci 0000:40:03.2:   bridge window [io  0x6000-0x6fff]
[    5.306786] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    5.313574] pci 0000:40:03.2:   bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.321835] pci 0000:40:03.3: PCI bridge to [bus 43]
[    5.326807] pci 0000:40:03.3:   bridge window [io  0x5000-0x5fff]
[    5.332904] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    5.339694] pci 0000:40:03.3:   bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.347999] pci 0000:40:03.4: PCI bridge to [bus 44]
[    5.352966] pci 0000:40:03.4:   bridge window [io  0x4000-0x4fff]
[    5.359065] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    5.365851] pci 0000:40:03.4:   bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.374110] pci 0000:40:07.1: PCI bridge to [bus 45]
[    5.379074] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    5.385865] pci 0000:40:08.1: PCI bridge to [bus 46]
[    5.390836] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    5.397622] pci_bus 0000:40: Some PCI device resources are unassigned, try booting with pci=realloc
[    5.406661] pci_bus 0000:40: resource 4 [io  0x4000-0x6fff window]
[    5.412839] pci_bus 0000:40: resource 5 [mem 0x90000000-0xaaffffff window]
[    5.419711] pci_bus 0000:40: resource 6 [mem 0x47e80000000-0x63dbfffffff window]
[    5.427105] pci_bus 0000:41: resource 1 [mem 0xa4c00000-0xa4ffffff]
[    5.433369] pci_bus 0000:41: resource 2 [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.441108] pci_bus 0000:42: resource 0 [io  0x6000-0x6fff]
[    5.446680] pci_bus 0000:42: resource 1 [mem 0xa4800000-0xa4bfffff]
[    5.452947] pci_bus 0000:42: resource 2 [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.460687] pci_bus 0000:43: resource 0 [io  0x5000-0x5fff]
[    5.466258] pci_bus 0000:43: resource 1 [mem 0xa4400000-0xa47fffff]
[    5.472527] pci_bus 0000:43: resource 2 [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.480266] pci_bus 0000:44: resource 0 [io  0x4000-0x4fff]
[    5.485838] pci_bus 0000:44: resource 1 [mem 0xa4000000-0xa43fffff]
[    5.492101] pci_bus 0000:44: resource 2 [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.499841] pci_bus 0000:45: resource 1 [mem 0xa5300000-0xa53fffff]
[    5.506108] pci_bus 0000:46: resource 1 [mem 0xa5000000-0xa52fffff]
[    5.512438] pci 0000:80:01.1: bridge window [io  0x1000-0x0fff] to [bus 81] add_size 1000
[    5.520618] pci 0000:80:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 81] add_size 200000 add_align 100000
[    5.532081] pci 0000:80:01.2: bridge window [io  0x1000-0x0fff] to [bus 82] add_size 1000
[    5.540256] pci 0000:80:01.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 82] add_size 200000 add_align 100000
[    5.551725] pci 0000:80:01.1: bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]: assigned
[    5.560699] pci 0000:80:01.2: bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]: assigned
[    5.569654] pci 0000:80:01.1: bridge window [io  0x7000-0x7fff]: assigned
[    5.576438] pci 0000:80:01.2: bridge window [io  0x8000-0x8fff]: assigned
[    5.583224] pci 0000:80:01.1: PCI bridge to [bus 81]
[    5.588188] pci 0000:80:01.1:   bridge window [io  0x7000-0x7fff]
[    5.594284] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    5.601069] pci 0000:80:01.1:   bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.609329] pci 0000:80:01.2: PCI bridge to [bus 82]
[    5.614293] pci 0000:80:01.2:   bridge window [io  0x8000-0x8fff]
[    5.620387] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    5.627172] pci 0000:80:01.2:   bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.635435] pci 0000:80:07.1: PCI bridge to [bus 83]
[    5.640408] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    5.647193] pci 0000:80:08.1: PCI bridge to [bus 84]
[    5.652159] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    5.658945] pci 0000:80:08.2: PCI bridge to [bus 85]
[    5.663913] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    5.670707] pci_bus 0000:80: resource 4 [io  0x7000-0x9fff window]
[    5.676893] pci_bus 0000:80: resource 5 [mem 0xab000000-0xc5ffffff window]
[    5.683763] pci_bus 0000:80: resource 6 [mem 0x2bf40000000-0x47e7fffffff window]
[    5.691157] pci_bus 0000:81: resource 0 [io  0x7000-0x7fff]
[    5.696729] pci_bus 0000:81: resource 1 [mem 0xbf400000-0xbf7fffff]
[    5.702994] pci_bus 0000:81: resource 2 [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.710734] pci_bus 0000:82: resource 0 [io  0x8000-0x8fff]
[    5.716311] pci_bus 0000:82: resource 1 [mem 0xbf000000-0xbf3fffff]
[    5.722582] pci_bus 0000:82: resource 2 [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.730321] pci_bus 0000:83: resource 1 [mem 0xbfa00000-0xbfafffff]
[    5.736585] pci_bus 0000:84: resource 1 [mem 0xbf900000-0xbf9fffff]
[    5.742852] pci_bus 0000:85: resource 1 [mem 0xbf800000-0xbf8fffff]
[    5.749188] pci 0000:c0:03.1: bridge window [io  0x1000-0x0fff] to [bus c4] add_size 1000
[    5.757365] pci 0000:c0:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c4] add_size 200000 add_align 100000
[    5.768899] pci 0000:c0:03.2: bridge window [io  0x1000-0x0fff] to [bus c5] add_size 1000
[    5.777087] pci 0000:c0:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c5] add_size 200000 add_align 100000
[    5.788561] pci 0000:c0:03.3: bridge window [io  0x1000-0x0fff] to [bus c6] add_size 1000
[    5.796733] pci 0000:c0:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c6] add_size 200000 add_align 100000
[    5.808197] pci 0000:c0:03.4: bridge window [io  0x1000-0x0fff] to [bus c7] add_size 1000
[    5.816370] pci 0000:c0:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c7] add_size 200000 add_align 100000
[    5.827839] pci 0000:c0:05.1: bridge window [mem 0x00100000-0x000fffff] to [bus c1] add_size 100000 add_align 100000
[    5.838374] pci 0000:c0:03.1: bridge window [mem 0x10000000000-0x100001fffff 64bit pref]: assigned
[    5.847333] pci 0000:c0:03.2: bridge window [mem 0x10000200000-0x100003fffff 64bit pref]: assigned
[    5.856291] pci 0000:c0:03.3: bridge window [mem 0x10000400000-0x100005fffff 64bit pref]: assigned
[    5.865241] pci 0000:c0:03.4: bridge window [mem 0x10000600000-0x100007fffff 64bit pref]: assigned
[    5.874194] pci 0000:c0:05.1: bridge window [mem 0xc7100000-0xc71fffff]: assigned
[    5.881672] pci 0000:c0:03.1: bridge window [io  0xa000-0xafff]: assigned
[    5.888458] pci 0000:c0:03.2: bridge window [io  0xb000-0xbfff]: assigned
[    5.895247] pci 0000:c0:03.3: bridge window [io  0xc000-0xcfff]: assigned
[    5.902033] pci 0000:c0:03.4: bridge window [io  0xd000-0xdfff]: assigned
[    5.908818] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    5.913782] pci 0000:c0:03.1:   bridge window [io  0xa000-0xafff]
[    5.919876] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    5.926663] pci 0000:c0:03.1:   bridge window [mem 0x10000000000-0x100001fffff 64bit pref]
[    5.934922] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    5.939885] pci 0000:c0:03.2:   bridge window [io  0xb000-0xbfff]
[    5.945983] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    5.952776] pci 0000:c0:03.2:   bridge window [mem 0x10000200000-0x100003fffff 64bit pref]
[    5.961036] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    5.965998] pci 0000:c0:03.3:   bridge window [io  0xc000-0xcfff]
[    5.972093] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    5.978888] pci 0000:c0:03.3:   bridge window [mem 0x10000400000-0x100005fffff 64bit pref]
[    5.987148] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    5.992112] pci 0000:c0:03.4:   bridge window [io  0xd000-0xdfff]
[    5.998204] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    6.004991] pci 0000:c0:03.4:   bridge window [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.013251] pci 0000:c1:00.0: ROM [mem 0xc7100000-0xc713ffff pref]: assigned
[    6.020295] pci 0000:c1:00.1: ROM [mem 0xc7140000-0xc717ffff pref]: assigned
[    6.027341] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    6.032309] pci 0000:c0:05.1:   bridge window [mem 0xc7100000-0xc71fffff]
[    6.039093] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.046839] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    6.051810] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    6.058606] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.066353] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    6.071585] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    6.078370] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.086113] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    6.091087] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    6.097872] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    6.102836] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    6.109624] pci_bus 0000:c0: resource 4 [io  0xa000-0xffff window]
[    6.115799] pci_bus 0000:c0: resource 5 [mem 0xc6000000-0xe0ffffff window]
[    6.122673] pci_bus 0000:c0: resource 6 [mem 0x10000000000-0x2bf3fffffff window]
[    6.130067] pci_bus 0000:c0: resource 7 [io  0x03b0-0x03df window]
[    6.136250] pci_bus 0000:c0: resource 8 [mem 0x000a0000-0x000bffff window]
[    6.143126] pci_bus 0000:c4: resource 0 [io  0xa000-0xafff]
[    6.148699] pci_bus 0000:c4: resource 1 [mem 0xdb600000-0xdb9fffff]
[    6.154963] pci_bus 0000:c4: resource 2 [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.162703] pci_bus 0000:c5: resource 0 [io  0xb000-0xbfff]
[    6.168275] pci_bus 0000:c5: resource 1 [mem 0xdb200000-0xdb5fffff]
[    6.174544] pci_bus 0000:c5: resource 2 [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.182315] pci_bus 0000:c6: resource 0 [io  0xc000-0xcfff]
[    6.187889] pci_bus 0000:c6: resource 1 [mem 0xdae00000-0xdb1fffff]
[    6.194155] pci_bus 0000:c6: resource 2 [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.201894] pci_bus 0000:c7: resource 0 [io  0xd000-0xdfff]
[    6.207466] pci_bus 0000:c7: resource 1 [mem 0xdaa00000-0xdadfffff]
[    6.213734] pci_bus 0000:c7: resource 2 [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.221472] pci_bus 0000:c1: resource 1 [mem 0xc7100000-0xc71fffff]
[    6.227737] pci_bus 0000:c1: resource 2 [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.234958] pci_bus 0000:c2: resource 1 [mem 0xda000000-0xda8fffff]
[    6.241223] pci_bus 0000:c2: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.248441] pci_bus 0000:c3: resource 1 [mem 0xda000000-0xda8fffff]
[    6.254707] pci_bus 0000:c3: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.261926] pci_bus 0000:c8: resource 1 [mem 0xdbb00000-0xdbbfffff]
[    6.268193] pci_bus 0000:c9: resource 1 [mem 0xdba00000-0xdbafffff]
[    6.275162] PCI: CLS 64 bytes, default 64
[    6.279305] Trying to unpack rootfs image as initramfs...
[    6.341853] AMD-Vi: IOMMU SNP support enabled.
[    6.346497] pci 0000:c0:00.2: AMD-Vi: IOMMU performance counters supported
[    6.353540] pci 0000:c0:01.0: Adding to iommu group 0
[    6.358650] pci 0000:c0:02.0: Adding to iommu group 1
[    6.363856] pci 0000:c0:03.0: Adding to iommu group 2
[    6.368953] pci 0000:c0:03.1: Adding to iommu group 2
[    6.374048] pci 0000:c0:03.2: Adding to iommu group 2
[    6.379144] pci 0000:c0:03.3: Adding to iommu group 2
[    6.384251] pci 0000:c0:03.4: Adding to iommu group 2
[    6.389408] pci 0000:c0:04.0: Adding to iommu group 3
[    6.394564] pci 0000:c0:05.0: Adding to iommu group 4
[    6.399669] pci 0000:c0:05.1: Adding to iommu group 4
[    6.404775] pci 0000:c0:05.2: Adding to iommu group 4
[    6.409887] pci 0000:c0:07.0: Adding to iommu group 5
[    6.414976] pci 0000:c0:07.1: Adding to iommu group 6
[    6.420084] pci 0000:c0:08.0: Adding to iommu group 7
[    6.425168] pci 0000:c0:08.1: Adding to iommu group 8
[    6.430230] pci 0000:c1:00.0: Adding to iommu group 4
[    6.435289] pci 0000:c1:00.1: Adding to iommu group 4
[    6.440352] pci 0000:c2:00.0: Adding to iommu group 4
[    6.445416] pci 0000:c3:00.0: Adding to iommu group 4
[    6.450500] pci 0000:c8:00.0: Adding to iommu group 9
[    6.455587] pci 0000:c8:00.2: Adding to iommu group 10
[    6.460764] pci 0000:c9:00.0: Adding to iommu group 11
[    6.465937] pci 0000:c9:00.2: Adding to iommu group 12
[    6.477253] pci 0000:80:00.2: AMD-Vi: IOMMU performance counters supported
[    6.484312] pci 0000:80:01.0: Adding to iommu group 13
[    6.489519] pci 0000:80:01.1: Adding to iommu group 13
[    6.494700] pci 0000:80:01.2: Adding to iommu group 13
[    6.499894] pci 0000:80:02.0: Adding to iommu group 14
[    6.505088] pci 0000:80:03.0: Adding to iommu group 15
[    6.510280] pci 0000:80:04.0: Adding to iommu group 16
[    6.515477] pci 0000:80:05.0: Adding to iommu group 17
[    6.520672] pci 0000:80:07.0: Adding to iommu group 18
[    6.525850] pci 0000:80:07.1: Adding to iommu group 19
[    6.531044] pci 0000:80:08.0: Adding to iommu group 20
[    6.536212] pci 0000:80:08.1: Adding to iommu group 21
[    6.541388] pci 0000:80:08.2: Adding to iommu group 22
[    6.546561] pci 0000:83:00.0: Adding to iommu group 23
[    6.551736] pci 0000:83:00.2: Adding to iommu group 24
[    6.556910] pci 0000:84:00.0: Adding to iommu group 25
[    6.562087] pci 0000:84:00.2: Adding to iommu group 26
[    6.567256] pci 0000:85:00.0: Adding to iommu group 27
[    6.579399] pci 0000:40:00.2: AMD-Vi: IOMMU performance counters supported
[    6.586420] pci 0000:40:01.0: Adding to iommu group 28
[    6.591620] pci 0000:40:02.0: Adding to iommu group 29
[    6.596908] pci 0000:40:03.0: Adding to iommu group 30
[    6.602084] pci 0000:40:03.1: Adding to iommu group 30
[    6.607270] pci 0000:40:03.2: Adding to iommu group 30
[    6.612450] pci 0000:40:03.3: Adding to iommu group 30
[    6.617633] pci 0000:40:03.4: Adding to iommu group 30
[    6.622831] pci 0000:40:04.0: Adding to iommu group 31
[    6.628021] pci 0000:40:05.0: Adding to iommu group 32
[    6.633213] pci 0000:40:07.0: Adding to iommu group 33
[    6.638383] pci 0000:40:07.1: Adding to iommu group 34
[    6.643578] pci 0000:40:08.0: Adding to iommu group 35
[    6.648748] pci 0000:40:08.1: Adding to iommu group 36
[    6.653924] pci 0000:45:00.0: Adding to iommu group 37
[    6.659099] pci 0000:45:00.2: Adding to iommu group 38
[    6.664275] pci 0000:46:00.0: Adding to iommu group 39
[    6.669446] pci 0000:46:00.1: Adding to iommu group 40
[    6.674617] pci 0000:46:00.2: Adding to iommu group 41
[    6.679794] pci 0000:46:00.3: Adding to iommu group 42
[    6.691875] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    6.699000] pci 0000:00:00.0: Adding to iommu group 43
[    6.704196] pci 0000:00:01.0: Adding to iommu group 44
[    6.709391] pci 0000:00:02.0: Adding to iommu group 45
[    6.714586] pci 0000:00:03.0: Adding to iommu group 46
[    6.714621] Freeing initrd memory: 38564K
[    6.719761] pci 0000:00:03.2: Adding to iommu group 47
[    6.728939] pci 0000:00:04.0: Adding to iommu group 48
[    6.734137] pci 0000:00:05.0: Adding to iommu group 49
[    6.739337] pci 0000:00:07.0: Adding to iommu group 50
[    6.744514] pci 0000:00:07.1: Adding to iommu group 51
[    6.749709] pci 0000:00:08.0: Adding to iommu group 52
[    6.754880] pci 0000:00:08.1: Adding to iommu group 53
[    6.760096] pci 0000:00:14.0: Adding to iommu group 54
[    6.765267] pci 0000:00:14.3: Adding to iommu group 54
[    6.770625] pci 0000:00:18.0: Adding to iommu group 55
[    6.775798] pci 0000:00:18.1: Adding to iommu group 55
[    6.780975] pci 0000:00:18.2: Adding to iommu group 55
[    6.786148] pci 0000:00:18.3: Adding to iommu group 55
[    6.791323] pci 0000:00:18.4: Adding to iommu group 55
[    6.796496] pci 0000:00:18.5: Adding to iommu group 55
[    6.801685] pci 0000:00:18.6: Adding to iommu group 55
[    6.806859] pci 0000:00:18.7: Adding to iommu group 55
[    6.812090] pci 0000:01:00.0: Adding to iommu group 56
[    6.817265] pci 0000:02:00.0: Adding to iommu group 57
[    6.822436] pci 0000:02:00.2: Adding to iommu group 58
[    6.827611] pci 0000:03:00.0: Adding to iommu group 59
[    6.832783] pci 0000:03:00.2: Adding to iommu group 60
[    6.837958] pci 0000:03:00.3: Adding to iommu group 61
[    6.851797] AMD-Vi: Extended features (0x841f77e022094ace, 0x0): PPR X2APIC NX IA GA PC SNP
[    6.860163] AMD-Vi: Interrupt remapping enabled
[    6.864693] AMD-Vi: X2APIC enabled
[    6.869347] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    6.875791] software IO TLB: mapped [mem 0x000000005bf37000-0x0000000063f37000] (128MB)
[    6.883942] LVT offset 0 assigned for vector 0x400
[    6.890285] perf: AMD IBS detected (0x000003ff)
[    6.896209] amd_uncore: 4 amd_df counters detected
[    6.901049] amd_uncore: 6 amd_l3 counters detected
[    6.907513] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    6.914671] perf/amd_iommu: Detected AMD IOMMU #1 (2 banks, 4 counters/bank).
[    6.921837] perf/amd_iommu: Detected AMD IOMMU #2 (2 banks, 4 counters/bank).
[    6.928996] perf/amd_iommu: Detected AMD IOMMU #3 (2 banks, 4 counters/bank).
[    6.939389] Initialise system trusted keyrings
[    6.943845] Key type blacklist registered
[    6.948013] workingset: timestamp_bits=36 max_order=26 bucket_order=0
[    6.954980] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    6.960985] fuse: init (API version 7.44)
[    6.965267] integrity: Platform Keyring initialized
[    6.982032] Key type asymmetric registered
[    6.986130] Asymmetric key parser 'x509' registered
[    6.991043] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    6.998545] io scheduler mq-deadline registered
[    7.005721] ledtrig-cpu: registered to indicate activity on CPUs
[    7.012029] pcieport 0000:00:03.2: PME: Signaling with IRQ 38
[    7.018198] pcieport 0000:00:07.1: PME: Signaling with IRQ 40
[    7.024171] pcieport 0000:00:08.1: PME: Signaling with IRQ 41
[    7.030156] pcieport 0000:40:03.1: PME: Signaling with IRQ 42
[    7.035954] pcieport 0000:40:03.1: pciehp: Slot #167 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.049997] pcieport 0000:40:03.2: PME: Signaling with IRQ 43
[    7.055790] pcieport 0000:40:03.2: pciehp: Slot #166 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.069785] pcieport 0000:40:03.3: PME: Signaling with IRQ 44
[    7.075583] pcieport 0000:40:03.3: pciehp: Slot #169 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.089594] pcieport 0000:40:03.4: PME: Signaling with IRQ 45
[    7.095391] pcieport 0000:40:03.4: pciehp: Slot #168 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.109468] pcieport 0000:40:07.1: PME: Signaling with IRQ 47
[    7.115434] pcieport 0000:40:08.1: PME: Signaling with IRQ 48
[    7.121569] pcieport 0000:80:01.1: PME: Signaling with IRQ 49
[    7.127379] pcieport 0000:80:01.1: pciehp: Slot #160 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.141394] pcieport 0000:80:01.2: PME: Signaling with IRQ 50
[    7.147199] pcieport 0000:80:01.2: pciehp: Slot #161 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.161338] pcieport 0000:80:07.1: PME: Signaling with IRQ 52
[    7.167396] pcieport 0000:80:08.1: PME: Signaling with IRQ 54
[    7.173443] pcieport 0000:80:08.2: PME: Signaling with IRQ 55
[    7.179403] pcieport 0000:c0:03.1: PME: Signaling with IRQ 56
[    7.185201] pcieport 0000:c0:03.1: pciehp: Slot #163 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.199200] pcieport 0000:c0:03.2: PME: Signaling with IRQ 57
[    7.204998] pcieport 0000:c0:03.2: pciehp: Slot #162 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.219004] pcieport 0000:c0:03.3: PME: Signaling with IRQ 58
[    7.224812] pcieport 0000:c0:03.3: pciehp: Slot #165 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.238815] pcieport 0000:c0:03.4: PME: Signaling with IRQ 59
[    7.244624] pcieport 0000:c0:03.4: pciehp: Slot #164 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.258606] pcieport 0000:c0:05.1: PME: Signaling with IRQ 60
[    7.264554] pcieport 0000:c0:05.2: PME: Signaling with IRQ 61
[    7.270603] pcieport 0000:c0:07.1: PME: Signaling with IRQ 63
[    7.276653] pcieport 0000:c0:08.1: PME: Signaling with IRQ 65
[    7.283388] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    7.290865] ACPI: button: Power Button [PWRF]
[    7.731858] Estimated ratio of average max frequency by base frequency (times 1024): 1464
[    7.740378] ERST: Error Record Serialization Table (ERST) support is initialized.
[    7.747883] pstore: Using crash dump compression: deflate
[    7.753283] pstore: Registered erst as persistent store backend
[    7.759345] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    7.765904] 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    7.774073] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    7.785168] Linux agpgart interface v0.103
[    7.815761] loop: module loaded
[    7.830240] ahci 0000:85:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[    7.838249] ahci 0000:85:00.0: 8/8 ports implemented (port mask 0xff)
[    7.844728] ahci 0000:85:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part sxs 
[    7.855051] scsi host0: ahci
[    7.858185] scsi host1: ahci
[    7.861287] scsi host2: ahci
[    7.864391] scsi host3: ahci
[    7.867480] scsi host4: ahci
[    7.870602] scsi host5: ahci
[    7.873703] scsi host6: ahci
[    7.876803] scsi host7: ahci
[    7.879758] ata1: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800100 irq 67 lpm-pol 0 ext
[    7.888366] ata2: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800180 irq 68 lpm-pol 0 ext
[    7.896979] ata3: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800200 irq 69 lpm-pol 0 ext
[    7.905583] ata4: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800280 irq 70 lpm-pol 0 ext
[    7.914189] ata5: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800300 irq 71 lpm-pol 0 ext
[    7.922793] ata6: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800380 irq 72 lpm-pol 0 ext
[    7.931404] ata7: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800400 irq 73 lpm-pol 0 ext
[    7.940015] ata8: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800480 irq 74 lpm-pol 0 ext
[    7.949087] tun: Universal TUN/TAP device driver, 1.6
[    7.954237] PPP generic driver version 2.4.2
[    7.958516] tsc: Refined TSC clocksource calibration: 1996.250 MHz
[    7.964759] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398caf77d7a, max_idle_ns: 881590459467 ns
[    7.965029] VFIO - User Level meta-driver version: 0.3
[    7.979982] clocksource: Switched to clocksource tsc
[    7.980342] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    7.990182] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 1
[    7.997683] xhci_hcd 0000:03:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.007218] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.012451] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 2
[    8.019841] xhci_hcd 0000:03:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.026935] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.035201] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.042425] usb usb1: Product: xHCI Host Controller
[    8.047304] usb usb1: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.056257] usb usb1: SerialNumber: 0000:03:00.3
[    8.061059] hub 1-0:1.0: USB hub found
[    8.064822] hub 1-0:1.0: 2 ports detected
[    8.069683] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.077823] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.086091] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.093321] usb usb2: Product: xHCI Host Controller
[    8.098203] usb usb2: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.107158] usb usb2: SerialNumber: 0000:03:00.3
[    8.111919] hub 2-0:1.0: USB hub found
[    8.115685] hub 2-0:1.0: 2 ports detected
[    8.120631] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.125864] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 3
[    8.133357] xhci_hcd 0000:46:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.142871] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.148103] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 4
[    8.155499] xhci_hcd 0000:46:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.162583] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.170848] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.178064] usb usb3: Product: xHCI Host Controller
[    8.182986] usb usb3: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.191961] usb usb3: SerialNumber: 0000:46:00.3
[    8.196739] hub 3-0:1.0: USB hub found
[    8.200506] hub 3-0:1.0: 2 ports detected
[    8.205318] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.213438] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.221699] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.228923] usb usb4: Product: xHCI Host Controller
[    8.233813] usb usb4: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.242767] usb usb4: SerialNumber: 0000:46:00.3
[    8.247528] hub 4-0:1.0: USB hub found
[    8.251290] hub 4-0:1.0: 2 ports detected
[    8.256344] usbcore: registered new interface driver uas
[    8.261680] ata7: SATA link down (SStatus 0 SControl 300)
[    8.261689] usbcore: registered new interface driver usb-storage
[    8.267105] ata5: SATA link down (SStatus 0 SControl 300)
[    8.273116] i8042: PNP: No PS/2 controller found.
[    8.278505] ata4: SATA link down (SStatus 0 SControl 300)
[    8.283313] mousedev: PS/2 mouse device common for all mice
[    8.288612] ata1: SATA link down (SStatus 0 SControl 300)
[    8.294274] rtc_cmos 00:02: RTC can wake from S4
[    8.299583] ata2: SATA link down (SStatus 0 SControl 300)
[    8.304544] rtc_cmos 00:02: registered as rtc0
[    8.309603] ata6: SATA link down (SStatus 0 SControl 300)
[    8.314097] rtc_cmos 00:02: setting system clock to 2025-06-17T13:28:04 UTC (1750166884)
[    8.316257] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[    8.319446] ata3: SATA link down (SStatus 0 SControl 300)
[    8.327547] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram
[    8.334060] ata8: SATA link down (SStatus 0 SControl 300)
[    8.339443] i2c_dev: i2c /dev entries driver
[    8.355816] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    8.368001] device-mapper: uevent: version 1.0.3
[    8.372716] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists•linux.dev
[    8.381593] amd_pstate: driver load is disabled, boot with specific mode to enable this
[    8.389646] efifb: probing for efifb
[    8.393272] efifb: No BGRT, not showing boot graphics
[    8.398323] efifb: framebuffer at 0xc6000000, using 3072k, total 3072k
[    8.404879] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    8.410888] efifb: scrolling: redraw
[    8.414467] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    8.420093] fbcon: Deferring console take-over
[    8.424540] fb0: EFI VGA frame buffer device
[    8.428917] drop_monitor: Initializing network drop monitor service
[    8.435354] NET: Registered PF_INET6 protocol family
[    8.448775] Segment Routing with IPv6
[    8.452261] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[    8.452457] In-situ OAM (IOAM) with IPv6
[    8.461785] usb 1-1: New USB device found, idVendor=0424, idProduct=2744, bcdDevice= 1.21
[    8.462922] NET: Registered PF_PACKET protocol family
[    8.471072] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    8.476199] Key type dns_resolver registered
[    8.483293] usb 1-1: Product: USB2734
[    8.491228] usb 1-1: Manufacturer: Microchip Tech
[    8.504948] x86/amd: Previous system reset reason [0x00080800]: software wrote 0x6 to reset control register 0xCF9
[    8.515330] microcode: Current revision: 0x0a0011d5
[    8.520208] microcode: Updated early from: 0x0a0011d5
[    8.528380] resctrl: L3 allocation detected
[    8.532569] resctrl: MB allocation detected
[    8.536751] resctrl: L3 monitoring detected
[    8.539373] hub 1-1:1.0: USB hub found
[    8.541114] IPI shorthand broadcast: enabled
[    8.544911] hub 1-1:1.0: 4 ports detected
[    8.552665] sched_clock: Marking stable (8488002724, 64240534)->(9547377526, -995134268)
[    8.561662] registered taskstats version 1
[    8.568009] Loading compiled-in X.509 certificates
[    8.573504] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.587956] Demotion targets for Node 0: null
[    8.592329] Demotion targets for Node 1: null
[    8.593345] usb 3-1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    8.597262] Key type .fscrypt registered
[    8.603036] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
[    8.604860] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.622465] Key type fscrypt-provisioning registered
[    8.624817] usb 2-1: New USB device found, idVendor=0424, idProduct=5744, bcdDevice= 1.21
[    8.635604] usb 2-1: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[    8.642744] usb 2-1: Product: USB5734
[    8.642939] hub 3-1:1.0: USB hub found
[    8.643484] Key type encrypted registered
[    8.643489] AppArmor: AppArmor sha256 policy hashing enabled
[    8.643606] integrity: Loading X.509 certificate: UEFI:db
[    8.643643] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    8.643645] integrity: Loading X.509 certificate: UEFI:db
[    8.643671] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    8.643673] integrity: Loading X.509 certificate: UEFI:db
[    8.643817] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    8.643819] integrity: Loading X.509 certificate: UEFI:db
[    8.644048] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    8.644391] ima: No TPM chip found, activating TPM-bypass!
[    8.644393] Loading compiled-in module X.509 certificates
[    8.644808] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.644811] ima: Allocated hash algorithm: sha1
[    8.644817] ima: No architecture policies found
[    8.644834] evm: Initialising EVM extended attributes:
[    8.644835] evm: security.selinux
[    8.644836] evm: security.SMACK64
[    8.644837] evm: security.SMACK64EXEC
[    8.644838] evm: security.SMACK64TRANSMUTE
[    8.644840] evm: security.SMACK64MMAP
[    8.644841] evm: security.apparmor
[    8.644842] evm: security.ima
[    8.644843] evm: security.capability
[    8.644844] evm: HMAC attrs: 0x1
[    8.645234] PM:   Magic number: 13:581:483
[    8.645830] RAS: Correctable Errors collector initialized.
[    8.645997] clk: Disabling unused clocks
[    8.645999] PM: genpd: Disabling unused power domains
[    8.646408] usb 2-1: Manufacturer: Microchip Tech
[    8.667176] hub 2-1:1.0: USB hub found
[    8.676223] hub 3-1:1.0: 4 ports detected
[    8.681731] hub 2-1:1.0: 4 ports detected
[    8.826855] Freeing unused decrypted memory: 2028K
[    8.832387] Freeing unused kernel image (initmem) memory: 4760K
[    8.838322] Write protecting the kernel read-only data: 26624k
[    8.844596] Freeing unused kernel image (text/rodata gap) memory: 28K
[    8.851219] Freeing unused kernel image (rodata/data gap) memory: 248K
[    8.944743] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    8.951188] Run /init as init process
[    8.961770] systemd[1]: Inserted module 'autofs4'
[    9.189774] systemd[1]: systemd 252-46.el9_5.3 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)
[    9.222224] systemd[1]: Detected architecture x86-64.
[    9.227278] systemd[1]: Running in initrd.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow) dracut-057-80.git20250411.el9_5 (Initramfs)^[[0m!

[    9.248345] systemd[1]: Hostname set to <sharavati.amd.com>.
[    9.347104] systemd[1]: Queued start job for default target Initrd Default Target.
[    9.354800] systemd[1]: Reached target Initrd /usr File System.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd /usr File System^[[0m.
[    9.372332] systemd[1]: Reached target Local File Systems.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
[    9.388425] systemd[1]: Reached target Slice Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSlice Units^[[0m.
[    9.404321] systemd[1]: Reached target Swaps.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwap[    9.412258] usb 3-1.1: new high-speed USB device number 3 using xhci_hcd
s^[[0m.
[    9.424306] systemd[1]: Reached target Timer Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[    9.440491] systemd[1]: Listening on D-Bus System Message Bus Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[    9.460459] systemd[1]: Listening on Journal Socket (/dev/log).
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket (/dev/log)^[[0m.
[    9.476459] systemd[1]: Listening on Journal Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket^[[0m.
[    9.492465] systemd[1]: Listening on udev Control Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[    9.505223] usb 3-1.1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    9.513575] usb 3-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    9.513663] systemd[1]: Listening on udev Kernel Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
[    9.536312] systemd[1]: Reached target Socket Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
[    9.571036] hub 3-1.1:1.0: USB hub found
[    9.575222] hub 3-1.1:1.0: 4 ports detected
[    9.577706] systemd[1]: Starting Create List of Static Device Nodes...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
[    9.598748] systemd[1]: Starting Journal Service...
         Starting ^[[0;1;39mJournal Service^[[0m...
[    9.613803] systemd[1]: Starting Load Kernel Modules...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
[    9.629571] systemd[1]: Starting Create System Users...
         Starting ^[[0;1;39mCreate System Users^[[0m...
[    9.645822] systemd[1]: Starting Setup Virtual Console...
         Starting ^[[0;1;39mSetup Virtual Console^[[0m...
[    9.656254] usb 3-1.4: new high-speed USB device number 4 using xhci_hcd
[    9.665452] systemd[1]: Finished Create List of Static Device Nodes.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[    9.684773] systemd[1]: Finished Load Kernel Modules.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[    9.704499] systemd[1]: Started Journal Service.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSetup Virtual Console^[[0m.
[    9.753229] usb 3-1.4: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    9.761583] usb 3-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
         Starting ^[[0;1;39mdracut cmdline hook^[[0m...
         Starting ^[[0;1;39mApply Kernel Variables^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate System Users^[[0m.
[    9.827059] hub 3-1.4:1.0: USB hub found
[    9.831224] hub 3-1.4:1.0: 4 ports detected
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut cmdline hook^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Starting ^[[0;1;39mdracut pre-udev hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-udev hook^[[0m.
         Starting ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[   10.223843] wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQBC data block query control method not found
[^[[0;32m  OK  ^[[0m] Finished ^[[0[   10.235737] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
;1;39mColdplug A[   10.236164] ccp 0000:46:00.1: no command queues available
ll udev Devices^[[   10.241942] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[0m.
[   10.248779] ccp 0000:46:00.1: sev enabled
[   10.257291] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[   10.261680] ccp 0000:46:00.1: psp enabled
[   10.268501] tg3 0000:c1:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:90
[   10.283389] tg3 0000:c1:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.283393] tg3 0000:c1:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.283395] tg3 0000:c1:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[^[[0;32m  OK  ^[[[   10.308784] ACPI: bus type drm_connector registered
0m] Reached targ[   10.308941] mpt3sas version 52.100.00.00 loaded
et ^[[0;1;39mSyst[   10.310211] tg3 0000:c1:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:91
em Initializatio[   10.310215] tg3 0000:c1:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
n^[[0m.
[   10.310218] tg3 0000:c1:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.310221] tg3 0000:c1:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[^[[0;32m  OK  ^[[[   10.358595] mgag200 0000:c3:00.0: vgaarb: deactivate vga console
0m] Reached targ[   10.359139] mpt3sas_cm0: 63 BIT PCI BUS DMA ADDRESSING SUPPORTED, total mem (262592960 kB)
et ^[[0;1;39mNetwork^[[0m.
[   10.381879] [drm] Initialized mgag200 1.0.0 for 0000:c3:00.0 on minor 0
[   10.392835] fbcon: mgag200drmfb (fb0) is primary device
[   10.392838] fbcon: Deferring console take-over
[   10.403567] mgag200 0000:c3:00.0: [drm] fb0: mgag200drmfb frame buffer device
[   10.418310] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   10.426332] mpt3sas_cm0: MSI-X vectors supported: 96
[   10.431302] 	 no of cores: 128, max_msix_vectors: -1
[   10.436275] mpt3sas_cm0:  0 96 96
         Starting ^[[0;1;39mdracut initqueue hook[   10.443485] mpt3sas_cm0: High IOPs queues : disabled
^[[0m...
[   10.448770] mpt3sas0-msix0: PCI-MSI-X enabled: IRQ 108
[   10.454691] mpt3sas0-msix1: PCI-MSI-X enabled: IRQ 109
[   10.459830] mpt3sas0-msix2: PCI-MSI-X enabled: IRQ 110
[   10.459832] mpt3sas0-msix3: PCI-MSI-X enabled: IRQ 111
[   10.459833] mpt3sas0-msix4: PCI-MSI-X enabled: IRQ 112
[   10.459835] mpt3sas0-msix5: PCI-MSI-X enabled: IRQ 113
[   10.459836] mpt3sas0-msix6: PCI-MSI-X enabled: IRQ 114
[   10.459838] mpt3sas0-msix7: PCI-MSI-X enabled: IRQ 115
[   10.459839] mpt3sas0-msix8: PCI-MSI-X enabled: IRQ 116
[   10.459841] mpt3sas0-msix9: PCI-MSI-X enabled: IRQ 117
[   10.500950] mpt3sas0-msix10: PCI-MSI-X enabled: IRQ 118
[   10.500951] mpt3sas0-msix11: PCI-MSI-X enabled: IRQ 119
[   10.500953] mpt3sas0-msix12: PCI-MSI-X enabled: IRQ 120
[   10.500955] mpt3sas0-msix13: PCI-MSI-X enabled: IRQ 121
[   10.500956] mpt3sas0-msix14: PCI-MSI-X enabled: IRQ 122
[   10.527086] mpt3sas0-msix15: PCI-MSI-X enabled: IRQ 123
[   10.532315] mpt3sas0-msix16: PCI-MSI-X enabled: IRQ 124
         Startin[   10.537544] mpt3sas0-msix17: PCI-MSI-X enabled: IRQ 125
g ^[[0;1;39mShow [   10.544162] mpt3sas0-msix18: PCI-MSI-X enabled: IRQ 126
Plymouth Boot Sc[   10.544164] mpt3sas0-msix19: PCI-MSI-X enabled: IRQ 127
[   10.544166] mpt3sas0-msix20: PCI-MSI-X enabled: IRQ 128
reen^[[0m...
[   10.544167] mpt3sas0-msix21: PCI-MSI-X enabled: IRQ 129
[   10.544168] mpt3sas0-msix22: PCI-MSI-X enabled: IRQ 130
[^[[0;32m  OK  ^[[[   10.544169] mpt3sas0-msix23: PCI-MSI-X enabled: IRQ 131
0m] Started ^[[0;[   10.544170] mpt3sas0-msix24: PCI-MSI-X enabled: IRQ 132
1;39mShow Plymou[   10.544172] mpt3sas0-msix25: PCI-MSI-X enabled: IRQ 133
th Boot Screen^[[[   10.544174] mpt3sas0-msix26: PCI-MSI-X enabled: IRQ 134
0m.
[   10.600700] mpt3sas0-msix27: PCI-MSI-X enabled: IRQ 135
[^[[0;32m  OK  ^[[[   10.606441] mpt3sas0-msix28: PCI-MSI-X enabled: IRQ 136
0m] Started ^[[0;[   10.606443] mpt3sas0-msix29: PCI-MSI-X enabled: IRQ 137
1;39mForward Pas[   10.606444] mpt3sas0-msix30: PCI-MSI-X enabled: IRQ 138
sword Requests t[   10.606446] mpt3sas0-msix31: PCI-MSI-X enabled: IRQ 139
o Plymouth Direc[   10.606448] mpt3sas0-msix32: PCI-MSI-X enabled: IRQ 140
tory Watch^[[0m.\r[   10.639512] mpt3sas0-msix33: PCI-MSI-X enabled: IRQ 141

[^[[0;32m  OK  [   10.639513] mpt3sas0-msix34: PCI-MSI-X enabled: IRQ 142
^[[0m] Reached ta[   10.639515] mpt3sas0-msix35: PCI-MSI-X enabled: IRQ 143
[   10.639516] mpt3sas0-msix36: PCI-MSI-X enabled: IRQ 144
rget ^[[0;1;39mPa[   10.639518] mpt3sas0-msix37: PCI-MSI-X enabled: IRQ 145
th Units^[[0m.
[   10.671167] mpt3sas0-msix38: PCI-MSI-X enabled: IRQ 146
[^[[0;32m  OK  ^[[[   10.677780] mpt3sas0-msix39: PCI-MSI-X enabled: IRQ 147
0m] Reached targ[   10.684394] mpt3sas0-msix40: PCI-MSI-X enabled: IRQ 148
et ^[[0;1;39mBasi[   10.691006] mpt3sas0-msix41: PCI-MSI-X enabled: IRQ 149
c System^[[0m.
[   10.697619] mpt3sas0-msix42: PCI-MSI-X enabled: IRQ 150
[   10.704231] mpt3sas0-msix43: PCI-MSI-X enabled: IRQ 151
[   10.709458] mpt3sas0-msix44: PCI-MSI-X enabled: IRQ 152
[   10.714684] mpt3sas0-msix45: PCI-MSI-X enabled: IRQ 153
[   10.719909] mpt3sas0-msix46: PCI-MSI-X enabled: IRQ 154
[   10.725134] mpt3sas0-msix47: PCI-MSI-X enabled: IRQ 155
[   10.730361] mpt3sas0-msix48: PCI-MSI-X enabled: IRQ 156
[   10.735586] mpt3sas0-msix49: PCI-MSI-X enabled: IRQ 157
[   10.740811] mpt3sas0-msix50: PCI-MSI-X enabled: IRQ 158
[   10.746039] mpt3sas0-msix51: PCI-MSI-X enabled: IRQ 159
[   10.751263] mpt3sas0-msix52: PCI-MSI-X enabled: IRQ 160
[   10.756509] mpt3sas0-msix53: PCI-MSI-X enabled: IRQ 161
[   10.761734] mpt3sas0-msix54: PCI-MSI-X enabled: IRQ 162
[   10.766960] mpt3sas0-msix55: PCI-MSI-X enabled: IRQ 163
[   10.772184] mpt3sas0-msix56: PCI-MSI-X enabled: IRQ 164
[   10.777410] mpt3sas0-msix57: PCI-MSI-X enabled: IRQ 165
[   10.782637] mpt3sas0-msix58: PCI-MSI-X enabled: IRQ 166
[   10.787863] mpt3sas0-msix59: PCI-MSI-X enabled: IRQ 167
[   10.793087] mpt3sas0-msix60: PCI-MSI-X enabled: IRQ 168
[   10.798314] mpt3sas0-msix61: PCI-MSI-X enabled: IRQ 169
[   10.803539] mpt3sas0-msix62: PCI-MSI-X enabled: IRQ 170
[   10.808766] mpt3sas0-msix63: PCI-MSI-X enabled: IRQ 171
[   10.813992] mpt3sas0-msix64: PCI-MSI-X enabled: IRQ 172
[   10.819216] mpt3sas0-msix65: PCI-MSI-X enabled: IRQ 173
[   10.824444] mpt3sas0-msix66: PCI-MSI-X enabled: IRQ 174
[   10.829669] mpt3sas0-msix67: PCI-MSI-X enabled: IRQ 175
[   10.834893] mpt3sas0-msix68: PCI-MSI-X enabled: IRQ 176
[   10.840120] mpt3sas0-msix69: PCI-MSI-X enabled: IRQ 177
[   10.845346] mpt3sas0-msix70: PCI-MSI-X enabled: IRQ 178
[   10.850573] mpt3sas0-msix71: PCI-MSI-X enabled: IRQ 179
[   10.855799] mpt3sas0-msix72: PCI-MSI-X enabled: IRQ 180
[   10.861024] mpt3sas0-msix73: PCI-MSI-X enabled: IRQ 181
[   10.866250] mpt3sas0-msix74: PCI-MSI-X enabled: IRQ 182
[   10.871477] mpt3sas0-msix75: PCI-MSI-X enabled: IRQ 183
[   10.876704] mpt3sas0-msix76: PCI-MSI-X enabled: IRQ 184
[   10.881929] mpt3sas0-msix77: PCI-MSI-X enabled: IRQ 185
[   10.887153] mpt3sas0-msix78: PCI-MSI-X enabled: IRQ 186
[   10.892380] mpt3sas0-msix79: PCI-MSI-X enabled: IRQ 187
[   10.897604] mpt3sas0-msix80: PCI-MSI-X enabled: IRQ 188
[   10.902832] mpt3sas0-msix81: PCI-MSI-X enabled: IRQ 189
[   10.908055] mpt3sas0-msix82: PCI-MSI-X enabled: IRQ 190
[   10.913283] mpt3sas0-msix83: PCI-MSI-X enabled: IRQ 191
[   10.918508] mpt3sas0-msix84: PCI-MSI-X enabled: IRQ 192
[   10.923738] mpt3sas0-msix85: PCI-MSI-X enabled: IRQ 193
[   10.928960] mpt3sas0-msix86: PCI-MSI-X enabled: IRQ 194
[   10.934187] mpt3sas0-msix87: PCI-MSI-X enabled: IRQ 195
[   10.939413] mpt3sas0-msix88: PCI-MSI-X enabled: IRQ 196
[   10.944639] mpt3sas0-msix89: PCI-MSI-X enabled: IRQ 197
[   10.949864] mpt3sas0-msix90: PCI-MSI-X enabled: IRQ 198
[   10.955088] mpt3sas0-msix91: PCI-MSI-X enabled: IRQ 199
[   10.960315] mpt3sas0-msix92: PCI-MSI-X enabled: IRQ 200
[   10.965543] mpt3sas0-msix93: PCI-MSI-X enabled: IRQ 201
[   10.970767] mpt3sas0-msix94: PCI-MSI-X enabled: IRQ 202
[   10.975993] mpt3sas0-msix95: PCI-MSI-X enabled: IRQ 203
[   10.981220] mpt3sas_cm0: iomem(0x00000000e2200000), mapped(0x00000000b2a3edce), size(65536)
[   10.989566] mpt3sas_cm0: ioport(0x0000000000001000), size(256)
[   11.053379] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   11.061378] mpt3sas_cm0: sending message unit reset !!
[   11.068024] mpt3sas_cm0: message unit reset: SUCCESS
[   11.100479] mpt3sas_cm0: scatter gather: sge_in_main_msg(1), sge_per_chain(7), sge_per_io(128), chains_per_io(19)
[   11.111948] mpt3sas_cm0: request pool(0x000000008aa46762) - dma(0xe0600000): depth(9700), frame_size(128), pool_size(1212 kB)
[   11.148616] mpt3sas_cm0: sense pool(0x00000000bdb2c09c) - dma(0xdef00000): depth(9463), element_size(96), pool_size (887 kB)
[   11.159924] mpt3sas_cm0: reply pool(0x00000000c56de855) - dma(0xdec00000): depth(9764), frame_size(128), pool_size(1220 kB)
[   11.171056] mpt3sas_cm0: config page(0x00000000c2164021) - dma(0xdebee000): size(512)
[   11.178884] mpt3sas_cm0: Allocated physical memory: size(40437 kB)
[   11.185064] mpt3sas_cm0: Current Controller Queue Depth(9460),Max Controller Queue Depth(9584)
[   11.193669] mpt3sas_cm0: Scatter Gather Elements per IO(128)
[   11.245108] mpt3sas_cm0: _base_display_fwpkg_version: complete
[   11.250943] mpt3sas_cm0: FW Package Ver(16.17.01.00)
[   11.256196] mpt3sas_cm0: LSISAS3008: FWVersion(16.00.11.00), ChipRevision(0x02)
[   11.263503] mpt3sas_cm0: Protocol=(Initiator,Target), Capabilities=(TLR,EEDP,Snapshot Buffer,Diag Trace Buffer,Task Set Full,NCQ)
[   11.275218] scsi host8: Fusion MPT SAS Host
[   11.281229] mpt3sas_cm0: sending port enable !!
[   11.286174] mpt3sas_cm0: hba_port entry: 0000000038cbbb9d, port: 255 is added to hba_port list
[   11.295908] mpt3sas_cm0: host_add: handle(0x0001), sas_addr(0x52cea7f0be87bf00), phys(8)
[   11.304339] mpt3sas_cm0: handle(0xa) sas_address(0x4433221100000000) port_type(0x1)
[   11.313190] scsi 8:0:0:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.321290] scsi 8:0:0:0: SATA: handle(0x000a), sas_addr(0x4433221100000000), phy(0), device_name(0x500a075131911ad0)
[   11.331888] scsi 8:0:0:0: enclosure logical id (0x52cea7f0be87bf00), slot(1) 
[   11.339020] scsi 8:0:0:0: enclosure level(0x0001), connector name(     )
[   11.345792] scsi 8:0:0:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.354225] scsi 8:0:0:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.369032]  end_device-8:0: add: handle(0x000a), sas_addr(0x4433221100000000)
[   11.376398] mpt3sas_cm0: handle(0xc) sas_address(0x58ce38ee219651a2) port_type(0x1)
[   11.385137] scsi 8:0:1:0: Direct-Access     KIOXIA   KPM6WVUG960G     BD08 PQ: 0 ANSI: 6
[   11.393230] scsi 8:0:1:0: SSP: handle(0x000c), sas_addr(0x58ce38ee219651a2), phy(4), device_name(0x58ce38ee219651a0)
[   11.403741] scsi 8:0:1:0: enclosure logical id (0x52cea7f0be87bf00), slot(0) 
[   11.410871] scsi 8:0:1:0: enclosure level(0x0001), connector name(     )
[   11.417594] scsi 8:0:1:0: qdepth(254), tagged(1), scsi_level(7), cmd_que(1)
[   11.426167]  end_device-8:1: add: handle(0x000c), sas_addr(0x58ce38ee219651a2)
[   11.433517] mpt3sas_cm0: handle(0xb) sas_address(0x4433221106000000) port_type(0x1)
[   11.442326] scsi 8:0:2:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.450422] scsi 8:0:2:0: SATA: handle(0x000b), sas_addr(0x4433221106000000), phy(6), device_name(0x500a075131911a6f)
[   11.461016] scsi 8:0:2:0: enclosure logical id (0x52cea7f0be87bf00), slot(2) 
[   11.468150] scsi 8:0:2:0: enclosure level(0x0001), connector name(     )
[   11.474914] scsi 8:0:2:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.483350] scsi 8:0:2:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.498160]  end_device-8:2: add: handle(0x000b), sas_addr(0x4433221106000000)
[   11.505406] mpt3sas_cm0: port enable: SUCCESS
[   11.510040] sd 8:0:0:0: Attached scsi generic sg0 type 0
[   11.510613] sd 8:0:0:0: [sda] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.515610] scsi 8:0:1:0: Attached scsi generic sg1 type 0
[   11.522930] sd 8:0:0:0: [sda] 4096-byte physical blocks
[   11.528422] sd 8:0:1:0: [sdb] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.528642] sd 8:0:2:0: Attached scsi generic sg2 type 0
[   11.529277] sd 8:0:2:0: [sdc] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.529282] sd 8:0:2:0: [sdc] 4096-byte physical blocks
[   11.531293] sd 8:0:2:0: [sdc] Write Protect is off
[   11.532586] sd 8:0:2:0: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.535657] sd 8:0:0:0: [sda] Write Protect is off
[   11.541205] sd 8:0:1:0: [sdb] 4096-byte physical blocks
[   11.546523] sd 8:0:1:0: [sdb] Write Protect is off
[   11.564825] sd 8:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.587460] sd 8:0:1:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   11.646533]  sdc: sdc1 sdc2
[   11.649521] sd 8:0:2:0: [sdc] Attached SCSI disk
[   11.665402]  sdb: sdb1 sdb2
[   11.668339] sd 8:0:1:0: [sdb] Attached SCSI disk
[   11.682206]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7
[   11.687601] sd 8:0:0:0: [sda] Attached SCSI disk
[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39m/dev/mapper/rhel_sharavati-root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut initqueue hook^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m.
         Mounting ^[[0;1;39m/sysroot^[[0m...
[   12.364064] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled
[   12.374348] XFS (dm-1): Mounting V5 Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[   12.400526] XFS (dm-1): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/sysroot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root File System^[[0m.
         Starting ^[[0;1;39mMountpoints Configured in the Real Root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMountpoints Configured in the Real Root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Default Target^[[0m.
         Starting ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
         Starting ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Default Target^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd /usr File System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut initqueue hook^[[0m.
         Starting ^[[0;1;39mPlymouth switch root service^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1[   12.637988] systemd-journald[1093]: Received SIGTERM from PID 1 (systemd).
;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mColdplug All udev Devices^[[0m.
         Stopping ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Kernel Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-udev hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut cmdline hook^[[0m.
         Starting ^[[0;1;39mCleanup udev Database^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate System Users^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleanup udev Database^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwitch Root^[[0m.
         Starting ^[[0;[   12.749668] systemd[1]: RTC configured in localtime, applying delta of 330 minutes to system time.
1;39mSwitch Root^[[0m...
[   12.774521] systemd[1]: systemd 252-46.el9_5.3 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)
[   12.806986] systemd[1]: Detected architecture x86-64.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow)^[[0m!

[   12.886845] systemd-rc-local-generator[1706]: /etc/rc.d/rc.local is not marked executable, skipping.
[   13.142578] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[   13.150019] systemd[1]: Stopped Switch Root.
[^[[0;32m  OK  ^[[[   13.154563] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
0m] Stopped ^[[0;[   13.165264] systemd[1]: Created slice Virtual Machine and Container Slice.
1;39mSwitch Root[   13.173602] systemd[1]: Created slice Slice /system/getty.
^[[0m.
[^[[0;32m  OK  ^[[0m] Crea[   13.181218] systemd[1]: Created slice Slice /system/modprobe.
ted slice ^[[0;1;[   13.189020] systemd[1]: Created slice Slice /system/serial-getty.
39mVirtual Machi[   13.196492] systemd[1]: Created slice Slice /system/sshd-keygen.
ne and Container[   13.203931] systemd[1]: Created slice Slice /system/systemd-fsck.
 Slice^[[0m.
[^[[   13.211438] systemd[1]: Created slice User and Session Slice.
[0;32m  OK  ^[[0m[   13.217821] systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
] Created slice [   13.234153] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
^[[0;1;39mSlice /[   13.243258] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
system/getty^[[0m[   13.253880] systemd[1]: Reached target Local Encrypted Volumes.
.
[^[[0;32m  OK[   13.261173] systemd[1]: Stopped target Switch Root.
  ^[[0m] Created [   13.267430] systemd[1]: Stopped target Initrd File Systems.
slice ^[[0;1;39mS[   13.274384] systemd[1]: Stopped target Initrd Root File System.
lice /system/mod[   13.281691] systemd[1]: Reached target Local Integrity Protected Volumes.
probe^[[0m.
[^[[[   13.289887] systemd[1]: Reached target Path Units.
0;32m  OK  ^[[0m][   13.296055] systemd[1]: Reached target Slice Units.
 Created slice ^[[   13.302324] systemd[1]: Reached target Local Verity Protected Volumes.
[0;1;39mSlice /s[   13.310289] systemd[1]: Listening on Device-mapper event daemon FIFOs.
ystem/serial-get[   13.318388] systemd[1]: Listening on LVM2 poll daemon socket.
ty^[[0m.
[^[[0;3[   13.325315] systemd[1]: multipathd control socket was skipped because of an unmet condition check (ConditionPathExists=/etc/multipath.conf).
2m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/sshd-keygen^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Set up automount ^[[0;1;39mArbitrary Executa…ormats File System Automount Point^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal Encrypted Volumes^[[0m.\r\r[   13.381038] systemd[1]: Listening on RPCbind Server Activation Socket.

[^[[0;32m  OK  ^[[   13.388787] systemd[1]: Reached target RPC Port Mapper.
[0m] Stopped tar[   13.396513] systemd[1]: Listening on Process Core Dump Socket.
get ^[[0;1;39mSwi[   13.402648] systemd[1]: Listening on initctl Compatibility Named Pipe.
tch Root^[[0m.
[   13.411630] systemd[1]: Listening on udev Control Socket.
[^[[0;32m  OK  ^[[[   13.417371] systemd[1]: Listening on udev Kernel Socket.
0m] Stopped target ^[[0;1;39mInit[   13.425303] systemd[1]: Activating swap /dev/mapper/rhel_sharavati-swap...
rd File Systems^[[   13.430099] Adding 7815164k swap on /dev/mapper/rhel_sharavati-swap.  Priority:-2 extents:1 across:7815164k SS
[0m.
[^[[0;32m  OK  ^[[0m] Stopp[   13.446809] systemd[1]: Mounting Huge Pages File System...
ed target ^[[0;1;39mInitrd Root F[   13.454709] systemd[1]: Mounting POSIX Message Queue File System...
ile System^[[0m.\r[   13.463555] systemd[1]: Mounting Kernel Debug File System...

[^[[0;32m  OK  [   13.470568] systemd[1]: Mounting Kernel Trace File System...
^[[0m] Reached ta[   13.476460] systemd[1]: Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
rget ^[[0;1;39mLo[   13.491302] systemd[1]: iscsi-starter.service was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes).
cal Integrity Protected Volumes^[[   13.506654] systemd[1]: Starting Create List of Static Device Nodes...
[0m.
[^[[0;32m  OK  ^[[0m] Reach[   13.515919] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
ed target ^[[0;1;39mPath Units^[[0[   13.529007] systemd[1]: Starting Load Kernel Module configfs...
m.
[^[[0;32m  O[   13.537480] systemd[1]: Starting Load Kernel Module drm...
K  ^[[0m] Reached[   13.544342] systemd[1]: Starting Load Kernel Module fuse...
 target ^[[0;1;39mSlice Units^[[0m[   13.551906] systemd[1]: Starting Read and set NIS domainname from /etc/sysconfig/network...
.
[^[[0;32m  OK[   13.561309] systemd[1]: plymouth-switch-root.service: Deactivated successfully.
  ^[[0m] Reached [   13.569983] systemd[1]: Stopped Plymouth switch root service.
target ^[[0;1;39m[   13.577227] systemd[1]: systemd-fsck-root.service: Deactivated successfully.
Local Verity Pro[   13.585533] systemd[1]: Stopped File System Check on Root Device.
tected Volumes^[[[   13.593075] systemd[1]: Stopped Journal Service.
0m.
[^[[0;32m  OK  ^[[0m] Listen[   13.601640] systemd[1]: Starting Journal Service...
ing on ^[[0;1;39mDevice-mapper ev[   13.608686] systemd[1]: Starting Load Kernel Modules...
[   13.613865] systemd-journald[1735]: File /run/log/journal/8f37f8055146469d8baec3ad508b0084/system.journal corrupted or uncleanly shut down, renaming and replacing.
ent daemon FIFOs^[[0m.
[^[[0;32m[   13.630722] systemd[1]: Starting Generate network units from Kernel command line...
  OK  ^[[0m] List[   13.639705] systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
ening on ^[[0;1;39mLVM2 poll daem[   13.660892] systemd[1]: Starting Remount Root and Kernel File Systems...
on socket^[[0m.\r\r[   13.669075] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.

[^[[0;32m  OK  ^[[0m] Listening o[   13.681133] systemd[1]: Starting Coldplug All udev Devices...
n ^[[0;1;39mRPCbind Server Activation Socket^[[0m.[   13.691416] systemd[1]: Activated swap /dev/mapper/rhel_sharavati-swap.

[^[[0;32m  OK [   13.699683] systemd[1]: Started Journal Service.
 ^[[0m] Reached target ^[[0;1;39mRPC Port Mapper^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mProcess Core Dump Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39minitctl Compatibility [   13.720446] systemd-journald[1735]: Received client request to flush runtime journal.
Named Pipe^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
         Activating swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m...
         Mounting ^[[0;1;39mHuge Pages File System^[[0m...
         Mounting ^[[0;1;39mPOSIX Message Queue File System^[[0m...
         Mounting ^[[0;1;39mKernel Debug File System^[[0m...
         Mounting ^[[0;1;39mKernel Trace File System^[[0m...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
         Starting ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module drm^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mJournal Service^[[0m.
         Starting ^[[0;1;39mJournal Service^[[0m...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
         Starting ^[[0;1;39mGenerate network units from Kernel command line^[[0m...
         Starting ^[[0;1;39mRemount Root and Kernel File Systems^[[0m...
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[^[[0;32m  OK  ^[[0m] Activated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mHuge Pages File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mPOSIX Message Queue File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Debug File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Trace File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMonitoring of LVM2 mirror…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module drm^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mGenerate network units from Kernel command [   13.948423] IPMI message handler: version 39.2
line^[[0m.
[^[[0;32m  OK  ^[[0m] [   13.955257] ipmi device interface
Finished ^[[0;1;39mRemount Root and Kernel File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwaps^[[0m.
         Mounting ^[[0;1;39mFUSE Control File System^[[0m...
         Mou[   13.975020] ipmi_si: IPMI System Interface driver
nting ^[[0;1;39mK[   13.980576] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
ernel Configurat[   13.981505] pstore: backend 'erst' already in use: ignoring 'efi_pstore'
ion File System^[[   13.983365] input: PC Speaker as /devices/platform/pcspkr/input/input1
[0m...
       [   13.985250] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
  Starting ^[[0;1[   13.985254] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
;39mFlush Journa[   13.985365] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
l to Persistent [   13.985367] RAPL PMU: hw unit of domain package 2^-16 Joules
Storage^[[0m...\r\r[   13.985369] RAPL PMU: hw unit of domain core 2^-16 Joules

         Starti[   13.988296] ipmi_platform: ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 10
ng ^[[0;1;39mLoad[   13.988300] ipmi_si: Adding SMBIOS-specified kcs state machine
/Save OS Random [   13.990020] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
Seed^[[0m...
  [   13.990710] i2c i2c-3: Successfully instantiated SPD at 0x50
       Starting [   13.991270] i2c i2c-3: Successfully instantiated SPD at 0x51
^[[0;1;39mApply K[   13.991831] i2c i2c-3: Successfully instantiated SPD at 0x52
ernel Variables^[[   13.992313] i2c i2c-3: Successfully instantiated SPD at 0x53
[0m...
       [   13.992889] i2c i2c-3: Successfully instantiated SPD at 0x54
  Starting ^[[0;1[   13.993452] i2c i2c-3: Successfully instantiated SPD at 0x55
;39mCreate Stati[   13.994015] i2c i2c-3: Successfully instantiated SPD at 0x56
c Device Nodes i[   13.994576] i2c i2c-3: Successfully instantiated SPD at 0x57
n /dev^[[0m...
[   14.126081] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
[^[[0;32m  OK  ^[[[   14.133340] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca8] regsize 1 spacing 4 irq 10
0m] Mounted ^[[0;[   14.142938] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
1;39mFUSE Contro[   14.152679] ipmi_si: Adding ACPI-specified kcs state machine
l File System^[[0[   14.152754] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 10
m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Configuration File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad/Save OS Random Seed^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFlush Journal to Persistent Storage^[[0m.
[^[[0;32[   14.191673] ee1004 3-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
m  OK  ^[[0m] Finished ^[[0;1;39mA[   14.200345] ee1004 3-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
pply Kernel Variables^[[0m.
[^[[[   14.209996] ee1004 3-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
0;32m  OK  ^[[0m][   14.218734] kvm_amd: TSC scaling supported
 Finished ^[[0;1;[   14.219626] ee1004 3-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
39mCreate Static[   14.223451] kvm_amd: Nested Virtualization enabled
 Device Nodes in[   14.223452] kvm_amd: Nested Paging enabled
 /dev^[[0m.
   [   14.233381] ee1004 3-0054: 512 byte EE1004-compliant SPD EEPROM, read-only
      Starting ^[[   14.237890] kvm_amd: LBR virtualization supported
[0;1;39mRule-based Manager for D[   14.259411] ee1004 3-0055: 512 byte EE1004-compliant SPD EEPROM, read-only
evice Events and Files^[[0m...
[   14.268819] ee1004 3-0056: 512 byte EE1004-compliant SPD EEPROM, read-only
[^[[0;32m  OK  ^[[0m] Started ^[[0;[   14.278661] ee1004 3-0057: 512 byte EE1004-compliant SPD EEPROM, read-only
1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mColdplug All udev Devices^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mLoad/Save RF Kill Switch Status /dev/rfkill Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39m/usr/sbin/lvm vgchange -aa…utoactivation event rhel_sharavati^[[0m.
[   14.576269] ipmi_si IPI0001:00: The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.
[   14.648337] ipmi_si IPI0001:00: Using irq 10
[   14.671449] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20)
[   14.716961] ipmi_si IPI0001:00: IPMI kcs interface initialized
[   14.725372] ipmi_ssif: IPMI SSIF Interface driver
[   14.727730] power_meter ACPI000D:00: Found ACPI power meter.
[^[[0m^[[0;31m*     ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;1;31m*^[[0m^[[0;31m*    ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
^[M\r^[[K[^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*   ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
[   17.798631] ccp 0000:46:00.1: SEV-SNP API:1.55 build:22
[   17.853740] ccp 0000:46:00.1: SEV API:1.55 build:22
[   17.860990] kvm_amd: SEV enabled (ASIDs 101 - 509)
[   17.865788] kvm_amd: SEV-ES enabled (ASIDs 1 - 100)
[   17.870666] kvm_amd: SEV-SNP enabled (ASIDs 1 - 100)
[   17.875798] kvm_amd: Virtual VMLOAD VMSAVE supported
[   17.880764] kvm_amd: Virtual GIF supported
[   17.906838] EDAC MC0: Giving out device to module amd64_edac controller F19h: DEV 0000:00:18.3 (INTERRUPT)
[   17.916492] EDAC amd64: F19h detected (node 0).
[   17.921047] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.925764] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.930491] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.935207] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.939929] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.944649] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.949376] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.954091] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.958815] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.963529] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.968259] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.972976] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.977700] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.982423] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.987143] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.991861] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.003501] intel_rapl_common: Found RAPL domain package
[   18.004789] amd_atl: AMD Address Translation Library initialized
[   18.008820] intel_rapl_common: Found RAPL domain core
^[M\r^[[K[ ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*  ^[[0m] A start job is running for Wait for…ice Initialization (5s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Local File Systems^[[0m.
         Mounting ^[[0;1;39m/boot^[[0m...
      [   18.392274] XFS (sda6): Mounting V5 Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
   Mounting ^[[0;[   18.394118] XFS (dm-0): Mounting V5 Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
1;39m/home^[[0m...
         Starting ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m...
[   18.420608] XFS (sda6): Ending clean mount
[   18.428760] XFS (dm-0): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
         Mounting ^[[0;1;39m/boot/efi^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
         Starting ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Mounting ^[[0;1;39mRPC Pipe File System^[[0m...
         Starting ^[[0;1;39mSecurity Auditing Service^[[0m...
         Starting ^[[0;1;39mRPC Bind^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRPC Bind^[[0m.
[   18.537575] RPC: Registered named UNIX socket transport module.
[   18.543497] RPC: Registered udp transport module.
[   18.548201] RPC: Registered tcp transport module.
[   18.552907] RPC: Registered tcp-with-tls transport module.
[   18.558395] RPC: Registered tcp NFSv4.1 backchannel transport module.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mRPC Pipe File System^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mrpc_pipefs.target^[[0m.
         Starting ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdnf makecache --timer^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily rotation of log files^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUpdates mlocate database every day^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily Cleanup of Temporary Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdaily update of the root trust anchor for DNSSEC^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt interface daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt network daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nodedev daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nwfilter daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt proxy daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt secret daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt storage daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
         Starting ^[[0;1;39mD-Bus System Message Bus^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mBasic System^[[0m.
         Starting ^[[0;1;39mNTP client/server^[[0m...
         Starting ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m...
         Starting ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mirqbalance daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mlibstoragemgmt plug-in server daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mMachine Check Exception Logging Daemon^[[0m.
         Starting ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msshd-keygen.target^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUser and Group Name Lookups^[[0m.
         Starting ^[[0;1;39mUser Login Management^[[0m...
         Starting ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNTP client/server^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Network^[[0m.
         Starting ^[[0;1;39mNetwork Manager^[[0m...
         Starting ^[[0;1;39mHostname Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mHostname Service^[[0m.
         Starting ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork^[[0m.
         Starting ^[[0;1;39mNetwork Manager Wait Online^[[0m...
         Starting ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
         Starting ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m...
         Starting ^[[0;1;39mOpenSSH server daemon^[[0m...
         Starting ^[[0;1;39mDynamic System Tuning Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNFS client services^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mOpenSSH server daemon^[[0m.
         Starting ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
[   22.717383] tg3 0000:c1:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   22.724011] tg3 0000:c1:00.0 eth0: Flow control is off for TX and off for RX
[   22.731062] tg3 0000:c1:00.0 eth0: EEE is disabled
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[     ^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (12s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mNetwork Manager Wait Online^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork is Online^[[0m.
         Starting ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m...
         Starting ^[[0;1;39mNotify NFS peers of a restart^[[0m...
         Starting ^[[0;1;39mSystem Logging Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNotify NFS peers of a restart^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mCrash recovery kernel arming^[[0m...
         Starting ^[[0;1;39mPermit User Sessions^[[0m...
         Starting ^[[0;1;39mlibvirt QEMU daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDeferred execution scheduler^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mCommand Scheduler^[[0m.
         Starting ^[[0;1;39mHold until boot process finishes up^[[0m...
         Starting ^[[0;1;39mTerminate Plymouth Boot Screen^[[0m...
[^[[0;1;31mFAILED^[[0m] Failed to start ^[[0;1;39mCrash recovery kernel arming^[[0m.
See 'systemctl status kdump.service' for details.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSystem Logging Service^[[0m.
[   25.562357] fbcon: Taking over console
[   25.582638] Console: switching to colour frame buffer device 128x48

Red Hat Enterprise Linux 9.5 (Plow)
Kernel 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e on an x86_64

Activate the web console with: systemctl enable --now cockpit.socket

sharavati login: [  149.479476] /proc/cgroups lists only v1 controllers, use cgroup.controllers of root cgroup for v2 info
[  339.431242] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[  339.496525] systemd-rc-local-generator[3156]: /etc/rc.d/rc.local is not marked executable, skipping.
[  503.054075] kvm: emulating exchange as write
[  637.017449] kvm: vcpu 0: requested 1000 ns lapic timer period limited to 200000 ns
[  874.106168] systemd-rc-local-generator[32245]: /etc/rc.d/rc.local is not marked executable, skipping.
[ 1109.004550] kvm: kvm [50592]: vcpu0, guest rIP: 0x0 Unhandled WRMSR(0xc0010015) = 0x1
[ 1109.012398] kvm: kvm [50592]: vcpu0, guest rIP: 0x0 Unhandled WRMSR(0xc0010015) = 0x2
[ 1109.020231] kvm: kvm [50592]: vcpu0, guest rIP: 0x0 Unhandled WRMSR(0xc0010015) = 0x4
[ 1109.028067] kvm: kvm [50592]: vcpu0, guest rIP: 0x0 Unhandled WRMSR(0xc0010015) = 0x10
[ 1109.035984] kvm: kvm [50592]: vcpu0, guest rIP: 0x0 Unhandled WRMSR(0xc0010015) = 0x20
[ 1109.043909] kvm: kvm [50592]: vcpu0, guest rIP: 0x0 Unhandled WRMSR(0xc0010015) = 0x80
[ 1109.051830] kvm: kvm [50592]: vcpu0, guest rIP: 0x0 Unhandled WRMSR(0xc0010015) = 0x200
[ 1109.059838] kvm: kvm [50592]: vcpu0, guest rIP: 0x0 Unhandled WRMSR(0xc0010015) = 0x400
[ 1109.067841] kvm: kvm [50592]: vcpu0, guest rIP: 0x0 Unhandled WRMSR(0xc0010015) = 0x800
[ 1109.075841] kvm: kvm [50592]: vcpu0, guest rIP: 0x0 Unhandled WRMSR(0xc0010015) = 0x1000
[ 1113.727513] kvm: MONITOR instruction emulated as NOP!
[ 1114.568032] kvm_pr_unimpl_wrmsr: 49 callbacks suppressed
[ 1114.568035] kvm: kvm [51153]: vcpu0, guest rIP: 0x403054 Unhandled WRMSR(0xc0010000) = 0xffff
[ 1142.923374] kvm_amd: SEV-ES guest requested termination: 0x0:0x0
[ 1143.072624] kvm_amd: SEV-ES guest requested termination: 0x0:0x0
[ 1143.335582] kvm_amd: SEV-ES guest requested termination: 0x0:0x0
[ 1143.477413] kvm_amd: SEV-ES guest requested termination: 0x0:0x0
[ 1143.611948] kvm_amd: SEV-ES guest requested termination: 0x0:0x0
[ 1143.738536] kvm_amd: SEV-ES guest requested termination: 0x0:0x0
[ 1143.997609] kvm_amd: SEV-ES guest requested termination: 0x0:0x0
[ 1144.150325] kvm_amd: SEV-ES guest requested termination: 0x0:0x0
[ 1299.216206] JFS: nTxBlock = 8192, nTxLock = 65536
[ 1299.255942] QNX4 filesystem 0.2.3 registered.
[ 1299.337794] raid6: avx2x4   gen() 32182 MB/s
[ 1299.409791] raid6: avx2x2   gen() 30109 MB/s
[ 1299.481790] raid6: avx2x1   gen() 21921 MB/s
[ 1299.486064] raid6: using algorithm avx2x4 gen() 32182 MB/s
[ 1299.557790] raid6: .... xor() 5069 MB/s, rmw enabled
[ 1299.562751] raid6: using avx2x2 recovery algorithm
[ 1299.569818] xor: automatically using best checksumming function   avx       
[ 1299.666454] Btrfs loaded, zoned=yes, fsverity=yes
[ 1304.027710] sda6: Can't mount, would change RO state
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNFS client services^[[0m.
         Stopping ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Runtime Directory /run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser Slice of UID 0^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mShow Plymouth Reboot Screen^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mUser and Group Name Lookups^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSystem Logging Service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork is Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager Wait Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
         Stopping ^[[0;1;39mNetwork Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Network^[[0m.
         Stopping ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGenerate network units from Kernel command line^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
         Stopping ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Plymouth Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mVirtual Machine and Container Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon socket^[[0m.
[^[[0;32m  OK  ^[[[ 1305.487049] audit: type=1305 audit(1750148381.969:311): op=set audit_pid=0 old=2284 auid=4294967295 ses=4294967295 subj=unconfined res=1
0m] Closed ^[[0;1;39mSSSD Kerbero[ 1305.502789] audit: type=1131 audit(1750148381.985:312): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=auditd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
s Cache Manager [ 1305.523851] audit: type=1131 audit(1750148382.005:313): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon socket^[[0m.
         Stopping ^[[0;1;39mD-Bus System Message Bus^[[0m...
         Starting ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus Syste[ 1305.594393] audit: type=1131 audit(1750148382.077:314): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-fsck@dev-disk-by\x2duuid-FBE5\x2d86EF comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
m Message Bus So[ 1305.618747] XFS (sda6): Unmounting Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
cket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Unset automount ^[[0;1;39mArbitrary Executab…ormats File System Automount Point^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Encrypted Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Integrity Protected Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Verity Protected Volumes^[[0m.
         Deactivating swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
         Stopping ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-sysctl.service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
         Stopping ^[[0;1;39mSecurity Auditing Service^[[0m...
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/d…kEo36yeb12DWUnp5czhD1hrKFNCXkJMetK^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/rhel_sharavati/swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-uuid…8d2e1f-0fb1-4c94-97ac-38505613fcbf^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/dm-2^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
         Unmounting ^[[0;1;39m/boot/efi^[[0m...
         Unmounting ^[[0;1;39m/home^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m.
         Unmounting ^[[0;1;39m/boot^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot^[[0m.
[ 1305.987913] XFS (dm-0): Unmounting Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Local File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUnmount All Filesystems^[[0m.
         Stoppin[ 1306.086307] audit: type=1131 audit(1750148382.569:315): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
g ^[[0;1;39mMonit[ 1306.107951] audit: type=1131 audit(1750148382.589:316): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRemount Root and Kernel File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[[ 1306.207083] audit: type=1131 audit(1750148382.689:317): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
0m] Stopped ^[[0;[ 1306.228782] audit: type=1130 audit(1750148382.709:318): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
1;39mMonitoring [ 1306.249935] audit: type=1131 audit(1750148382.709:319): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
of LVM2 mirrors…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] [ 1306.277098] audit: type=1334 audit(1750148382.757:320): prog-id=54 op=UNLOAD
Reached target ^[[0;1;39mSystem Shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLate Shutdown Services^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSystem Reboot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Reboot^[[0m.
[ 1306.310002] watchdog: watchdog0: watchdog did not stop!
[ 1306.320433] systemd-shutdown[1]: Using hardware watchdog 'SP5100 TCO timer', version 0, device /dev/watchdog0
[ 1306.330460] systemd-shutdown[1]: Watchdog running with a timeout of 10min.
[ 1306.345475] systemd-shutdown[1]: Syncing filesystems and block devices.
[ 1306.352133] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
[ 1306.377571] systemd-journald[1735]: Received SIGTERM from PID 1 (systemd-shutdow).
[ 1306.409823] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
[ 1306.433879] systemd-shutdown[1]: Unmounting file systems.
[ 1306.440132] [92452]: Remounting '/' read-only with options 'attr2,inode64,logbufs=8,logbsize=32k,noquota'.
[ 1306.461963] systemd-shutdown[1]: All filesystems unmounted.
[ 1306.467673] systemd-shutdown[1]: Deactivating swaps.
[ 1306.473191] systemd-shutdown[1]: All swaps deactivated.
[ 1306.478421] systemd-shutdown[1]: Detaching loop devices.
[ 1306.484233] systemd-shutdown[1]: All loop devices detached.
[ 1306.489830] systemd-shutdown[1]: Stopping MD devices.
[ 1306.494941] systemd-shutdown[1]: All MD devices stopped.
[ 1306.500360] systemd-shutdown[1]: Detaching DM devices.
[ 1306.505872] systemd-shutdown[1]: Detaching DM /dev/dm-2 (253:2).
[ 1306.553885] systemd-shutdown[1]: Detaching DM /dev/dm-0 (253:0).
[ 1306.605797] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[ 1306.612321] systemd-shutdown[1]: Detaching DM devices.
[ 1306.617709] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[ 1306.624152] systemd-shutdown[1]: Cannot finalize remaining DM devices, continuing.
[ 1306.631716] watchdog: watchdog0: watchdog did not stop!
[ 1306.721801] systemd-shutdown[1]: Successfully changed into root pivot.
[ 1306.728331] systemd-shutdown[1]: Returning to initrd...
[ 1306.780011] dracut Warning: Killing all remaining processes
dracut Warning: Killing all remaining processes
[ 1306.890108] XFS (dm-1): Unmounting Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[ 1306.905303] dracut Warning: Unmounted /oldroot.
dracut Warning: Unmounted /oldroot.
[ 1306.921360] dracut: Disassembling device-mapper devices
Rebooting.
[ 1307.144562] sd 8:0:2:0: [sdc] Synchronizing SCSI cache
[ 1307.149824] sd 8:0:0:0: [sda] Synchronizing SCSI cache
[ 1308.611251] mpt3sas_cm0: sending message unit reset !!
[ 1308.619111] mpt3sas_cm0: message unit reset: SUCCESS
[ 1308.626660] ACPI: PM: Preparing to enter system sleep state S5
[ 1308.632618] kvm: exiting hardware virtualization
[ 1308.637275] reboot: Restarting system
[ 1308.640944] reboot: machine restart
^[[c^[[2J^[[01;01H^[[=3h^[[2J^[[01;01HKEY MAPPING FOR CONSOLE REDIRECTION:

Use the <ESC><1> key sequence for <F1>
Use the <ESC><2> key sequence for <F2>
Use the <ESC><3> key sequence for <F3>
Use the <ESC><0> key sequence for <F10>
Use the <ESC><!> key sequence for <F11>
Use the <ESC><@> key sequence for <F12>

Use the <ESC><Ctrl><M> key sequence for <Ctrl><M>
Use the <ESC><Ctrl><H> key sequence for <Ctrl><H>
Use the <ESC><Ctrl><I> key sequence for <Ctrl><I>
Use the <ESC><Ctrl><J> key sequence for <Ctrl><J>

Use the <ESC><X><X> key sequence for <Alt><x>, where x is any letter
key, and X is the upper case of that key

Use the <ESC><R><ESC><r><ESC><R> key sequence for <Ctrl><Alt><Del>

Press the spacebar to pause...
Initializing PCIe, USB, and Video... Done
PowerEdge R6515
BIOS Version: 2.17.0
Console Redirection Enabled Requested by iDRAC

F2	 = System Setup
F10	 = Lifecycle Controller (Config
	   iDRAC, Update FW, Install OS)
F11	 = Boot Manager
F12	 = PXE Boot
iDRAC IPV4:  10.86.18.202 [Dedicated]
                                
Initializing Firmware Interfaces...
 





Enumerating Boot options...
Enumerating Boot options... Done
Loading Lifecycle Controller Drivers...
Loading Lifecycle Controller Drivers...Done
Lifecycle Controller: Collecting System Inventory...

iDRAC IPV4:  10.86.18.202 [Dedicated]

^[[2J^[[01;01HLifecycle Controller: Done
Booting...
^[[2J^[[01;01HBooting from Integrated Storage Controller 1: Red Hat Enterprise Linux
^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[02;32HGRUB version 2.06

\r^[[04;02H/----------------------------------------------------------------------------\^[[05;02H|^[[05;79H|^[[06;02H|^[[06;79H|^[[07;02H|^[[07;79H|^[[08;02H|^[[08;79H|^[[09;02H|^[[09;79H|^[[10;02H|^[[10;79H|^[[11;02H|^[[11;79H|^[[12;02H|^[[12;79H|^[[13;02H|^[[13;79H|^[[14;02H|^[[14;79H|^[[15;02H|^[[15;79H|^[[16;02H|^[[16;79H|^[[17;02H\----------------------------------------------------------------------------/^[[18;02H^[[19;02H     Use the ^ and v keys to select which entry is highlighted.          
\r      Press enter to boot the selected OS, `e' to edit the commands       
\r      before booting or `c' for a command-line. ESC to return previous    
\r      menu.                                                               ^[[05;80H ^[[0m^[[30m^[[47m^[[05;03H*Red Hat Enterprise Linux (6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e)>
\r^[[06;01H^[[0m^[[37m^[[40m^[[05;78H^[[06;03H Red Hat Enterprise Linux (6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997)>
\r^[[07;01H^[[06;78H^[[07;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250613-bc6e0ba6c9-dc42f4ece61)>
\r^[[08;01H^[[07;78H^[[08;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250612-0bb71d3018-d909e6968a1)>
\r^[[09;01H^[[08;78H^[[09;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250611-19a60293b9-72d7c68e20e)>
\r^[[10;01H^[[09;78H^[[10;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250610-b27cc623e0-9a3b1b1b837)>
\r^[[11;01H^[[10;78H^[[11;03H Red Hat Enterprise Linux (6.15.0-rc7-next-20250526-3be1a7a31f-22d449bcd69)>
\r^[[12;01H^[[11;78H^[[12;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250514-bdd609656f-ccb396cc166)>
\r^[[13;01H^[[12;78H^[[13;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250513-aa94665adc-e0bf3d3816b)>
\r^[[14;01H^[[13;78H^[[14;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250512-edef457004-450c56522a8)>
\r^[[15;01H^[[14;78H^[[15;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250508-f48887a98b-19c541fe872)>
\r^[[16;01H^[[15;78H^[[16;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250507-08710e6960-81586bd2ca8)>
\r^[[17;01H^[[16;78H^[[16;80Hv^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 5s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 4s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 3s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 2s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 1s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 0s.                 ^[[05;78H^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m  Booting `Red Hat Enterprise Linux
\r(6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e) 9.5 (Plow)'

\r[    0.000000] Linux version 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e (root@sharavati•amd.com) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-5), GNU ld version 2.35.2-63.el9) #1 SMP PREEMPT_DYNAMIC Tue Jun 17 12:09:52 IST 2025
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] SEV-SNP: RMP table physical range [0x0000000015e00000 - 0x00000000566fffff]
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000015dfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000015e00000-0x00000000566fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000056700000-0x00000000567fbfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000567fc000-0x00000000567fcfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000567fd000-0x000000005a142fff] usable
[    0.000000] BIOS-e820: [mem 0x000000005a143000-0x000000005a342fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005a343000-0x0000000067acefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000067acf000-0x000000006dfcefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006dfcf000-0x000000006edfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006edff000-0x000000006effefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000006efff000-0x000000006effffff] usable
[    0.000000] BIOS-e820: [mem 0x000000006f000000-0x000000006f00afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006f00b000-0x000000006fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000070000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa000000-0x00000000aaffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c5000000-0x00000000c5ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e0ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000207fcfffff] usable
[    0.000000] BIOS-e820: [mem 0x000000207fd00000-0x000000207fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000002080000000-0x000000407f1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000407f200000-0x000000407fffffff] reserved
[    0.000000] printk: legacy bootconsole [earlyser0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by Dell Inc.
[    0.000000] efi: ACPI=0x6effe000 ACPI 2.0=0x6effe014 MEMATTR=0x63f376a0 SMBIOS=0x6979e000 SMBIOS 3.0=0x6979c000 MOKvar=0x67bcc000 RNG=0x6efb4020 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem56: MMIO range=[0x80000000-0x8fffffff] (256MB) from e820 map
[    0.000000] efi: Remove mem57: MMIO range=[0xaa000000-0xaaffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem58: MMIO range=[0xc5000000-0xc5ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem59: MMIO range=[0xe0000000-0xe0ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem60: MMIO range=[0xfd000000-0xffffffff] (48MB) from e820 map
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[    0.000000] DMI: Memory slots populated: 8/16
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1996.348 MHz processor
[    0.000028] last_pfn = 0x407f200 max_arch_pfn = 0x400000000
[    0.005552] MTRR map: 7 entries (2 fixed + 5 variable; max 19), built from 9 variable MTRRs
[    0.013866] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Memory KASLR using RDRAND RDTSC...
[    0.023859] x2apic: enabled by BIOS, switching to x2apic ops
[    0.029492] last_pfn = 0x70000 max_arch_pfn = 0x400000000
[    0.039324] SEV-SNP: Reserving start/end of RMP table on a 2MB boundary [0x0000000056600000]
[    0.047592] Using GB pages for direct mapping
[    0.052592] Secure boot disabled
[    0.055645] RAMDISK: [mem 0x0bb2c000-0x0e0d4fff]
[    0.060241] ACPI: Early table checksum verification disabled
[    0.065874] ACPI: RSDP 0x000000006EFFE014 000024 (v02 DELL  )
[    0.071591] ACPI: XSDT 0x000000006EFB7188 0000DC (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.080085] ACPI: FACP 0x000000006EFF9000 000114 (v06 DELL   PE_SC3   00000002 DELL 00000001)
[    0.088578] ACPI: DSDT 0x000000006EFDA000 019528 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.097070] ACPI: FACS 0x000000006EDB9000 000040
[    0.101662] ACPI: BERT 0x000000006EFFC000 000030 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.110155] ACPI: ERST 0x000000006EFFB000 000230 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.118647] ACPI: HEST 0x000000006EFFA000 0007F4 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.127140] ACPI: HPET 0x000000006EFF8000 000038 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.135632] ACPI: APIC 0x000000006EFF6000 0018BE (v05 DELL   PE_SC3   00000002 DELL 00000001)
[    0.144134] ACPI: MCFG 0x000000006EFF5000 00003C (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.152627] ACPI: WSMT 0x000000006EFF4000 000028 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.161119] ACPI: SSDT 0x000000006EFD9000 000629 (v02 DELL   xhc_port 00000001 INTL 20210331)
[    0.169612] ACPI: SSDT 0x000000006EFD8000 000D6E (v02 AMD    CPMRAS   00000001 INTL 20210331)
[    0.178105] ACPI: EINJ 0x000000006EFD7000 000170 (v01 AMD    PE_SC3   00000001 AMD  00000001)
[    0.186598] ACPI: PCCT 0x000000006EFD6000 00006E (v02 DELL   AmdTable 00000001 AMD  00000001)
[    0.195089] ACPI: SSDT 0x000000006EFC7000 00E849 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.203583] ACPI: SRAT 0x000000006EFC6000 000CD0 (v03 DELL   PE_SC3   00000001 AMD  00000001)
[    0.212075] ACPI: MSCT 0x000000006EFC5000 00004E (v01 DELL   PE_SC3   00000000 AMD  00000001)
[    0.220569] ACPI: SLIT 0x000000006EFC4000 000030 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.229061] ACPI: CRAT 0x000000006EFBC000 0072F8 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.237553] ACPI: CDIT 0x000000006EFBB000 00002C (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.246116] ACPI: IVRS 0x000000006EFBA000 0001F0 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.254608] ACPI: SPCR 0x000000006EFB9000 000050 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.263102] ACPI: SLIC 0x000000006EFB8000 000176 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.271594] ACPI: SSDT 0x000000006EFFD000 000D66 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.280086] ACPI: SSDT 0x000000006EFB5000 00193C (v02 AMD    CPMCMN   00000001 INTL 20210331)
[    0.288579] ACPI: Reserving FACP table memory at [mem 0x6eff9000-0x6eff9113]
[    0.295597] ACPI: Reserving DSDT table memory at [mem 0x6efda000-0x6eff3527]
[    0.302618] ACPI: Reserving FACS table memory at [mem 0x6edb9000-0x6edb903f]
[    0.309637] ACPI: Reserving BERT table memory at [mem 0x6effc000-0x6effc02f]
[    0.316657] ACPI: Reserving ERST table memory at [mem 0x6effb000-0x6effb22f]
[    0.323675] ACPI: Reserving HEST table memory at [mem 0x6effa000-0x6effa7f3]
[    0.330696] ACPI: Reserving HPET table memory at [mem 0x6eff8000-0x6eff8037]
[    0.337715] ACPI: Reserving APIC table memory at [mem 0x6eff6000-0x6eff78bd]
[    0.344769] ACPI: Reserving MCFG table memory at [mem 0x6eff5000-0x6eff503b]
[    0.351789] ACPI: Reserving WSMT table memory at [mem 0x6eff4000-0x6eff4027]
[    0.358809] ACPI: Reserving SSDT table memory at [mem 0x6efd9000-0x6efd9628]
[    0.365828] ACPI: Reserving SSDT table memory at [mem 0x6efd8000-0x6efd8d6d]
[    0.372847] ACPI: Reserving EINJ table memory at [mem 0x6efd7000-0x6efd716f]
[    0.379866] ACPI: Reserving PCCT table memory at [mem 0x6efd6000-0x6efd606d]
[    0.386886] ACPI: Reserving SSDT table memory at [mem 0x6efc7000-0x6efd5848]
[    0.393906] ACPI: Reserving SRAT table memory at [mem 0x6efc6000-0x6efc6ccf]
[    0.400925] ACPI: Reserving MSCT table memory at [mem 0x6efc5000-0x6efc504d]
[    0.407945] ACPI: Reserving SLIT table memory at [mem 0x6efc4000-0x6efc402f]
[    0.414965] ACPI: Reserving CRAT table memory at [mem 0x6efbc000-0x6efc32f7]
[    0.421984] ACPI: Reserving CDIT table memory at [mem 0x6efbb000-0x6efbb02b]
[    0.429004] ACPI: Reserving IVRS table memory at [mem 0x6efba000-0x6efba1ef]
[    0.436022] ACPI: Reserving SPCR table memory at [mem 0x6efb9000-0x6efb904f]
[    0.443041] ACPI: Reserving SLIC table memory at [mem 0x6efb8000-0x6efb8175]
[    0.450096] ACPI: Reserving SSDT table memory at [mem 0x6effd000-0x6effdd65]
[    0.457115] ACPI: Reserving SSDT table memory at [mem 0x6efb5000-0x6efb693b]
[    0.464209] APIC: Switched APIC routing to: cluster x2apic
[    0.469612] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.475574] ACPI: SRAT: Node 0 PXM 0 [mem 0x000c0000-0x7fffffff]
[    0.481553] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.487793] ACPI: SRAT: Node 1 PXM 1 [mem 0x2080000000-0x407fffffff]
[    0.494126] NUMA: Node 0 [mem 0x00001000-0x0009ffff] + [mem 0x000c0000-0x7fffffff] -> [mem 0x00001000-0x7fffffff]
[    0.504345] NUMA: Node 0 [mem 0x00001000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00001000-0x207fffffff]
[    0.515013] NODE_DATA(0) allocated [mem 0x207fcd59c0-0x207fcfffff]
[    0.521165] NODE_DATA(1) allocated [mem 0x407f1d49c0-0x407f1fefff]
[    0.527449] cannot allocate crashkernel low memory (size:0x10800000).
[    0.533980] Zone ranges:
[    0.536340]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.542494]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.548646]   Normal   [mem 0x0000000100000000-0x000000407f1fffff]
[    0.554799]   Device   empty
[    0.557659] Movable zone start for each node
[    0.561906] Early memory node ranges
[    0.565458]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.571698]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.577937]   node   0: [mem 0x0000000000100000-0x0000000015dfffff]
[    0.584176]   node   0: [mem 0x0000000056700000-0x00000000567fbfff]
[    0.590416]   node   0: [mem 0x00000000567fd000-0x000000005a142fff]
[    0.596656]   node   0: [mem 0x000000005a343000-0x0000000067acefff]
[    0.602896]   node   0: [mem 0x000000006efff000-0x000000006effffff]
[    0.609134]   node   0: [mem 0x000000006f00b000-0x000000006fffffff]
[    0.615374]   node   0: [mem 0x0000000100000000-0x000000207fcfffff]
[    0.621625]   node   1: [mem 0x0000002080000000-0x000000407f1fffff]
[    0.627864] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fcfffff]
[    0.634875] Initmem setup node 1 [mem 0x0000002080000000-0x000000407f1fffff]
[    0.641895] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.647699] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.653516] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.659749] On node 0, zone DMA32: 35072 pages in unavailable ranges
[    0.665964] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.672060] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.678150] On node 0, zone DMA32: 30000 pages in unavailable ranges
[    0.684394] On node 0, zone DMA32: 11 pages in unavailable ranges
[    0.910143] On node 1, zone Normal: 768 pages in unavailable ranges
[    0.916248] On node 1, zone Normal: 3584 pages in unavailable ranges
[    0.922718] ACPI: PM-Timer IO Port: 0x408
[    0.926591] ACPI: X2APIC_NMI (uid[0xffffffff] high edge lint[0x1])
[    0.932718] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.938624] IOAPIC[0]: apic_id 240, version 33, address 0xfec00000, GSI 0-23
[    0.945632] IOAPIC[1]: apic_id 241, version 33, address 0xe0100000, GSI 120-151
[    0.952911] IOAPIC[2]: apic_id 242, version 33, address 0xc5100000, GSI 88-119
[    0.960104] IOAPIC[3]: apic_id 243, version 33, address 0xaa100000, GSI 56-87
[    0.967211] IOAPIC[4]: apic_id 244, version 33, address 0xfd100000, GSI 24-55
[    0.974316] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.980639] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.987145] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.993551] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.998666] ACPI: SPCR: console: uart,io,0x2f8,115200
[    1.003694] CPU topo: Max. logical packages:   1
[    1.008283] CPU topo: Max. logical dies:       1
[    1.012876] CPU topo: Max. dies per package:   1
[    1.017473] CPU topo: Max. threads per core:   2
[    1.022116] CPU topo: Num. cores per package:    64
[    1.026968] CPU topo: Num. threads per package: 128
[    1.031819] CPU topo: Allowing 128 present CPUs plus 0 hotplug CPUs
[    1.038086] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    1.045600] PM: hibernation: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    1.053140] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    1.060680] PM: hibernation: Registered nosave memory: [mem 0x15e00000-0x567fffff]
[    1.068219] PM: hibernation: Registered nosave memory: [mem 0x5a143000-0x5a342fff]
[    1.075758] PM: hibernation: Registered nosave memory: [mem 0x67acf000-0x6effefff]
[    1.083298] PM: hibernation: Registered nosave memory: [mem 0x6f000000-0x6f00afff]
[    1.090838] PM: hibernation: Registered nosave memory: [mem 0x70000000-0xffffffff]
[    1.098377] PM: hibernation: Registered nosave memory: [mem 0x207fd00000-0x207fffffff]
[    1.106263] [mem 0x56800000-0xffffffff] available for PCI devices
[    1.112328] Booting paravirtualized kernel on bare hardware
[    1.117874] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    1.128294] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:128 nr_cpu_ids:128 nr_node_ids:2
[    1.139168] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[    1.145639] Kernel command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    1.174963] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e biosdevname=0 mem_encrypt=off", will be passed to user space.
[    1.191813] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    1.198728] printk: log_buf_len total cpu_extra contributions: 520192 bytes
[    1.205661] printk: log_buf_len min size: 262144 bytes
[    1.211105] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[    1.218486] printk: early log buf free: 246352(93%)
[    1.224948] software IO TLB: area num 128.
[    1.228874] software IO TLB: swiotlb_memblock_alloc: Failed to allocate 268435456 bytes tlb structure
[    1.243998] software IO TLB: SWIOTLB bounce buffer size adjusted 131072 -> 65536 slabs
[    1.250158] Fallback order for Node 0: 0 1 
[    1.250162] Fallback order for Node 1: 1 0 
[    1.250175] Built 2 zonelists, mobility grouping on.  Total pages: 66743906
[    1.273160] Policy zone: Normal
[    1.276289] mem auto-init: stack:off, heap alloc:on, heap free:off
[    1.698543] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=128, Nodes=2
Poking KASLR using RDRAND RDTSC...
[    1.719204] ftrace: allocating 53763 entries in 212 pages
[    1.724417] ftrace: allocated 212 pages with 4 groups
[    1.730318] Dynamic Preempt: voluntary
[    1.734252] rcu: Preemptible hierarchical RCU implementation.
[    1.739817] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=128.
[    1.746750] 	Trampoline variant of Tasks RCU enabled.
[    1.751776] 	Rude variant of Tasks RCU enabled.
[    1.756282] 	Tracing variant of Tasks RCU enabled.
[    1.761049] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.768588] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=128
[    1.775500] RCU Tasks: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.784303] RCU Tasks Rude: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.793577] RCU Tasks Trace: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.806441] NR_IRQS: 524544, nr_irqs: 3624, preallocated irqs: 16
[    1.812631] rcu: srcu_init: Setting srcu_struct sizes to big.
[    1.818375] Console: colour dummy device 80x25
[    1.822656] printk: legacy console [ttyS0] enabled
[    1.822656] printk: legacy console [ttyS0] enabled
[    1.832189] printk: legacy bootconsole [earlyser0] disabled
[    1.832189] printk: legacy bootconsole [earlyser0] disabled
[    1.843374] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    1.854655] ACPI: Core revision 20250404
[    1.858804] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    1.867942] APIC: Switch to symmetric I/O mode setup
[    1.873342] AMD-Vi: Using global IVHD EFR:0x841f77e022094ace, EFR2:0x0
[    1.882278] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    1.907943] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x398d68a477d, max_idle_ns: 881590603883 ns
[    1.918455] Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.69 BogoMIPS (lpj=7985392)
[    1.922466] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    1.926557] LVT offset 2 assigned for vector 0xf4
[    1.930484] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    1.934453] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    1.938454] process: using mwait in idle threads
[    1.942457] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    1.946453] Spectre V2 : Mitigation: Retpolines
[    1.950453] Spectre V2 : User space: Mitigation: STIBP always-on protection
[    1.954454] Speculative Return Stack Overflow: Mitigation: Safe RET
[    1.958453] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.962453] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
[    1.966453] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    1.970454] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    1.974457] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.978453] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.982453] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.986453] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    1.990453] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    1.994453] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    1.998453] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    2.002453] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    2.006453] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[    2.048661] Freeing SMP alternatives memory: 48K
[    2.050455] pid_max: default: 131072 minimum: 1024
[    2.062216] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm
[    2.062508] Yama: becoming mindful.
[    2.066578] AppArmor: AppArmor initialized
[    2.079369] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    2.087648] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    2.090600] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.094551] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.211420] smpboot: CPU0: AMD EPYC 7713 64-Core Processor (family: 0x19, model: 0x1, stepping: 0x1)
[    2.214807] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    2.218455] ... version:                0
[    2.222454] ... bit width:              48
[    2.226454] ... generic registers:      6
[    2.230454] ... value mask:             0000ffffffffffff
[    2.234454] ... max period:             00007fffffffffff
[    2.238454] ... fixed-purpose events:   0
[    2.242454] ... event mask:             000000000000003f
[    2.246885] signal: max sigframe size: 3376
[    2.250515] rcu: Hierarchical SRCU implementation.
[    2.254454] rcu: 	Max phase no-delay instances is 1000.
[    2.258510] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
[    2.270806] MCE: In-kernel MCE decoding enabled.
[    2.274501] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    2.283384] smp: Bringing up secondary CPUs ...
[    2.286599] smpboot: x86: Booting SMP configuration:
[    2.290456] .... node  #0, CPUs:          #1   #2   #3   #4   #5   #6   #7   #8   #9  #10  #11  #12  #13  #14  #15  #16  #17  #18  #19  #20  #21  #22  #23  #24  #25  #26  #27  #28  #29  #30  #31
[    2.302456] .... node  #1, CPUs:    #32  #33  #34  #35  #36  #37  #38  #39  #40  #41  #42  #43  #44  #45  #46  #47  #48  #49  #50  #51  #52  #53  #54  #55  #56  #57  #58  #59  #60  #61  #62  #63
[    2.454456] .... node  #0, CPUs:    #64  #65  #66  #67  #68  #69  #70  #71  #72  #73  #74  #75  #76  #77  #78  #79  #80  #81  #82  #83  #84  #85  #86  #87  #88  #89  #90  #91  #92  #93  #94  #95
[    2.462458] .... node  #1, CPUs:    #96  #97  #98  #99 #100 #101 #102 #103 #104 #105 #106 #107 #108 #109 #110 #111 #112 #113 #114 #115 #116 #117 #118 #119 #120 #121 #122 #123 #124 #125 #126 #127
[    2.470758] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[    2.622616] smp: Brought up 2 nodes, 128 CPUs
[    2.626459] smpboot: Total of 128 processors activated (511065.08 BogoMIPS)
[    2.640624] Memory: 262224960K/266975624K available (18401K kernel code, 3299K rwdata, 7944K rodata, 4760K init, 6092K bss, 4428312K reserved, 0K cma-reserved)
[    2.648371] devtmpfs: initialized
[    2.650558] x86/mm: Memory block size: 2048MB
[    2.665033] ACPI: PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    2.666456] ACPI: PM: Registering ACPI NVS region [mem 0x6dfcf000-0x6edfefff] (14876672 bytes)
[    2.670739] ACPI: PM: Registering ACPI NVS region [mem 0x6f000000-0x6f00afff] (45056 bytes)
[    2.674574] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    2.678519] posixtimers hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.682677] futex hash table entries: 16384 (1048576 bytes on 2 NUMA nodes, total 2048 KiB, linear).
[    2.686684] pinctrl core: initialized pinctrl subsystem
[    2.690602] PM: RTC time: 13:51:58, date: 2025-06-17
[    2.695238] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    2.699059] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    2.702636] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    2.706635] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    2.710462] audit: initializing netlink subsys (disabled)
[    2.714483] audit: type=2000 audit(1750168317.832:1): state=initialized audit_enabled=0 res=1
[    2.714658] thermal_sys: Registered thermal governor 'fair_share'
[    2.718455] thermal_sys: Registered thermal governor 'bang_bang'
[    2.722454] thermal_sys: Registered thermal governor 'step_wise'
[    2.726455] thermal_sys: Registered thermal governor 'user_space'
[    2.730477] cpuidle: using governor ladder
[    2.738465] cpuidle: using governor menu
[    2.742501] Detected 1 PCC Subspaces
[    2.746455] Registering PCC driver as Mailbox controller
[    2.754626] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    2.758458] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    2.762633] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    2.766465] PCI: Using configuration type 1 for base access
[    2.770463] PCI: Dell System detected, enabling pci=bfsort.
[    2.774661] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    2.778671] HugeTLB: allocation took 0ms with hugepage_allocation_threads=32
[    2.782500] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    2.786455] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    2.790454] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    2.794454] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    2.802954] ACPI: Added _OSI(Module Device)
[    2.806455] ACPI: Added _OSI(Processor Device)
[    2.810454] ACPI: Added _OSI(Processor Aggregator Device)
[    2.855529] ACPI: 6 ACPI AML tables successfully acquired and loaded
[    2.871544] ACPI: Interpreter enabled
[    2.874466] ACPI: PM: (supports S0 S5)
[    2.878454] ACPI: Using IOAPIC for interrupt routing
[    2.883071] HEST: Table parsing has been initialized.
[    2.886868] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    2.890460] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.894455] PCI: Ignoring E820 reservations for host bridge windows
[    2.903013] ACPI: Enabled 1 GPEs in block 00 to 1F
[    2.945005] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    2.946535] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    2.950533] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    2.954532] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    2.958532] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    2.962532] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    2.966534] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    2.970532] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    2.974953] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-3f])
[    2.978458] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.982619] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER DPC]
[    2.986771] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    2.990454] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.995442] PCI host bridge to bus 0000:00
[    2.998458] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    3.002454] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    3.006455] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000fffff window]
[    3.010454] pci_bus 0000:00: root bus resource [io  0x0d00-0x3fff window]
[    3.014454] pci_bus 0000:00: root bus resource [mem 0xe1000000-0xfebfffff window]
[    3.018454] pci_bus 0000:00: root bus resource [mem 0x63dc0000000-0x7fcffffffff window]
[    3.022454] pci_bus 0000:00: root bus resource [bus 00-3f]
[    3.026471] pci 0000:00:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.030612] pci 0000:00:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.034564] pci 0000:00:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.038547] pci 0000:00:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.042546] pci 0000:00:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.046549] pci 0000:00:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.050470] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.054457] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    3.058456] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    3.062527] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    3.067468] pci 0000:00:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.070549] pci 0000:00:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.074548] pci 0000:00:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.078549] pci 0000:00:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.082470] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.086460] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    3.090466] pci 0000:00:07.1: enabling Extended Tags
[    3.094502] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    3.098614] pci 0000:00:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.102548] pci 0000:00:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.106470] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.110459] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    3.114466] pci 0000:00:08.1: enabling Extended Tags
[    3.118504] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    3.122645] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
[    3.126570] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
[    3.130625] pci 0000:00:18.0: [1022:1650] type 00 class 0x060000 conventional PCI endpoint
[    3.134560] pci 0000:00:18.1: [1022:1651] type 00 class 0x060000 conventional PCI endpoint
[    3.138520] pci 0000:00:18.2: [1022:1652] type 00 class 0x060000 conventional PCI endpoint
[    3.142523] pci 0000:00:18.3: [1022:1653] type 00 class 0x060000 conventional PCI endpoint
[    3.146521] pci 0000:00:18.4: [1022:1654] type 00 class 0x060000 conventional PCI endpoint
[    3.150520] pci 0000:00:18.5: [1022:1655] type 00 class 0x060000 conventional PCI endpoint
[    3.154524] pci 0000:00:18.6: [1022:1656] type 00 class 0x060000 conventional PCI endpoint
[    3.158518] pci 0000:00:18.7: [1022:1657] type 00 class 0x060000 conventional PCI endpoint
[    3.162591] pci 0000:01:00.0: [1000:0097] type 00 class 0x010700 PCIe Endpoint
[    3.166485] pci 0000:01:00.0: BAR 0 [io  0x1000-0x10ff]
[    3.170456] pci 0000:01:00.0: BAR 1 [mem 0xf7400000-0xf740ffff 64bit]
[    3.174456] pci 0000:01:00.0: BAR 3 [mem 0xf7300000-0xf73fffff 64bit]
[    3.178456] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]
[    3.182459] pci 0000:01:00.0: enabling Extended Tags
[    3.186540] pci 0000:01:00.0: supports D1 D2
[    3.190495] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[    3.194454] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x000fffff 64bit]: contains BAR 0 for 16 VFs
[    3.198455] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x000fffff 64bit]
[    3.202455] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x00ffffff 64bit]: contains BAR 2 for 16 VFs
[    3.206608] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.210544] pci 0000:02:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.214488] pci 0000:02:00.0: enabling Extended Tags
[    3.218616] pci 0000:02:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.222482] pci 0000:02:00.2: BAR 2 [mem 0xf7200000-0xf727ffff]
[    3.226456] pci 0000:02:00.2: BAR 5 [mem 0xf7280000-0xf7281fff]
[    3.230459] pci 0000:02:00.2: enabling Extended Tags
[    3.234658] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.238593] pci 0000:03:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.242491] pci 0000:03:00.0: enabling Extended Tags
[    3.246668] pci 0000:03:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.250484] pci 0000:03:00.2: BAR 2 [mem 0xf7100000-0xf717ffff]
[    3.254457] pci 0000:03:00.2: BAR 5 [mem 0xf7180000-0xf7181fff]
[    3.258459] pci 0000:03:00.2: enabling Extended Tags
[    3.262649] pci 0000:03:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.266484] pci 0000:03:00.3: BAR 0 [mem 0xf7000000-0xf70fffff 64bit]
[    3.270462] pci 0000:03:00.3: enabling Extended Tags
[    3.274505] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
[    3.278639] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.286503] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 40-7f])
[    3.290457] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.294620] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.298770] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.302454] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.311226] PCI host bridge to bus 0000:40
[    3.314458] pci_bus 0000:40: root bus resource [io  0x4000-0x6fff window]
[    3.318454] pci_bus 0000:40: root bus resource [mem 0x90000000-0xaaffffff window]
[    3.322454] pci_bus 0000:40: root bus resource [mem 0x47e80000000-0x63dbfffffff window]
[    3.326455] pci_bus 0000:40: root bus resource [bus 40-7f]
[    3.330464] pci 0000:40:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.334553] pci 0000:40:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.338556] pci 0000:40:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.342538] pci 0000:40:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.346539] pci 0000:40:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.350548] pci 0000:40:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.354471] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.358460] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    3.362547] pci 0000:40:03.1: PME# supported from D0 D3hot D3cold
[    3.382392] pci 0000:40:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.382472] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.386460] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    3.390546] pci 0000:40:03.2: PME# supported from D0 D3hot D3cold
[    3.407924] pci 0000:40:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.410478] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.414461] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    3.418646] pci 0000:40:03.3: PME# supported from D0 D3hot D3cold
[    3.437725] pci 0000:40:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.438472] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.442465] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    3.446586] pci 0000:40:03.4: PME# supported from D0 D3hot D3cold
[    3.463685] pci 0000:40:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.466577] pci 0000:40:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.470544] pci 0000:40:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.474546] pci 0000:40:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.478474] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.482460] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    3.486467] pci 0000:40:07.1: enabling Extended Tags
[    3.490506] pci 0000:40:07.1: PME# supported from D0 D3hot D3cold
[    3.498622] pci 0000:40:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.506547] pci 0000:40:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.514471] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.518458] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    3.526466] pci 0000:40:08.1: enabling Extended Tags
[    3.530503] pci 0000:40:08.1: PME# supported from D0 D3hot D3cold
[    3.534705] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.542538] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.546536] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.550537] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.554544] pci 0000:45:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.562487] pci 0000:45:00.0: enabling Extended Tags
[    3.566615] pci 0000:45:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.574482] pci 0000:45:00.2: BAR 2 [mem 0xa5300000-0xa537ffff]
[    3.582456] pci 0000:45:00.2: BAR 5 [mem 0xa5380000-0xa5381fff]
[    3.586459] pci 0000:45:00.2: enabling Extended Tags
[    3.594653] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.598588] pci 0000:46:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.606491] pci 0000:46:00.0: enabling Extended Tags
[    3.610664] pci 0000:46:00.1: [1022:1486] type 00 class 0x108000 PCIe Endpoint
[    3.618483] pci 0000:46:00.1: BAR 2 [mem 0xa5100000-0xa51fffff]
[    3.622456] pci 0000:46:00.1: BAR 5 [mem 0xa5282000-0xa5283fff]
[    3.630459] pci 0000:46:00.1: enabling Extended Tags
[    3.634649] pci 0000:46:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.642483] pci 0000:46:00.2: BAR 2 [mem 0xa5200000-0xa527ffff]
[    3.646456] pci 0000:46:00.2: BAR 5 [mem 0xa5280000-0xa5281fff]
[    3.654459] pci 0000:46:00.2: enabling Extended Tags
[    3.658647] pci 0000:46:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.666483] pci 0000:46:00.3: BAR 0 [mem 0xa5000000-0xa50fffff 64bit]
[    3.674462] pci 0000:46:00.3: enabling Extended Tags
[    3.678504] pci 0000:46:00.3: PME# supported from D0 D3hot D3cold
[    3.682639] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.690694] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 80-bf])
[    3.694458] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.706627] acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.714772] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.722454] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.731363] PCI host bridge to bus 0000:80
[    3.734458] pci_bus 0000:80: root bus resource [io  0x7000-0x9fff window]
[    3.742454] pci_bus 0000:80: root bus resource [mem 0xab000000-0xc5ffffff window]
[    3.750454] pci_bus 0000:80: root bus resource [mem 0x2bf40000000-0x47e7fffffff window]
[    3.758455] pci_bus 0000:80: root bus resource [bus 80-bf]
[    3.762464] pci 0000:80:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.770554] pci 0000:80:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.778555] pci 0000:80:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.786548] pci 0000:80:01.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.794472] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.798459] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    3.806549] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    3.826649] pci 0000:80:01.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.834478] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.838461] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    3.846527] pci 0000:80:01.2: PME# supported from D0 D3hot D3cold
[    3.865726] pci 0000:80:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.866552] pci 0000:80:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.874462] pci 0000:80:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.878611] pci 0000:80:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.882544] pci 0000:80:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.886545] pci 0000:80:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.890470] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.894458] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    3.898466] pci 0000:80:07.1: enabling Extended Tags
[    3.902502] pci 0000:80:07.1: PME# supported from D0 D3hot D3cold
[    3.906609] pci 0000:80:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.910548] pci 0000:80:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.914470] pci 0000:80:08.1: PCI bridge to [bus 84]
[    3.918458] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    3.922466] pci 0000:80:08.1: enabling Extended Tags
[    3.926504] pci 0000:80:08.1: PME# supported from D0 D3hot D3cold
[    3.930622] pci 0000:80:08.2: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.934471] pci 0000:80:08.2: PCI bridge to [bus 85]
[    3.938458] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    3.942466] pci 0000:80:08.2: enabling Extended Tags
[    3.946503] pci 0000:80:08.2: PME# supported from D0 D3hot D3cold
[    3.950695] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.954541] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.958543] pci 0000:83:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.962487] pci 0000:83:00.0: enabling Extended Tags
[    3.966615] pci 0000:83:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.970481] pci 0000:83:00.2: BAR 2 [mem 0xbfa00000-0xbfa7ffff]
[    3.974456] pci 0000:83:00.2: BAR 5 [mem 0xbfa80000-0xbfa81fff]
[    3.978459] pci 0000:83:00.2: enabling Extended Tags
[    3.982653] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.986590] pci 0000:84:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.990490] pci 0000:84:00.0: enabling Extended Tags
[    3.994666] pci 0000:84:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.998484] pci 0000:84:00.2: BAR 2 [mem 0xbf900000-0xbf97ffff]
[    4.002457] pci 0000:84:00.2: BAR 5 [mem 0xbf980000-0xbf981fff]
[    4.006460] pci 0000:84:00.2: enabling Extended Tags
[    4.010663] pci 0000:80:08.1: PCI bridge to [bus 84]
[    4.014587] pci 0000:85:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[    4.018486] pci 0000:85:00.0: BAR 5 [mem 0xbf800000-0xbf8007ff]
[    4.022459] pci 0000:85:00.0: enabling Extended Tags
[    4.026517] pci 0000:85:00.0: PME# supported from D3hot D3cold
[    4.030631] pci 0000:80:08.2: PCI bridge to [bus 85]
[    4.038661] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus c0-ff])
[    4.042457] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    4.046618] acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug AER DPC]
[    4.050771] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    4.054455] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
[    4.063478] PCI host bridge to bus 0000:c0
[    4.066458] pci_bus 0000:c0: root bus resource [io  0xa000-0xffff window]
[    4.070454] pci_bus 0000:c0: root bus resource [mem 0xc6000000-0xe0ffffff window]
[    4.074454] pci_bus 0000:c0: root bus resource [mem 0x10000000000-0x2bf3fffffff window]
[    4.078455] pci_bus 0000:c0: root bus resource [io  0x03b0-0x03df window]
[    4.082456] pci_bus 0000:c0: root bus resource [mem 0x000a0000-0x000bffff window]
[    4.086454] pci_bus 0000:c0: root bus resource [bus c0-ff]
[    4.090464] pci 0000:c0:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    4.094552] pci 0000:c0:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    4.098557] pci 0000:c0:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.102539] pci 0000:c0:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.106539] pci 0000:c0:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.110549] pci 0000:c0:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.114473] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.118459] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    4.126574] pci 0000:c0:03.1: PME# supported from D0 D3hot D3cold
[    4.146187] pci 0000:c0:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.146476] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.150459] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    4.154560] pci 0000:c0:03.2: PME# supported from D0 D3hot D3cold
[    4.173049] pci 0000:c0:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.174474] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.178464] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    4.182567] pci 0000:c0:03.3: PME# supported from D0 D3hot D3cold
[    4.204163] pci 0000:c0:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.206477] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.210461] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    4.214579] pci 0000:c0:03.4: PME# supported from D0 D3hot D3cold
[    4.235577] pci 0000:c0:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.238548] pci 0000:c0:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.242550] pci 0000:c0:05.1: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.246469] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.250464] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    4.254500] pci 0000:c0:05.1: PME# supported from D0 D3hot D3cold
[    4.258606] pci 0000:c0:05.2: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.262469] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.266460] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    4.270460] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.274499] pci 0000:c0:05.2: PME# supported from D0 D3hot D3cold
[    4.278597] pci 0000:c0:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.282544] pci 0000:c0:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.286469] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.290458] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    4.294466] pci 0000:c0:07.1: enabling Extended Tags
[    4.298502] pci 0000:c0:07.1: PME# supported from D0 D3hot D3cold
[    4.302715] pci 0000:c0:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.306545] pci 0000:c0:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.310469] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.314458] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    4.318466] pci 0000:c0:08.1: enabling Extended Tags
[    4.322502] pci 0000:c0:08.1: PME# supported from D0 D3hot D3cold
[    4.326699] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.330539] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.334536] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.338535] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.342557] pci 0000:c1:00.0: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.346501] pci 0000:c1:00.0: BAR 0 [mem 0xc7030000-0xc703ffff 64bit pref]
[    4.350462] pci 0000:c1:00.0: BAR 2 [mem 0xc7040000-0xc704ffff 64bit pref]
[    4.354460] pci 0000:c1:00.0: BAR 4 [mem 0xc7050000-0xc705ffff 64bit pref]
[    4.358457] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.362530] pci 0000:c1:00.0: PME# supported from D0 D3hot D3cold
[    4.366511] pci 0000:c1:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:c0:05.1 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
[    4.383886] pci 0000:c1:00.1: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.390501] pci 0000:c1:00.1: BAR 0 [mem 0xc7000000-0xc700ffff 64bit pref]
[    4.398457] pci 0000:c1:00.1: BAR 2 [mem 0xc7010000-0xc701ffff 64bit pref]
[    4.406456] pci 0000:c1:00.1: BAR 4 [mem 0xc7020000-0xc702ffff 64bit pref]
[    4.410456] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.418543] pci 0000:c1:00.1: PME# supported from D0 D3hot D3cold
[    4.434481] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.438538] pci 0000:c2:00.0: [1556:be00] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    4.446481] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.450462] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    4.458464] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.474471] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.478491] pci_bus 0000:c3: extended config space not accessible
[    4.486483] pci 0000:c3:00.0: [102b:0536] type 00 class 0x030000 conventional PCI endpoint
[    4.494500] pci 0000:c3:00.0: BAR 0 [mem 0xc6000000-0xc6ffffff pref]
[    4.498456] pci 0000:c3:00.0: BAR 1 [mem 0xda808000-0xda80bfff]
[    4.506455] pci 0000:c3:00.0: BAR 2 [mem 0xda000000-0xda7fffff]
[    4.510474] pci 0000:c3:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    4.518583] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.526555] pci 0000:c8:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    4.530487] pci 0000:c8:00.0: enabling Extended Tags
[    4.538615] pci 0000:c8:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.542480] pci 0000:c8:00.2: BAR 2 [mem 0xdbb00000-0xdbb7ffff]
[    4.550456] pci 0000:c8:00.2: BAR 5 [mem 0xdbb80000-0xdbb81fff]
[    4.554459] pci 0000:c8:00.2: enabling Extended Tags
[    4.562534] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.566589] pci 0000:c9:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.574490] pci 0000:c9:00.0: enabling Extended Tags
[    4.578665] pci 0000:c9:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.586485] pci 0000:c9:00.2: BAR 2 [mem 0xdba00000-0xdba7ffff]
[    4.590456] pci 0000:c9:00.2: BAR 5 [mem 0xdba80000-0xdba81fff]
[    4.598461] pci 0000:c9:00.2: enabling Extended Tags
[    4.602657] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.613537] iommu: Default domain type: Translated
[    4.618455] iommu: DMA domain TLB invalidation policy: lazy mode
[    4.626754] SCSI subsystem initialized
[    4.630500] ACPI: bus type USB registered
[    4.634480] usbcore: registered new interface driver usbfs
[    4.638464] usbcore: registered new interface driver hub
[    4.646487] usbcore: registered new device driver usb
[    4.650485] pps_core: LinuxPPS API ver. 1 registered
[    4.654454] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux•it>
[    4.666457] PTP clock support registered
[    4.670535] EDAC MC: Ver: 3.0.0
[    4.670669] efivars: Registered efivars operations
[    4.678898] NetLabel: Initializing
[    4.682456] NetLabel:  domain hash size = 128
[    4.686455] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    4.690483] NetLabel:  unlabeled traffic allowed by default
[    4.694499] PCI: Using ACPI for IRQ routing
[    4.703376] pci 0000:c3:00.0: vgaarb: setting as boot VGA device
[    4.706453] pci 0000:c3:00.0: vgaarb: bridge control possible
[    4.706453] pci 0000:c3:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    4.706455] vgaarb: loaded
[    4.710577] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    4.714454] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    4.722650] clocksource: Switched to clocksource tsc-early
[    4.728574] VFS: Disk quotas dquot_6.6.0
[    4.732527] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.739647] AppArmor: AppArmor Filesystem Enabled
[    4.744376] pnp: PnP ACPI init
[    4.747673] system 00:00: [mem 0x80000000-0x8fffffff] has been reserved
[    4.754386] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[    4.762579] pnp: PnP ACPI: found 5 devices
[    4.773634] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    4.782610] NET: Registered PF_INET protocol family
[    4.787612] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.799419] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.808383] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    4.816412] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.825909] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.834291] TCP: Hash tables configured (established 524288 bind 65536)
[    4.841273] UDP hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.849703] UDP-Lite hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.858534] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    4.864197] NET: Registered PF_XDP protocol family
[    4.868992] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.878813] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.888629] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.898453] pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
[    4.904162] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: can't assign; no space
[    4.911906] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: failed to assign
[    4.919124] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: can't assign; no space
[    4.927383] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: failed to assign
[    4.935123] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: can't assign; no space
[    4.943379] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: failed to assign
[    4.951120] pci 0000:00:03.2: PCI bridge to [bus 01]
[    4.956087] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    4.962180] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    4.968969] pci 0000:00:07.1: PCI bridge to [bus 02]
[    4.973938] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    4.980727] pci 0000:00:08.1: PCI bridge to [bus 03]
[    4.985699] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    4.992484] PCI: No. 2 try to assign unassigned res
[    4.997363] pci 0000:00:03.2: resource 14 [mem 0xf7300000-0xf74fffff] released
[    5.004632] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.009599] pci 0000:00:03.2: bridge window [mem 0x00100000-0x002fffff] to [bus 01] add_size 1200000 add_align 100000
[    5.020198] pci 0000:00:03.2: bridge window [mem 0xe1000000-0xe23fffff]: assigned
[    5.027677] pci 0000:01:00.0: BAR 3 [mem 0xe1000000-0xe10fffff 64bit]: assigned
[    5.034987] pci 0000:01:00.0: ROM [mem 0xe1100000-0xe11fffff pref]: assigned
[    5.042036] pci 0000:01:00.0: VF BAR 2 [mem 0xe1200000-0xe21fffff 64bit]: assigned
[    5.049602] pci 0000:01:00.0: BAR 1 [mem 0xe2200000-0xe220ffff 64bit]: assigned
[    5.056912] pci 0000:01:00.0: VF BAR 0 [mem 0xe2210000-0xe230ffff 64bit]: assigned
[    5.064481] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.069445] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    5.075540] pci 0000:00:03.2:   bridge window [mem 0xe1000000-0xe23fffff]
[    5.082326] pci 0000:00:07.1: PCI bridge to [bus 02]
[    5.087299] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    5.094087] pci 0000:00:08.1: PCI bridge to [bus 03]
[    5.099060] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.105847] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    5.112074] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    5.118252] pci_bus 0000:00: resource 6 [mem 0x000c0000-0x000fffff window]
[    5.125125] pci_bus 0000:00: resource 7 [io  0x0d00-0x3fff window]
[    5.131301] pci_bus 0000:00: resource 8 [mem 0xe1000000-0xfebfffff window]
[    5.138175] pci_bus 0000:00: resource 9 [mem 0x63dc0000000-0x7fcffffffff window]
[    5.145567] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[    5.151141] pci_bus 0000:01: resource 1 [mem 0xe1000000-0xe23fffff]
[    5.157406] pci_bus 0000:02: resource 1 [mem 0xf7200000-0xf72fffff]
[    5.163671] pci_bus 0000:03: resource 1 [mem 0xf7000000-0xf71fffff]
[    5.170010] pci 0000:40:03.1: bridge window [io  0x1000-0x0fff] to [bus 41] add_size 1000
[    5.178186] pci 0000:40:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 41] add_size 200000 add_align 100000
[    5.189653] pci 0000:40:03.2: bridge window [io  0x1000-0x0fff] to [bus 42] add_size 1000
[    5.197824] pci 0000:40:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 42] add_size 200000 add_align 100000
[    5.209290] pci 0000:40:03.3: bridge window [io  0x1000-0x0fff] to [bus 43] add_size 1000
[    5.217462] pci 0000:40:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 43] add_size 200000 add_align 100000
[    5.228926] pci 0000:40:03.4: bridge window [io  0x1000-0x0fff] to [bus 44] add_size 1000
[    5.237098] pci 0000:40:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 44] add_size 200000 add_align 100000
[    5.248571] pci 0000:40:03.1: bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]: assigned
[    5.257524] pci 0000:40:03.2: bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]: assigned
[    5.266477] pci 0000:40:03.3: bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]: assigned
[    5.275430] pci 0000:40:03.4: bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]: assigned
[    5.284379] pci 0000:40:03.1: bridge window [io  0x4000-0x4fff]: assigned
[    5.291167] pci 0000:40:03.2: bridge window [io  0x5000-0x5fff]: assigned
[    5.297951] pci 0000:40:03.3: bridge window [io  0x6000-0x6fff]: assigned
[    5.304737] pci 0000:40:03.4: bridge window [io  size 0x1000]: can't assign; no space
[    5.312562] pci 0000:40:03.4: bridge window [io  size 0x1000]: failed to assign
[    5.319877] pci 0000:40:03.4: bridge window [io  0x4000-0x4fff]: assigned
[    5.326662] pci 0000:40:03.3: bridge window [io  0x5000-0x5fff]: assigned
[    5.333447] pci 0000:40:03.2: bridge window [io  0x6000-0x6fff]: assigned
[    5.340238] pci 0000:40:03.1: bridge window [io  size 0x1000]: can't assign; no space
[    5.348066] pci 0000:40:03.1: bridge window [io  size 0x1000]: failed to assign
[    5.355373] pci 0000:40:03.1: PCI bridge to [bus 41]
[    5.360339] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    5.367126] pci 0000:40:03.1:   bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.375384] pci 0000:40:03.2: PCI bridge to [bus 42]
[    5.380349] pci 0000:40:03.2:   bridge window [io  0x6000-0x6fff]
[    5.386442] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    5.393228] pci 0000:40:03.2:   bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.401487] pci 0000:40:03.3: PCI bridge to [bus 43]
[    5.406451] pci 0000:40:03.3:   bridge window [io  0x5000-0x5fff]
[    5.412543] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    5.419328] pci 0000:40:03.3:   bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.427606] pci 0000:40:03.4: PCI bridge to [bus 44]
[    5.432571] pci 0000:40:03.4:   bridge window [io  0x4000-0x4fff]
[    5.438664] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    5.445448] pci 0000:40:03.4:   bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.453709] pci 0000:40:07.1: PCI bridge to [bus 45]
[    5.458682] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    5.465469] pci 0000:40:08.1: PCI bridge to [bus 46]
[    5.470441] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    5.477229] pci_bus 0000:40: Some PCI device resources are unassigned, try booting with pci=realloc
[    5.486264] pci_bus 0000:40: resource 4 [io  0x4000-0x6fff window]
[    5.492444] pci_bus 0000:40: resource 5 [mem 0x90000000-0xaaffffff window]
[    5.499313] pci_bus 0000:40: resource 6 [mem 0x47e80000000-0x63dbfffffff window]
[    5.506706] pci_bus 0000:41: resource 1 [mem 0xa4c00000-0xa4ffffff]
[    5.512972] pci_bus 0000:41: resource 2 [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.520711] pci_bus 0000:42: resource 0 [io  0x6000-0x6fff]
[    5.526283] pci_bus 0000:42: resource 1 [mem 0xa4800000-0xa4bfffff]
[    5.532549] pci_bus 0000:42: resource 2 [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.540290] pci_bus 0000:43: resource 0 [io  0x5000-0x5fff]
[    5.545858] pci_bus 0000:43: resource 1 [mem 0xa4400000-0xa47fffff]
[    5.552125] pci_bus 0000:43: resource 2 [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.559862] pci_bus 0000:44: resource 0 [io  0x4000-0x4fff]
[    5.565436] pci_bus 0000:44: resource 1 [mem 0xa4000000-0xa43fffff]
[    5.571702] pci_bus 0000:44: resource 2 [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.579443] pci_bus 0000:45: resource 1 [mem 0xa5300000-0xa53fffff]
[    5.585706] pci_bus 0000:46: resource 1 [mem 0xa5000000-0xa52fffff]
[    5.592037] pci 0000:80:01.1: bridge window [io  0x1000-0x0fff] to [bus 81] add_size 1000
[    5.600214] pci 0000:80:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 81] add_size 200000 add_align 100000
[    5.611679] pci 0000:80:01.2: bridge window [io  0x1000-0x0fff] to [bus 82] add_size 1000
[    5.619852] pci 0000:80:01.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 82] add_size 200000 add_align 100000
[    5.631319] pci 0000:80:01.1: bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]: assigned
[    5.640270] pci 0000:80:01.2: bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]: assigned
[    5.649223] pci 0000:80:01.1: bridge window [io  0x7000-0x7fff]: assigned
[    5.656005] pci 0000:80:01.2: bridge window [io  0x8000-0x8fff]: assigned
[    5.662792] pci 0000:80:01.1: PCI bridge to [bus 81]
[    5.667757] pci 0000:80:01.1:   bridge window [io  0x7000-0x7fff]
[    5.673851] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    5.680635] pci 0000:80:01.1:   bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.688894] pci 0000:80:01.2: PCI bridge to [bus 82]
[    5.693859] pci 0000:80:01.2:   bridge window [io  0x8000-0x8fff]
[    5.699953] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    5.706736] pci 0000:80:01.2:   bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.714999] pci 0000:80:07.1: PCI bridge to [bus 83]
[    5.719972] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    5.726763] pci 0000:80:08.1: PCI bridge to [bus 84]
[    5.731730] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    5.738520] pci 0000:80:08.2: PCI bridge to [bus 85]
[    5.743500] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    5.750287] pci_bus 0000:80: resource 4 [io  0x7000-0x9fff window]
[    5.756474] pci_bus 0000:80: resource 5 [mem 0xab000000-0xc5ffffff window]
[    5.763344] pci_bus 0000:80: resource 6 [mem 0x2bf40000000-0x47e7fffffff window]
[    5.770735] pci_bus 0000:81: resource 0 [io  0x7000-0x7fff]
[    5.776308] pci_bus 0000:81: resource 1 [mem 0xbf400000-0xbf7fffff]
[    5.782574] pci_bus 0000:81: resource 2 [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.790313] pci_bus 0000:82: resource 0 [io  0x8000-0x8fff]
[    5.795884] pci_bus 0000:82: resource 1 [mem 0xbf000000-0xbf3fffff]
[    5.802150] pci_bus 0000:82: resource 2 [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.809888] pci_bus 0000:83: resource 1 [mem 0xbfa00000-0xbfafffff]
[    5.816155] pci_bus 0000:84: resource 1 [mem 0xbf900000-0xbf9fffff]
[    5.822418] pci_bus 0000:85: resource 1 [mem 0xbf800000-0xbf8fffff]
[    5.828769] pci 0000:c0:03.1: bridge window [io  0x1000-0x0fff] to [bus c4] add_size 1000
[    5.836954] pci 0000:c0:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c4] add_size 200000 add_align 100000
[    5.848433] pci 0000:c0:03.2: bridge window [io  0x1000-0x0fff] to [bus c5] add_size 1000
[    5.856608] pci 0000:c0:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c5] add_size 200000 add_align 100000
[    5.868071] pci 0000:c0:03.3: bridge window [io  0x1000-0x0fff] to [bus c6] add_size 1000
[    5.876242] pci 0000:c0:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c6] add_size 200000 add_align 100000
[    5.887708] pci 0000:c0:03.4: bridge window [io  0x1000-0x0fff] to [bus c7] add_size 1000
[    5.895888] pci 0000:c0:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c7] add_size 200000 add_align 100000
[    5.907355] pci 0000:c0:05.1: bridge window [mem 0x00100000-0x000fffff] to [bus c1] add_size 100000 add_align 100000
[    5.917875] pci 0000:c0:03.1: bridge window [mem 0x10000000000-0x100001fffff 64bit pref]: assigned
[    5.926827] pci 0000:c0:03.2: bridge window [mem 0x10000200000-0x100003fffff 64bit pref]: assigned
[    5.935780] pci 0000:c0:03.3: bridge window [mem 0x10000400000-0x100005fffff 64bit pref]: assigned
[    5.944730] pci 0000:c0:03.4: bridge window [mem 0x10000600000-0x100007fffff 64bit pref]: assigned
[    5.953712] pci 0000:c0:05.1: bridge window [mem 0xc7100000-0xc71fffff]: assigned
[    5.961187] pci 0000:c0:03.1: bridge window [io  0xa000-0xafff]: assigned
[    5.967975] pci 0000:c0:03.2: bridge window [io  0xb000-0xbfff]: assigned
[    5.974758] pci 0000:c0:03.3: bridge window [io  0xc000-0xcfff]: assigned
[    5.981544] pci 0000:c0:03.4: bridge window [io  0xd000-0xdfff]: assigned
[    5.988333] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    5.993297] pci 0000:c0:03.1:   bridge window [io  0xa000-0xafff]
[    5.999389] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    6.006175] pci 0000:c0:03.1:   bridge window [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.014436] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    6.019405] pci 0000:c0:03.2:   bridge window [io  0xb000-0xbfff]
[    6.025501] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    6.032285] pci 0000:c0:03.2:   bridge window [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.040545] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    6.045509] pci 0000:c0:03.3:   bridge window [io  0xc000-0xcfff]
[    6.051602] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    6.058386] pci 0000:c0:03.3:   bridge window [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.066648] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    6.071609] pci 0000:c0:03.4:   bridge window [io  0xd000-0xdfff]
[    6.077707] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    6.084498] pci 0000:c0:03.4:   bridge window [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.092759] pci 0000:c1:00.0: ROM [mem 0xc7100000-0xc713ffff pref]: assigned
[    6.099802] pci 0000:c1:00.1: ROM [mem 0xc7140000-0xc717ffff pref]: assigned
[    6.106847] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    6.111814] pci 0000:c0:05.1:   bridge window [mem 0xc7100000-0xc71fffff]
[    6.118600] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.126341] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    6.131315] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    6.138112] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.145857] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    6.151089] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    6.157919] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.165658] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    6.170623] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    6.177408] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    6.182373] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    6.189161] pci_bus 0000:c0: resource 4 [io  0xa000-0xffff window]
[    6.195342] pci_bus 0000:c0: resource 5 [mem 0xc6000000-0xe0ffffff window]
[    6.202217] pci_bus 0000:c0: resource 6 [mem 0x10000000000-0x2bf3fffffff window]
[    6.209609] pci_bus 0000:c0: resource 7 [io  0x03b0-0x03df window]
[    6.215786] pci_bus 0000:c0: resource 8 [mem 0x000a0000-0x000bffff window]
[    6.222660] pci_bus 0000:c4: resource 0 [io  0xa000-0xafff]
[    6.228232] pci_bus 0000:c4: resource 1 [mem 0xdb600000-0xdb9fffff]
[    6.234496] pci_bus 0000:c4: resource 2 [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.242238] pci_bus 0000:c5: resource 0 [io  0xb000-0xbfff]
[    6.247809] pci_bus 0000:c5: resource 1 [mem 0xdb200000-0xdb5fffff]
[    6.254075] pci_bus 0000:c5: resource 2 [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.261849] pci_bus 0000:c6: resource 0 [io  0xc000-0xcfff]
[    6.267419] pci_bus 0000:c6: resource 1 [mem 0xdae00000-0xdb1fffff]
[    6.273686] pci_bus 0000:c6: resource 2 [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.281423] pci_bus 0000:c7: resource 0 [io  0xd000-0xdfff]
[    6.286996] pci_bus 0000:c7: resource 1 [mem 0xdaa00000-0xdadfffff]
[    6.293261] pci_bus 0000:c7: resource 2 [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.300999] pci_bus 0000:c1: resource 1 [mem 0xc7100000-0xc71fffff]
[    6.307266] pci_bus 0000:c1: resource 2 [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.314484] pci_bus 0000:c2: resource 1 [mem 0xda000000-0xda8fffff]
[    6.320750] pci_bus 0000:c2: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.327970] pci_bus 0000:c3: resource 1 [mem 0xda000000-0xda8fffff]
[    6.334235] pci_bus 0000:c3: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.341456] pci_bus 0000:c8: resource 1 [mem 0xdbb00000-0xdbbfffff]
[    6.347719] pci_bus 0000:c9: resource 1 [mem 0xdba00000-0xdbafffff]
[    6.354695] PCI: CLS 64 bytes, default 64
[    6.358812] Trying to unpack rootfs image as initramfs...
[    6.422063] AMD-Vi: IOMMU SNP support enabled.
[    6.426679] pci 0000:c0:00.2: AMD-Vi: IOMMU performance counters supported
[    6.433720] pci 0000:c0:01.0: Adding to iommu group 0
[    6.438829] pci 0000:c0:02.0: Adding to iommu group 1
[    6.444036] pci 0000:c0:03.0: Adding to iommu group 2
[    6.449133] pci 0000:c0:03.1: Adding to iommu group 2
[    6.454237] pci 0000:c0:03.2: Adding to iommu group 2
[    6.459332] pci 0000:c0:03.3: Adding to iommu group 2
[    6.464437] pci 0000:c0:03.4: Adding to iommu group 2
[    6.469581] pci 0000:c0:04.0: Adding to iommu group 3
[    6.474732] pci 0000:c0:05.0: Adding to iommu group 4
[    6.479837] pci 0000:c0:05.1: Adding to iommu group 4
[    6.484938] pci 0000:c0:05.2: Adding to iommu group 4
[    6.490044] pci 0000:c0:07.0: Adding to iommu group 5
[    6.495128] pci 0000:c0:07.1: Adding to iommu group 6
[    6.500238] pci 0000:c0:08.0: Adding to iommu group 7
[    6.505328] pci 0000:c0:08.1: Adding to iommu group 8
[    6.510391] pci 0000:c1:00.0: Adding to iommu group 4
[    6.515448] pci 0000:c1:00.1: Adding to iommu group 4
[    6.520509] pci 0000:c2:00.0: Adding to iommu group 4
[    6.525572] pci 0000:c3:00.0: Adding to iommu group 4
[    6.530656] pci 0000:c8:00.0: Adding to iommu group 9
[    6.535746] pci 0000:c8:00.2: Adding to iommu group 10
[    6.540918] pci 0000:c9:00.0: Adding to iommu group 11
[    6.546091] pci 0000:c9:00.2: Adding to iommu group 12
[    6.557471] pci 0000:80:00.2: AMD-Vi: IOMMU performance counters supported
[    6.564697] pci 0000:80:01.0: Adding to iommu group 13
[    6.569924] pci 0000:80:01.1: Adding to iommu group 13
[    6.575107] pci 0000:80:01.2: Adding to iommu group 13
[    6.580301] pci 0000:80:02.0: Adding to iommu group 14
[    6.585497] pci 0000:80:03.0: Adding to iommu group 15
[    6.590692] pci 0000:80:04.0: Adding to iommu group 16
[    6.595889] pci 0000:80:05.0: Adding to iommu group 17
[    6.601084] pci 0000:80:07.0: Adding to iommu group 18
[    6.606260] pci 0000:80:07.1: Adding to iommu group 19
[    6.611456] pci 0000:80:08.0: Adding to iommu group 20
[    6.616636] pci 0000:80:08.1: Adding to iommu group 21
[    6.621807] pci 0000:80:08.2: Adding to iommu group 22
[    6.626983] pci 0000:83:00.0: Adding to iommu group 23
[    6.632157] pci 0000:83:00.2: Adding to iommu group 24
[    6.637333] pci 0000:84:00.0: Adding to iommu group 25
[    6.642513] pci 0000:84:00.2: Adding to iommu group 26
[    6.647689] pci 0000:85:00.0: Adding to iommu group 27
[    6.660019] pci 0000:40:00.2: AMD-Vi: IOMMU performance counters supported
[    6.667027] pci 0000:40:01.0: Adding to iommu group 28
[    6.672222] pci 0000:40:02.0: Adding to iommu group 29
[    6.677535] pci 0000:40:03.0: Adding to iommu group 30
[    6.682714] pci 0000:40:03.1: Adding to iommu group 30
[    6.687892] pci 0000:40:03.2: Adding to iommu group 30
[    6.693074] pci 0000:40:03.3: Adding to iommu group 30
[    6.698254] pci 0000:40:03.4: Adding to iommu group 30
[    6.703445] pci 0000:40:04.0: Adding to iommu group 31
[    6.708638] pci 0000:40:05.0: Adding to iommu group 32
[    6.713837] pci 0000:40:07.0: Adding to iommu group 33
[    6.719020] pci 0000:40:07.1: Adding to iommu group 34
[    6.724217] pci 0000:40:08.0: Adding to iommu group 35
[    6.729389] pci 0000:40:08.1: Adding to iommu group 36
[    6.734561] pci 0000:45:00.0: Adding to iommu group 37
[    6.739737] pci 0000:45:00.2: Adding to iommu group 38
[    6.744911] pci 0000:46:00.0: Adding to iommu group 39
[    6.750083] pci 0000:46:00.1: Adding to iommu group 40
[    6.755257] pci 0000:46:00.2: Adding to iommu group 41
[    6.760433] pci 0000:46:00.3: Adding to iommu group 42
[    6.772805] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    6.779814] pci 0000:00:00.0: Adding to iommu group 43
[    6.785011] pci 0000:00:01.0: Adding to iommu group 44
[    6.790209] pci 0000:00:02.0: Adding to iommu group 45
[    6.795069] Freeing initrd memory: 38564K
[    6.795402] pci 0000:00:03.0: Adding to iommu group 46
[    6.804537] pci 0000:00:03.2: Adding to iommu group 47
[    6.809734] pci 0000:00:04.0: Adding to iommu group 48
[    6.814925] pci 0000:00:05.0: Adding to iommu group 49
[    6.820124] pci 0000:00:07.0: Adding to iommu group 50
[    6.825296] pci 0000:00:07.1: Adding to iommu group 51
[    6.830489] pci 0000:00:08.0: Adding to iommu group 52
[    6.835667] pci 0000:00:08.1: Adding to iommu group 53
[    6.840920] pci 0000:00:14.0: Adding to iommu group 54
[    6.846091] pci 0000:00:14.3: Adding to iommu group 54
[    6.851439] pci 0000:00:18.0: Adding to iommu group 55
[    6.856612] pci 0000:00:18.1: Adding to iommu group 55
[    6.861785] pci 0000:00:18.2: Adding to iommu group 55
[    6.866958] pci 0000:00:18.3: Adding to iommu group 55
[    6.872131] pci 0000:00:18.4: Adding to iommu group 55
[    6.877311] pci 0000:00:18.5: Adding to iommu group 55
[    6.882481] pci 0000:00:18.6: Adding to iommu group 55
[    6.887656] pci 0000:00:18.7: Adding to iommu group 55
[    6.892830] pci 0000:01:00.0: Adding to iommu group 56
[    6.898004] pci 0000:02:00.0: Adding to iommu group 57
[    6.903177] pci 0000:02:00.2: Adding to iommu group 58
[    6.908352] pci 0000:03:00.0: Adding to iommu group 59
[    6.913522] pci 0000:03:00.2: Adding to iommu group 60
[    6.918698] pci 0000:03:00.3: Adding to iommu group 61
[    6.932842] AMD-Vi: Extended features (0x841f77e022094ace, 0x0): PPR X2APIC NX IA GA PC SNP
[    6.941208] AMD-Vi: Interrupt remapping enabled
[    6.945743] AMD-Vi: X2APIC enabled
[    6.950091] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    6.956536] software IO TLB: mapped [mem 0x000000005bf37000-0x0000000063f37000] (128MB)
[    6.964686] LVT offset 0 assigned for vector 0x400
[    6.971106] perf: AMD IBS detected (0x000003ff)
[    6.977014] amd_uncore: 4 amd_df counters detected
[    6.981860] amd_uncore: 6 amd_l3 counters detected
[    6.988466] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    6.995705] perf/amd_iommu: Detected AMD IOMMU #1 (2 banks, 4 counters/bank).
[    7.002863] perf/amd_iommu: Detected AMD IOMMU #2 (2 banks, 4 counters/bank).
[    7.010014] perf/amd_iommu: Detected AMD IOMMU #3 (2 banks, 4 counters/bank).
[    7.020424] Initialise system trusted keyrings
[    7.024882] Key type blacklist registered
[    7.029008] workingset: timestamp_bits=36 max_order=26 bucket_order=0
[    7.035924] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    7.041910] fuse: init (API version 7.44)
[    7.046187] integrity: Platform Keyring initialized
[    7.063253] Key type asymmetric registered
[    7.067352] Asymmetric key parser 'x509' registered
[    7.072271] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    7.079753] io scheduler mq-deadline registered
[    7.086820] ledtrig-cpu: registered to indicate activity on CPUs
[    7.093124] pcieport 0000:00:03.2: PME: Signaling with IRQ 38
[    7.099271] pcieport 0000:00:07.1: PME: Signaling with IRQ 40
[    7.105254] pcieport 0000:00:08.1: PME: Signaling with IRQ 41
[    7.111244] pcieport 0000:40:03.1: PME: Signaling with IRQ 42
[    7.117048] pcieport 0000:40:03.1: pciehp: Slot #167 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.131066] pcieport 0000:40:03.2: PME: Signaling with IRQ 43
[    7.136872] pcieport 0000:40:03.2: pciehp: Slot #166 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.150884] pcieport 0000:40:03.3: PME: Signaling with IRQ 44
[    7.156685] pcieport 0000:40:03.3: pciehp: Slot #169 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.170698] pcieport 0000:40:03.4: PME: Signaling with IRQ 45
[    7.176495] pcieport 0000:40:03.4: pciehp: Slot #168 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.190572] pcieport 0000:40:07.1: PME: Signaling with IRQ 47
[    7.196540] pcieport 0000:40:08.1: PME: Signaling with IRQ 48
[    7.202634] pcieport 0000:80:01.1: PME: Signaling with IRQ 49
[    7.208446] pcieport 0000:80:01.1: pciehp: Slot #160 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.222439] pcieport 0000:80:01.2: PME: Signaling with IRQ 50
[    7.228241] pcieport 0000:80:01.2: pciehp: Slot #161 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.242368] pcieport 0000:80:07.1: PME: Signaling with IRQ 52
[    7.248418] pcieport 0000:80:08.1: PME: Signaling with IRQ 54
[    7.254444] pcieport 0000:80:08.2: PME: Signaling with IRQ 55
[    7.260404] pcieport 0000:c0:03.1: PME: Signaling with IRQ 56
[    7.266204] pcieport 0000:c0:03.1: pciehp: Slot #163 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.280186] pcieport 0000:c0:03.2: PME: Signaling with IRQ 57
[    7.285982] pcieport 0000:c0:03.2: pciehp: Slot #162 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.299957] pcieport 0000:c0:03.3: PME: Signaling with IRQ 58
[    7.305761] pcieport 0000:c0:03.3: pciehp: Slot #165 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.319757] pcieport 0000:c0:03.4: PME: Signaling with IRQ 59
[    7.325558] pcieport 0000:c0:03.4: pciehp: Slot #164 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.339534] pcieport 0000:c0:05.1: PME: Signaling with IRQ 60
[    7.345473] pcieport 0000:c0:05.2: PME: Signaling with IRQ 61
[    7.351508] pcieport 0000:c0:07.1: PME: Signaling with IRQ 63
[    7.357536] pcieport 0000:c0:08.1: PME: Signaling with IRQ 65
[    7.364057] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    7.371531] ACPI: button: Power Button [PWRF]
[    7.811103] Estimated ratio of average max frequency by base frequency (times 1024): 1464
[    7.819618] ERST: Error Record Serialization Table (ERST) support is initialized.
[    7.827119] pstore: Using crash dump compression: deflate
[    7.832523] pstore: Registered erst as persistent store backend
[    7.838592] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    7.845160] 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    7.853314] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    7.864440] Linux agpgart interface v0.103
[    7.895048] loop: module loaded
[    7.909461] ahci 0000:85:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[    7.917494] ahci 0000:85:00.0: 8/8 ports implemented (port mask 0xff)
[    7.923933] ahci 0000:85:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part sxs 
[    7.934229] scsi host0: ahci
[    7.937353] scsi host1: ahci
[    7.940475] scsi host2: ahci
[    7.943578] scsi host3: ahci
[    7.946676] scsi host4: ahci
[    7.949778] scsi host5: ahci
[    7.952883] scsi host6: ahci
[    7.955974] scsi host7: ahci
[    7.958932] ata1: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800100 irq 67 lpm-pol 0 ext
[    7.967538] ata2: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800180 irq 68 lpm-pol 0 ext
[    7.976143] ata3: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800200 irq 69 lpm-pol 0 ext
[    7.984747] ata4: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800280 irq 70 lpm-pol 0 ext
[    7.993353] ata5: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800300 irq 71 lpm-pol 0 ext
[    8.001958] ata6: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800380 irq 72 lpm-pol 0 ext
[    8.010566] ata7: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800400 irq 73 lpm-pol 0 ext
[    8.019169] ata8: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800480 irq 74 lpm-pol 0 ext
[    8.027793] tsc: Refined TSC clocksource calibration: 1996.250 MHz
[    8.028131] tun: Universal TUN/TAP device driver, 1.6
[    8.034029] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398caf77d7a, max_idle_ns: 881590459467 ns
[    8.039111] PPP generic driver version 2.4.2
[    8.053331] clocksource: Switched to clocksource tsc
[    8.053495] VFIO - User Level meta-driver version: 0.3
[    8.063814] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.069054] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 1
[    8.076553] xhci_hcd 0000:03:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.086096] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.091329] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 2
[    8.098728] xhci_hcd 0000:03:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.105821] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.114084] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.121305] usb usb1: Product: xHCI Host Controller
[    8.126181] usb usb1: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.135161] usb usb1: SerialNumber: 0000:03:00.3
[    8.139957] hub 1-0:1.0: USB hub found
[    8.143722] hub 1-0:1.0: 2 ports detected
[    8.148595] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.156714] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.164975] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.172194] usb usb2: Product: xHCI Host Controller
[    8.177077] usb usb2: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.186038] usb usb2: SerialNumber: 0000:03:00.3
[    8.190805] hub 2-0:1.0: USB hub found
[    8.194572] hub 2-0:1.0: 2 ports detected
[    8.199511] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.204752] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 3
[    8.212243] xhci_hcd 0000:46:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.221756] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.226985] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 4
[    8.234451] xhci_hcd 0000:46:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.241544] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.249814] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.257038] usb usb3: Product: xHCI Host Controller
[    8.261915] usb usb3: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.270872] usb usb3: SerialNumber: 0000:46:00.3
[    8.275645] hub 3-0:1.0: USB hub found
[    8.279405] hub 3-0:1.0: 2 ports detected
[    8.284263] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.292382] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.300653] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.307877] usb usb4: Product: xHCI Host Controller
[    8.312766] usb usb4: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.321723] usb usb4: SerialNumber: 0000:46:00.3
[    8.326488] hub 4-0:1.0: USB hub found
[    8.330251] hub 4-0:1.0: 2 ports detected
[    8.335311] usbcore: registered new interface driver uas
[    8.340645] ata7: SATA link down (SStatus 0 SControl 300)
[    8.340655] usbcore: registered new interface driver usb-storage
[    8.346079] ata2: SATA link down (SStatus 0 SControl 300)
[    8.352087] i8042: PNP: No PS/2 controller found.
[    8.357476] ata1: SATA link down (SStatus 0 SControl 300)
[    8.362246] mousedev: PS/2 mouse device common for all mice
[    8.367584] ata8: SATA link down (SStatus 0 SControl 300)
[    8.373239] rtc_cmos 00:02: RTC can wake from S4
[    8.378555] ata5: SATA link down (SStatus 0 SControl 300)
[    8.383523] rtc_cmos 00:02: registered as rtc0
[    8.388572] ata6: SATA link down (SStatus 0 SControl 300)
[    8.393063] rtc_cmos 00:02: setting system clock to 2025-06-17T13:52:04 UTC (1750168324)
[    8.398418] ata3: SATA link down (SStatus 0 SControl 300)
[    8.400257] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[    8.406518] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram
[    8.411906] ata4: SATA link down (SStatus 0 SControl 300)
[    8.418414] i2c_dev: i2c /dev entries driver
[    8.434795] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    8.446992] device-mapper: uevent: version 1.0.3
[    8.451719] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists•linux.dev
[    8.460592] amd_pstate: driver load is disabled, boot with specific mode to enable this
[    8.468639] efifb: probing for efifb
[    8.472225] efifb: No BGRT, not showing boot graphics
[    8.477280] efifb: framebuffer at 0xc6000000, using 3072k, total 3072k
[    8.483801] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    8.489807] efifb: scrolling: redraw
[    8.493389] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    8.499013] fbcon: Deferring console take-over
[    8.503460] fb0: EFI VGA frame buffer device
[    8.507837] drop_monitor: Initializing network drop monitor service
[    8.514268] NET: Registered PF_INET6 protocol family
[    8.526450] Segment Routing with IPv6
[    8.530129] In-situ OAM (IOAM) with IPv6
[    8.532249] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[    8.534083] NET: Registered PF_PACKET protocol family
[    8.543420] usb 1-1: New USB device found, idVendor=0424, idProduct=2744, bcdDevice= 1.21
[    8.545705] Key type dns_resolver registered
[    8.553819] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    8.565250] usb 1-1: Product: USB2734
[    8.568918] usb 1-1: Manufacturer: Microchip Tech
[    8.576635] x86/amd: Previous system reset reason [0x00080800]: software wrote 0x6 to reset control register 0xCF9
[    8.586995] microcode: Current revision: 0x0a0011d5
[    8.591871] microcode: Updated early from: 0x0a0011d5
[    8.600271] resctrl: L3 allocation detected
[    8.604459] resctrl: MB allocation detected
[    8.608643] resctrl: L3 monitoring detected
[    8.612988] IPI shorthand broadcast: enabled
[    8.618286] hub 1-1:1.0: USB hub found
[    8.621021] sched_clock: Marking stable (8556001706, 64233506)->(9539730325, -919495113)
[    8.622298] hub 1-1:1.0: 4 ports detected
[    8.634704] registered taskstats version 1
[    8.641216] Loading compiled-in X.509 certificates
[    8.646513] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.661000] Demotion targets for Node 0: null
[    8.665360] Demotion targets for Node 1: null
[    8.670211] Key type .fscrypt registered
[    8.674136] Key type fscrypt-provisioning registered
[    8.680081] usb 3-1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    8.688267] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.695439] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
[    8.696480] Key type encrypted registered
[    8.705975] AppArmor: AppArmor sha256 policy hashing enabled
[    8.711725] integrity: Loading X.509 certificate: UEFI:db
[    8.716732] usb 2-1: New USB device found, idVendor=0424, idProduct=5744, bcdDevice= 1.21
[    8.717150] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    8.725305] usb 2-1: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[    8.736073] integrity: Loading X.509 certificate: UEFI:db
[    8.736088] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    8.736090] integrity: Loading X.509 certificate: UEFI:db
[    8.736204] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    8.743228] usb 2-1: Product: USB5734
[    8.748625] integrity: Loading X.509 certificate: UEFI:db
[    8.759654] usb 2-1: Manufacturer: Microchip Tech
[    8.778162] hub 2-1:1.0: USB hub found
[    8.783119] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    8.787725] hub 2-1:1.0: 4 ports detected
[    8.791731] ima: No TPM chip found, activating TPM-bypass!
[    8.802925] hub 3-1:1.0: USB hub found
[    8.806749] Loading compiled-in module X.509 certificates
[    8.807163] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.812455] hub 3-1:1.0: 4 ports detected
[    8.815986] ima: Allocated hash algorithm: sha1
[    8.839843] ima: No architecture policies found
[    8.844393] evm: Initialising EVM extended attributes:
[    8.849532] evm: security.selinux
[    8.852853] evm: security.SMACK64
[    8.856170] evm: security.SMACK64EXEC
[    8.859839] evm: security.SMACK64TRANSMUTE
[    8.863937] evm: security.SMACK64MMAP
[    8.867605] evm: security.apparmor
[    8.871011] evm: security.ima
[    8.873981] evm: security.capability
[    8.877562] evm: HMAC attrs: 0x1
[    8.881167] PM:   Magic number: 13:993:887
[    8.885299] graphics fb0: hash matches
[    8.889612] RAS: Correctable Errors collector initialized.
[    8.895251] clk: Disabling unused clocks
[    8.899178] PM: genpd: Disabling unused power domains
[    8.905976] Freeing unused decrypted memory: 2028K
[    8.911543] Freeing unused kernel image (initmem) memory: 4760K
[    8.917479] Write protecting the kernel read-only data: 26624k
[    8.923755] Freeing unused kernel image (text/rodata gap) memory: 28K
[    8.930376] Freeing unused kernel image (rodata/data gap) memory: 248K
[    9.023839] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    9.030288] Run /init as init process
[    9.040650] systemd[1]: Inserted module 'autofs4'
[    9.266774] systemd[1]: systemd 252-46.el9_5.3 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)
[    9.299225] systemd[1]: Detected architecture x86-64.
[    9.304282] systemd[1]: Running in initrd.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow) dracut-057-80.git20250411.el9_5 (Initramfs)^[[0m!

[    9.328339] systemd[1]: Hostname set to <sharavati.amd.com>.
[    9.447310] systemd[1]: Queued start job for default target Initrd Default Target.
[    9.454995] systemd[1]: Reached target Initrd /usr File System.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd /usr File System^[[0m.
[    9.476303] systemd[1]: Reached target Local File Systems.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
[    9.496305] systemd[1]: Reached target Slice Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSlice Units^[[0m.
[    9.512300] systemd[1]: Reached target Swaps.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwaps^[[0m.
[    9.528292] systemd[1]: Reached target Timer Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[    9.544254] usb 3-1.1: new high-speed USB device number 3 using xhci_hcd
[    9.544452] systemd[1]: Listening on D-Bus System Message Bus Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[    9.568452] systemd[1]: Listening on Journal Socket (/dev/log).
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket (/dev/log)^[[0m.
[    9.584451] systemd[1]: Listening on Journal Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket^[[0m.
[    9.600461] systemd[1]: Listening on udev Control Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[    9.616401] systemd[1]: Listening on udev Kernel Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
[    9.632301] systemd[1]: Reached target Socket Units.
[^[[0;32m  OK  ^[[[    9.638206] usb 3-1.1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
0m] Reached targ[    9.647037] usb 3-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
et ^[[0;1;39mSocket Units^[[0m.
[    9.690235] systemd[1]: Starting Create List of Static Device Nodes...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
[    9.710898] systemd[1]: Starting Journal Service...
[    9.713931] hub 3-1.1:1.0: USB hub found
         Startin[    9.719955] hub 3-1.1:1.0: 4 ports detected
g ^[[0;1;39mJournal Service^[[0m...
[    9.733796] systemd[1]: Starting Load Kernel Modules...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
[    9.749877] systemd[1]: Starting Create System Users...
         Starting ^[[0;1;39mCreate System Users^[[0m...
[    9.769769] systemd[1]: Starting Setup Virtual Console...
         Starting ^[[0;1;39mSetup Virtual Console^[[0m...
[    9.785892] systemd[1]: Finished Create List of Static Device Nodes.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[    9.800249] usb 3-1.4: new high-speed USB device number 4 using xhci_hcd
[    9.808424] systemd[1]: Started Journal Service.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSetup Virtual Console^[[0m.
         Starting ^[[0;1;39mdracut cmdline hook^[[0m...
         Starting ^[[0;1;39mApply Kernel Variables^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate System Users^[[0m.
[    9.897204] usb 3-1.4: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    9.905631] usb 3-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut cmdline hook^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and [    9.969902] hub 3-1.4:1.0: USB hub found
Directories^[[0m.[    9.974455] hub 3-1.4:1.0: 4 ports detected

         Starting ^[[0;1;39mdracut pre-udev hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-udev hook^[[0m.
         Starting ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[   10.311439] wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQBC data block query control method not found
[^[[0;32m  OK  ^[[0m] Finished ^[[0[   10.322707] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
;1;39mColdplug A[   10.329617] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
ll udev Devices^[[   10.329838] ccp 0000:46:00.1: no command queues available
[0m.
[   10.338111] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[   10.344808] ccp 0000:46:00.1: sev enabled
[   10.356412] ccp 0000:46:00.1: psp enabled
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Initialization^[[0m.
[   10.368558] tg3 0000:c1:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:90
[   10.379079] tg3 0000:c1:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.388926] tg3 0000:c1:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.388930] tg3 0000:c1:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[^[[0;32m  OK  ^[[[   10.404392] mpt3sas version 52.100.00.00 loaded
0m] Reached targ[   10.409484] ACPI: bus type drm_connector registered
et ^[[0;1;39mNetw[   10.409982] mpt3sas_cm0: 63 BIT PCI BUS DMA ADDRESSING SUPPORTED, total mem (262592952 kB)
ork^[[0m.
[   10.413730] tg3 0000:c1:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:91
[   10.413734] tg3 0000:c1:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.413737] tg3 0000:c1:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.413739] tg3 0000:c1:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[   10.461089] mgag200 0000:c3:00.0: vgaarb: deactivate vga console
[   10.473234] [drm] Initialized mgag200 1.0.0 for 0000:c3:00.0 on minor 0
[   10.485211] fbcon: mgag200drmfb (fb0) is primary device
[   10.485213] fbcon: Deferring console take-over
[   10.494890] mgag200 0000:c3:00.0: [drm] fb0: mgag200drmfb frame buffer device
         Starting ^[[0;1;39mdracut initqueue hook^[[0m...
[   10.513922] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   10.521943] mpt3sas_cm0: MSI-X vectors supported: 96
[   10.526910] 	 no of cores: 128, max_msix_vectors: -1
[   10.526912] mpt3sas_cm0:  0 96 96
[   10.531152] mpt3sas_cm0: High IOPs queues : disabled
[   10.540179] mpt3sas0-msix0: PCI-MSI-X enabled: IRQ 108
[   10.540181] mpt3sas0-msix1: PCI-MSI-X enabled: IRQ 109
[   10.540182] mpt3sas0-msix2: PCI-MSI-X enabled: IRQ 110
[   10.540184] mpt3sas0-msix3: PCI-MSI-X enabled: IRQ 111
[   10.540185] mpt3sas0-msix4: PCI-MSI-X enabled: IRQ 112
[   10.540186] mpt3sas0-msix5: PCI-MSI-X enabled: IRQ 113
[   10.540188] mpt3sas0-msix6: PCI-MSI-X enabled: IRQ 114
[   10.540189] mpt3sas0-msix7: PCI-MSI-X enabled: IRQ 115
[   10.540191] mpt3sas0-msix8: PCI-MSI-X enabled: IRQ 116
         Startin[   10.586441] mpt3sas0-msix9: PCI-MSI-X enabled: IRQ 117
g ^[[0;1;39mShow [   10.592957] mpt3sas0-msix10: PCI-MSI-X enabled: IRQ 118
Plymouth Boot Sc[   10.599571] mpt3sas0-msix11: PCI-MSI-X enabled: IRQ 119
reen^[[0m...
[   10.599573] mpt3sas0-msix12: PCI-MSI-X enabled: IRQ 120
[   10.599574] mpt3sas0-msix13: PCI-MSI-X enabled: IRQ 121
[   10.599576] mpt3sas0-msix14: PCI-MSI-X enabled: IRQ 122
[   10.599577] mpt3sas0-msix15: PCI-MSI-X enabled: IRQ 123
[^[[0;32m  OK  ^[[[   10.599579] mpt3sas0-msix16: PCI-MSI-X enabled: IRQ 124
0m] Started ^[[0;[   10.599581] mpt3sas0-msix17: PCI-MSI-X enabled: IRQ 125
1;39mShow Plymou[   10.641515] mpt3sas0-msix18: PCI-MSI-X enabled: IRQ 126
th Boot Screen^[[[   10.641517] mpt3sas0-msix19: PCI-MSI-X enabled: IRQ 127
0m.
[   10.641518] mpt3sas0-msix20: PCI-MSI-X enabled: IRQ 128
[   10.641519] mpt3sas0-msix21: PCI-MSI-X enabled: IRQ 129
[^[[0;32m  OK  ^[[[   10.641521] mpt3sas0-msix22: PCI-MSI-X enabled: IRQ 130
0m] Started ^[[0;[   10.641522] mpt3sas0-msix23: PCI-MSI-X enabled: IRQ 131
1;39mForward Pas[   10.678930] mpt3sas0-msix24: PCI-MSI-X enabled: IRQ 132
sword Requests t[   10.678932] mpt3sas0-msix25: PCI-MSI-X enabled: IRQ 133
o Plymouth Direc[   10.678933] mpt3sas0-msix26: PCI-MSI-X enabled: IRQ 134
tory Watch^[[0m.\r[   10.678934] mpt3sas0-msix27: PCI-MSI-X enabled: IRQ 135

[^[[0;32m  OK  [   10.678935] mpt3sas0-msix28: PCI-MSI-X enabled: IRQ 136
^[[0m] Reached ta[   10.678937] mpt3sas0-msix29: PCI-MSI-X enabled: IRQ 137
[   10.678938] mpt3sas0-msix30: PCI-MSI-X enabled: IRQ 138
rget ^[[0;1;39mPa[   10.723830] mpt3sas0-msix31: PCI-MSI-X enabled: IRQ 139
th Units^[[0m.
[   10.723832] mpt3sas0-msix32: PCI-MSI-X enabled: IRQ 140
[   10.723833] mpt3sas0-msix33: PCI-MSI-X enabled: IRQ 141
[   10.723835] mpt3sas0-msix34: PCI-MSI-X enabled: IRQ 142
[^[[0;32m  OK  ^[[[   10.723836] mpt3sas0-msix35: PCI-MSI-X enabled: IRQ 143
0m] Reached targ[   10.723837] mpt3sas0-msix36: PCI-MSI-X enabled: IRQ 144
et ^[[0;1;39mBasi[   10.723839] mpt3sas0-msix37: PCI-MSI-X enabled: IRQ 145
c System^[[0m.
[   10.767325] mpt3sas0-msix38: PCI-MSI-X enabled: IRQ 146
[   10.773941] mpt3sas0-msix39: PCI-MSI-X enabled: IRQ 147
[   10.779165] mpt3sas0-msix40: PCI-MSI-X enabled: IRQ 148
[   10.784391] mpt3sas0-msix41: PCI-MSI-X enabled: IRQ 149
[   10.789618] mpt3sas0-msix42: PCI-MSI-X enabled: IRQ 150
[   10.794843] mpt3sas0-msix43: PCI-MSI-X enabled: IRQ 151
[   10.800069] mpt3sas0-msix44: PCI-MSI-X enabled: IRQ 152
[   10.805294] mpt3sas0-msix45: PCI-MSI-X enabled: IRQ 153
[   10.810531] mpt3sas0-msix46: PCI-MSI-X enabled: IRQ 154
[   10.815753] mpt3sas0-msix47: PCI-MSI-X enabled: IRQ 155
[   10.820982] mpt3sas0-msix48: PCI-MSI-X enabled: IRQ 156
[   10.826206] mpt3sas0-msix49: PCI-MSI-X enabled: IRQ 157
[   10.831431] mpt3sas0-msix50: PCI-MSI-X enabled: IRQ 158
[   10.836658] mpt3sas0-msix51: PCI-MSI-X enabled: IRQ 159
[   10.841882] mpt3sas0-msix52: PCI-MSI-X enabled: IRQ 160
[   10.847110] mpt3sas0-msix53: PCI-MSI-X enabled: IRQ 161
[   10.852334] mpt3sas0-msix54: PCI-MSI-X enabled: IRQ 162
[   10.857562] mpt3sas0-msix55: PCI-MSI-X enabled: IRQ 163
[   10.862789] mpt3sas0-msix56: PCI-MSI-X enabled: IRQ 164
[   10.868012] mpt3sas0-msix57: PCI-MSI-X enabled: IRQ 165
[   10.873238] mpt3sas0-msix58: PCI-MSI-X enabled: IRQ 166
[   10.878465] mpt3sas0-msix59: PCI-MSI-X enabled: IRQ 167
[   10.883691] mpt3sas0-msix60: PCI-MSI-X enabled: IRQ 168
[   10.888917] mpt3sas0-msix61: PCI-MSI-X enabled: IRQ 169
[   10.894143] mpt3sas0-msix62: PCI-MSI-X enabled: IRQ 170
[   10.899367] mpt3sas0-msix63: PCI-MSI-X enabled: IRQ 171
[   10.904596] mpt3sas0-msix64: PCI-MSI-X enabled: IRQ 172
[   10.909821] mpt3sas0-msix65: PCI-MSI-X enabled: IRQ 173
[   10.915045] mpt3sas0-msix66: PCI-MSI-X enabled: IRQ 174
[   10.920272] mpt3sas0-msix67: PCI-MSI-X enabled: IRQ 175
[   10.925498] mpt3sas0-msix68: PCI-MSI-X enabled: IRQ 176
[   10.930723] mpt3sas0-msix69: PCI-MSI-X enabled: IRQ 177
[   10.935949] mpt3sas0-msix70: PCI-MSI-X enabled: IRQ 178
[   10.941175] mpt3sas0-msix71: PCI-MSI-X enabled: IRQ 179
[   10.946401] mpt3sas0-msix72: PCI-MSI-X enabled: IRQ 180
[   10.951627] mpt3sas0-msix73: PCI-MSI-X enabled: IRQ 181
[   10.956854] mpt3sas0-msix74: PCI-MSI-X enabled: IRQ 182
[   10.962077] mpt3sas0-msix75: PCI-MSI-X enabled: IRQ 183
[   10.967303] mpt3sas0-msix76: PCI-MSI-X enabled: IRQ 184
[   10.972534] mpt3sas0-msix77: PCI-MSI-X enabled: IRQ 185
[   10.977764] mpt3sas0-msix78: PCI-MSI-X enabled: IRQ 186
[   10.982990] mpt3sas0-msix79: PCI-MSI-X enabled: IRQ 187
[   10.988217] mpt3sas0-msix80: PCI-MSI-X enabled: IRQ 188
[   10.993444] mpt3sas0-msix81: PCI-MSI-X enabled: IRQ 189
[   10.998668] mpt3sas0-msix82: PCI-MSI-X enabled: IRQ 190
[   11.003894] mpt3sas0-msix83: PCI-MSI-X enabled: IRQ 191
[   11.009122] mpt3sas0-msix84: PCI-MSI-X enabled: IRQ 192
[   11.014345] mpt3sas0-msix85: PCI-MSI-X enabled: IRQ 193
[   11.019572] mpt3sas0-msix86: PCI-MSI-X enabled: IRQ 194
[   11.024799] mpt3sas0-msix87: PCI-MSI-X enabled: IRQ 195
[   11.030024] mpt3sas0-msix88: PCI-MSI-X enabled: IRQ 196
[   11.035251] mpt3sas0-msix89: PCI-MSI-X enabled: IRQ 197
[   11.040476] mpt3sas0-msix90: PCI-MSI-X enabled: IRQ 198
[   11.045702] mpt3sas0-msix91: PCI-MSI-X enabled: IRQ 199
[   11.050927] mpt3sas0-msix92: PCI-MSI-X enabled: IRQ 200
[   11.056152] mpt3sas0-msix93: PCI-MSI-X enabled: IRQ 201
[   11.061379] mpt3sas0-msix94: PCI-MSI-X enabled: IRQ 202
[   11.066606] mpt3sas0-msix95: PCI-MSI-X enabled: IRQ 203
[   11.071832] mpt3sas_cm0: iomem(0x00000000e2200000), mapped(0x000000002bfe851b), size(65536)
[   11.080186] mpt3sas_cm0: ioport(0x0000000000001000), size(256)
[   11.144024] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   11.152022] mpt3sas_cm0: sending message unit reset !!
[   11.158669] mpt3sas_cm0: message unit reset: SUCCESS
[   11.191378] mpt3sas_cm0: scatter gather: sge_in_main_msg(1), sge_per_chain(7), sge_per_io(128), chains_per_io(19)
[   11.202818] mpt3sas_cm0: request pool(0x000000006d957724) - dma(0xe0600000): depth(9700), frame_size(128), pool_size(1212 kB)
[   11.239458] mpt3sas_cm0: sense pool(0x00000000fb02ef72) - dma(0xdef00000): depth(9463), element_size(96), pool_size (887 kB)
[   11.250768] mpt3sas_cm0: reply pool(0x00000000ad771b2b) - dma(0xdec00000): depth(9764), frame_size(128), pool_size(1220 kB)
[   11.261901] mpt3sas_cm0: config page(0x000000001e44d132) - dma(0xdebee000): size(512)
[   11.269728] mpt3sas_cm0: Allocated physical memory: size(40437 kB)
[   11.275909] mpt3sas_cm0: Current Controller Queue Depth(9460),Max Controller Queue Depth(9584)
[   11.284513] mpt3sas_cm0: Scatter Gather Elements per IO(128)
[   11.335948] mpt3sas_cm0: _base_display_fwpkg_version: complete
[   11.341784] mpt3sas_cm0: FW Package Ver(16.17.01.00)
[   11.347064] mpt3sas_cm0: LSISAS3008: FWVersion(16.00.11.00), ChipRevision(0x02)
[   11.354375] mpt3sas_cm0: Protocol=(Initiator,Target), Capabilities=(TLR,EEDP,Snapshot Buffer,Diag Trace Buffer,Task Set Full,NCQ)
[   11.366100] scsi host8: Fusion MPT SAS Host
[   11.372146] mpt3sas_cm0: sending port enable !!
[   11.377102] mpt3sas_cm0: hba_port entry: 00000000f0457a2a, port: 255 is added to hba_port list
[   11.386836] mpt3sas_cm0: host_add: handle(0x0001), sas_addr(0x52cea7f0be87bf00), phys(8)
[   11.395269] mpt3sas_cm0: handle(0xa) sas_address(0x4433221100000000) port_type(0x1)
[   11.404129] scsi 8:0:0:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.412226] scsi 8:0:0:0: SATA: handle(0x000a), sas_addr(0x4433221100000000), phy(0), device_name(0x500a075131911ad0)
[   11.422827] scsi 8:0:0:0: enclosure logical id (0x52cea7f0be87bf00), slot(1) 
[   11.429958] scsi 8:0:0:0: enclosure level(0x0001), connector name(     )
[   11.436732] scsi 8:0:0:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.445165] scsi 8:0:0:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.460056]  end_device-8:0: add: handle(0x000a), sas_addr(0x4433221100000000)
[   11.467402] mpt3sas_cm0: handle(0xc) sas_address(0x58ce38ee219651a2) port_type(0x1)
[   11.476025] scsi 8:0:1:0: Direct-Access     KIOXIA   KPM6WVUG960G     BD08 PQ: 0 ANSI: 6
[   11.484117] scsi 8:0:1:0: SSP: handle(0x000c), sas_addr(0x58ce38ee219651a2), phy(4), device_name(0x58ce38ee219651a0)
[   11.494629] scsi 8:0:1:0: enclosure logical id (0x52cea7f0be87bf00), slot(0) 
[   11.501761] scsi 8:0:1:0: enclosure level(0x0001), connector name(     )
[   11.508481] scsi 8:0:1:0: qdepth(254), tagged(1), scsi_level(7), cmd_que(1)
[   11.517143]  end_device-8:1: add: handle(0x000c), sas_addr(0x58ce38ee219651a2)
[   11.524488] mpt3sas_cm0: handle(0xb) sas_address(0x4433221106000000) port_type(0x1)
[   11.533263] scsi 8:0:2:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.541358] scsi 8:0:2:0: SATA: handle(0x000b), sas_addr(0x4433221106000000), phy(6), device_name(0x500a075131911a6f)
[   11.551955] scsi 8:0:2:0: enclosure logical id (0x52cea7f0be87bf00), slot(2) 
[   11.559091] scsi 8:0:2:0: enclosure level(0x0001), connector name(     )
[   11.565860] scsi 8:0:2:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.574297] scsi 8:0:2:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.589114]  end_device-8:2: add: handle(0x000b), sas_addr(0x4433221106000000)
[   11.612249] mpt3sas_cm0: port enable: SUCCESS
[   11.616900] scsi 8:0:0:0: Attached scsi generic sg0 type 0
[   11.617521] sd 8:0:0:0: [sda] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.622639] scsi 8:0:1:0: Attached scsi generic sg1 type 0
[   11.622874] sd 8:0:1:0: [sdb] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.622878] sd 8:0:1:0: [sdb] 4096-byte physical blocks
[   11.623060] sd 8:0:1:0: [sdb] Write Protect is off
[   11.623273] sd 8:0:1:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   11.629951] sd 8:0:0:0: [sda] 4096-byte physical blocks
[   11.631963] sd 8:0:0:0: [sda] Write Protect is off
[   11.635684] sd 8:0:2:0: Attached scsi generic sg2 type 0
[   11.643721] sd 8:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.648249] sd 8:0:2:0: [sdc] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.693571] sd 8:0:2:0: [sdc] 4096-byte physical blocks
[   11.700817] sd 8:0:2:0: [sdc] Write Protect is off
[   11.706342] sd 8:0:2:0: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.717338]  sdb: sdb1 sdb2
[   11.720282] sd 8:0:1:0: [sdb] Attached SCSI disk
[   11.766137]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7
[   11.771535] sd 8:0:0:0: [sda] Attached SCSI disk
[   11.802439]  sdc: sdc1 sdc2
[   11.805384] sd 8:0:2:0: [sdc] Attached SCSI disk
[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39m/dev/mapper/rhel_sharavati-root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut initqueue hook^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m.
         Mounting ^[[0;1;39m/sysroot^[[0m...
[   12.525155] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled
[   12.535731] XFS (dm-1): Mounting V5 Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[   12.559476] XFS (dm-1): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/sysroot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root File System^[[0m.
         Starting ^[[0;1;39mMountpoints Configured in the Real Root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMountpoints Configured in the Real Root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Default Target^[[0m.
         Starting ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
         Starting ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Default Target^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd /usr File System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut initqueue hook^[[0m.
         Starting ^[[0;1;39mPlymouth switch root service^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel [   12.782214] systemd-journald[1089]: Received SIGTERM from PID 1 (systemd).
Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mColdplug All udev Devices^[[0m.
         Stopping ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Kernel Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-udev hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut cmdline hook^[[0m.
         Starting ^[[0;1;39mCleanup udev Database^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate System Users^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleanup udev Database^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwitch Root^[[0m.
         Starting ^[[0;1;39mSwitch Root[   12.893402] systemd[1]: RTC configured in localtime, applying delta of 330 minutes to system time.
^[[0m...
[   12.918717] systemd[1]: systemd 252-46.el9_5.3 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)
[   12.951195] systemd[1]: Detected architecture x86-64.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow)^[[0m!

[   13.016202] systemd-rc-local-generator[1703]: /etc/rc.d/rc.local is not marked executable, skipping.
[   13.244541] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[   13.251874] systemd[1]: Stopped Switch Root.
[^[[0;32m  OK  ^[[[   13.256539] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
0m] Stopped ^[[0;[   13.267192] systemd[1]: Created slice Virtual Machine and Container Slice.
1;39mSwitch Root[   13.275529] systemd[1]: Created slice Slice /system/getty.
^[[0m.
[^[[0;32m[   13.282406] systemd[1]: Created slice Slice /system/modprobe.
  OK  ^[[0m] Crea[   13.289520] systemd[1]: Created slice Slice /system/serial-getty.
ted slice ^[[0;1;[   13.296998] systemd[1]: Created slice Slice /system/sshd-keygen.
39mVirtual Machi[   13.304404] systemd[1]: Created slice Slice /system/systemd-fsck.
ne and Container[   13.311756] systemd[1]: Created slice User and Session Slice.
 Slice^[[0m.
[^[[   13.318333] systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
[0;32m  OK  ^[[0m[   13.334664] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
] Created slice [   13.343757] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
^[[0;1;39mSlice /[   13.354390] systemd[1]: Reached target Local Encrypted Volumes.
system/getty^[[0m[   13.361684] systemd[1]: Stopped target Switch Root.
.
[^[[0;32m  OK[   13.367945] systemd[1]: Stopped target Initrd File Systems.
  ^[[0m] Created [   13.374900] systemd[1]: Stopped target Initrd Root File System.
slice ^[[0;1;39mS[   13.382208] systemd[1]: Reached target Local Integrity Protected Volumes.
lice /system/mod[   13.390395] systemd[1]: Reached target Path Units.
probe^[[0m.
[^[[[   13.396569] systemd[1]: Reached target Slice Units.
0;32m  OK  ^[[0m][   13.402832] systemd[1]: Reached target Local Verity Protected Volumes.
 Created slice ^[[   13.410800] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[0;1;39mSlice /s[   13.418885] systemd[1]: Listening on LVM2 poll daemon socket.
ystem/serial-get[   13.425828] systemd[1]: multipathd control socket was skipped because of an unmet condition check (ConditionPathExists=/etc/multipath.conf).
ty^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/sshd-keygen^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Se[   13.469206] systemd[1]: Listening on RPCbind Server Activation Socket.
t up automount ^[[   13.476862] systemd[1]: Reached target RPC Port Mapper.
[0;1;39mArbitrar[   13.484638] systemd[1]: Listening on Process Core Dump Socket.
y Executa…orma[   13.490686] systemd[1]: Listening on initctl Compatibility Named Pipe.
ts File System A[   13.499609] systemd[1]: Listening on udev Control Socket.
utomount Point^[[[   13.505409] systemd[1]: Listening on udev Kernel Socket.
0m.
[^[[0;32m  OK  ^[[0m] Reache[   13.513379] systemd[1]: Activating swap /dev/mapper/rhel_sharavati-swap...
d target ^[[0;1;3[   13.518337] Adding 7815164k swap on /dev/mapper/rhel_sharavati-swap.  Priority:-2 extents:1 across:7815164k SS
9mLocal Encrypted Volumes^[[0m.\r\r[   13.534579] systemd[1]: Mounting Huge Pages File System...

[^[[0;32m  OK  ^[[   13.542545] systemd[1]: Mounting POSIX Message Queue File System...
[0m] Stopped target ^[[0;1;39mSwi[   13.550381] systemd[1]: Mounting Kernel Debug File System...
tch Root^[[0m.
[   13.558580] systemd[1]: Mounting Kernel Trace File System...
[^[[0;32m  OK  ^[[[   13.564492] systemd[1]: Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
0m] Stopped targ[   13.579328] systemd[1]: iscsi-starter.service was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes).
et ^[[0;1;39mInitrd File Systems^[[   13.594704] systemd[1]: Starting Create List of Static Device Nodes...
[0m.
[^[[0;32m  OK  ^[[0m] Stopp[   13.603970] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
ed target ^[[0;1;[   13.616832] systemd[1]: Starting Load Kernel Module configfs...
39mInitrd Root File System^[[0m.\r[   13.624303] systemd[1]: Starting Load Kernel Module drm...

[^[[0;32m  OK  [   13.632344] systemd[1]: Starting Load Kernel Module fuse...
^[[0m] Reached target ^[[0;1;39mLo[   13.640143] systemd[1]: Starting Read and set NIS domainname from /etc/sysconfig/network...
cal Integrity Pr[   13.649348] systemd[1]: plymouth-switch-root.service: Deactivated successfully.
otected Volumes^[[   13.658021] systemd[1]: Stopped Plymouth switch root service.
[0m.
[^[[0;32m [   13.665274] systemd[1]: systemd-fsck-root.service: Deactivated successfully.
 OK  ^[[0m] Reach[   13.673575] systemd[1]: Stopped File System Check on Root Device.
ed target ^[[0;1;[   13.681109] systemd[1]: Stopped Journal Service.
39mPath Units^[[0m.
[^[[0;32m  O[   13.689627] systemd[1]: Starting Journal Service...
K  ^[[0m] Reached target ^[[0;1;39[   13.696785] systemd[1]: Starting Load Kernel Modules...
[   13.701844] systemd-journald[1733]: File /run/log/journal/8f37f8055146469d8baec3ad508b0084/system.journal corrupted or uncleanly shut down, renaming and replacing.
mSlice Units^[[0m.
[^[[0;32m  OK[   13.718921] systemd[1]: Starting Generate network units from Kernel command line...
  ^[[0m] Reached [   13.727812] systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
target ^[[0;1;39mLocal Verity Pro[   13.748971] systemd[1]: Starting Remount Root and Kernel File Systems...
tected Volumes^[[[   13.757199] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
0m.
[^[[0;32m  OK  ^[[0m] Listen[   13.769256] systemd[1]: Starting Coldplug All udev Devices...
ing on ^[[0;1;39mDevice-mapper event daemon FIFOs[   13.779555] systemd[1]: Activated swap /dev/mapper/rhel_sharavati-swap.
^[[0m.
[^[[0;32m[   13.787779] systemd[1]: Started Journal Service.
  OK  ^[[0m] Listening on ^[[0;1;39mLVM2 poll daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mRPCbind Server Activation Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mR[   13.808470] systemd-journald[1733]: Received client request to flush runtime journal.
PC Port Mapper^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mProcess Core Dump Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39minitctl Compatibility Named Pipe^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
         Activating swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m...
         Mounting ^[[0;1;39mHuge Pages File System^[[0m...
         Mounting ^[[0;1;39mPOSIX Message Queue File System^[[0m...
         Mounting ^[[0;1;39mKernel Debug File System^[[0m...
         Mounting ^[[0;1;39mKernel Trace File System^[[0m...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
         Starting ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module drm^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mJournal Service^[[0m.
         Starting ^[[0;1;39mJournal Service^[[0m...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
         Starting ^[[0;1;39mGenerate network units from Kernel command line^[[0m...
         Starting ^[[0;1;39mRemount Root and Kernel File Systems^[[0m...
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[^[[0;32m  OK  ^[[0m] Activated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mHuge Pages File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mPOSIX Message Queue File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Debug File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Trace File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMonitoring of LVM2 mirror…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module drm^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRead and set NIS [   14.033871] IPMI message handler: version 39.2
domainname from /etc/sysconfig/n[   14.040769] ipmi device interface
etwork^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[[   14.050502] ipmi_si: IPMI System Interface driver
^[[0;32m  OK  ^[[0[   14.056184] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
m] Finished ^[[0;[   14.057518] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
1;39mGenerate ne[   14.063910] ipmi_platform: ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 10
twork units from[   14.063914] ipmi_si: Adding SMBIOS-specified kcs state machine
 Kernel command [   14.064073] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
line^[[0m.
[^[[0[   14.072301] pstore: backend 'erst' already in use: ignoring 'efi_pstore'
;32m  OK  ^[[0m] [   14.072678] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
Finished ^[[0;1;3[   14.074578] input: PC Speaker as /devices/platform/pcspkr/input/input1
9mRemount Root a[   14.076346] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
nd Kernel File S[   14.076349] RAPL PMU: hw unit of domain package 2^-16 Joules
ystems^[[0m.
[^[[   14.076350] RAPL PMU: hw unit of domain core 2^-16 Joules
[   14.077658] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
[0;32m  OK  ^[[0m[   14.078321] i2c i2c-3: Successfully instantiated SPD at 0x50
] Reached target[   14.078901] i2c i2c-3: Successfully instantiated SPD at 0x51
 ^[[0;1;39mSwaps^[[   14.079477] i2c i2c-3: Successfully instantiated SPD at 0x52
[0m.
         [   14.080040] i2c i2c-3: Successfully instantiated SPD at 0x53
Mounting ^[[0;1;3[   14.080611] i2c i2c-3: Successfully instantiated SPD at 0x54
9mFUSE Control F[   14.081176] i2c i2c-3: Successfully instantiated SPD at 0x55
ile System^[[0m..[   14.081401] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca8] regsize 1 spacing 4 irq 10
.
         Mou[   14.081757] i2c i2c-3: Successfully instantiated SPD at 0x56
nting ^[[0;1;39mK[   14.082392] i2c i2c-3: Successfully instantiated SPD at 0x57
ernel Configurat[   14.217070] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
ion File System^[[   14.226929] ipmi_si: Adding ACPI-specified kcs state machine
[0m...
       [   14.227051] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 10
  Starting ^[[0;1;39mFlush Journal to Persistent Storage^[[0m...
         Starting ^[[0;1;39mLoad/Save OS Random Seed^[[0m...
         Starting ^[[0;1;39mApply Kernel Variables^[[0m...
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
[^[[0;32m  OK  ^[[[   14.267678] ee1004 3-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
0m] Mounted ^[[0;1;39mFUSE Contro[   14.277364] ee1004 3-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
l File System^[[0m.
[^[[0;32m  O[   14.287000] ee1004 3-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
K  ^[[0m] Mounted[   14.295759] kvm_amd: TSC scaling supported
 ^[[0;1;39mKernel[   14.296638] ee1004 3-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
 Configuration F[   14.300474] kvm_amd: Nested Virtualization enabled
ile System^[[0m.\r[   14.310402] ee1004 3-0054: 512 byte EE1004-compliant SPD EEPROM, read-only

[^[[0;32m  OK  [   14.314912] kvm_amd: Nested Paging enabled
^[[0m] Finished ^[[   14.314914] kvm_amd: LBR virtualization supported
[0;1;39mLoad/Sav[   14.324833] ee1004 3-0055: 512 byte EE1004-compliant SPD EEPROM, read-only
e OS Random Seed^[[0m.
[^[[0;32m[   14.344710] ee1004 3-0056: 512 byte EE1004-compliant SPD EEPROM, read-only
  OK  ^[[0m] Finished ^[[0;1;39mFl[   14.354328] ee1004 3-0057: 512 byte EE1004-compliant SPD EEPROM, read-only
ush Journal to Persistent Storage^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
         Starting ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mColdplug All udev Devices^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mLoad/Save RF Kill Switch Status /dev/rfkill Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39m/usr/sbin/lvm vgchange -aa…utoactivation event rhel_sharavati^[[0m.
[   14.660263] ipmi_si IPI0001:00: The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.
[   14.732327] ipmi_si IPI0001:00: Using irq 10
[   14.768078] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20)
[   14.826768] ipmi_si IPI0001:00: IPMI kcs interface initialized
[   14.835164] ipmi_ssif: IPMI SSIF Interface driver
[   14.836810] power_meter ACPI000D:00: Found ACPI power meter.
[^[[0m^[[0;31m*     ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;1;31m*^[[0m^[[0;31m*    ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
^[M\r^[[K[^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*   ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
[   17.888927] ccp 0000:46:00.1: SEV-SNP API:1.55 build:22
[   17.943113] ccp 0000:46:00.1: SEV API:1.55 build:22
[   17.949859] kvm_amd: SEV enabled (ASIDs 101 - 509)
[   17.954656] kvm_amd: SEV-ES enabled (ASIDs 1 - 100)
[   17.959537] kvm_amd: SEV-SNP enabled (ASIDs 1 - 100)
[   17.964665] kvm_amd: Virtual VMLOAD VMSAVE supported
[   17.969633] kvm_amd: Virtual GIF supported
[   17.995702] EDAC MC0: Giving out device to module amd64_edac controller F19h: DEV 0000:00:18.3 (INTERRUPT)
[   18.005360] EDAC amd64: F19h detected (node 0).
[   18.009916] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.014630] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.019351] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.024070] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.028798] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.033515] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.038236] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.042954] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.047683] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.052400] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.057132] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.061844] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.066567] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.071284] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.076008] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.080729] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.092521] intel_rapl_common: Found RAPL domain package
[   18.093800] amd_atl: AMD Address Translation Library initialized
[   18.097836] intel_rapl_common: Found RAPL domain core
^[M\r^[[K[ ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*  ^[[0m] A start job is running for Wait for…ice Initialization (5s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Local File Systems^[[0m.
         Mounting ^[[0;1;39m/boot^[[0m...
      [   18.479819] XFS (sda6): Mounting V5 Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
   Mounting ^[[0;[   18.481884] XFS (dm-0): Mounting V5 Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
1;39m/home^[[0m...
         Starting ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m...
[   18.506613] XFS (sda6): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;[   18.515916] XFS (dm-0): Ending clean mount
1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
         Mounting ^[[0;1;39m/boot/efi^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
         Starting ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Mounting ^[[0;1;39mRPC Pipe File System^[[0m...
         Starting ^[[0;1;39mSecurity Auditing Service^[[0m...
         Starting ^[[0;1;39mRPC Bind^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRPC Bind^[[0m.
[   18.622433] RPC: Registered named UNIX socket transport module.
[   18.628361] RPC: Registered udp transport module.
[   18.633067] RPC: Registered tcp transport module.
[   18.637772] RPC: Registered tcp-with-tls transport module.
[   18.643258] RPC: Registered tcp NFSv4.1 backchannel transport module.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSecurity Auditing Service^[[0m.
         Starting ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mRPC Pipe File System^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mrpc_pipefs.target^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdnf makecache --timer^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily rotation of log files^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUpdates mlocate database every day^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily Cleanup of Temporary Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdaily update of the root trust anchor for DNSSEC^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt interface daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt network daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nodedev daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nwfilter daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt proxy daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt secret daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt storage daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
         Starting ^[[0;1;39mD-Bus System Message Bus^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mBasic System^[[0m.
         Starting ^[[0;1;39mNTP client/server^[[0m...
         Starting ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m...
         Starting ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mirqbalance daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mlibstoragemgmt plug-in server daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mMachine Check Exception Logging Daemon^[[0m.
         Starting ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msshd-keygen.target^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUser and Group Name Lookups^[[0m.
         Starting ^[[0;1;39mUser Login Management^[[0m...
         Starting ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNTP client/server^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Network^[[0m.
         Starting ^[[0;1;39mNetwork Manager^[[0m...
         Starting ^[[0;1;39mHostname Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mHostname Service^[[0m.
         Starting ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork^[[0m.
         Starting ^[[0;1;39mNetwork Manager Wait Online^[[0m...
         Starting ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
         Starting ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m...
         Starting ^[[0;1;39mOpenSSH server daemon^[[0m...
         Starting ^[[0;1;39mDynamic System Tuning Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNFS client services^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mOpenSSH server daemon^[[0m.
         Starting ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
[   22.904358] tg3 0000:c1:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   22.910983] tg3 0000:c1:00.0 eth0: Flow control is off for TX and off for RX
[   22.918033] tg3 0000:c1:00.0 eth0: EEE is disabled
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[     ^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (12s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mNetwork Manager Wait Online^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork is Online^[[0m.
         Starting ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m...
         Starting ^[[0;1;39mNotify NFS peers of a restart^[[0m...
         Starting ^[[0;1;39mSystem Logging Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNotify NFS peers of a restart^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mCrash recovery kernel arming^[[0m...
         Starting ^[[0;1;39mPermit User Sessions^[[0m...
         Starting ^[[0;1;39mlibvirt QEMU daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDeferred execution scheduler^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mCommand Scheduler^[[0m.
         Starting ^[[0;1;39mHold until boot process finishes up^[[0m...
         Starting ^[[0;1;39mTerminate Plymouth Boot Screen^[[0m...
[^[[0;1;31mFAILED^[[0m] Failed to start ^[[0;1;39mCrash recovery kernel arming^[[0m.
See 'systemctl status kdump.service' for details.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSystem Logging Service^[[0m.
[   25.601280] fbcon: Taking over console
[   25.621117] Console: switching to colour frame buffer device 128x48

Red Hat Enterprise Linux 9.5 (Plow)
Kernel 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e on an x86_64

Activate the web console with: systemctl enable --now cockpit.socket

sharavati login: [  149.622426] /proc/cgroups lists only v1 controllers, use cgroup.controllers of root cgroup for v2 info
[  340.166584] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[  340.247967] systemd-rc-local-generator[3166]: /etc/rc.d/rc.local is not marked executable, skipping.
[  362.204527] virbr0: port 1(t0-0TTMcq) entered blocking state
[  362.210200] virbr0: port 1(t0-0TTMcq) entered disabled state
[  362.215901] t0-0TTMcq: entered allmulticast mode
[  362.220621] t0-0TTMcq: entered promiscuous mode
[  362.229292] virbr0: port 1(t0-0TTMcq) entered blocking state
[  362.234958] virbr0: port 1(t0-0TTMcq) entered listening state
[  364.265602] virbr0: port 1(t0-0TTMcq) entered learning state
[  366.281553] virbr0: port 1(t0-0TTMcq) entered forwarding state
[  366.281563] virbr0: topology change detected, propagating
[  387.850444] virbr0: port 1(t0-0TTMcq) entered disabled state
[  387.857187] t0-0TTMcq (unregistering): left allmulticast mode
[  387.862936] t0-0TTMcq (unregistering): left promiscuous mode
[  387.868601] virbr0: port 1(t0-0TTMcq) entered disabled state
[  392.147320] virbr0: port 1(t0-sU7BcA) entered blocking state
[  392.152986] virbr0: port 1(t0-sU7BcA) entered disabled state
[  392.158702] t0-sU7BcA: entered allmulticast mode
[  392.163423] t0-sU7BcA: entered promiscuous mode
[  392.172144] virbr0: port 1(t0-sU7BcA) entered blocking state
[  392.177806] virbr0: port 1(t0-sU7BcA) entered listening state
[  394.184961] virbr0: port 1(t0-sU7BcA) entered learning state
[  396.200922] virbr0: port 1(t0-sU7BcA) entered forwarding state
[  396.206768] virbr0: topology change detected, propagating
[  418.601956] virbr0: port 1(t0-sU7BcA) entered disabled state
[  418.608806] t0-sU7BcA (unregistering): left allmulticast mode
[  418.614558] t0-sU7BcA (unregistering): left promiscuous mode
[  418.620244] virbr0: port 1(t0-sU7BcA) entered disabled state
[  461.344056] JFS: nTxBlock = 8192, nTxLock = 65536
[  461.382756] QNX4 filesystem 0.2.3 registered.
[  461.463780] raid6: avx2x4   gen() 29092 MB/s
[  461.535779] raid6: avx2x2   gen() 28718 MB/s
[  461.607780] raid6: avx2x1   gen() 20413 MB/s
[  461.612050] raid6: using algorithm avx2x4 gen() 29092 MB/s
[  461.683778] raid6: .... xor() 5317 MB/s, rmw enabled
[  461.688740] raid6: using avx2x2 recovery algorithm
[  461.695546] xor: automatically using best checksumming function   avx       
[  461.790262] Btrfs loaded, zoned=yes, fsverity=yes
[  466.177970] sda6: Can't mount, would change RO state
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mShow Plymouth Reboot Screen^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSystem Logging Service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork is Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager Wait Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
         Stopping ^[[0;1;39mNetwork Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Network^[[0m.
         Stopping ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGenerate network units from Kernel command line^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
         Stopping ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Plymouth Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mVirtual Machine and Container Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39[  467.624316] audit: type=1305 audit(1750148983.745:289): op=set audit_pid=0 old=2284 auid=4294967295 ses=4294967295 subj=unconfined res=1
mlibvirt legacy monolithic daemo[  467.639450] audit: type=1131 audit(1750148983.757:290): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=auditd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
n socket^[[0m.
[^[[0;32m  OK  ^[[[  467.661105] audit: type=1131 audit(1750148983.781:291): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
0m] Closed ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon socket^[[0m.
         Stopping ^[[0;1;39mD-Bus System Message Bus^[[0m...
         Starting ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mD-Bus System Message Bus^[[0m.\r\r[  467.732801] audit: type=1131 audit(1750148983.853:292): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-fsck@dev-disk-by\x2duuid-FBE5\x2d86EF comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'

[^[[0;32m  OK  ^[[  467.751625] XFS (dm-0): Unmounting Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
[0m] Closed ^[[0;[  467.757012] XFS (sda6): Unmounting Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] [  467.778228] audit: type=1131 audit(1750148983.897:293): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Stopped target ^[[  467.800075] audit: type=1131 audit(1750148983.921:294): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Unset automount ^[[0;1;39mArbitrary Executab…ormats File System Automount Point^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Encrypted Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Integrity Protected Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Verity Protected Volumes^[[0m.
         Deactivating swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRead and set NIS domainn[  467.881388] audit: type=1131 audit(1750148984.001:295): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
ame from /etc/sy[  467.902487] audit: type=1130 audit(1750148984.021:296): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
sconfig/network^[[  467.923650] audit: type=1131 audit(1750148984.021:297): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[0m.
[^[[0;32m [  467.945913] audit: type=1334 audit(1750148984.065:298): prog-id=36 op=UNLOAD
 OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
         Stopping ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-sysctl.service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRecord System Boot/[  467.988298] watchdog: watchdog0: watchdog did not stop!
Shutdown in UTMP^[[0m.
         Stopping ^[[0;1;39mSecurity Auditing Service^[[0m[  468.000647] systemd-shutdown[1]: Using hardware watchdog 'SP5100 TCO timer', version 0, device /dev/watchdog0
...
[^[[0;32m  [  468.011762] systemd-shutdown[1]: Watchdog running with a timeout of 10min.
OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deact[  468.028860] systemd-shutdown[1]: Syncing filesystems and block devices.
ivated swap ^[[0;[  468.036369] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
1;39m/dev/disk/by-id/d…kEo36yeb12DWUnp5czhD1hrKFNCXkJMetK^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-uuid…8d2e1f-0fb1-4c94-97ac-38505613fcbf^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/rhel_sharavati[  468.064101] systemd-journald[1733]: Received SIGTERM from PID 1 (systemd-shutdow).
/swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/dm-2^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
         Unmounting ^[[0;1;39m/boot/efi^[[0m...
         Unmounting ^[[0;1;39m/home^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m.
         Unmounting ^[[0;1;39m/boot^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Local File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUnmount All Filesystems^[[0m.
         Stopping ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRemount Root and Kernel File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mMonitoring of LVM2 mirrors…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLate Shutdown Services^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSystem Reboot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Reboot^[[0m.
[  468.252221] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
[  468.276876] systemd-shutdown[1]: Unmounting file systems.
[  468.283009] [9137]: Remounting '/' read-only with options 'attr2,inode64,logbufs=8,logbsize=32k,noquota'.
[  468.357144] systemd-shutdown[1]: All filesystems unmounted.
[  468.362732] systemd-shutdown[1]: Deactivating swaps.
[  468.367756] systemd-shutdown[1]: All swaps deactivated.
[  468.373246] systemd-shutdown[1]: Detaching loop devices.
[  468.379096] systemd-shutdown[1]: All loop devices detached.
[  468.384678] systemd-shutdown[1]: Stopping MD devices.
[  468.389785] systemd-shutdown[1]: All MD devices stopped.
[  468.395103] systemd-shutdown[1]: Detaching DM devices.
[  468.400627] systemd-shutdown[1]: Detaching DM /dev/dm-2 (253:2).
[  468.428198] systemd-shutdown[1]: Detaching DM /dev/dm-0 (253:0).
[  468.475804] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  468.482298] systemd-shutdown[1]: Detaching DM devices.
[  468.487619] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  468.494061] systemd-shutdown[1]: Cannot finalize remaining DM devices, continuing.
[  468.501770] watchdog: watchdog0: watchdog did not stop!
[  468.597106] systemd-shutdown[1]: Successfully changed into root pivot.
[  468.603661] systemd-shutdown[1]: Returning to initrd...
[  468.654653] dracut Warning: Killing all remaining processes
dracut Warning: Killing all remaining processes
[  468.738303] XFS (dm-1): Unmounting Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[  468.754176] dracut Warning: Unmounted /oldroot.
dracut Warning: Unmounted /oldroot.
[  468.770471] dracut: Disassembling device-mapper devices
Rebooting.
[  468.954267] sd 8:0:2:0: [sdc] Synchronizing SCSI cache
[  468.959538] sd 8:0:0:0: [sda] Synchronizing SCSI cache
[  470.417291] mpt3sas_cm0: sending message unit reset !!
[  470.425137] mpt3sas_cm0: message unit reset: SUCCESS
[  470.432710] ACPI: PM: Preparing to enter system sleep state S5
[  470.438674] kvm: exiting hardware virtualization
[  470.443341] reboot: Restarting system
[  470.447006] reboot: machine restart
^[[c^[[2J^[[01;01H^[[=3h^[[2J^[[01;01HKEY MAPPING FOR CONSOLE REDIRECTION:

Use the <ESC><1> key sequence for <F1>
Use the <ESC><2> key sequence for <F2>
Use the <ESC><3> key sequence for <F3>
Use the <ESC><0> key sequence for <F10>
Use the <ESC><!> key sequence for <F11>
Use the <ESC><@> key sequence for <F12>

Use the <ESC><Ctrl><M> key sequence for <Ctrl><M>
Use the <ESC><Ctrl><H> key sequence for <Ctrl><H>
Use the <ESC><Ctrl><I> key sequence for <Ctrl><I>
Use the <ESC><Ctrl><J> key sequence for <Ctrl><J>

Use the <ESC><X><X> key sequence for <Alt><x>, where x is any letter
key, and X is the upper case of that key

Use the <ESC><R><ESC><r><ESC><R> key sequence for <Ctrl><Alt><Del>

Press the spacebar to pause...
Initializing PCIe, USB, and Video... Done
PowerEdge R6515
BIOS Version: 2.17.0
Console Redirection Enabled Requested by iDRAC

F2	 = System Setup
F10	 = Lifecycle Controller (Config
	   iDRAC, Update FW, Install OS)
F11	 = Boot Manager
F12	 = PXE Boot
iDRAC IPV4:  10.86.18.202 [Dedicated]
                                
Initializing Firmware Interfaces...
 





Enumerating Boot options...
Enumerating Boot options... Done
Loading Lifecycle Controller Drivers...
Loading Lifecycle Controller Drivers...Done
Lifecycle Controller: Collecting System Inventory...

iDRAC IPV4:  10.86.18.202 [Dedicated]

^[[2J^[[01;01HLifecycle Controller: Done
Booting...
^[[2J^[[01;01HBooting from Integrated Storage Controller 1: Red Hat Enterprise Linux
^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[02;32HGRUB version 2.06

\r^[[04;02H/----------------------------------------------------------------------------\^[[05;02H|^[[05;79H|^[[06;02H|^[[06;79H|^[[07;02H|^[[07;79H|^[[08;02H|^[[08;79H|^[[09;02H|^[[09;79H|^[[10;02H|^[[10;79H|^[[11;02H|^[[11;79H|^[[12;02H|^[[12;79H|^[[13;02H|^[[13;79H|^[[14;02H|^[[14;79H|^[[15;02H|^[[15;79H|^[[16;02H|^[[16;79H|^[[17;02H\----------------------------------------------------------------------------/^[[18;02H^[[19;02H     Use the ^ and v keys to select which entry is highlighted.          
\r      Press enter to boot the selected OS, `e' to edit the commands       
\r      before booting or `c' for a command-line. ESC to return previous    
\r      menu.                                                               ^[[05;80H ^[[0m^[[30m^[[47m^[[05;03H*Red Hat Enterprise Linux (6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e)>
\r^[[06;01H^[[0m^[[37m^[[40m^[[05;78H^[[06;03H Red Hat Enterprise Linux (6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997)>
\r^[[07;01H^[[06;78H^[[07;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250613-bc6e0ba6c9-dc42f4ece61)>
\r^[[08;01H^[[07;78H^[[08;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250612-0bb71d3018-d909e6968a1)>
\r^[[09;01H^[[08;78H^[[09;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250611-19a60293b9-72d7c68e20e)>
\r^[[10;01H^[[09;78H^[[10;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250610-b27cc623e0-9a3b1b1b837)>
\r^[[11;01H^[[10;78H^[[11;03H Red Hat Enterprise Linux (6.15.0-rc7-next-20250526-3be1a7a31f-22d449bcd69)>
\r^[[12;01H^[[11;78H^[[12;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250514-bdd609656f-ccb396cc166)>
\r^[[13;01H^[[12;78H^[[13;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250513-aa94665adc-e0bf3d3816b)>
\r^[[14;01H^[[13;78H^[[14;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250512-edef457004-450c56522a8)>
\r^[[15;01H^[[14;78H^[[15;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250508-f48887a98b-19c541fe872)>
\r^[[16;01H^[[15;78H^[[16;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250507-08710e6960-81586bd2ca8)>
\r^[[17;01H^[[16;78H^[[16;80Hv^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 5s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 4s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 3s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 2s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 1s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 0s.                 ^[[05;78H^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m  Booting `Red Hat Enterprise Linux
\r(6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e) 9.5 (Plow)'

\r[    0.000000] Linux version 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e (root@sharavati•amd.com) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-5), GNU ld version 2.35.2-63.el9) #1 SMP PREEMPT_DYNAMIC Tue Jun 17 12:09:52 IST 2025
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] SEV-SNP: RMP table physical range [0x0000000015e00000 - 0x00000000566fffff]
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000015dfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000015e00000-0x00000000566fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000056700000-0x00000000567fbfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000567fc000-0x00000000567fcfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000567fd000-0x000000005a142fff] usable
[    0.000000] BIOS-e820: [mem 0x000000005a143000-0x000000005a342fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005a343000-0x0000000067acefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000067acf000-0x000000006dfcefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006dfcf000-0x000000006edfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006edff000-0x000000006effefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000006efff000-0x000000006effffff] usable
[    0.000000] BIOS-e820: [mem 0x000000006f000000-0x000000006f00afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006f00b000-0x000000006fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000070000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa000000-0x00000000aaffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c5000000-0x00000000c5ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e0ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000207fcfffff] usable
[    0.000000] BIOS-e820: [mem 0x000000207fd00000-0x000000207fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000002080000000-0x000000407f1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000407f200000-0x000000407fffffff] reserved
[    0.000000] printk: legacy bootconsole [earlyser0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by Dell Inc.
[    0.000000] efi: ACPI=0x6effe000 ACPI 2.0=0x6effe014 MEMATTR=0x63f376a0 SMBIOS=0x6979e000 SMBIOS 3.0=0x6979c000 MOKvar=0x67bcc000 RNG=0x6efb4020 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem56: MMIO range=[0x80000000-0x8fffffff] (256MB) from e820 map
[    0.000000] efi: Remove mem57: MMIO range=[0xaa000000-0xaaffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem58: MMIO range=[0xc5000000-0xc5ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem59: MMIO range=[0xe0000000-0xe0ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem60: MMIO range=[0xfd000000-0xffffffff] (48MB) from e820 map
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[    0.000000] DMI: Memory slots populated: 8/16
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1996.324 MHz processor
[    0.000028] last_pfn = 0x407f200 max_arch_pfn = 0x400000000
[    0.005552] MTRR map: 7 entries (2 fixed + 5 variable; max 19), built from 9 variable MTRRs
[    0.013867] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Memory KASLR using RDRAND RDTSC...
[    0.023981] x2apic: enabled by BIOS, switching to x2apic ops
[    0.029614] last_pfn = 0x70000 max_arch_pfn = 0x400000000
[    0.039422] SEV-SNP: Reserving start/end of RMP table on a 2MB boundary [0x0000000056600000]
[    0.047689] Using GB pages for direct mapping
[    0.052679] Secure boot disabled
[    0.055731] RAMDISK: [mem 0x0bb2c000-0x0e0d4fff]
[    0.060329] ACPI: Early table checksum verification disabled
[    0.065960] ACPI: RSDP 0x000000006EFFE014 000024 (v02 DELL  )
[    0.071678] ACPI: XSDT 0x000000006EFB7188 0000DC (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.080174] ACPI: FACP 0x000000006EFF9000 000114 (v06 DELL   PE_SC3   00000002 DELL 00000001)
[    0.088666] ACPI: DSDT 0x000000006EFDA000 019528 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.097157] ACPI: FACS 0x000000006EDB9000 000040
[    0.101749] ACPI: BERT 0x000000006EFFC000 000030 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.110242] ACPI: ERST 0x000000006EFFB000 000230 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.118735] ACPI: HEST 0x000000006EFFA000 0007F4 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.127227] ACPI: HPET 0x000000006EFF8000 000038 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.135720] ACPI: APIC 0x000000006EFF6000 0018BE (v05 DELL   PE_SC3   00000002 DELL 00000001)
[    0.144214] ACPI: MCFG 0x000000006EFF5000 00003C (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.152706] ACPI: WSMT 0x000000006EFF4000 000028 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.161199] ACPI: SSDT 0x000000006EFD9000 000629 (v02 DELL   xhc_port 00000001 INTL 20210331)
[    0.169692] ACPI: SSDT 0x000000006EFD8000 000D6E (v02 AMD    CPMRAS   00000001 INTL 20210331)
[    0.178185] ACPI: EINJ 0x000000006EFD7000 000170 (v01 AMD    PE_SC3   00000001 AMD  00000001)
[    0.186678] ACPI: PCCT 0x000000006EFD6000 00006E (v02 DELL   AmdTable 00000001 AMD  00000001)
[    0.195170] ACPI: SSDT 0x000000006EFC7000 00E849 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.203663] ACPI: SRAT 0x000000006EFC6000 000CD0 (v03 DELL   PE_SC3   00000001 AMD  00000001)
[    0.212156] ACPI: MSCT 0x000000006EFC5000 00004E (v01 DELL   PE_SC3   00000000 AMD  00000001)
[    0.220648] ACPI: SLIT 0x000000006EFC4000 000030 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.229141] ACPI: CRAT 0x000000006EFBC000 0072F8 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.237635] ACPI: CDIT 0x000000006EFBB000 00002C (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.246144] ACPI: IVRS 0x000000006EFBA000 0001F0 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.254637] ACPI: SPCR 0x000000006EFB9000 000050 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.263130] ACPI: SLIC 0x000000006EFB8000 000176 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.271623] ACPI: SSDT 0x000000006EFFD000 000D66 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.280116] ACPI: SSDT 0x000000006EFB5000 00193C (v02 AMD    CPMCMN   00000001 INTL 20210331)
[    0.288608] ACPI: Reserving FACP table memory at [mem 0x6eff9000-0x6eff9113]
[    0.295627] ACPI: Reserving DSDT table memory at [mem 0x6efda000-0x6eff3527]
[    0.302646] ACPI: Reserving FACS table memory at [mem 0x6edb9000-0x6edb903f]
[    0.309666] ACPI: Reserving BERT table memory at [mem 0x6effc000-0x6effc02f]
[    0.316686] ACPI: Reserving ERST table memory at [mem 0x6effb000-0x6effb22f]
[    0.323706] ACPI: Reserving HEST table memory at [mem 0x6effa000-0x6effa7f3]
[    0.330726] ACPI: Reserving HPET table memory at [mem 0x6eff8000-0x6eff8037]
[    0.337745] ACPI: Reserving APIC table memory at [mem 0x6eff6000-0x6eff78bd]
[    0.344765] ACPI: Reserving MCFG table memory at [mem 0x6eff5000-0x6eff503b]
[    0.351785] ACPI: Reserving WSMT table memory at [mem 0x6eff4000-0x6eff4027]
[    0.358803] ACPI: Reserving SSDT table memory at [mem 0x6efd9000-0x6efd9628]
[    0.365823] ACPI: Reserving SSDT table memory at [mem 0x6efd8000-0x6efd8d6d]
[    0.372843] ACPI: Reserving EINJ table memory at [mem 0x6efd7000-0x6efd716f]
[    0.379862] ACPI: Reserving PCCT table memory at [mem 0x6efd6000-0x6efd606d]
[    0.386881] ACPI: Reserving SSDT table memory at [mem 0x6efc7000-0x6efd5848]
[    0.393902] ACPI: Reserving SRAT table memory at [mem 0x6efc6000-0x6efc6ccf]
[    0.400920] ACPI: Reserving MSCT table memory at [mem 0x6efc5000-0x6efc504d]
[    0.407940] ACPI: Reserving SLIT table memory at [mem 0x6efc4000-0x6efc402f]
[    0.414961] ACPI: Reserving CRAT table memory at [mem 0x6efbc000-0x6efc32f7]
[    0.421980] ACPI: Reserving CDIT table memory at [mem 0x6efbb000-0x6efbb02b]
[    0.428999] ACPI: Reserving IVRS table memory at [mem 0x6efba000-0x6efba1ef]
[    0.436019] ACPI: Reserving SPCR table memory at [mem 0x6efb9000-0x6efb904f]
[    0.443039] ACPI: Reserving SLIC table memory at [mem 0x6efb8000-0x6efb8175]
[    0.450114] ACPI: Reserving SSDT table memory at [mem 0x6effd000-0x6effdd65]
[    0.457095] ACPI: Reserving SSDT table memory at [mem 0x6efb5000-0x6efb693b]
[    0.464188] APIC: Switched APIC routing to: cluster x2apic
[    0.469591] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.475554] ACPI: SRAT: Node 0 PXM 0 [mem 0x000c0000-0x7fffffff]
[    0.481533] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.487772] ACPI: SRAT: Node 1 PXM 1 [mem 0x2080000000-0x407fffffff]
[    0.494106] NUMA: Node 0 [mem 0x00001000-0x0009ffff] + [mem 0x000c0000-0x7fffffff] -> [mem 0x00001000-0x7fffffff]
[    0.504326] NUMA: Node 0 [mem 0x00001000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00001000-0x207fffffff]
[    0.514991] NODE_DATA(0) allocated [mem 0x207fcd59c0-0x207fcfffff]
[    0.521147] NODE_DATA(1) allocated [mem 0x407f1d49c0-0x407f1fefff]
[    0.527430] cannot allocate crashkernel low memory (size:0x10800000).
[    0.533953] Zone ranges:
[    0.536312]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.542466]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.548617]   Normal   [mem 0x0000000100000000-0x000000407f1fffff]
[    0.554805]   Device   empty
[    0.557665] Movable zone start for each node
[    0.561913] Early memory node ranges
[    0.565465]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.571705]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.577943]   node   0: [mem 0x0000000000100000-0x0000000015dfffff]
[    0.584184]   node   0: [mem 0x0000000056700000-0x00000000567fbfff]
[    0.590424]   node   0: [mem 0x00000000567fd000-0x000000005a142fff]
[    0.596664]   node   0: [mem 0x000000005a343000-0x0000000067acefff]
[    0.602903]   node   0: [mem 0x000000006efff000-0x000000006effffff]
[    0.609143]   node   0: [mem 0x000000006f00b000-0x000000006fffffff]
[    0.615381]   node   0: [mem 0x0000000100000000-0x000000207fcfffff]
[    0.621631]   node   1: [mem 0x0000002080000000-0x000000407f1fffff]
[    0.627873] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fcfffff]
[    0.634882] Initmem setup node 1 [mem 0x0000002080000000-0x000000407f1fffff]
[    0.641902] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.647706] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.653647] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.659808] On node 0, zone DMA32: 35072 pages in unavailable ranges
[    0.666017] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.672112] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.678201] On node 0, zone DMA32: 30000 pages in unavailable ranges
[    0.684445] On node 0, zone DMA32: 11 pages in unavailable ranges
[    0.909811] On node 1, zone Normal: 768 pages in unavailable ranges
[    0.915910] On node 1, zone Normal: 3584 pages in unavailable ranges
[    0.922393] ACPI: PM-Timer IO Port: 0x408
[    0.926290] ACPI: X2APIC_NMI (uid[0xffffffff] high edge lint[0x1])
[    0.932417] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.938324] IOAPIC[0]: apic_id 240, version 33, address 0xfec00000, GSI 0-23
[    0.945332] IOAPIC[1]: apic_id 241, version 33, address 0xe0100000, GSI 120-151
[    0.952610] IOAPIC[2]: apic_id 242, version 33, address 0xc5100000, GSI 88-119
[    0.959804] IOAPIC[3]: apic_id 243, version 33, address 0xaa100000, GSI 56-87
[    0.966910] IOAPIC[4]: apic_id 244, version 33, address 0xfd100000, GSI 24-55
[    0.974016] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.980339] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.986845] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.993251] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.998367] ACPI: SPCR: console: uart,io,0x2f8,115200
[    1.003395] CPU topo: Max. logical packages:   1
[    1.007983] CPU topo: Max. logical dies:       1
[    1.012576] CPU topo: Max. dies per package:   1
[    1.017174] CPU topo: Max. threads per core:   2
[    1.021763] CPU topo: Num. cores per package:    64
[    1.026616] CPU topo: Num. threads per package: 128
[    1.031469] CPU topo: Allowing 128 present CPUs plus 0 hotplug CPUs
[    1.037734] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    1.045250] PM: hibernation: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    1.052789] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    1.060327] PM: hibernation: Registered nosave memory: [mem 0x15e00000-0x567fffff]
[    1.067867] PM: hibernation: Registered nosave memory: [mem 0x5a143000-0x5a342fff]
[    1.075406] PM: hibernation: Registered nosave memory: [mem 0x67acf000-0x6effefff]
[    1.082946] PM: hibernation: Registered nosave memory: [mem 0x6f000000-0x6f00afff]
[    1.090487] PM: hibernation: Registered nosave memory: [mem 0x70000000-0xffffffff]
[    1.098026] PM: hibernation: Registered nosave memory: [mem 0x207fd00000-0x207fffffff]
[    1.105911] [mem 0x56800000-0xffffffff] available for PCI devices
[    1.111977] Booting paravirtualized kernel on bare hardware
[    1.117524] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    1.127935] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:128 nr_cpu_ids:128 nr_node_ids:2
[    1.139143] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[    1.145620] Kernel command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    1.174945] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e biosdevname=0 mem_encrypt=off", will be passed to user space.
[    1.191792] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    1.198708] printk: log_buf_len total cpu_extra contributions: 520192 bytes
[    1.205641] printk: log_buf_len min size: 262144 bytes
[    1.211087] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[    1.218476] printk: early log buf free: 246352(93%)
[    1.224827] software IO TLB: area num 128.
[    1.228750] software IO TLB: swiotlb_memblock_alloc: Failed to allocate 268435456 bytes tlb structure
[    1.243931] software IO TLB: SWIOTLB bounce buffer size adjusted 131072 -> 65536 slabs
[    1.250157] Fallback order for Node 0: 0 1 
[    1.250161] Fallback order for Node 1: 1 0 
[    1.250175] Built 2 zonelists, mobility grouping on.  Total pages: 66743906
[    1.273158] Policy zone: Normal
[    1.276287] mem auto-init: stack:off, heap alloc:on, heap free:off
[    1.697637] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=128, Nodes=2
Poking KASLR using RDRAND RDTSC...
[    1.718875] ftrace: allocating 53763 entries in 212 pages
[    1.724091] ftrace: allocated 212 pages with 4 groups
[    1.730026] Dynamic Preempt: voluntary
[    1.733965] rcu: Preemptible hierarchical RCU implementation.
[    1.739527] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=128.
[    1.746459] 	Trampoline variant of Tasks RCU enabled.
[    1.751485] 	Rude variant of Tasks RCU enabled.
[    1.755992] 	Tracing variant of Tasks RCU enabled.
[    1.760758] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.768298] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=128
[    1.775187] RCU Tasks: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.783987] RCU Tasks Rude: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.793261] RCU Tasks Trace: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.806192] NR_IRQS: 524544, nr_irqs: 3624, preallocated irqs: 16
[    1.812392] rcu: srcu_init: Setting srcu_struct sizes to big.
[    1.818135] Console: colour dummy device 80x25
[    1.822420] printk: legacy console [ttyS0] enabled
[    1.822420] printk: legacy console [ttyS0] enabled
[    1.831951] printk: legacy bootconsole [earlyser0] disabled
[    1.831951] printk: legacy bootconsole [earlyser0] disabled
[    1.843138] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    1.854417] ACPI: Core revision 20250404
[    1.858569] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    1.867707] APIC: Switch to symmetric I/O mode setup
[    1.873105] AMD-Vi: Using global IVHD EFR:0x841f77e022094ace, EFR2:0x0
[    1.882042] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    1.907708] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x398d3c2aa72, max_idle_ns: 881590816252 ns
[    1.918288] Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.64 BogoMIPS (lpj=7985296)
[    1.922300] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    1.926390] LVT offset 2 assigned for vector 0xf4
[    1.930317] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    1.934287] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    1.938288] process: using mwait in idle threads
[    1.942291] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    1.946287] Spectre V2 : Mitigation: Retpolines
[    1.950287] Spectre V2 : User space: Mitigation: STIBP always-on protection
[    1.954287] Speculative Return Stack Overflow: Mitigation: Safe RET
[    1.958287] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.962287] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
[    1.966287] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    1.970287] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    1.974291] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.978287] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.982287] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.986287] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    1.990287] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    1.994287] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    1.998287] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    2.002287] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    2.006287] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[    2.044108] Freeing SMP alternatives memory: 48K
[    2.046289] pid_max: default: 131072 minimum: 1024
[    2.057799] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm
[    2.058340] Yama: becoming mindful.
[    2.062416] AppArmor: AppArmor initialized
[    2.075000] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    2.083286] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    2.086427] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.090392] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.207091] smpboot: CPU0: AMD EPYC 7713 64-Core Processor (family: 0x19, model: 0x1, stepping: 0x1)
[    2.210644] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    2.214289] ... version:                0
[    2.218287] ... bit width:              48
[    2.222288] ... generic registers:      6
[    2.226287] ... value mask:             0000ffffffffffff
[    2.230287] ... max period:             00007fffffffffff
[    2.234287] ... fixed-purpose events:   0
[    2.238287] ... event mask:             000000000000003f
[    2.242719] signal: max sigframe size: 3376
[    2.246351] rcu: Hierarchical SRCU implementation.
[    2.250288] rcu: 	Max phase no-delay instances is 1000.
[    2.254343] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
[    2.266703] MCE: In-kernel MCE decoding enabled.
[    2.270338] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    2.275247] smp: Bringing up secondary CPUs ...
[    2.278454] smpboot: x86: Booting SMP configuration:
[    2.282291] .... node  #0, CPUs:          #1   #2   #3   #4   #5   #6   #7   #8   #9  #10  #11  #12  #13  #14  #15  #16  #17  #18  #19  #20  #21  #22  #23  #24  #25  #26  #27  #28  #29  #30  #31
[    2.294289] .... node  #1, CPUs:    #32  #33  #34  #35  #36  #37  #38  #39  #40  #41  #42  #43  #44  #45  #46  #47  #48  #49  #50  #51  #52  #53  #54  #55  #56  #57  #58  #59  #60  #61  #62  #63
[    2.446290] .... node  #0, CPUs:    #64  #65  #66  #67  #68  #69  #70  #71  #72  #73  #74  #75  #76  #77  #78  #79  #80  #81  #82  #83  #84  #85  #86  #87  #88  #89  #90  #91  #92  #93  #94  #95
[    2.454291] .... node  #1, CPUs:    #96  #97  #98  #99 #100 #101 #102 #103 #104 #105 #106 #107 #108 #109 #110 #111 #112 #113 #114 #115 #116 #117 #118 #119 #120 #121 #122 #123 #124 #125 #126 #127
[    2.462590] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[    2.614457] smp: Brought up 2 nodes, 128 CPUs
[    2.618291] smpboot: Total of 128 processors activated (511058.94 BogoMIPS)
[    2.632115] Memory: 262224964K/266975624K available (18401K kernel code, 3299K rwdata, 7944K rodata, 4760K init, 6092K bss, 4428308K reserved, 0K cma-reserved)
[    2.639906] devtmpfs: initialized
[    2.642397] x86/mm: Memory block size: 2048MB
[    2.656580] ACPI: PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    2.658289] ACPI: PM: Registering ACPI NVS region [mem 0x6dfcf000-0x6edfefff] (14876672 bytes)
[    2.662572] ACPI: PM: Registering ACPI NVS region [mem 0x6f000000-0x6f00afff] (45056 bytes)
[    2.670364] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    2.674353] posixtimers hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.678503] futex hash table entries: 16384 (1048576 bytes on 2 NUMA nodes, total 2048 KiB, linear).
[    2.682520] pinctrl core: initialized pinctrl subsystem
[    2.686438] PM: RTC time: 14:01:59, date: 2025-06-17
[    2.691062] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    2.694895] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    2.698470] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    2.702470] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    2.706295] audit: initializing netlink subsys (disabled)
[    2.710315] audit: type=2000 audit(1750168918.828:1): state=initialized audit_enabled=0 res=1
[    2.710493] thermal_sys: Registered thermal governor 'fair_share'
[    2.714289] thermal_sys: Registered thermal governor 'bang_bang'
[    2.718288] thermal_sys: Registered thermal governor 'step_wise'
[    2.722288] thermal_sys: Registered thermal governor 'user_space'
[    2.726311] cpuidle: using governor ladder
[    2.734298] cpuidle: using governor menu
[    2.738335] Detected 1 PCC Subspaces
[    2.742289] Registering PCC driver as Mailbox controller
[    2.750473] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    2.754291] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    2.758468] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    2.762299] PCI: Using configuration type 1 for base access
[    2.766297] PCI: Dell System detected, enabling pci=bfsort.
[    2.770492] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    2.774505] HugeTLB: allocation took 0ms with hugepage_allocation_threads=32
[    2.778331] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    2.782288] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    2.786288] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    2.790287] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    2.798444] ACPI: Added _OSI(Module Device)
[    2.802288] ACPI: Added _OSI(Processor Device)
[    2.806288] ACPI: Added _OSI(Processor Aggregator Device)
[    2.850968] ACPI: 6 ACPI AML tables successfully acquired and loaded
[    2.866963] ACPI: Interpreter enabled
[    2.870300] ACPI: PM: (supports S0 S5)
[    2.874288] ACPI: Using IOAPIC for interrupt routing
[    2.878908] HEST: Table parsing has been initialized.
[    2.882714] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    2.886291] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.890287] PCI: Ignoring E820 reservations for host bridge windows
[    2.898489] ACPI: Enabled 1 GPEs in block 00 to 1F
[    2.940439] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    2.942367] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    2.946365] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    2.950365] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    2.954367] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    2.958365] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    2.962365] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    2.966365] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    2.970787] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-3f])
[    2.974292] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.978453] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER DPC]
[    2.982603] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    2.986288] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.991284] PCI host bridge to bus 0000:00
[    2.994292] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    2.998288] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    3.002289] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000fffff window]
[    3.006288] pci_bus 0000:00: root bus resource [io  0x0d00-0x3fff window]
[    3.010288] pci_bus 0000:00: root bus resource [mem 0xe1000000-0xfebfffff window]
[    3.014289] pci_bus 0000:00: root bus resource [mem 0x63dc0000000-0x7fcffffffff window]
[    3.018288] pci_bus 0000:00: root bus resource [bus 00-3f]
[    3.022302] pci 0000:00:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.026441] pci 0000:00:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.030398] pci 0000:00:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.034381] pci 0000:00:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.038379] pci 0000:00:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.042382] pci 0000:00:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.046303] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.050291] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    3.054289] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    3.058357] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    3.063294] pci 0000:00:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.066382] pci 0000:00:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.070382] pci 0000:00:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.074383] pci 0000:00:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.078303] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.082292] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    3.086299] pci 0000:00:07.1: enabling Extended Tags
[    3.090336] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    3.094446] pci 0000:00:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.098381] pci 0000:00:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.102303] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.106292] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    3.110300] pci 0000:00:08.1: enabling Extended Tags
[    3.114338] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    3.118486] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
[    3.122403] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
[    3.126459] pci 0000:00:18.0: [1022:1650] type 00 class 0x060000 conventional PCI endpoint
[    3.130394] pci 0000:00:18.1: [1022:1651] type 00 class 0x060000 conventional PCI endpoint
[    3.134355] pci 0000:00:18.2: [1022:1652] type 00 class 0x060000 conventional PCI endpoint
[    3.138353] pci 0000:00:18.3: [1022:1653] type 00 class 0x060000 conventional PCI endpoint
[    3.142352] pci 0000:00:18.4: [1022:1654] type 00 class 0x060000 conventional PCI endpoint
[    3.146353] pci 0000:00:18.5: [1022:1655] type 00 class 0x060000 conventional PCI endpoint
[    3.150357] pci 0000:00:18.6: [1022:1656] type 00 class 0x060000 conventional PCI endpoint
[    3.154352] pci 0000:00:18.7: [1022:1657] type 00 class 0x060000 conventional PCI endpoint
[    3.158425] pci 0000:01:00.0: [1000:0097] type 00 class 0x010700 PCIe Endpoint
[    3.162318] pci 0000:01:00.0: BAR 0 [io  0x1000-0x10ff]
[    3.166290] pci 0000:01:00.0: BAR 1 [mem 0xf7400000-0xf740ffff 64bit]
[    3.170289] pci 0000:01:00.0: BAR 3 [mem 0xf7300000-0xf73fffff 64bit]
[    3.174290] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]
[    3.178293] pci 0000:01:00.0: enabling Extended Tags
[    3.182371] pci 0000:01:00.0: supports D1 D2
[    3.186328] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[    3.190288] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x000fffff 64bit]: contains BAR 0 for 16 VFs
[    3.194290] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x000fffff 64bit]
[    3.198288] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x00ffffff 64bit]: contains BAR 2 for 16 VFs
[    3.202440] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.206378] pci 0000:02:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.210321] pci 0000:02:00.0: enabling Extended Tags
[    3.214450] pci 0000:02:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.218315] pci 0000:02:00.2: BAR 2 [mem 0xf7200000-0xf727ffff]
[    3.222290] pci 0000:02:00.2: BAR 5 [mem 0xf7280000-0xf7281fff]
[    3.226292] pci 0000:02:00.2: enabling Extended Tags
[    3.230491] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.234424] pci 0000:03:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.238324] pci 0000:03:00.0: enabling Extended Tags
[    3.246312] pci 0000:03:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.250318] pci 0000:03:00.2: BAR 2 [mem 0xf7100000-0xf717ffff]
[    3.254291] pci 0000:03:00.2: BAR 5 [mem 0xf7180000-0xf7181fff]
[    3.258293] pci 0000:03:00.2: enabling Extended Tags
[    3.262484] pci 0000:03:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.266317] pci 0000:03:00.3: BAR 0 [mem 0xf7000000-0xf70fffff 64bit]
[    3.270296] pci 0000:03:00.3: enabling Extended Tags
[    3.274339] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
[    3.278471] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.283697] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 40-7f])
[    3.286291] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.290452] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.294604] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.298288] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.306704] PCI host bridge to bus 0000:40
[    3.310291] pci_bus 0000:40: root bus resource [io  0x4000-0x6fff window]
[    3.314289] pci_bus 0000:40: root bus resource [mem 0x90000000-0xaaffffff window]
[    3.318288] pci_bus 0000:40: root bus resource [mem 0x47e80000000-0x63dbfffffff window]
[    3.322288] pci_bus 0000:40: root bus resource [bus 40-7f]
[    3.326298] pci 0000:40:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.330390] pci 0000:40:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.334389] pci 0000:40:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.338371] pci 0000:40:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.342377] pci 0000:40:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.346384] pci 0000:40:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.350305] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.354294] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    3.358379] pci 0000:40:03.1: PME# supported from D0 D3hot D3cold
[    3.377791] pci 0000:40:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.378306] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.382293] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    3.386381] pci 0000:40:03.2: PME# supported from D0 D3hot D3cold
[    3.403369] pci 0000:40:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.406311] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.410295] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    3.414477] pci 0000:40:03.3: PME# supported from D0 D3hot D3cold
[    3.433195] pci 0000:40:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.434307] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.438299] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    3.442422] pci 0000:40:03.4: PME# supported from D0 D3hot D3cold
[    3.459153] pci 0000:40:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.462415] pci 0000:40:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.466377] pci 0000:40:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.470378] pci 0000:40:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.474307] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.478294] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    3.482301] pci 0000:40:07.1: enabling Extended Tags
[    3.486340] pci 0000:40:07.1: PME# supported from D0 D3hot D3cold
[    3.494459] pci 0000:40:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.502381] pci 0000:40:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.510304] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.514292] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    3.518299] pci 0000:40:08.1: enabling Extended Tags
[    3.526337] pci 0000:40:08.1: PME# supported from D0 D3hot D3cold
[    3.530547] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.538374] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.542371] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.546381] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.550375] pci 0000:45:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.558321] pci 0000:45:00.0: enabling Extended Tags
[    3.562447] pci 0000:45:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.570315] pci 0000:45:00.2: BAR 2 [mem 0xa5300000-0xa537ffff]
[    3.578290] pci 0000:45:00.2: BAR 5 [mem 0xa5380000-0xa5381fff]
[    3.582293] pci 0000:45:00.2: enabling Extended Tags
[    3.586494] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.594422] pci 0000:46:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.602324] pci 0000:46:00.0: enabling Extended Tags
[    3.606498] pci 0000:46:00.1: [1022:1486] type 00 class 0x108000 PCIe Endpoint
[    3.614317] pci 0000:46:00.1: BAR 2 [mem 0xa5100000-0xa51fffff]
[    3.618290] pci 0000:46:00.1: BAR 5 [mem 0xa5282000-0xa5283fff]
[    3.626293] pci 0000:46:00.1: enabling Extended Tags
[    3.630483] pci 0000:46:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.638317] pci 0000:46:00.2: BAR 2 [mem 0xa5200000-0xa527ffff]
[    3.642290] pci 0000:46:00.2: BAR 5 [mem 0xa5280000-0xa5281fff]
[    3.650293] pci 0000:46:00.2: enabling Extended Tags
[    3.654479] pci 0000:46:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.662316] pci 0000:46:00.3: BAR 0 [mem 0xa5000000-0xa50fffff 64bit]
[    3.666296] pci 0000:46:00.3: enabling Extended Tags
[    3.674337] pci 0000:46:00.3: PME# supported from D0 D3hot D3cold
[    3.678469] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.686966] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 80-bf])
[    3.690292] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.702453] acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.710618] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.718288] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.726905] PCI host bridge to bus 0000:80
[    3.730291] pci_bus 0000:80: root bus resource [io  0x7000-0x9fff window]
[    3.738288] pci_bus 0000:80: root bus resource [mem 0xab000000-0xc5ffffff window]
[    3.742288] pci_bus 0000:80: root bus resource [mem 0x2bf40000000-0x47e7fffffff window]
[    3.750290] pci_bus 0000:80: root bus resource [bus 80-bf]
[    3.758298] pci 0000:80:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.766387] pci 0000:80:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.774388] pci 0000:80:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.782382] pci 0000:80:01.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.790305] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.794293] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    3.802380] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    3.822076] pci 0000:80:01.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.826309] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.834293] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    3.838361] pci 0000:80:01.2: PME# supported from D0 D3hot D3cold
[    3.857292] pci 0000:80:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.858386] pci 0000:80:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.862394] pci 0000:80:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.870428] pci 0000:80:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.874375] pci 0000:80:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.878379] pci 0000:80:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.882304] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.886292] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    3.890300] pci 0000:80:07.1: enabling Extended Tags
[    3.894336] pci 0000:80:07.1: PME# supported from D0 D3hot D3cold
[    3.898442] pci 0000:80:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.902380] pci 0000:80:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.906303] pci 0000:80:08.1: PCI bridge to [bus 84]
[    3.910292] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    3.914299] pci 0000:80:08.1: enabling Extended Tags
[    3.918337] pci 0000:80:08.1: PME# supported from D0 D3hot D3cold
[    3.922454] pci 0000:80:08.2: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.926305] pci 0000:80:08.2: PCI bridge to [bus 85]
[    3.930292] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    3.934299] pci 0000:80:08.2: enabling Extended Tags
[    3.938337] pci 0000:80:08.2: PME# supported from D0 D3hot D3cold
[    3.942528] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.946370] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.950376] pci 0000:83:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.954321] pci 0000:83:00.0: enabling Extended Tags
[    3.958453] pci 0000:83:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.962315] pci 0000:83:00.2: BAR 2 [mem 0xbfa00000-0xbfa7ffff]
[    3.966290] pci 0000:83:00.2: BAR 5 [mem 0xbfa80000-0xbfa81fff]
[    3.970292] pci 0000:83:00.2: enabling Extended Tags
[    3.974487] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.978425] pci 0000:84:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.982324] pci 0000:84:00.0: enabling Extended Tags
[    3.986499] pci 0000:84:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.990317] pci 0000:84:00.2: BAR 2 [mem 0xbf900000-0xbf97ffff]
[    3.994290] pci 0000:84:00.2: BAR 5 [mem 0xbf980000-0xbf981fff]
[    3.998293] pci 0000:84:00.2: enabling Extended Tags
[    4.002497] pci 0000:80:08.1: PCI bridge to [bus 84]
[    4.006421] pci 0000:85:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[    4.010319] pci 0000:85:00.0: BAR 5 [mem 0xbf800000-0xbf8007ff]
[    4.014293] pci 0000:85:00.0: enabling Extended Tags
[    4.018351] pci 0000:85:00.0: PME# supported from D3hot D3cold
[    4.022466] pci 0000:80:08.2: PCI bridge to [bus 85]
[    4.026995] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus c0-ff])
[    4.030291] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    4.034452] acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug AER DPC]
[    4.038604] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    4.042288] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
[    4.050995] PCI host bridge to bus 0000:c0
[    4.054291] pci_bus 0000:c0: root bus resource [io  0xa000-0xffff window]
[    4.058288] pci_bus 0000:c0: root bus resource [mem 0xc6000000-0xe0ffffff window]
[    4.062288] pci_bus 0000:c0: root bus resource [mem 0x10000000000-0x2bf3fffffff window]
[    4.066288] pci_bus 0000:c0: root bus resource [io  0x03b0-0x03df window]
[    4.070288] pci_bus 0000:c0: root bus resource [mem 0x000a0000-0x000bffff window]
[    4.074288] pci_bus 0000:c0: root bus resource [bus c0-ff]
[    4.078297] pci 0000:c0:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    4.082384] pci 0000:c0:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    4.086390] pci 0000:c0:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.090371] pci 0000:c0:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.094372] pci 0000:c0:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.098379] pci 0000:c0:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.102305] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.106294] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    4.110378] pci 0000:c0:03.1: PME# supported from D0 D3hot D3cold
[    4.129603] pci 0000:c0:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.130311] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.134293] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    4.138398] pci 0000:c0:03.2: PME# supported from D0 D3hot D3cold
[    4.156439] pci 0000:c0:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.158311] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.162295] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    4.166404] pci 0000:c0:03.3: PME# supported from D0 D3hot D3cold
[    4.187558] pci 0000:c0:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.190310] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.194295] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    4.198409] pci 0000:c0:03.4: PME# supported from D0 D3hot D3cold
[    4.218864] pci 0000:c0:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.222381] pci 0000:c0:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.226382] pci 0000:c0:05.1: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.230303] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.234298] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    4.238333] pci 0000:c0:05.1: PME# supported from D0 D3hot D3cold
[    4.242439] pci 0000:c0:05.2: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.246303] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.250292] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    4.254293] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.258333] pci 0000:c0:05.2: PME# supported from D0 D3hot D3cold
[    4.262431] pci 0000:c0:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.266377] pci 0000:c0:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.270302] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.274292] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    4.278299] pci 0000:c0:07.1: enabling Extended Tags
[    4.282334] pci 0000:c0:07.1: PME# supported from D0 D3hot D3cold
[    4.286439] pci 0000:c0:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.294305] pci 0000:c0:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.298308] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.302294] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    4.306301] pci 0000:c0:08.1: enabling Extended Tags
[    4.310330] pci 0000:c0:08.1: PME# supported from D0 D3hot D3cold
[    4.314534] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.318372] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.326369] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.330369] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.334391] pci 0000:c1:00.0: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.342333] pci 0000:c1:00.0: BAR 0 [mem 0xc7030000-0xc703ffff 64bit pref]
[    4.350290] pci 0000:c1:00.0: BAR 2 [mem 0xc7040000-0xc704ffff 64bit pref]
[    4.354290] pci 0000:c1:00.0: BAR 4 [mem 0xc7050000-0xc705ffff 64bit pref]
[    4.362289] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.370306] pci 0000:c1:00.0: PME# supported from D0 D3hot D3cold
[    4.374343] pci 0000:c1:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:c0:05.1 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
[    4.391711] pci 0000:c1:00.1: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.398335] pci 0000:c1:00.1: BAR 0 [mem 0xc7000000-0xc700ffff 64bit pref]
[    4.406290] pci 0000:c1:00.1: BAR 2 [mem 0xc7010000-0xc701ffff 64bit pref]
[    4.414290] pci 0000:c1:00.1: BAR 4 [mem 0xc7020000-0xc702ffff 64bit pref]
[    4.418289] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.426376] pci 0000:c1:00.1: PME# supported from D0 D3hot D3cold
[    4.442322] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.446369] pci 0000:c2:00.0: [1556:be00] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    4.454314] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.458295] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    4.466297] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.482304] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.486324] pci_bus 0000:c3: extended config space not accessible
[    4.494316] pci 0000:c3:00.0: [102b:0536] type 00 class 0x030000 conventional PCI endpoint
[    4.502334] pci 0000:c3:00.0: BAR 0 [mem 0xc6000000-0xc6ffffff pref]
[    4.506289] pci 0000:c3:00.0: BAR 1 [mem 0xda808000-0xda80bfff]
[    4.514289] pci 0000:c3:00.0: BAR 2 [mem 0xda000000-0xda7fffff]
[    4.518307] pci 0000:c3:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    4.526414] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.534388] pci 0000:c8:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    4.538324] pci 0000:c8:00.0: enabling Extended Tags
[    4.546449] pci 0000:c8:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.550314] pci 0000:c8:00.2: BAR 2 [mem 0xdbb00000-0xdbb7ffff]
[    4.558290] pci 0000:c8:00.2: BAR 5 [mem 0xdbb80000-0xdbb81fff]
[    4.562292] pci 0000:c8:00.2: enabling Extended Tags
[    4.570357] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.574422] pci 0000:c9:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.582323] pci 0000:c9:00.0: enabling Extended Tags
[    4.586496] pci 0000:c9:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.594318] pci 0000:c9:00.2: BAR 2 [mem 0xdba00000-0xdba7ffff]
[    4.598290] pci 0000:c9:00.2: BAR 5 [mem 0xdba80000-0xdba81fff]
[    4.606294] pci 0000:c9:00.2: enabling Extended Tags
[    4.610496] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.622327] iommu: Default domain type: Translated
[    4.626288] iommu: DMA domain TLB invalidation policy: lazy mode
[    4.634592] SCSI subsystem initialized
[    4.638331] ACPI: bus type USB registered
[    4.642313] usbcore: registered new interface driver usbfs
[    4.646298] usbcore: registered new interface driver hub
[    4.654321] usbcore: registered new device driver usb
[    4.658320] pps_core: LinuxPPS API ver. 1 registered
[    4.662287] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux•it>
[    4.674291] PTP clock support registered
[    4.678369] EDAC MC: Ver: 3.0.0
[    4.678501] efivars: Registered efivars operations
[    4.686740] NetLabel: Initializing
[    4.690289] NetLabel:  domain hash size = 128
[    4.694289] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    4.698315] NetLabel:  unlabeled traffic allowed by default
[    4.702334] PCI: Using ACPI for IRQ routing
[    4.711183] pci 0000:c3:00.0: vgaarb: setting as boot VGA device
[    4.714286] pci 0000:c3:00.0: vgaarb: bridge control possible
[    4.714286] pci 0000:c3:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    4.714289] vgaarb: loaded
[    4.718404] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    4.722287] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    4.730706] clocksource: Switched to clocksource tsc-early
[    4.736098] VFS: Disk quotas dquot_6.6.0
[    4.740052] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.747176] AppArmor: AppArmor Filesystem Enabled
[    4.751903] pnp: PnP ACPI init
[    4.755205] system 00:00: [mem 0x80000000-0x8fffffff] has been reserved
[    4.761917] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[    4.770111] pnp: PnP ACPI: found 5 devices
[    4.781225] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    4.790199] NET: Registered PF_INET protocol family
[    4.795197] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.806987] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.815941] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    4.823974] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.833483] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.841859] TCP: Hash tables configured (established 524288 bind 65536)
[    4.848845] UDP hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.857270] UDP-Lite hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.866098] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    4.871769] NET: Registered PF_XDP protocol family
[    4.876565] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.886384] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.896198] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.906038] pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
[    4.911707] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: can't assign; no space
[    4.919452] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: failed to assign
[    4.926670] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: can't assign; no space
[    4.934928] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: failed to assign
[    4.942666] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: can't assign; no space
[    4.950926] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: failed to assign
[    4.958705] pci 0000:00:03.2: PCI bridge to [bus 01]
[    4.963674] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    4.969767] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    4.976555] pci 0000:00:07.1: PCI bridge to [bus 02]
[    4.981521] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    4.988308] pci 0000:00:08.1: PCI bridge to [bus 03]
[    4.993278] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.000067] PCI: No. 2 try to assign unassigned res
[    5.004945] pci 0000:00:03.2: resource 14 [mem 0xf7300000-0xf74fffff] released
[    5.012159] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.017131] pci 0000:00:03.2: bridge window [mem 0x00100000-0x002fffff] to [bus 01] add_size 1200000 add_align 100000
[    5.027739] pci 0000:00:03.2: bridge window [mem 0xe1000000-0xe23fffff]: assigned
[    5.035225] pci 0000:01:00.0: BAR 3 [mem 0xe1000000-0xe10fffff 64bit]: assigned
[    5.042532] pci 0000:01:00.0: ROM [mem 0xe1100000-0xe11fffff pref]: assigned
[    5.049582] pci 0000:01:00.0: VF BAR 2 [mem 0xe1200000-0xe21fffff 64bit]: assigned
[    5.057150] pci 0000:01:00.0: BAR 1 [mem 0xe2200000-0xe220ffff 64bit]: assigned
[    5.064459] pci 0000:01:00.0: VF BAR 0 [mem 0xe2210000-0xe230ffff 64bit]: assigned
[    5.072030] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.076991] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    5.083086] pci 0000:00:03.2:   bridge window [mem 0xe1000000-0xe23fffff]
[    5.089876] pci 0000:00:07.1: PCI bridge to [bus 02]
[    5.094847] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    5.101634] pci 0000:00:08.1: PCI bridge to [bus 03]
[    5.106606] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.113394] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    5.119586] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    5.125785] pci_bus 0000:00: resource 6 [mem 0x000c0000-0x000fffff window]
[    5.132655] pci_bus 0000:00: resource 7 [io  0x0d00-0x3fff window]
[    5.138835] pci_bus 0000:00: resource 8 [mem 0xe1000000-0xfebfffff window]
[    5.145704] pci_bus 0000:00: resource 9 [mem 0x63dc0000000-0x7fcffffffff window]
[    5.153100] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[    5.158671] pci_bus 0000:01: resource 1 [mem 0xe1000000-0xe23fffff]
[    5.164937] pci_bus 0000:02: resource 1 [mem 0xf7200000-0xf72fffff]
[    5.171201] pci_bus 0000:03: resource 1 [mem 0xf7000000-0xf71fffff]
[    5.177543] pci 0000:40:03.1: bridge window [io  0x1000-0x0fff] to [bus 41] add_size 1000
[    5.185716] pci 0000:40:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 41] add_size 200000 add_align 100000
[    5.197181] pci 0000:40:03.2: bridge window [io  0x1000-0x0fff] to [bus 42] add_size 1000
[    5.205356] pci 0000:40:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 42] add_size 200000 add_align 100000
[    5.216822] pci 0000:40:03.3: bridge window [io  0x1000-0x0fff] to [bus 43] add_size 1000
[    5.224993] pci 0000:40:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 43] add_size 200000 add_align 100000
[    5.236462] pci 0000:40:03.4: bridge window [io  0x1000-0x0fff] to [bus 44] add_size 1000
[    5.244639] pci 0000:40:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 44] add_size 200000 add_align 100000
[    5.256111] pci 0000:40:03.1: bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]: assigned
[    5.265065] pci 0000:40:03.2: bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]: assigned
[    5.274016] pci 0000:40:03.3: bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]: assigned
[    5.282971] pci 0000:40:03.4: bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]: assigned
[    5.291920] pci 0000:40:03.1: bridge window [io  0x4000-0x4fff]: assigned
[    5.298706] pci 0000:40:03.2: bridge window [io  0x5000-0x5fff]: assigned
[    5.305492] pci 0000:40:03.3: bridge window [io  0x6000-0x6fff]: assigned
[    5.312276] pci 0000:40:03.4: bridge window [io  size 0x1000]: can't assign; no space
[    5.320103] pci 0000:40:03.4: bridge window [io  size 0x1000]: failed to assign
[    5.327444] pci 0000:40:03.4: bridge window [io  0x4000-0x4fff]: assigned
[    5.334229] pci 0000:40:03.3: bridge window [io  0x5000-0x5fff]: assigned
[    5.341019] pci 0000:40:03.2: bridge window [io  0x6000-0x6fff]: assigned
[    5.347812] pci 0000:40:03.1: bridge window [io  size 0x1000]: can't assign; no space
[    5.355635] pci 0000:40:03.1: bridge window [io  size 0x1000]: failed to assign
[    5.362941] pci 0000:40:03.1: PCI bridge to [bus 41]
[    5.367909] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    5.374693] pci 0000:40:03.1:   bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.382952] pci 0000:40:03.2: PCI bridge to [bus 42]
[    5.387915] pci 0000:40:03.2:   bridge window [io  0x6000-0x6fff]
[    5.394010] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    5.400796] pci 0000:40:03.2:   bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.409054] pci 0000:40:03.3: PCI bridge to [bus 43]
[    5.414019] pci 0000:40:03.3:   bridge window [io  0x5000-0x5fff]
[    5.420112] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    5.426915] pci 0000:40:03.3:   bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.435201] pci 0000:40:03.4: PCI bridge to [bus 44]
[    5.440166] pci 0000:40:03.4:   bridge window [io  0x4000-0x4fff]
[    5.446260] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    5.453051] pci 0000:40:03.4:   bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.461313] pci 0000:40:07.1: PCI bridge to [bus 45]
[    5.466275] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    5.473065] pci 0000:40:08.1: PCI bridge to [bus 46]
[    5.478036] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    5.484826] pci_bus 0000:40: Some PCI device resources are unassigned, try booting with pci=realloc
[    5.493869] pci_bus 0000:40: resource 4 [io  0x4000-0x6fff window]
[    5.500046] pci_bus 0000:40: resource 5 [mem 0x90000000-0xaaffffff window]
[    5.506918] pci_bus 0000:40: resource 6 [mem 0x47e80000000-0x63dbfffffff window]
[    5.514310] pci_bus 0000:41: resource 1 [mem 0xa4c00000-0xa4ffffff]
[    5.520577] pci_bus 0000:41: resource 2 [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.528316] pci_bus 0000:42: resource 0 [io  0x6000-0x6fff]
[    5.533912] pci_bus 0000:42: resource 1 [mem 0xa4800000-0xa4bfffff]
[    5.540179] pci_bus 0000:42: resource 2 [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.547917] pci_bus 0000:43: resource 0 [io  0x5000-0x5fff]
[    5.553491] pci_bus 0000:43: resource 1 [mem 0xa4400000-0xa47fffff]
[    5.559758] pci_bus 0000:43: resource 2 [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.567495] pci_bus 0000:44: resource 0 [io  0x4000-0x4fff]
[    5.573069] pci_bus 0000:44: resource 1 [mem 0xa4000000-0xa43fffff]
[    5.579333] pci_bus 0000:44: resource 2 [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.587071] pci_bus 0000:45: resource 1 [mem 0xa5300000-0xa53fffff]
[    5.593337] pci_bus 0000:46: resource 1 [mem 0xa5000000-0xa52fffff]
[    5.599668] pci 0000:80:01.1: bridge window [io  0x1000-0x0fff] to [bus 81] add_size 1000
[    5.607845] pci 0000:80:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 81] add_size 200000 add_align 100000
[    5.619310] pci 0000:80:01.2: bridge window [io  0x1000-0x0fff] to [bus 82] add_size 1000
[    5.627483] pci 0000:80:01.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 82] add_size 200000 add_align 100000
[    5.638954] pci 0000:80:01.1: bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]: assigned
[    5.647911] pci 0000:80:01.2: bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]: assigned
[    5.656861] pci 0000:80:01.1: bridge window [io  0x7000-0x7fff]: assigned
[    5.663647] pci 0000:80:01.2: bridge window [io  0x8000-0x8fff]: assigned
[    5.670431] pci 0000:80:01.1: PCI bridge to [bus 81]
[    5.675398] pci 0000:80:01.1:   bridge window [io  0x7000-0x7fff]
[    5.681491] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    5.688275] pci 0000:80:01.1:   bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.696537] pci 0000:80:01.2: PCI bridge to [bus 82]
[    5.701500] pci 0000:80:01.2:   bridge window [io  0x8000-0x8fff]
[    5.707594] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    5.714378] pci 0000:80:01.2:   bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.722643] pci 0000:80:07.1: PCI bridge to [bus 83]
[    5.727612] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    5.734436] pci 0000:80:08.1: PCI bridge to [bus 84]
[    5.739407] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    5.746195] pci 0000:80:08.2: PCI bridge to [bus 85]
[    5.751158] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    5.757945] pci_bus 0000:80: resource 4 [io  0x7000-0x9fff window]
[    5.764124] pci_bus 0000:80: resource 5 [mem 0xab000000-0xc5ffffff window]
[    5.770995] pci_bus 0000:80: resource 6 [mem 0x2bf40000000-0x47e7fffffff window]
[    5.778386] pci_bus 0000:81: resource 0 [io  0x7000-0x7fff]
[    5.783959] pci_bus 0000:81: resource 1 [mem 0xbf400000-0xbf7fffff]
[    5.790225] pci_bus 0000:81: resource 2 [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.797962] pci_bus 0000:82: resource 0 [io  0x8000-0x8fff]
[    5.803534] pci_bus 0000:82: resource 1 [mem 0xbf000000-0xbf3fffff]
[    5.809801] pci_bus 0000:82: resource 2 [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.817539] pci_bus 0000:83: resource 1 [mem 0xbfa00000-0xbfafffff]
[    5.823804] pci_bus 0000:84: resource 1 [mem 0xbf900000-0xbf9fffff]
[    5.830072] pci_bus 0000:85: resource 1 [mem 0xbf800000-0xbf8fffff]
[    5.836413] pci 0000:c0:03.1: bridge window [io  0x1000-0x0fff] to [bus c4] add_size 1000
[    5.844593] pci 0000:c0:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c4] add_size 200000 add_align 100000
[    5.856070] pci 0000:c0:03.2: bridge window [io  0x1000-0x0fff] to [bus c5] add_size 1000
[    5.864242] pci 0000:c0:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c5] add_size 200000 add_align 100000
[    5.875707] pci 0000:c0:03.3: bridge window [io  0x1000-0x0fff] to [bus c6] add_size 1000
[    5.883878] pci 0000:c0:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c6] add_size 200000 add_align 100000
[    5.895344] pci 0000:c0:03.4: bridge window [io  0x1000-0x0fff] to [bus c7] add_size 1000
[    5.903517] pci 0000:c0:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c7] add_size 200000 add_align 100000
[    5.914983] pci 0000:c0:05.1: bridge window [mem 0x00100000-0x000fffff] to [bus c1] add_size 100000 add_align 100000
[    5.925501] pci 0000:c0:03.1: bridge window [mem 0x10000000000-0x100001fffff 64bit pref]: assigned
[    5.934454] pci 0000:c0:03.2: bridge window [mem 0x10000200000-0x100003fffff 64bit pref]: assigned
[    5.943405] pci 0000:c0:03.3: bridge window [mem 0x10000400000-0x100005fffff 64bit pref]: assigned
[    5.952359] pci 0000:c0:03.4: bridge window [mem 0x10000600000-0x100007fffff 64bit pref]: assigned
[    5.961309] pci 0000:c0:05.1: bridge window [mem 0xc7100000-0xc71fffff]: assigned
[    5.968790] pci 0000:c0:03.1: bridge window [io  0xa000-0xafff]: assigned
[    5.975574] pci 0000:c0:03.2: bridge window [io  0xb000-0xbfff]: assigned
[    5.982360] pci 0000:c0:03.3: bridge window [io  0xc000-0xcfff]: assigned
[    5.989148] pci 0000:c0:03.4: bridge window [io  0xd000-0xdfff]: assigned
[    5.995933] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    6.000897] pci 0000:c0:03.1:   bridge window [io  0xa000-0xafff]
[    6.006992] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    6.013776] pci 0000:c0:03.1:   bridge window [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.022037] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    6.026999] pci 0000:c0:03.2:   bridge window [io  0xb000-0xbfff]
[    6.033094] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    6.039880] pci 0000:c0:03.2:   bridge window [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.048140] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    6.053111] pci 0000:c0:03.3:   bridge window [io  0xc000-0xcfff]
[    6.059206] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    6.065990] pci 0000:c0:03.3:   bridge window [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.074250] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    6.079212] pci 0000:c0:03.4:   bridge window [io  0xd000-0xdfff]
[    6.085307] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    6.092091] pci 0000:c0:03.4:   bridge window [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.100355] pci 0000:c1:00.0: ROM [mem 0xc7100000-0xc713ffff pref]: assigned
[    6.107404] pci 0000:c1:00.1: ROM [mem 0xc7140000-0xc717ffff pref]: assigned
[    6.114452] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    6.119418] pci 0000:c0:05.1:   bridge window [mem 0xc7100000-0xc71fffff]
[    6.126203] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.133942] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    6.138907] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    6.145727] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.153468] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    6.158701] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    6.165486] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.173231] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    6.178200] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    6.184987] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    6.189949] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    6.196738] pci_bus 0000:c0: resource 4 [io  0xa000-0xffff window]
[    6.202923] pci_bus 0000:c0: resource 5 [mem 0xc6000000-0xe0ffffff window]
[    6.209796] pci_bus 0000:c0: resource 6 [mem 0x10000000000-0x2bf3fffffff window]
[    6.217186] pci_bus 0000:c0: resource 7 [io  0x03b0-0x03df window]
[    6.223365] pci_bus 0000:c0: resource 8 [mem 0x000a0000-0x000bffff window]
[    6.230238] pci_bus 0000:c4: resource 0 [io  0xa000-0xafff]
[    6.235811] pci_bus 0000:c4: resource 1 [mem 0xdb600000-0xdb9fffff]
[    6.242074] pci_bus 0000:c4: resource 2 [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.249874] pci_bus 0000:c5: resource 0 [io  0xb000-0xbfff]
[    6.255447] pci_bus 0000:c5: resource 1 [mem 0xdb200000-0xdb5fffff]
[    6.261713] pci_bus 0000:c5: resource 2 [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.269452] pci_bus 0000:c6: resource 0 [io  0xc000-0xcfff]
[    6.275025] pci_bus 0000:c6: resource 1 [mem 0xdae00000-0xdb1fffff]
[    6.281289] pci_bus 0000:c6: resource 2 [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.289028] pci_bus 0000:c7: resource 0 [io  0xd000-0xdfff]
[    6.294600] pci_bus 0000:c7: resource 1 [mem 0xdaa00000-0xdadfffff]
[    6.300866] pci_bus 0000:c7: resource 2 [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.308606] pci_bus 0000:c1: resource 1 [mem 0xc7100000-0xc71fffff]
[    6.314871] pci_bus 0000:c1: resource 2 [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.322090] pci_bus 0000:c2: resource 1 [mem 0xda000000-0xda8fffff]
[    6.328356] pci_bus 0000:c2: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.335573] pci_bus 0000:c3: resource 1 [mem 0xda000000-0xda8fffff]
[    6.341841] pci_bus 0000:c3: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.349060] pci_bus 0000:c8: resource 1 [mem 0xdbb00000-0xdbbfffff]
[    6.355325] pci_bus 0000:c9: resource 1 [mem 0xdba00000-0xdbafffff]
[    6.362272] PCI: CLS 64 bytes, default 64
[    6.366370] Trying to unpack rootfs image as initramfs...
[    6.425901] AMD-Vi: IOMMU SNP support enabled.
[    6.430518] pci 0000:c0:00.2: AMD-Vi: IOMMU performance counters supported
[    6.437546] pci 0000:c0:01.0: Adding to iommu group 0
[    6.442671] pci 0000:c0:02.0: Adding to iommu group 1
[    6.447894] pci 0000:c0:03.0: Adding to iommu group 2
[    6.453010] pci 0000:c0:03.1: Adding to iommu group 2
[    6.458121] pci 0000:c0:03.2: Adding to iommu group 2
[    6.463263] pci 0000:c0:03.3: Adding to iommu group 2
[    6.468370] pci 0000:c0:03.4: Adding to iommu group 2
[    6.473504] pci 0000:c0:04.0: Adding to iommu group 3
[    6.478679] pci 0000:c0:05.0: Adding to iommu group 4
[    6.483791] pci 0000:c0:05.1: Adding to iommu group 4
[    6.488904] pci 0000:c0:05.2: Adding to iommu group 4
[    6.494028] pci 0000:c0:07.0: Adding to iommu group 5
[    6.499122] pci 0000:c0:07.1: Adding to iommu group 6
[    6.504245] pci 0000:c0:08.0: Adding to iommu group 7
[    6.509330] pci 0000:c0:08.1: Adding to iommu group 8
[    6.514389] pci 0000:c1:00.0: Adding to iommu group 4
[    6.519452] pci 0000:c1:00.1: Adding to iommu group 4
[    6.524517] pci 0000:c2:00.0: Adding to iommu group 4
[    6.529585] pci 0000:c3:00.0: Adding to iommu group 4
[    6.534683] pci 0000:c8:00.0: Adding to iommu group 9
[    6.539774] pci 0000:c8:00.2: Adding to iommu group 10
[    6.544947] pci 0000:c9:00.0: Adding to iommu group 11
[    6.550130] pci 0000:c9:00.2: Adding to iommu group 12
[    6.561966] pci 0000:80:00.2: AMD-Vi: IOMMU performance counters supported
[    6.569040] pci 0000:80:01.0: Adding to iommu group 13
[    6.574233] pci 0000:80:01.1: Adding to iommu group 13
[    6.579425] pci 0000:80:01.2: Adding to iommu group 13
[    6.584627] pci 0000:80:02.0: Adding to iommu group 14
[    6.589834] pci 0000:80:03.0: Adding to iommu group 15
[    6.595050] pci 0000:80:04.0: Adding to iommu group 16
[    6.600252] pci 0000:80:05.0: Adding to iommu group 17
[    6.605466] pci 0000:80:07.0: Adding to iommu group 18
[    6.610647] pci 0000:80:07.1: Adding to iommu group 19
[    6.615857] pci 0000:80:08.0: Adding to iommu group 20
[    6.621047] pci 0000:80:08.1: Adding to iommu group 21
[    6.626228] pci 0000:80:08.2: Adding to iommu group 22
[    6.631413] pci 0000:83:00.0: Adding to iommu group 23
[    6.636596] pci 0000:83:00.2: Adding to iommu group 24
[    6.641785] pci 0000:84:00.0: Adding to iommu group 25
[    6.646967] pci 0000:84:00.2: Adding to iommu group 26
[    6.652152] pci 0000:85:00.0: Adding to iommu group 27
[    6.664549] pci 0000:40:00.2: AMD-Vi: IOMMU performance counters supported
[    6.671551] pci 0000:40:01.0: Adding to iommu group 28
[    6.676745] pci 0000:40:02.0: Adding to iommu group 29
[    6.682032] pci 0000:40:03.0: Adding to iommu group 30
[    6.687206] pci 0000:40:03.1: Adding to iommu group 30
[    6.692378] pci 0000:40:03.2: Adding to iommu group 30
[    6.697556] pci 0000:40:03.3: Adding to iommu group 30
[    6.702734] pci 0000:40:03.4: Adding to iommu group 30
[    6.707925] pci 0000:40:04.0: Adding to iommu group 31
[    6.713116] pci 0000:40:05.0: Adding to iommu group 32
[    6.718314] pci 0000:40:07.0: Adding to iommu group 33
[    6.723488] pci 0000:40:07.1: Adding to iommu group 34
[    6.728681] pci 0000:40:08.0: Adding to iommu group 35
[    6.733849] pci 0000:40:08.1: Adding to iommu group 36
[    6.739029] pci 0000:45:00.0: Adding to iommu group 37
[    6.744198] pci 0000:45:00.2: Adding to iommu group 38
[    6.749374] pci 0000:46:00.0: Adding to iommu group 39
[    6.754546] pci 0000:46:00.1: Adding to iommu group 40
[    6.759719] pci 0000:46:00.2: Adding to iommu group 41
[    6.764894] pci 0000:46:00.3: Adding to iommu group 42
[    6.777335] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    6.784354] pci 0000:00:00.0: Adding to iommu group 43
[    6.789553] pci 0000:00:01.0: Adding to iommu group 44
[    6.794743] pci 0000:00:02.0: Adding to iommu group 45
[    6.799938] pci 0000:00:03.0: Adding to iommu group 46
[    6.803178] Freeing initrd memory: 38564K
[    6.805118] pci 0000:00:03.2: Adding to iommu group 47
[    6.814285] pci 0000:00:04.0: Adding to iommu group 48
[    6.819477] pci 0000:00:05.0: Adding to iommu group 49
[    6.824670] pci 0000:00:07.0: Adding to iommu group 50
[    6.829847] pci 0000:00:07.1: Adding to iommu group 51
[    6.835044] pci 0000:00:08.0: Adding to iommu group 52
[    6.840222] pci 0000:00:08.1: Adding to iommu group 53
[    6.845439] pci 0000:00:14.0: Adding to iommu group 54
[    6.850609] pci 0000:00:14.3: Adding to iommu group 54
[    6.855961] pci 0000:00:18.0: Adding to iommu group 55
[    6.861130] pci 0000:00:18.1: Adding to iommu group 55
[    6.866302] pci 0000:00:18.2: Adding to iommu group 55
[    6.871503] pci 0000:00:18.3: Adding to iommu group 55
[    6.876684] pci 0000:00:18.4: Adding to iommu group 55
[    6.881861] pci 0000:00:18.5: Adding to iommu group 55
[    6.887036] pci 0000:00:18.6: Adding to iommu group 55
[    6.892205] pci 0000:00:18.7: Adding to iommu group 55
[    6.897383] pci 0000:01:00.0: Adding to iommu group 56
[    6.902557] pci 0000:02:00.0: Adding to iommu group 57
[    6.907728] pci 0000:02:00.2: Adding to iommu group 58
[    6.912908] pci 0000:03:00.0: Adding to iommu group 59
[    6.918085] pci 0000:03:00.2: Adding to iommu group 60
[    6.923262] pci 0000:03:00.3: Adding to iommu group 61
[    6.937414] AMD-Vi: Extended features (0x841f77e022094ace, 0x0): PPR X2APIC NX IA GA PC SNP
[    6.945777] AMD-Vi: Interrupt remapping enabled
[    6.950309] AMD-Vi: X2APIC enabled
[    6.954664] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    6.961109] software IO TLB: mapped [mem 0x000000005bf37000-0x0000000063f37000] (128MB)
[    6.969286] LVT offset 0 assigned for vector 0x400
[    6.975666] perf: AMD IBS detected (0x000003ff)
[    6.981608] amd_uncore: 4 amd_df counters detected
[    6.986447] amd_uncore: 6 amd_l3 counters detected
[    6.992837] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    7.000000] perf/amd_iommu: Detected AMD IOMMU #1 (2 banks, 4 counters/bank).
[    7.007158] perf/amd_iommu: Detected AMD IOMMU #2 (2 banks, 4 counters/bank).
[    7.014310] perf/amd_iommu: Detected AMD IOMMU #3 (2 banks, 4 counters/bank).
[    7.024730] Initialise system trusted keyrings
[    7.029183] Key type blacklist registered
[    7.033342] workingset: timestamp_bits=36 max_order=26 bucket_order=0
[    7.040297] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    7.046285] fuse: init (API version 7.44)
[    7.050548] integrity: Platform Keyring initialized
[    7.067243] Key type asymmetric registered
[    7.071346] Asymmetric key parser 'x509' registered
[    7.076258] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    7.083741] io scheduler mq-deadline registered
[    7.090815] ledtrig-cpu: registered to indicate activity on CPUs
[    7.097128] pcieport 0000:00:03.2: PME: Signaling with IRQ 38
[    7.103273] pcieport 0000:00:07.1: PME: Signaling with IRQ 40
[    7.109249] pcieport 0000:00:08.1: PME: Signaling with IRQ 41
[    7.115234] pcieport 0000:40:03.1: PME: Signaling with IRQ 42
[    7.121027] pcieport 0000:40:03.1: pciehp: Slot #167 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.135038] pcieport 0000:40:03.2: PME: Signaling with IRQ 43
[    7.140843] pcieport 0000:40:03.2: pciehp: Slot #166 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.154835] pcieport 0000:40:03.3: PME: Signaling with IRQ 44
[    7.160636] pcieport 0000:40:03.3: pciehp: Slot #169 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.174629] pcieport 0000:40:03.4: PME: Signaling with IRQ 45
[    7.180427] pcieport 0000:40:03.4: pciehp: Slot #168 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.194542] pcieport 0000:40:07.1: PME: Signaling with IRQ 47
[    7.200513] pcieport 0000:40:08.1: PME: Signaling with IRQ 48
[    7.206538] pcieport 0000:80:01.1: PME: Signaling with IRQ 49
[    7.212356] pcieport 0000:80:01.1: pciehp: Slot #160 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.226356] pcieport 0000:80:01.2: PME: Signaling with IRQ 50
[    7.232151] pcieport 0000:80:01.2: pciehp: Slot #161 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.246266] pcieport 0000:80:07.1: PME: Signaling with IRQ 52
[    7.252290] pcieport 0000:80:08.1: PME: Signaling with IRQ 54
[    7.258317] pcieport 0000:80:08.2: PME: Signaling with IRQ 55
[    7.264267] pcieport 0000:c0:03.1: PME: Signaling with IRQ 56
[    7.270068] pcieport 0000:c0:03.1: pciehp: Slot #163 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.284041] pcieport 0000:c0:03.2: PME: Signaling with IRQ 57
[    7.289858] pcieport 0000:c0:03.2: pciehp: Slot #162 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.303840] pcieport 0000:c0:03.3: PME: Signaling with IRQ 58
[    7.309637] pcieport 0000:c0:03.3: pciehp: Slot #165 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.323614] pcieport 0000:c0:03.4: PME: Signaling with IRQ 59
[    7.329416] pcieport 0000:c0:03.4: pciehp: Slot #164 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.343383] pcieport 0000:c0:05.1: PME: Signaling with IRQ 60
[    7.349309] pcieport 0000:c0:05.2: PME: Signaling with IRQ 61
[    7.355351] pcieport 0000:c0:07.1: PME: Signaling with IRQ 63
[    7.361373] pcieport 0000:c0:08.1: PME: Signaling with IRQ 65
[    7.367798] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    7.375266] ACPI: button: Power Button [PWRF]
[    7.819929] Estimated ratio of average max frequency by base frequency (times 1024): 1464
[    7.828463] ERST: Error Record Serialization Table (ERST) support is initialized.
[    7.835965] pstore: Using crash dump compression: deflate
[    7.841367] pstore: Registered erst as persistent store backend
[    7.847444] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    7.854011] 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    7.862156] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    7.873249] Linux agpgart interface v0.103
[    7.903895] loop: module loaded
[    7.918271] ahci 0000:85:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[    7.926279] ahci 0000:85:00.0: 8/8 ports implemented (port mask 0xff)
[    7.932718] ahci 0000:85:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part sxs 
[    7.943020] scsi host0: ahci
[    7.946140] scsi host1: ahci
[    7.949252] scsi host2: ahci
[    7.952368] scsi host3: ahci
[    7.955464] scsi host4: ahci
[    7.958572] scsi host5: ahci
[    7.961679] scsi host6: ahci
[    7.964773] scsi host7: ahci
[    7.967721] ata1: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800100 irq 67 lpm-pol 0 ext
[    7.976326] ata2: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800180 irq 68 lpm-pol 0 ext
[    7.984932] ata3: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800200 irq 69 lpm-pol 0 ext
[    7.993534] ata4: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800280 irq 70 lpm-pol 0 ext
[    8.002142] ata5: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800300 irq 71 lpm-pol 0 ext
[    8.010745] ata6: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800380 irq 72 lpm-pol 0 ext
[    8.019353] ata7: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800400 irq 73 lpm-pol 0 ext
[    8.027962] ata8: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800480 irq 74 lpm-pol 0 ext
[    8.036586] tsc: Refined TSC clocksource calibration: 1996.249 MHz
[    8.036893] tun: Universal TUN/TAP device driver, 1.6
[    8.042839] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398cadd9d93, max_idle_ns: 881590552906 ns
[    8.047924] PPP generic driver version 2.4.2
[    8.062140] clocksource: Switched to clocksource tsc
[    8.062328] VFIO - User Level meta-driver version: 0.3
[    8.072730] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.077971] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 1
[    8.085467] xhci_hcd 0000:03:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.095017] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.100244] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 2
[    8.107638] xhci_hcd 0000:03:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.114728] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.122995] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.130220] usb usb1: Product: xHCI Host Controller
[    8.135100] usb usb1: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.144052] usb usb1: SerialNumber: 0000:03:00.3
[    8.148849] hub 1-0:1.0: USB hub found
[    8.152615] hub 1-0:1.0: 2 ports detected
[    8.157473] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.165593] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.173858] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.181088] usb usb2: Product: xHCI Host Controller
[    8.185975] usb usb2: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.194936] usb usb2: SerialNumber: 0000:03:00.3
[    8.199691] hub 2-0:1.0: USB hub found
[    8.203453] hub 2-0:1.0: 2 ports detected
[    8.208388] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.213623] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 3
[    8.221115] xhci_hcd 0000:46:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.230621] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.235850] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 4
[    8.243250] xhci_hcd 0000:46:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.250333] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.258601] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.265825] usb usb3: Product: xHCI Host Controller
[    8.270704] usb usb3: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.279660] usb usb3: SerialNumber: 0000:46:00.3
[    8.284509] hub 3-0:1.0: USB hub found
[    8.288266] hub 3-0:1.0: 2 ports detected
[    8.293088] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.301205] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.309477] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.316706] usb usb4: Product: xHCI Host Controller
[    8.321586] usb usb4: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.330537] usb usb4: SerialNumber: 0000:46:00.3
[    8.335294] hub 4-0:1.0: USB hub found
[    8.339058] hub 4-0:1.0: 2 ports detected
[    8.344116] usbcore: registered new interface driver uas
[    8.349459] usbcore: registered new interface driver usb-storage
[    8.349608] ata2: SATA link down (SStatus 0 SControl 300)
[    8.355507] i8042: PNP: No PS/2 controller found.
[    8.360902] ata3: SATA link down (SStatus 0 SControl 300)
[    8.365699] mousedev: PS/2 mouse device common for all mice
[    8.371006] ata1: SATA link down (SStatus 0 SControl 300)
[    8.376666] rtc_cmos 00:02: RTC can wake from S4
[    8.382002] ata4: SATA link down (SStatus 0 SControl 300)
[    8.386968] rtc_cmos 00:02: registered as rtc0
[    8.392131] ata6: SATA link down (SStatus 0 SControl 300)
[    8.396633] rtc_cmos 00:02: setting system clock to 2025-06-17T14:02:05 UTC (1750168925)
[    8.401981] ata7: SATA link down (SStatus 0 SControl 300)
[    8.404325] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[    8.410086] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram
[    8.415465] ata8: SATA link down (SStatus 0 SControl 300)
[    8.421981] i2c_dev: i2c /dev entries driver
[    8.428691] ata5: SATA link down (SStatus 0 SControl 300)
[    8.434083] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    8.455920] device-mapper: uevent: version 1.0.3
[    8.460653] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists•linux.dev
[    8.469527] amd_pstate: driver load is disabled, boot with specific mode to enable this
[    8.477589] efifb: probing for efifb
[    8.481181] efifb: No BGRT, not showing boot graphics
[    8.486241] efifb: framebuffer at 0xc6000000, using 3072k, total 3072k
[    8.492782] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    8.498802] efifb: scrolling: redraw
[    8.502383] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    8.508032] fbcon: Deferring console take-over
[    8.512510] fb0: EFI VGA frame buffer device
[    8.516889] drop_monitor: Initializing network drop monitor service
[    8.523317] NET: Registered PF_INET6 protocol family
[    8.535151] Segment Routing with IPv6
[    8.538827] In-situ OAM (IOAM) with IPv6
[    8.542775] NET: Registered PF_PACKET protocol family
[    8.547897] Key type dns_resolver registered
[    8.550703] usb 1-1: New USB device found, idVendor=0424, idProduct=2744, bcdDevice= 1.21
[    8.560349] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    8.567489] usb 1-1: Product: USB2734
[    8.571151] usb 1-1: Manufacturer: Microchip Tech
[    8.575862] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[    8.585257] x86/amd: Previous system reset reason [0x00080800]: software wrote 0x6 to reset control register 0xCF9
[    8.595611] microcode: Current revision: 0x0a0011d5
[    8.600487] microcode: Updated early from: 0x0a0011d5
[    8.608810] resctrl: L3 allocation detected
[    8.612994] resctrl: MB allocation detected
[    8.617181] resctrl: L3 monitoring detected
[    8.621547] IPI shorthand broadcast: enabled
[    8.627214] hub 1-1:1.0: USB hub found
[    8.629605] sched_clock: Marking stable (8564001486, 64304159)->(9539840852, -911535207)
[    8.631206] hub 1-1:1.0: 4 ports detected
[    8.643705] registered taskstats version 1
[    8.650289] Loading compiled-in X.509 certificates
[    8.655590] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.670013] Demotion targets for Node 0: null
[    8.674379] Demotion targets for Node 1: null
[    8.679231] Key type .fscrypt registered
[    8.683159] Key type fscrypt-provisioning registered
[    8.690830] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
[    8.704129] Key type encrypted registered
[    8.708144] AppArmor: AppArmor sha256 policy hashing enabled
[    8.713878] integrity: Loading X.509 certificate: UEFI:db
[    8.716707] usb 2-1: New USB device found, idVendor=0424, idProduct=5744, bcdDevice= 1.21
[    8.719304] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    8.727457] usb 2-1: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[    8.738223] integrity: Loading X.509 certificate: UEFI:db
[    8.745367] usb 2-1: Product: USB5734
[    8.750769] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    8.754421] usb 2-1: Manufacturer: Microchip Tech
[    8.765457] integrity: Loading X.509 certificate: UEFI:db
[    8.771107] usb 3-1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    8.775667] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    8.783731] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.792599] integrity: Loading X.509 certificate: UEFI:db
[    8.792733] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    8.803067] hub 2-1:1.0: USB hub found
[    8.805416] ima: No TPM chip found, activating TPM-bypass!
[    8.816461] hub 2-1:1.0: 4 ports detected
[    8.820180] Loading compiled-in module X.509 certificates
[    8.835493] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.845404] ima: Allocated hash algorithm: sha1
[    8.849942] ima: No architecture policies found
[    8.854491] evm: Initialising EVM extended attributes:
[    8.858797] hub 3-1:1.0: USB hub found
[    8.859631] evm: security.selinux
[    8.863607] hub 3-1:1.0: 4 ports detected
[    8.866705] evm: security.SMACK64
[    8.874036] evm: security.SMACK64EXEC
[    8.877700] evm: security.SMACK64TRANSMUTE
[    8.881801] evm: security.SMACK64MMAP
[    8.885466] evm: security.apparmor
[    8.888872] evm: security.ima
[    8.891840] evm: security.capability
[    8.895417] evm: HMAC attrs: 0x1
[    8.899026] PM:   Magic number: 13:722:30
[    8.903157] acpi ACPI0007:b1: hash matches
[    8.907727] RAS: Correctable Errors collector initialized.
[    8.913365] clk: Disabling unused clocks
[    8.917290] PM: genpd: Disabling unused power domains
[    8.924059] Freeing unused decrypted memory: 2028K
[    8.929639] Freeing unused kernel image (initmem) memory: 4760K
[    8.935575] Write protecting the kernel read-only data: 26624k
[    8.941857] Freeing unused kernel image (text/rodata gap) memory: 28K
[    8.948502] Freeing unused kernel image (rodata/data gap) memory: 248K
[    9.042015] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    9.048474] Run /init as init process
[    9.058968] systemd[1]: Inserted module 'autofs4'
[    9.285402] systemd[1]: systemd 252-46.el9_5.3 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)
[    9.317854] systemd[1]: Detected architecture x86-64.
[    9.322907] systemd[1]: Running in initrd.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow) dracut-057-80.git20250411.el9_5 (Initramfs)^[[0m!

[    9.340410] systemd[1]: Hostname set to <sharavati.amd.com>.
[    9.452060] systemd[1]: Queued start job for default target Initrd Default Target.
[    9.459756] systemd[1]: Reached target Initrd /usr File System.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd /usr File System^[[0m.
[    9.476509] systemd[1]: Reached target Local File Systems.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
[    9.492387] systemd[1]: Reached target Slice Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSlice Units^[[0m.
[    9.508374] systemd[1]: Reached target Swaps.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwaps^[[0m.
[    9.524365] systemd[1]: Reached target Timer Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[    9.540540] systemd[1]: Listening on D-Bus System Message Bus Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[    9.560525] systemd[1]: Listening on Journal Socket (/dev/log).
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket (/dev/log)^[[0m.
[    9.576522] systemd[1]: Listening on Journal Socket.
[    9.581510] usb 3-1.1: new high-speed USB device number 3 using xhci_hcd
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket^[[0m.
[    9.600540] systemd[1]: Listening on udev Control Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[    9.616474] systemd[1]: Listening on udev Kernel Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
[    9.632373] systemd[1]: Reached target Socket Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
[    9.674209] systemd[1]: Starting Create List of Static Device Nodes...
[    9.677231] usb 3-1.1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    9.689084] usb 3-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
[    9.710919] systemd[1]: Starting Journal Service...
         Starting ^[[0;1;39mJournal Service^[[0m...
[    9.722796] hub 3-1.1:1.0: USB hub found
[    9.726983] hub 3-1.1:1.0: 4 ports detected
[    9.727783] systemd[1]: Starting Load Kernel Modules...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
[    9.749740] systemd[1]: Starting Create System Users...
         Starting ^[[0;1;39mCreate System Users^[[0m...
[    9.765686] systemd[1]: Starting Setup Virtual Console...
         Starting ^[[0;1;39mSetup Virtual Console^[[0m...
[    9.781924] systemd[1]: Finished Create List of Static Device Nodes.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[    9.800865] systemd[1]: Finished Load Kernel Modules.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kerne[    9.808668] usb 3-1.4: new high-speed USB device number 4 using xhci_hcd
l Modules^[[0m.
[    9.824572] systemd[1]: Started Journal Service.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSetup Virtual Console^[[0m.
         Starting ^[[0;1;39mdracut cmdline hook^[[0m...
         Starting ^[[0;1;39mApply Kernel Variables^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mApply Kernel Variables^[[0m.
[    9.909234] usb 3-1.4: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    9.917591] usb 3-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate System Users^[[0m.
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut cmdline hook^[[0m.
[    9.978826] hub 3-1.4:1.0: USB hub found
[    9.982985] hub 3-1.4:1.0: 4 ports detected
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Starting ^[[0;1;39mdracut pre-udev hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-udev hook^[[0m.
         Starting ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[   10.333715] wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQBC data block query control method not found
[^[[0;32m  OK  ^[[0m] Finished ^[[0[   10.345256] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
;1;39mColdplug A[   10.345731] ccp 0000:46:00.1: no command queues available
ll udev Devices^[[   10.351828] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[0m.
[   10.358650] ccp 0000:46:00.1: sev enabled
[   10.367210] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[   10.371565] ccp 0000:46:00.1: psp enabled
[   10.376556] tg3 0000:c1:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:90
[   10.376562] tg3 0000:c1:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.376565] tg3 0000:c1:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.376568] tg3 0000:c1:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[   10.405733] tg3 0000:c1:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:91
[   10.428084] tg3 0000:c1:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.428088] tg3 0000:c1:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.428091] tg3 0000:c1:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[^[[0;32m  OK  ^[[[   10.453225] ACPI: bus type drm_connector registered
0m] Reached targ[   10.453341] mpt3sas version 52.100.00.00 loaded
et ^[[0;1;39mSyst[   10.465309] mpt3sas_cm0: 63 BIT PCI BUS DMA ADDRESSING SUPPORTED, total mem (262592956 kB)
em Initializatio[   10.474358] mgag200 0000:c3:00.0: vgaarb: deactivate vga console
n^[[0m.
[   10.487866] [drm] Initialized mgag200 1.0.0 for 0000:c3:00.0 on minor 0
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork^[[0m.
[   10.499866] fbcon: mgag200drmfb (fb0) is primary device
[   10.499869] fbcon: Deferring console take-over
[   10.509552] mgag200 0000:c3:00.0: [drm] fb0: mgag200drmfb frame buffer device
[   10.510889] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   10.524700] mpt3sas_cm0: MSI-X vectors supported: 96
[   10.529670] 	 no of cores: 128, max_msix_vectors: -1
[   10.534632] mpt3sas_cm0:  0 96 96
[   10.542006] mpt3sas_cm0: High IOPs queues : disabled
[   10.546973] mpt3sas0-msix0: PCI-MSI-X enabled: IRQ 108
[   10.552112] mpt3sas0-msix1: PCI-MSI-X enabled: IRQ 109
[   10.557252] mpt3sas0-msix2: PCI-MSI-X enabled: IRQ 110
[   10.562392] mpt3sas0-msix3: PCI-MSI-X enabled: IRQ 111
[   10.567531] mpt3sas0-msix4: PCI-MSI-X enabled: IRQ 112
[   10.572670] mpt3sas0-msix5: PCI-MSI-X enabled: IRQ 113
[   10.577807] mpt3sas0-msix6: PCI-MSI-X enabled: IRQ 114
[   10.582947] mpt3sas0-msix7: PCI-MSI-X enabled: IRQ 115
[   10.588087] mpt3sas0-msix8: PCI-MSI-X enabled: IRQ 116
[   10.593227] mpt3sas0-msix9: PCI-MSI-X enabled: IRQ 117
[   10.598366] mpt3sas0-msix10: PCI-MSI-X enabled: IRQ 118
[   10.603591] mpt3sas0-msix11: PCI-MSI-X enabled: IRQ 119
[   10.608819] mpt3sas0-msix12: PCI-MSI-X enabled: IRQ 120
[   10.614045] mpt3sas0-msix13: PCI-MSI-X enabled: IRQ 121
[   10.619270] mpt3sas0-msix14: PCI-MSI-X enabled: IRQ 122
[   10.624497] mpt3sas0-msix15: PCI-MSI-X enabled: IRQ 123
[   10.629722] mpt3sas0-msix16: PCI-MSI-X enabled: IRQ 124
[   10.634951] mpt3sas0-msix17: PCI-MSI-X enabled: IRQ 125
[   10.640172] mpt3sas0-msix18: PCI-MSI-X enabled: IRQ 126
[   10.645397] mpt3sas0-msix19: PCI-MSI-X enabled: IRQ 127
[   10.650624] mpt3sas0-msix20: PCI-MSI-X enabled: IRQ 128
[   10.655851] mpt3sas0-msix21: PCI-MSI-X enabled: IRQ 129
[   10.661076] mpt3sas0-msix22: PCI-MSI-X enabled: IRQ 130
[   10.666304] mpt3sas0-msix23: PCI-MSI-X enabled: IRQ 131
[   10.671528] mpt3sas0-msix24: PCI-MSI-X enabled: IRQ 132
[   10.676753] mpt3sas0-msix25: PCI-MSI-X enabled: IRQ 133
[   10.681981] mpt3sas0-msix26: PCI-MSI-X enabled: IRQ 134
[   10.687206] mpt3sas0-msix27: PCI-MSI-X enabled: IRQ 135
[   10.692432] mpt3sas0-msix28: PCI-MSI-X enabled: IRQ 136
[   10.697658] mpt3sas0-msix29: PCI-MSI-X enabled: IRQ 137
[   10.702883] mpt3sas0-msix30: PCI-MSI-X enabled: IRQ 138
[   10.708108] mpt3sas0-msix31: PCI-MSI-X enabled: IRQ 139
[   10.713335] mpt3sas0-msix32: PCI-MSI-X enabled: IRQ 140
[   10.718560] mpt3sas0-msix33: PCI-MSI-X enabled: IRQ 141
[   10.723788] mpt3sas0-msix34: PCI-MSI-X enabled: IRQ 142
[   10.729014] mpt3sas0-msix35: PCI-MSI-X enabled: IRQ 143
[   10.734240] mpt3sas0-msix36: PCI-MSI-X enabled: IRQ 144
[   10.739465] mpt3sas0-msix37: PCI-MSI-X enabled: IRQ 145
[   10.744708] mpt3sas0-msix38: PCI-MSI-X enabled: IRQ 146
[   10.744710] mpt3sas0-msix39: PCI-MSI-X enabled: IRQ 147
[   10.755158] mpt3sas0-msix40: PCI-MSI-X enabled: IRQ 148
[   10.760386] mpt3sas0-msix41: PCI-MSI-X enabled: IRQ 149
         Startin[   10.765612] mpt3sas0-msix42: PCI-MSI-X enabled: IRQ 150
g ^[[0;1;39mdracu[   10.772226] mpt3sas0-msix43: PCI-MSI-X enabled: IRQ 151
t initqueue hook[   10.778838] mpt3sas0-msix44: PCI-MSI-X enabled: IRQ 152
^[[0m...
[   10.785448] mpt3sas0-msix45: PCI-MSI-X enabled: IRQ 153
[   10.791447] mpt3sas0-msix46: PCI-MSI-X enabled: IRQ 154
[   10.796674] mpt3sas0-msix47: PCI-MSI-X enabled: IRQ 155
[   10.796675] mpt3sas0-msix48: PCI-MSI-X enabled: IRQ 156
[   10.796677] mpt3sas0-msix49: PCI-MSI-X enabled: IRQ 157
[   10.796678] mpt3sas0-msix50: PCI-MSI-X enabled: IRQ 158
[   10.796680] mpt3sas0-msix51: PCI-MSI-X enabled: IRQ 159
[   10.796681] mpt3sas0-msix52: PCI-MSI-X enabled: IRQ 160
[   10.828034] mpt3sas0-msix53: PCI-MSI-X enabled: IRQ 161
[   10.828036] mpt3sas0-msix54: PCI-MSI-X enabled: IRQ 162
[   10.828037] mpt3sas0-msix55: PCI-MSI-X enabled: IRQ 163
[   10.828038] mpt3sas0-msix56: PCI-MSI-X enabled: IRQ 164
[   10.828040] mpt3sas0-msix57: PCI-MSI-X enabled: IRQ 165
[   10.828041] mpt3sas0-msix58: PCI-MSI-X enabled: IRQ 166
[   10.828042] mpt3sas0-msix59: PCI-MSI-X enabled: IRQ 167
[   10.828044] mpt3sas0-msix60: PCI-MSI-X enabled: IRQ 168
         Startin[   10.828045] mpt3sas0-msix61: PCI-MSI-X enabled: IRQ 169
g ^[[0;1;39mShow [   10.828047] mpt3sas0-msix62: PCI-MSI-X enabled: IRQ 170
Plymouth Boot Sc[   10.883068] mpt3sas0-msix63: PCI-MSI-X enabled: IRQ 171
reen^[[0m...
[   10.883069] mpt3sas0-msix64: PCI-MSI-X enabled: IRQ 172
[   10.883071] mpt3sas0-msix65: PCI-MSI-X enabled: IRQ 173
[   10.883072] mpt3sas0-msix66: PCI-MSI-X enabled: IRQ 174
[   10.883073] mpt3sas0-msix67: PCI-MSI-X enabled: IRQ 175
[^[[0;32m  OK  ^[[[   10.883075] mpt3sas0-msix68: PCI-MSI-X enabled: IRQ 176
[   10.883076] mpt3sas0-msix69: PCI-MSI-X enabled: IRQ 177
0m] Started ^[[0;[   10.883078] mpt3sas0-msix70: PCI-MSI-X enabled: IRQ 178
1;39mShow Plymou[   10.883079] mpt3sas0-msix71: PCI-MSI-X enabled: IRQ 179
th Boot Screen^[[[   10.936835] mpt3sas0-msix72: PCI-MSI-X enabled: IRQ 180
0m.
[   10.936837] mpt3sas0-msix73: PCI-MSI-X enabled: IRQ 181
[   10.936838] mpt3sas0-msix74: PCI-MSI-X enabled: IRQ 182
[   10.936839] mpt3sas0-msix75: PCI-MSI-X enabled: IRQ 183
[   10.936841] mpt3sas0-msix76: PCI-MSI-X enabled: IRQ 184
[   10.936842] mpt3sas0-msix77: PCI-MSI-X enabled: IRQ 185
[^[[0;32m  OK  ^[[[   10.936843] mpt3sas0-msix78: PCI-MSI-X enabled: IRQ 186
0m] Started ^[[0;[   10.936844] mpt3sas0-msix79: PCI-MSI-X enabled: IRQ 187
[   10.936846] mpt3sas0-msix80: PCI-MSI-X enabled: IRQ 188
1;39mForward Pas[   10.936848] mpt3sas0-msix81: PCI-MSI-X enabled: IRQ 189
[   10.936849] mpt3sas0-msix82: PCI-MSI-X enabled: IRQ 190
sword Requests t[   11.000369] mpt3sas0-msix83: PCI-MSI-X enabled: IRQ 191
o Plymouth Direc[   11.000371] mpt3sas0-msix84: PCI-MSI-X enabled: IRQ 192
[   11.000372] mpt3sas0-msix85: PCI-MSI-X enabled: IRQ 193
tory Watch^[[0m.\r[   11.000374] mpt3sas0-msix86: PCI-MSI-X enabled: IRQ 194

[^[[0;32m  OK  [   11.000375] mpt3sas0-msix87: PCI-MSI-X enabled: IRQ 195
[   11.000377] mpt3sas0-msix88: PCI-MSI-X enabled: IRQ 196
^[[0m] Reached ta[   11.037252] mpt3sas0-msix89: PCI-MSI-X enabled: IRQ 197
rget ^[[0;1;39mPa[   11.037253] mpt3sas0-msix90: PCI-MSI-X enabled: IRQ 198
th Units^[[0m.
[   11.037255] mpt3sas0-msix91: PCI-MSI-X enabled: IRQ 199
[   11.037256] mpt3sas0-msix92: PCI-MSI-X enabled: IRQ 200
[   11.037257] mpt3sas0-msix93: PCI-MSI-X enabled: IRQ 201
[   11.037259] mpt3sas0-msix94: PCI-MSI-X enabled: IRQ 202
[^[[0;32m  OK  ^[[[   11.037260] mpt3sas0-msix95: PCI-MSI-X enabled: IRQ 203
0m] Reached targ[   11.079362] mpt3sas_cm0: iomem(0x00000000e2200000), mapped(0x000000004671ce53), size(65536)
et ^[[0;1;39mBasi[   11.089096] mpt3sas_cm0: ioport(0x0000000000001000), size(256)
c System^[[0m.
[   11.154353] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   11.162354] mpt3sas_cm0: sending message unit reset !!
[   11.169002] mpt3sas_cm0: message unit reset: SUCCESS
[   11.201691] mpt3sas_cm0: scatter gather: sge_in_main_msg(1), sge_per_chain(7), sge_per_io(128), chains_per_io(19)
[   11.213139] mpt3sas_cm0: request pool(0x00000000b4f018d5) - dma(0xe0600000): depth(9700), frame_size(128), pool_size(1212 kB)
[   11.249880] mpt3sas_cm0: sense pool(0x000000009279d66d) - dma(0xdef00000): depth(9463), element_size(96), pool_size (887 kB)
[   11.261188] mpt3sas_cm0: reply pool(0x0000000033cf6fe9) - dma(0xdec00000): depth(9764), frame_size(128), pool_size(1220 kB)
[   11.272326] mpt3sas_cm0: config page(0x000000008d1e63f3) - dma(0xdebee000): size(512)
[   11.280158] mpt3sas_cm0: Allocated physical memory: size(40437 kB)
[   11.286338] mpt3sas_cm0: Current Controller Queue Depth(9460),Max Controller Queue Depth(9584)
[   11.294943] mpt3sas_cm0: Scatter Gather Elements per IO(128)
[   11.346376] mpt3sas_cm0: _base_display_fwpkg_version: complete
[   11.352222] mpt3sas_cm0: FW Package Ver(16.17.01.00)
[   11.357492] mpt3sas_cm0: LSISAS3008: FWVersion(16.00.11.00), ChipRevision(0x02)
[   11.364804] mpt3sas_cm0: Protocol=(Initiator,Target), Capabilities=(TLR,EEDP,Snapshot Buffer,Diag Trace Buffer,Task Set Full,NCQ)
[   11.376528] scsi host8: Fusion MPT SAS Host
[   11.382517] mpt3sas_cm0: sending port enable !!
[   11.387469] mpt3sas_cm0: hba_port entry: 00000000c861e1d9, port: 255 is added to hba_port list
[   11.397221] mpt3sas_cm0: host_add: handle(0x0001), sas_addr(0x52cea7f0be87bf00), phys(8)
[   11.405655] mpt3sas_cm0: handle(0xa) sas_address(0x4433221100000000) port_type(0x1)
[   11.414654] scsi 8:0:0:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.422759] scsi 8:0:0:0: SATA: handle(0x000a), sas_addr(0x4433221100000000), phy(0), device_name(0x500a075131911ad0)
[   11.433357] scsi 8:0:0:0: enclosure logical id (0x52cea7f0be87bf00), slot(1) 
[   11.440489] scsi 8:0:0:0: enclosure level(0x0001), connector name(     )
[   11.447269] scsi 8:0:0:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.455705] scsi 8:0:0:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.470520]  end_device-8:0: add: handle(0x000a), sas_addr(0x4433221100000000)
[   11.477883] mpt3sas_cm0: handle(0xc) sas_address(0x58ce38ee219651a2) port_type(0x1)
[   11.486497] scsi 8:0:1:0: Direct-Access     KIOXIA   KPM6WVUG960G     BD08 PQ: 0 ANSI: 6
[   11.494587] scsi 8:0:1:0: SSP: handle(0x000c), sas_addr(0x58ce38ee219651a2), phy(4), device_name(0x58ce38ee219651a0)
[   11.505099] scsi 8:0:1:0: enclosure logical id (0x52cea7f0be87bf00), slot(0) 
[   11.512232] scsi 8:0:1:0: enclosure level(0x0001), connector name(     )
[   11.518953] scsi 8:0:1:0: qdepth(254), tagged(1), scsi_level(7), cmd_que(1)
[   11.527615]  end_device-8:1: add: handle(0x000c), sas_addr(0x58ce38ee219651a2)
[   11.534963] mpt3sas_cm0: handle(0xb) sas_address(0x4433221106000000) port_type(0x1)
[   11.543745] scsi 8:0:2:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.551838] scsi 8:0:2:0: SATA: handle(0x000b), sas_addr(0x4433221106000000), phy(6), device_name(0x500a075131911a6f)
[   11.562437] scsi 8:0:2:0: enclosure logical id (0x52cea7f0be87bf00), slot(2) 
[   11.569568] scsi 8:0:2:0: enclosure level(0x0001), connector name(     )
[   11.576335] scsi 8:0:2:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.584768] scsi 8:0:2:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.599599]  end_device-8:2: add: handle(0x000b), sas_addr(0x4433221106000000)
[   11.620322] mpt3sas_cm0: port enable: SUCCESS
[   11.624983] scsi 8:0:0:0: Attached scsi generic sg0 type 0
[   11.630742] sd 8:0:1:0: Attached scsi generic sg1 type 0
[   11.630959] sd 8:0:1:0: [sdb] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.636080] sd 8:0:0:0: [sda] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.636279] scsi 8:0:2:0: Attached scsi generic sg2 type 0
[   11.636916] sd 8:0:2:0: [sdc] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.636919] sd 8:0:2:0: [sdc] 4096-byte physical blocks
[   11.638926] sd 8:0:2:0: [sdc] Write Protect is off
[   11.640211] sd 8:0:2:0: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.643637] sd 8:0:1:0: [sdb] 4096-byte physical blocks
[   11.651203] sd 8:0:0:0: [sda] 4096-byte physical blocks
[   11.653218] sd 8:0:0:0: [sda] Write Protect is off
[   11.656902] sd 8:0:1:0: [sdb] Write Protect is off
[   11.664992] sd 8:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.711628] sd 8:0:1:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   11.782237]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7
[   11.786623]  sdc: sdc1 sdc2
[   11.787586] sd 8:0:0:0: [sda] Attached SCSI disk
[   11.790146] sd 8:0:2:0: [sdc] Attached SCSI disk
[   11.797380]  sdb: sdb1 sdb2
[   11.802163] sd 8:0:1:0: [sdb] Attached SCSI disk
[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39m/dev/mapper/rhel_sharavati-root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut initqueue hook^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m.
         Mounting ^[[0;1;39m/sysroot^[[0m...
[   12.534513] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled
[   12.545095] XFS (dm-1): Mounting V5 Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[   12.568582] XFS (dm-1): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/sysroot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root File System^[[0m.
         Starting ^[[0;1;39mMountpoints Configured in the Real Root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMountpoints Configured in the Real Root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Default Target^[[0m.
         Starting ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
         Starting ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Default Target^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd /usr File System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut initqueue hook^[[0m.
         Starting ^[[0;1;39mPlymouth switch root service^[[0m...
[^[[0;32m  OK  ^[[0m] [   12.790082] systemd-journald[1089]: Received SIGTERM from PID 1 (systemd).
Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mColdplug All udev Devices^[[0m.
         Stopping ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Kernel Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-udev hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut cmdline hook^[[0m.
         Starting ^[[0;1;39mCleanup udev Database^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate System Users^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleanup udev Database^[[0m.
[^[[0;[   12.901473] systemd[1]: RTC configured in localtime, applying delta of 330 minutes to system time.
32m  OK  ^[[0m] Reached target ^[[0;1;39mSwitch Root^[[0m.
         Starting ^[[0;1;39mSwitch Root^[[0m...
[   12.926510] systemd[1]: systemd 252-46.el9_5.3 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)
[   12.958995] systemd[1]: Detected architecture x86-64.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow)^[[0m!

[   13.031248] systemd-rc-local-generator[1698]: /etc/rc.d/rc.local is not marked executable, skipping.
[   13.284563] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[   13.291883] systemd[1]: Stopped Switch Root.
[^[[0;32m  OK  ^[[[   13.296454] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
0m] Stopped ^[[0;[   13.307121] systemd[1]: Created slice Virtual Machine and Container Slice.
1;39mSwitch Root[   13.315723] systemd[1]: Created slice Slice /system/getty.
^[[0m.
[^[[0;32m[   13.322368] systemd[1]: Created slice Slice /system/modprobe.
  OK  ^[[0m] Crea[   13.329568] systemd[1]: Created slice Slice /system/serial-getty.
ted slice ^[[0;1;[   13.336954] systemd[1]: Created slice Slice /system/sshd-keygen.
39mVirtual Machi[   13.344331] systemd[1]: Created slice Slice /system/systemd-fsck.
ne and Container[   13.351703] systemd[1]: Created slice User and Session Slice.
 Slice^[[0m.
[^[[   13.358414] systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
[0;32m  OK  ^[[0m[   13.374629] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
] Created slice [   13.383716] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
^[[0;1;39mSlice /[   13.394349] systemd[1]: Reached target Local Encrypted Volumes.
system/getty^[[0m[   13.401645] systemd[1]: Stopped target Switch Root.
.
[^[[0;32m  OK[   13.407900] systemd[1]: Stopped target Initrd File Systems.
  ^[[0m] Created [   13.414856] systemd[1]: Stopped target Initrd Root File System.
slice ^[[0;1;39mS[   13.422166] systemd[1]: Reached target Local Integrity Protected Volumes.
lice /system/mod[   13.430350] systemd[1]: Reached target Path Units.
probe^[[0m.
[^[[[   13.436526] systemd[1]: Reached target Slice Units.
0;32m  OK  ^[[0m][   13.442794] systemd[1]: Reached target Local Verity Protected Volumes.
 Created slice ^[[   13.450757] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[0;1;39mSlice /s[   13.458828] systemd[1]: Listening on LVM2 poll daemon socket.
ystem/serial-get[   13.465785] systemd[1]: multipathd control socket was skipped because of an unmet condition check (ConditionPathExists=/etc/multipath.conf).
ty^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/sshd-keygen^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Set up automount ^[[0;1;39mArbitrary Executa…ormats File System Automount Point^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal Encrypte[   13.521481] systemd[1]: Listening on RPCbind Server Activation Socket.
d Volumes^[[0m.\r\r[   13.529273] systemd[1]: Reached target RPC Port Mapper.

[^[[0;32m  OK  ^[[   13.536997] systemd[1]: Listening on Process Core Dump Socket.
[0m] Stopped tar[   13.543124] systemd[1]: Listening on initctl Compatibility Named Pipe.
get ^[[0;1;39mSwi[   13.552047] systemd[1]: Listening on udev Control Socket.
tch Root^[[0m.
[   13.557837] systemd[1]: Listening on udev Kernel Socket.
[^[[0;32m  OK  ^[[0m] Stopped targ[   13.565847] systemd[1]: Activating swap /dev/mapper/rhel_sharavati-swap...
et ^[[0;1;39mInit[   13.570729] Adding 7815164k swap on /dev/mapper/rhel_sharavati-swap.  Priority:-2 extents:1 across:7815164k SS
rd File Systems^[[0m.
[^[[0;32m [   13.586792] systemd[1]: Mounting Huge Pages File System...
 OK  ^[[0m] Stopped target ^[[0;1;[   13.595171] systemd[1]: Mounting POSIX Message Queue File System...
39mInitrd Root F[   13.604016] systemd[1]: Mounting Kernel Debug File System...
ile System^[[0m.\r[   13.611062] systemd[1]: Mounting Kernel Trace File System...

[^[[0;32m  OK  [   13.616932] systemd[1]: Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
^[[0m] Reached ta[   13.631767] systemd[1]: iscsi-starter.service was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes).
rget ^[[0;1;39mLocal Integrity Pr[   13.647196] systemd[1]: Starting Create List of Static Device Nodes...
otected Volumes^[[0m.
[^[[0;32m [   13.656412] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
 OK  ^[[0m] Reached target ^[[0;1;[   13.669459] systemd[1]: Starting Load Kernel Module configfs...
39mPath Units^[[0[   13.677931] systemd[1]: Starting Load Kernel Module drm...
m.
[^[[0;32m  O[   13.684790] systemd[1]: Starting Load Kernel Module fuse...
K  ^[[0m] Reached target ^[[0;1;39[   13.692332] systemd[1]: Starting Read and set NIS domainname from /etc/sysconfig/network...
mSlice Units^[[0m[   13.701782] systemd[1]: plymouth-switch-root.service: Deactivated successfully.
.
[^[[0;32m  OK[   13.710444] systemd[1]: Stopped Plymouth switch root service.
  ^[[0m] Reached [   13.717707] systemd[1]: systemd-fsck-root.service: Deactivated successfully.
target ^[[0;1;39m[   13.726002] systemd[1]: Stopped File System Check on Root Device.
Local Verity Pro[   13.733541] systemd[1]: Stopped Journal Service.
tected Volumes^[[0m.
[^[[0;32m  [   13.742032] systemd[1]: Starting Journal Service...
OK  ^[[0m] Listening on ^[[0;1;39m[   13.749134] systemd[1]: Starting Load Kernel Modules...
[   13.754544] systemd-journald[1728]: File /run/log/journal/8f37f8055146469d8baec3ad508b0084/system.journal corrupted or uncleanly shut down, renaming and replacing.
Device-mapper event daemon FIFOs[   13.771425] systemd[1]: Starting Generate network units from Kernel command line...
^[[0m.
[^[[0;32m[   13.780162] systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
  OK  ^[[0m] Listening on ^[[0;1;3[   13.801376] systemd[1]: Starting Remount Root and Kernel File Systems...
9mLVM2 poll daem[   13.809538] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
on socket^[[0m.
[^[[0;32m  OK  ^[[   13.821764] systemd[1]: Starting Coldplug All udev Devices...
[0m] Listening on ^[[0;1;39mRPCbind Server Activa[   13.831881] systemd[1]: Activated swap /dev/mapper/rhel_sharavati-swap.
tion Socket^[[0m.[   13.840134] systemd[1]: Started Journal Service.

[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRPC Port Mapper^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mProcess Core Dump Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on[   13.860652] systemd-journald[1728]: Received client request to flush runtime journal.
 ^[[0;1;39minitctl Compatibility Named Pipe^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
         Activating swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m...
         Mounting ^[[0;1;39mHuge Pages File System^[[0m...
         Mounting ^[[0;1;39mPOSIX Message Queue File System^[[0m...
         Mounting ^[[0;1;39mKernel Debug File System^[[0m...
         Mounting ^[[0;1;39mKernel Trace File System^[[0m...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
         Starting ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module drm^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mJournal Service^[[0m.
         Starting ^[[0;1;39mJournal Service^[[0m...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
         Starting ^[[0;1;39mGenerate network units from Kernel command line^[[0m...
         Starting ^[[0;1;39mRemount Root and Kernel File Systems^[[0m...
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[^[[0;32m  OK  ^[[0m] Activated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mHuge Pages File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mPOSIX Message Queue File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Debug File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Trace File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMonitoring of LVM2 mirror…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module drm^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mGenerate network units from Kernel command [   14.089614] IPMI message handler: version 39.2
line^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;3[   14.098038] ipmi device interface
9mRemount Root and Kernel File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwaps^[[0m.
         Mounting ^[[0;1;39mFUSE Control File System^[[0m..[   14.115952] ipmi_si: IPMI System Interface driver
.
         Mou[   14.121162] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
nting ^[[0;1;39mK[   14.125083] pstore: backend 'erst' already in use: ignoring 'efi_pstore'
ernel Configurat[   14.126346] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
ion File System^[[   14.126350] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
[0m...
       [   14.126538] input: PC Speaker as /devices/platform/pcspkr/input/input1
  Starting ^[[0;1[   14.126881] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
;39mFlush Journa[   14.126885] RAPL PMU: hw unit of domain package 2^-16 Joules
l to Persistent [   14.126886] RAPL PMU: hw unit of domain core 2^-16 Joules
Storage^[[0m...\r\r[   14.128679] ipmi_platform: ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 10

         Starti[   14.128683] ipmi_si: Adding SMBIOS-specified kcs state machine
ng ^[[0;1;39mLoad[   14.128778] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
/Save OS Random [   14.132478] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
Seed^[[0m...
  [   14.133153] i2c i2c-3: Successfully instantiated SPD at 0x50
       Starting [   14.133720] i2c i2c-3: Successfully instantiated SPD at 0x51
^[[0;1;39mApply K[   14.134283] i2c i2c-3: Successfully instantiated SPD at 0x52
ernel Variables^[[   14.134846] i2c i2c-3: Successfully instantiated SPD at 0x53
[0m...
       [   14.136860] i2c i2c-3: Successfully instantiated SPD at 0x54
  Starting ^[[0;1[   14.145566] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca8] regsize 1 spacing 4 irq 10
;39mCreate Stati[   14.155068] i2c i2c-3: Successfully instantiated SPD at 0x55
c Device Nodes i[   14.162599] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
n /dev^[[0m...
[   14.172383] i2c i2c-3: Successfully instantiated SPD at 0x56
[^[[0;32m  OK  ^[[[   14.178749] ipmi_si: Adding ACPI-specified kcs state machine
0m] Mounted ^[[0;[   14.186117] i2c i2c-3: Successfully instantiated SPD at 0x57
1;39mFUSE Contro[   14.194305] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 10
l File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Configuration File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad/Save OS Random Seed^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFlush Journal to Persistent Storage^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[[   14.338881] ee1004 3-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
0;32m  OK  ^[[0m] Finished ^[[0;1;[   14.347700] ee1004 3-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
39mCreate Static[   14.356598] kvm_amd: TSC scaling supported
 Device Nodes in[   14.357353] ee1004 3-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
 /dev^[[0m.
   [   14.361177] kvm_amd: Nested Virtualization enabled
      Starting ^[[   14.371099] ee1004 3-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
[0;1;39mRule-bas[   14.375616] kvm_amd: Nested Paging enabled
ed Manager for D[   14.375618] kvm_amd: LBR virtualization supported
evice Events and Files^[[0m...
[   14.396898] ee1004 3-0054: 512 byte EE1004-compliant SPD EEPROM, read-only
[^[[0;32m  OK  ^[[0m] Started ^[[0;[   14.406743] ee1004 3-0055: 512 byte EE1004-compliant SPD EEPROM, read-only
1;39mRule-based Manager for Devi[   14.416361] ee1004 3-0056: 512 byte EE1004-compliant SPD EEPROM, read-only
ce Events and Files^[[0m.
     [   14.426029] ee1004 3-0057: 512 byte EE1004-compliant SPD EEPROM, read-only
    Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mColdplug All udev Devices^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mLoad/Save RF Kill Switch Status /dev/rfkill Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39m/usr/sbin/lvm vgchange -aa…utoactivation event rhel_sharavati^[[0m.
[   14.732334] ipmi_si IPI0001:00: The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.
[   14.804406] ipmi_si IPI0001:00: Using irq 10
[   14.855035] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20)
[   14.928051] ipmi_si IPI0001:00: IPMI kcs interface initialized
[   14.936541] ipmi_ssif: IPMI SSIF Interface driver
[   14.957099] power_meter ACPI000D:00: Found ACPI power meter.
[^[[0m^[[0;31m*     ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;1;31m*^[[0m^[[0;31m*    ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
^[M\r^[[K[^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*   ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
[   17.935933] ccp 0000:46:00.1: SEV-SNP API:1.55 build:22
[   17.991074] ccp 0000:46:00.1: SEV API:1.55 build:22
[   17.997845] kvm_amd: SEV enabled (ASIDs 101 - 509)
[   18.002641] kvm_amd: SEV-ES enabled (ASIDs 1 - 100)
[   18.007519] kvm_amd: SEV-SNP enabled (ASIDs 1 - 100)
[   18.012681] kvm_amd: Virtual VMLOAD VMSAVE supported
[   18.017649] kvm_amd: Virtual GIF supported
[   18.043624] EDAC MC0: Giving out device to module amd64_edac controller F19h: DEV 0000:00:18.3 (INTERRUPT)
[   18.053273] EDAC amd64: F19h detected (node 0).
[   18.057831] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.062556] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.067284] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.072001] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.076730] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.081446] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.086169] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.090884] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.095607] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.100331] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.105067] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.109786] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.114505] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.119225] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.123953] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.128670] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.140281] intel_rapl_common: Found RAPL domain package
[   18.141513] amd_atl: AMD Address Translation Library initialized
[   18.145604] intel_rapl_common: Found RAPL domain core
^[M\r^[[K[ ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*  ^[[0m] A start job is running for Wait for…ice Initialization (5s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Local File Systems^[[0m.
         Mounting ^[[0;1;39m/boot^[[0m...
      [   18.504130] XFS (sda6): Mounting V5 Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
   Mounting ^[[0;[   18.505565] XFS (dm-0): Mounting V5 Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
1;39m/home^[[0m...
         Starting ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m...
[   18.530245] XFS (sda6): Ending clean mount
[^[[0;32m  OK  ^[[[   18.538866] XFS (dm-0): Ending clean mount
0m] Mounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
         Mounting ^[[0;1;39m/boot/efi^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
         Starting ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Mounting ^[[0;1;39mRPC Pipe File System^[[0m...
         Starting ^[[0;1;39mSecurity Auditing Service^[[0m...
         Starting ^[[0;1;39mRPC Bind^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRPC Bind^[[0m.
[   18.648828] RPC: Registered named UNIX socket transport module.
[   18.654759] RPC: Registered udp transport module.
[   18.659474] RPC: Registered tcp transport module.
[   18.664184] RPC: Registered tcp-with-tls transport module.
[   18.669673] RPC: Registered tcp NFSv4.1 backchannel transport module.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mRPC Pipe File System^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mrpc_pipefs.target^[[0m.
         Starting ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdnf makecache --timer^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily rotation of log files^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUpdates mlocate database every day^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily Cleanup of Temporary Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdaily update of the root trust anchor for DNSSEC^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt interface daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt network daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nodedev daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nwfilter daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt proxy daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt secret daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt storage daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
         Starting ^[[0;1;39mD-Bus System Message Bus^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mBasic System^[[0m.
         Starting ^[[0;1;39mNTP client/server^[[0m...
         Starting ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m...
         Starting ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mirqbalance daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mlibstoragemgmt plug-in server daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mMachine Check Exception Logging Daemon^[[0m.
         Starting ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msshd-keygen.target^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUser and Group Name Lookups^[[0m.
         Starting ^[[0;1;39mUser Login Management^[[0m...
         Starting ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNTP client/server^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Network^[[0m.
         Starting ^[[0;1;39mNetwork Manager^[[0m...
         Starting ^[[0;1;39mHostname Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mHostname Service^[[0m.
         Starting ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork^[[0m.
         Starting ^[[0;1;39mNetwork Manager Wait Online^[[0m...
         Starting ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
         Starting ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m...
         Starting ^[[0;1;39mOpenSSH server daemon^[[0m...
         Starting ^[[0;1;39mDynamic System Tuning Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNFS client services^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mOpenSSH server daemon^[[0m.
         Starting ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
[   22.780712] tg3 0000:c1:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   22.787337] tg3 0000:c1:00.0 eth0: Flow control is off for TX and off for RX
[   22.794379] tg3 0000:c1:00.0 eth0: EEE is disabled
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[     ^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (12s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mNetwork Manager Wait Online^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork is Online^[[0m.
         Starting ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m...
         Starting ^[[0;1;39mNotify NFS peers of a restart^[[0m...
         Starting ^[[0;1;39mSystem Logging Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNotify NFS peers of a restart^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mCrash recovery kernel arming^[[0m...
         Starting ^[[0;1;39mPermit User Sessions^[[0m...
         Starting ^[[0;1;39mlibvirt QEMU daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDeferred execution scheduler^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mCommand Scheduler^[[0m.
         Starting ^[[0;1;39mHold until boot process finishes up^[[0m...
         Starting ^[[0;1;39mTerminate Plymouth Boot Screen^[[0m...
[^[[0;1;31mFAILED^[[0m] Failed to start ^[[0;1;39mCrash recovery kernel arming^[[0m.
See 'systemctl status kdump.service' for details.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSystem Logging Service^[[0m.
[   25.655218] fbcon: Taking over console
[   25.675127] Console: switching to colour frame buffer device 128x48

Red Hat Enterprise Linux 9.5 (Plow)
Kernel 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e on an x86_64

Activate the web console with: systemctl enable --now cockpit.socket

sharavati login: [  148.397533] /proc/cgroups lists only v1 controllers, use cgroup.controllers of root cgroup for v2 info
[  338.120765] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[  338.187733] systemd-rc-local-generator[3166]: /etc/rc.d/rc.local is not marked executable, skipping.
[  359.480220] virbr0: port 1(t0-qQHLbU) entered blocking state
[  359.485893] virbr0: port 1(t0-qQHLbU) entered disabled state
[  359.491612] t0-qQHLbU: entered allmulticast mode
[  359.496312] t0-qQHLbU: entered promiscuous mode
[  359.505174] virbr0: port 1(t0-qQHLbU) entered blocking state
[  359.510836] virbr0: port 1(t0-qQHLbU) entered listening state
[  361.536048] virbr0: port 1(t0-qQHLbU) entered learning state
[  363.551990] virbr0: port 1(t0-qQHLbU) entered forwarding state
[  363.557833] virbr0: topology change detected, propagating
[  370.747565] virbr0: port 1(t0-qQHLbU) entered disabled state
[  370.754267] t0-qQHLbU (unregistering): left allmulticast mode
[  370.760026] t0-qQHLbU (unregistering): left promiscuous mode
[  370.765698] virbr0: port 1(t0-qQHLbU) entered disabled state
[  375.141924] virbr0: port 1(t0-YOwatW) entered blocking state
[  375.147592] virbr0: port 1(t0-YOwatW) entered disabled state
[  375.153307] t0-YOwatW: entered allmulticast mode
[  375.158030] t0-YOwatW: entered promiscuous mode
[  375.166596] virbr0: port 1(t0-YOwatW) entered blocking state
[  375.172262] virbr0: port 1(t0-YOwatW) entered listening state
[  377.183657] virbr0: port 1(t0-YOwatW) entered learning state
[  379.199601] virbr0: port 1(t0-YOwatW) entered forwarding state
[  379.205450] virbr0: topology change detected, propagating
[  385.918904] virbr0: port 1(t0-YOwatW) entered disabled state
[  385.925902] t0-YOwatW (unregistering): left allmulticast mode
[  385.931659] t0-YOwatW (unregistering): left promiscuous mode
[  385.937333] virbr0: port 1(t0-YOwatW) entered disabled state
[  426.782845] JFS: nTxBlock = 8192, nTxLock = 65536
[  426.821474] QNX4 filesystem 0.2.3 registered.
[  426.902426] raid6: avx2x4   gen() 28398 MB/s
[  426.974425] raid6: avx2x2   gen() 29143 MB/s
[  427.046422] raid6: avx2x1   gen() 20450 MB/s
[  427.050696] raid6: using algorithm avx2x2 gen() 29143 MB/s
[  427.122421] raid6: .... xor() 27002 MB/s, rmw enabled
[  427.127472] raid6: using avx2x2 recovery algorithm
[  427.134369] xor: automatically using best checksumming function   avx       
[  427.229879] Btrfs loaded, zoned=yes, fsverity=yes
[  431.627903] sda6: Can't mount, would change RO state
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Runtime Directory /run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser Slice of UID 0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNFS client services^[[0m.
         Stopping ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mShow Plymouth Reboot Screen^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mUser and Group Name Lookups^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSystem Logging Service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork is Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager Wait Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
         Stopping ^[[0;1;39mNetwork Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Network^[[0m.
         Stopping ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGenerate network units from Kernel command line^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
         Stopping ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Plymouth Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mVirtual Machine and Container Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon socket^[[0m.
[  433.083358] audit: type=1305 audit(1750149550.463:289): op=set audit_pid=0 old=2288 auid=4294967295 ses=4294967295 subj=unconfined res=1
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1[  433.098085] audit: type=1131 audit(1750149550.475:290): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=auditd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
;39mSSSD Kerberos Cache Manager [  433.119954] audit: type=1131 audit(1750149550.499:291): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon socket^[[0m.
         Stopping ^[[0;1;39mD-Bus System Message Bus^[[0m...
         Starting ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus Syste[  433.191137] audit: type=1131 audit(1750149550.571:292): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-fsck@dev-disk-by\x2duuid-FBE5\x2d86EF comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
m Message Bus So[  433.208770] XFS (dm-0): Unmounting Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
cket^[[0m.
[^[[0[  433.215579] XFS (sda6): Unmounting Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0[  433.237032] audit: type=1131 audit(1750149550.615:293): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
m.
[^[[0;32m  O[  433.258819] audit: type=1131 audit(1750149550.639:294): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
K  ^[[0m] Unset automount ^[[0;1;39mArbitrary Executab…ormats File System Automount Point^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Encrypted Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Integrity Protected Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1[  433.319714] audit: type=1131 audit(1750149550.699:295): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
;39mLocal Verity[  433.340429] audit: type=1130 audit(1750149550.719:296): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
 Protected Volum[  433.361589] audit: type=1131 audit(1750149550.719:297): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
es^[[0m.
         Deactivating swap ^[[0;1;39m/dev/disk/by-id/dm[  433.387967] audit: type=1334 audit(1750149550.767:298): prog-id=33 op=UNLOAD
-name-rhel_sharavati-swap^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
      [  433.418688] watchdog: watchdog0: watchdog did not stop!
   Stopping ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  [  433.430123] systemd-shutdown[1]: Using hardware watchdog 'SP5100 TCO timer', version 0, device /dev/watchdog0
^[[0m] Unmounted [  433.441347] systemd-shutdown[1]: Watchdog running with a timeout of 10min.
^[[0;1;39m/run/credentials/systemd-sysctl.service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To J[  433.458500] systemd-shutdown[1]: Syncing filesystems and block devices.
ump To initramfs[  433.465958] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
         Stopping ^[[0;1;39mSecurity Auditing Service^[[0m...
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-uuid…8d2e1f-0[  433.493232] systemd-journald[1728]: Received SIGTERM from PID 1 (systemd-shutdow).
fb1-4c94-97ac-38505613fcbf^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/rhel_sharavati/swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/d…kEo36yeb12DWUnp5czhD1hrKFNCXkJMetK^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/dm-2^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
         Unmounting ^[[0;1;39m/boot/efi^[[0m...
         Unmounting ^[[0;1;39m/home^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m.
         Unmounting ^[[0;1;39m/boot^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Local File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUnmount All Filesystems^[[0m.
         Stopping ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRemount Root and Kernel File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mMonitoring of LVM2 mirrors…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLate Shutdown Services^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSystem Reboot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Reboot^[[0m.
[  433.706865] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
[  433.730765] systemd-shutdown[1]: Unmounting file systems.
[  433.736981] [7940]: Remounting '/' read-only with options 'attr2,inode64,logbufs=8,logbsize=32k,noquota'.
[  433.756211] systemd-shutdown[1]: All filesystems unmounted.
[  433.761798] systemd-shutdown[1]: Deactivating swaps.
[  433.767251] systemd-shutdown[1]: All swaps deactivated.
[  433.772482] systemd-shutdown[1]: Detaching loop devices.
[  433.778311] systemd-shutdown[1]: All loop devices detached.
[  433.783885] systemd-shutdown[1]: Stopping MD devices.
[  433.788989] systemd-shutdown[1]: All MD devices stopped.
[  433.794303] systemd-shutdown[1]: Detaching DM devices.
[  433.799812] systemd-shutdown[1]: Detaching DM /dev/dm-2 (253:2).
[  433.826742] systemd-shutdown[1]: Detaching DM /dev/dm-0 (253:0).
[  433.870408] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  433.876908] systemd-shutdown[1]: Detaching DM devices.
[  433.882227] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  433.888728] systemd-shutdown[1]: Cannot finalize remaining DM devices, continuing.
[  433.896317] watchdog: watchdog0: watchdog did not stop!
[  433.991473] systemd-shutdown[1]: Successfully changed into root pivot.
[  433.998011] systemd-shutdown[1]: Returning to initrd...
[  434.049155] dracut Warning: Killing all remaining processes
dracut Warning: Killing all remaining processes
[  434.127451] XFS (dm-1): Unmounting Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[  434.144530] dracut Warning: Unmounted /oldroot.
dracut Warning: Unmounted /oldroot.
[  434.161382] dracut: Disassembling device-mapper devices
Rebooting.
[  434.364234] sd 8:0:2:0: [sdc] Synchronizing SCSI cache
[  434.369527] sd 8:0:0:0: [sda] Synchronizing SCSI cache
[  435.831721] mpt3sas_cm0: sending message unit reset !!
[  435.838238] mpt3sas_cm0: message unit reset: SUCCESS
[  435.845817] ACPI: PM: Preparing to enter system sleep state S5
[  435.851771] kvm: exiting hardware virtualization
[  435.856427] reboot: Restarting system
[  435.860094] reboot: machine restart
^[[c^[[2J^[[01;01H^[[=3h^[[2J^[[01;01HKEY MAPPING FOR CONSOLE REDIRECTION:

Use the <ESC><1> key sequence for <F1>
Use the <ESC><2> key sequence for <F2>
Use the <ESC><3> key sequence for <F3>
Use the <ESC><0> key sequence for <F10>
Use the <ESC><!> key sequence for <F11>
Use the <ESC><@> key sequence for <F12>

Use the <ESC><Ctrl><M> key sequence for <Ctrl><M>
Use the <ESC><Ctrl><H> key sequence for <Ctrl><H>
Use the <ESC><Ctrl><I> key sequence for <Ctrl><I>
Use the <ESC><Ctrl><J> key sequence for <Ctrl><J>

Use the <ESC><X><X> key sequence for <Alt><x>, where x is any letter
key, and X is the upper case of that key

Use the <ESC><R><ESC><r><ESC><R> key sequence for <Ctrl><Alt><Del>

Press the spacebar to pause...
Initializing PCIe, USB, and Video... Done
PowerEdge R6515
BIOS Version: 2.17.0
Console Redirection Enabled Requested by iDRAC

F2	 = System Setup
F10	 = Lifecycle Controller (Config
	   iDRAC, Update FW, Install OS)
F11	 = Boot Manager
F12	 = PXE Boot
iDRAC IPV4:  10.86.18.202 [Dedicated]
                                
Initializing Firmware Interfaces...
 





Enumerating Boot options...
Enumerating Boot options... Done
Loading Lifecycle Controller Drivers...
Loading Lifecycle Controller Drivers...Done
Lifecycle Controller: Collecting System Inventory...

iDRAC IPV4:  10.86.18.202 [Dedicated]

^[[2J^[[01;01HLifecycle Controller: Done
Booting...
^[[2J^[[01;01HBooting from Integrated Storage Controller 1: Red Hat Enterprise Linux
^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[02;32HGRUB version 2.06

\r^[[04;02H/----------------------------------------------------------------------------\^[[05;02H|^[[05;79H|^[[06;02H|^[[06;79H|^[[07;02H|^[[07;79H|^[[08;02H|^[[08;79H|^[[09;02H|^[[09;79H|^[[10;02H|^[[10;79H|^[[11;02H|^[[11;79H|^[[12;02H|^[[12;79H|^[[13;02H|^[[13;79H|^[[14;02H|^[[14;79H|^[[15;02H|^[[15;79H|^[[16;02H|^[[16;79H|^[[17;02H\----------------------------------------------------------------------------/^[[18;02H^[[19;02H     Use the ^ and v keys to select which entry is highlighted.          
\r      Press enter to boot the selected OS, `e' to edit the commands       
\r      before booting or `c' for a command-line. ESC to return previous    
\r      menu.                                                               ^[[05;80H ^[[0m^[[30m^[[47m^[[05;03H*Red Hat Enterprise Linux (6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e)>
\r^[[06;01H^[[0m^[[37m^[[40m^[[05;78H^[[06;03H Red Hat Enterprise Linux (6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997)>
\r^[[07;01H^[[06;78H^[[07;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250613-bc6e0ba6c9-dc42f4ece61)>
\r^[[08;01H^[[07;78H^[[08;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250612-0bb71d3018-d909e6968a1)>
\r^[[09;01H^[[08;78H^[[09;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250611-19a60293b9-72d7c68e20e)>
\r^[[10;01H^[[09;78H^[[10;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250610-b27cc623e0-9a3b1b1b837)>
\r^[[11;01H^[[10;78H^[[11;03H Red Hat Enterprise Linux (6.15.0-rc7-next-20250526-3be1a7a31f-22d449bcd69)>
\r^[[12;01H^[[11;78H^[[12;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250514-bdd609656f-ccb396cc166)>
\r^[[13;01H^[[12;78H^[[13;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250513-aa94665adc-e0bf3d3816b)>
\r^[[14;01H^[[13;78H^[[14;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250512-edef457004-450c56522a8)>
\r^[[15;01H^[[14;78H^[[15;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250508-f48887a98b-19c541fe872)>
\r^[[16;01H^[[15;78H^[[16;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250507-08710e6960-81586bd2ca8)>
\r^[[17;01H^[[16;78H^[[16;80Hv^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 5s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 4s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 3s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 2s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 1s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 0s.                 ^[[05;78H^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m  Booting `Red Hat Enterprise Linux
\r(6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e) 9.5 (Plow)'

\r[    0.000000] Linux version 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e (root@sharavati•amd.com) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-5), GNU ld version 2.35.2-63.el9) #1 SMP PREEMPT_DYNAMIC Tue Jun 17 12:09:52 IST 2025
[    0.000000] Command pt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] SEV-SNP: RMP table physical range [0x0000000015e00000 - 0x00000000566fffff]
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000015dfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000015e00000-0x00000000566fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000056700000-0x00000000567fbfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000567fc000-0x00000000567fcfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000567fd000-0x000000005a142fff] usable
[    0.000000] BIOS-e820: [mem 0x000000005a143000-0x000000005a342fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005a343000-0x0000000067acefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000067acf000-0x000000006dfcefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006dfcf000-0x000000006edfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006edff000-0x000000006effefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000006efff000-0x000000006effffff] usable
[    0.000000] BIOS-e820: [mem 0x000000006f000000-0x000000006f00afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006f00b000-0x000000006fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000070000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa000000-0x00000000aaffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c5000000-0x00000000c5ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e0ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000207fcfffff] usable
[    0.000000] BIOS-e820: [mem 0x000000207fd00000-0x000000207fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000002080000000-0x000000407f1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000407f200000-0x000000407fffffff] reserved
[    0.000000] printk: legacy bootconsole [earlyser0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by Dell Inc.
[    0.000000] efi: ACPI=0x6effe000 ACPI 2.0=0x6effe014 MEMATTR=0x63f376a0 SMBIOS=0x6979e000 SMBIOS 3.0=0x6979c000 MOKvar=0x67bcc000 RNG=0x6efb4020 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem56: MMIO range=[0x80000000-0x8fffffff] (256MB) from e820 map
[    0.000000] efi: Remove mem57: MMIO range=[0xaa000000-0xaaffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem58: MMIO range=[0xc5000000-0xc5ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem59: MMIO range=[0xe0000000-0xe0ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem60: MMIO range=[0xfd000000-0xffffffff] (48MB) from e820 map
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[    0.000000] DMI: Memory slots populated: 8/16
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1996.227 MHz processor
[    0.000028] last_pfn = 0x407f200 max_arch_pfn = 0x400000000
[    0.005552] MTRR map: 7 entries (2 fixed + 5 variable; max 19), built from 9 variable MTRRs
[    0.013865] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Memory KASLR using RDRAND RDTSC...
[    0.023929] x2apic: enabled by BIOS, switching to x2apic ops
[    0.029563] last_pfn = 0x70000 max_arch_pfn = 0x400000000
[    0.039445] SEV-SNP: Reserving start/end of RMP table on a 2MB boundary [0x0000000056600000]
[    0.047706] Using GB pages for direct mapping
[    0.052795] Secure boot disabled
[    0.055847] RAMDISK: [mem 0x0bb2c000-0x0e0d4fff]
[    0.060443] ACPI: Early table checksum verification disabled
[    0.066075] ACPI: RSDP 0x000000006EFFE014 000024 (v02 DELL  )
[    0.071793] ACPI: XSDT 0x000000006EFB7188 0000DC (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.080289] ACPI: FACP 0x000000006EFF9000 000114 (v06 DELL   PE_SC3   00000002 DELL 00000001)
[    0.088782] ACPI: DSDT 0x000000006EFDA000 019528 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.097273] ACPI: FACS 0x000000006EDB9000 000040
[    0.101866] ACPI: BERT 0x000000006EFFC000 000030 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.110359] ACPI: ERST 0x000000006EFFB000 000230 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.118854] ACPI: HEST 0x000000006EFFA000 0007F4 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.127346] ACPI: HPET 0x000000006EFF8000 000038 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.135838] ACPI: APIC 0x000000006EFF6000 0018BE (v05 DELL   PE_SC3   00000002 DELL 00000001)
[    0.144332] ACPI: MCFG 0x000000006EFF5000 00003C (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.152843] ACPI: WSMT 0x000000006EFF4000 000028 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.161336] ACPI: SSDT 0x000000006EFD9000 000629 (v02 DELL   xhc_port 00000001 INTL 20210331)
[    0.169830] ACPI: SSDT 0x000000006EFD8000 000D6E (v02 AMD    CPMRAS   00000001 INTL 20210331)
[    0.178323] ACPI: EINJ 0x000000006EFD7000 000170 (v01 AMD    PE_SC3   00000001 AMD  00000001)
[    0.186817] ACPI: PCCT 0x000000006EFD6000 00006E (v02 DELL   AmdTable 00000001 AMD  00000001)
[    0.195309] ACPI: SSDT 0x000000006EFC7000 00E849 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.203803] ACPI: SRAT 0x000000006EFC6000 000CD0 (v03 DELL   PE_SC3   00000001 AMD  00000001)
[    0.212295] ACPI: MSCT 0x000000006EFC5000 00004E (v01 DELL   PE_SC3   00000000 AMD  00000001)
[    0.220789] ACPI: SLIT 0x000000006EFC4000 000030 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.229283] ACPI: CRAT 0x000000006EFBC000 0072F8 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.237776] ACPI: CDIT 0x000000006EFBB000 00002C (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.246268] ACPI: IVRS 0x000000006EFBA000 0001F0 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.254807] ACPI: SPCR 0x000000006EFB9000 000050 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.263254] ACPI: SLIC 0x000000006EFB8000 000176 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.271748] ACPI: SSDT 0x000000006EFFD000 000D66 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.280241] ACPI: SSDT 0x000000006EFB5000 00193C (v02 AMD    CPMCMN   00000001 INTL 20210331)
[    0.288734] ACPI: Reserving FACP table memory at [mem 0x6eff9000-0x6eff9113]
[    0.295754] ACPI: Reserving DSDT table memory at [mem 0x6efda000-0x6eff3527]
[    0.302773] ACPI: Reserving FACS table memory at [mem 0x6edb9000-0x6edb903f]
[    0.309793] ACPI: Reserving BERT table memory at [mem 0x6effc000-0x6effc02f]
[    0.316813] ACPI: Reserving ERST table memory at [mem 0x6effb000-0x6effb22f]
[    0.323833] ACPI: Reserving HEST table memory at [mem 0x6effa000-0x6effa7f3]
[    0.330853] ACPI: Reserving HPET table memory at [mem 0x6eff8000-0x6eff8037]
[    0.337873] ACPI: Reserving APIC table memory at [mem 0x6eff6000-0x6eff78bd]
[    0.344893] ACPI: Reserving MCFG table memory at [mem 0x6eff5000-0x6eff503b]
[    0.351913] ACPI: Reserving WSMT table memory at [mem 0x6eff4000-0x6eff4027]
[    0.358942] ACPI: Reserving SSDT table memory at [mem 0x6efd9000-0x6efd9628]
[    0.365962] ACPI: Reserving SSDT table memory at [mem 0x6efd8000-0x6efd8d6d]
[    0.372981] ACPI: Reserving EINJ table memory at [mem 0x6efd7000-0x6efd716f]
[    0.380001] ACPI: Reserving PCCT table memory at [mem 0x6efd6000-0x6efd606d]
[    0.387021] ACPI: Reserving SSDT table memory at [mem 0x6efc7000-0x6efd5848]
[    0.394041] ACPI: Reserving SRAT table memory at [mem 0x6efc6000-0x6efc6ccf]
[    0.401060] ACPI: Reserving MSCT table memory at [mem 0x6efc5000-0x6efc504d]
[    0.408082] ACPI: Reserving SLIT table memory at [mem 0x6efc4000-0x6efc402f]
[    0.415101] ACPI: Reserving CRAT table memory at [mem 0x6efbc000-0x6efc32f7]
[    0.422121] ACPI: Reserving CDIT table memory at [mem 0x6efbb000-0x6efbb02b]
[    0.429140] ACPI: Reserving IVRS table memory at [mem 0x6efba000-0x6efba1ef]
[    0.436161] ACPI: Reserving SPCR table memory at [mem 0x6efb9000-0x6efb904f]
[    0.443180] ACPI: Reserving SLIC table memory at [mem 0x6efb8000-0x6efb8175]
[    0.450200] ACPI: Reserving SSDT table memory at [mem 0x6effd000-0x6effdd65]
[    0.457221] ACPI: Reserving SSDT table memory at [mem 0x6efb5000-0x6efb693b]
[    0.464321] APIC: Switched APIC routing to: cluster x2apic
[    0.469726] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.475689] ACPI: SRAT: Node 0 PXM 0 [mem 0x000c0000-0x7fffffff]
[    0.481669] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.487909] ACPI: SRAT: Node 1 PXM 1 [mem 0x2080000000-0x407fffffff]
[    0.494242] NUMA: Node 0 [mem 0x00001000-0x0009ffff] + [mem 0x000c0000-0x7fffffff] -> [mem 0x00001000-0x7fffffff]
[    0.504461] NUMA: Node 0 [mem 0x00001000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00001000-0x207fffffff]
[    0.515128] NODE_DATA(0) allocated [mem 0x207fcd59c0-0x207fcfffff]
[    0.521283] NODE_DATA(1) allocated [mem 0x407f1d49c0-0x407f1fefff]
[    0.527567] cannot allocate crashkernel low memory (size:0x10800000).
[    0.534103] Zone ranges:
[    0.536458]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.542612]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.548765]   Normal   [mem 0x0000000100000000-0x000000407f1fffff]
[    0.554919]   Device   empty
[    0.557778] Movable zone start for each node
[    0.562027] Early memory node ranges
[    0.565631]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.571871]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.578110]   node   0: [mem 0x0000000000100000-0x0000000015dfffff]
[    0.584349]   node   0: [mem 0x0000000056700000-0x00000000567fbfff]
[    0.590590]   node   0: [mem 0x00000000567fd000-0x000000005a142fff]
[    0.596830]   node   0: [mem 0x000000005a343000-0x0000000067acefff]
[    0.603070]   node   0: [mem 0x000000006efff000-0x000000006effffff]
[    0.609310]   node   0: [mem 0x000000006f00b000-0x000000006fffffff]
[    0.615549]   node   0: [mem 0x0000000100000000-0x000000207fcfffff]
[    0.621800]   node   1: [mem 0x0000002080000000-0x000000407f1fffff]
[    0.628040] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fcfffff]
[    0.635051] Initmem setup node 1 [mem 0x0000002080000000-0x000000407f1fffff]
[    0.642072] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.647875] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.653694] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.659927] On node 0, zone DMA32: 35072 pages in unavailable ranges
[    0.666146] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.672264] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.678354] On node 0, zone DMA32: 30000 pages in unavailable ranges
[    0.684600] On node 0, zone DMA32: 11 pages in unavailable ranges
[    0.909842] On node 1, zone Normal: 768 pages in unavailable ranges
[    0.915946] On node 1, zone Normal: 3584 pages in unavailable ranges
[    0.922409] ACPI: PM-Timer IO Port: 0x408
[    0.926273] ACPI: X2APIC_NMI (uid[0xffffffff] high edge lint[0x1])
[    0.932401] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.938307] IOAPIC[0]: apic_id 240, version 33, address 0xfec00000, GSI 0-23
[    0.945316] IOAPIC[1]: apic_id 241, version 33, address 0xe0100000, GSI 120-151
[    0.952595] IOAPIC[2]: apic_id 242, version 33, address 0xc5100000, GSI 88-119
[    0.959789] IOAPIC[3]: apic_id 243, version 33, address 0xaa100000, GSI 56-87
[    0.966896] IOAPIC[4]: apic_id 244, version 33, address 0xfd100000, GSI 24-55
[    0.974001] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.980325] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.986832] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.993238] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.998355] ACPI: SPCR: console: uart,io,0x2f8,115200
[    1.003382] CPU topo: Max. logical packages:   1
[    1.007971] CPU topo: Max. logical dies:       1
[    1.012565] CPU topo: Max. dies per package:   1
[    1.017162] CPU topo: Max. threads per core:   2
[    1.021752] CPU topo: Num. cores per package:    64
[    1.026630] CPU topo: Num. threads per package: 128
[    1.031483] CPU topo: Allowing 128 present CPUs plus 0 hotplug CPUs
[    1.037749] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    1.045265] PM: hibernation: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    1.052804] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    1.060345] PM: hibernation: Registered nosave memory: [mem 0x15e00000-0x567fffff]
[    1.067883] PM: hibernation: Registered nosave memory: [mem 0x5a143000-0x5a342fff]
[    1.075423] PM: hibernation: Registered nosave memory: [mem 0x67acf000-0x6effefff]
[    1.082963] PM: hibernation: Registered nosave memory: [mem 0x6f000000-0x6f00afff]
[    1.090503] PM: hibernation: Registered nosave memory: [mem 0x70000000-0xffffffff]
[    1.098044] PM: hibernation: Registered nosave memory: [mem 0x207fd00000-0x207fffffff]
[    1.105929] [mem 0x56800000-0xffffffff] available for PCI devices
[    1.111997] Booting paravirtualized kernel on bare hardware
[    1.117544] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    1.127954] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:128 nr_cpu_ids:128 nr_node_ids:2
[    1.139345] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[    1.145822] Kernel command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    1.175147] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e biosdevname=0 mem_encrypt=off", will be passed to user space.
[    1.191997] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    1.198913] printk: log_buf_len total cpu_extra contributions: 520192 bytes
[    1.205846] printk: log_buf_len min size: 262144 bytes
[    1.211292] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[    1.218672] printk: early log buf free: 246352(93%)
[    1.225022] software IO TLB: area num 128.
[    1.228948] software IO TLB: swiotlb_memblock_alloc: Failed to allocate 268435456 bytes tlb structure
[    1.244658] software IO TLB: SWIOTLB bounce buffer size adjusted 131072 -> 65536 slabs
[    1.251255] Fallback order for Node 0: 0 1 
[    1.251259] Fallback order for Node 1: 1 0 
[    1.251272] Built 2 zonelists, mobility grouping on.  Total pages: 66743906
[    1.274260] Policy zone: Normal
[    1.277387] mem auto-init: stack:off, heap alloc:on, heap free:off
[    1.698993] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=128, Nodes=2
Poking KASLR using RDRAND RDTSC...
[    1.719645] ftrace: allocating 53763 entries in 212 pages
[    1.724860] ftrace: allocated 212 pages with 4 groups
[    1.730769] Dynamic Preempt: voluntary
[    1.734700] rcu: Preemptible hierarchical RCU implementation.
[    1.740260] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=128.
[    1.747193] 	Trampoline variant of Tasks RCU enabled.
[    1.752220] 	Rude variant of Tasks RCU enabled.
[    1.756727] 	Tracing variant of Tasks RCU enabled.
[    1.761492] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.769033] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=128
[    1.775919] RCU Tasks: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.784722] RCU Tasks Rude: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.793997] RCU Tasks Trace: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.806867] NR_IRQS: 524544, nr_irqs: 3624, preallocated irqs: 16
[    1.813062] rcu: srcu_init: Setting srcu_struct sizes to big.
[    1.818803] Console: colour dummy device 80x25
[    1.823087] printk: legacy console [ttyS0] enabled
[    1.823087] printk: legacy console [ttyS0] enabled
[    1.832620] printk: legacy bootconsole [earlyser0] disabled
[    1.832620] printk: legacy bootconsole [earlyser0] disabled
[    1.843812] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    1.855086] ACPI: Core revision 20250404
[    1.859235] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    1.868377] APIC: Switch to symmetric I/O mode setup
[    1.873772] AMD-Vi: Using global IVHD EFR:0x841f77e022094ace, EFR2:0x0
[    1.882716] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    1.908380] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x398c83ce231, max_idle_ns: 881590625107 ns
[    1.918891] Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.45 BogoMIPS (lpj=7984908)
[    1.922903] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    1.927005] LVT offset 2 assigned for vector 0xf4
[    1.930923] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    1.934890] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    1.938891] process: using mwait in idle threads
[    1.942894] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    1.946890] Spectre V2 : Mitigation: Retpolines
[    1.950890] Spectre V2 : User space: Mitigation: STIBP always-on protection
[    1.954890] Speculative Return Stack Overflow: Mitigation: Safe RET
[    1.958890] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.962890] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
[    1.966890] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    1.970890] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    1.974894] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.978890] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.982890] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.986890] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    1.990890] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    1.994890] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    1.998890] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    2.002890] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    2.006890] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[    2.048296] Freeing SMP alternatives memory: 48K
[    2.050892] pid_max: default: 131072 minimum: 1024
[    2.061897] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm
[    2.062942] Yama: becoming mindful.
[    2.067015] AppArmor: AppArmor initialized
[    2.079060] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    2.087335] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    2.091040] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.094986] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.211118] smpboot: CPU0: AMD EPYC 7713 64-Core Processor (family: 0x19, model: 0x1, stepping: 0x1)
[    2.215245] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    2.218892] ... version:                0
[    2.222891] ... bit width:              48
[    2.226891] ... generic registers:      6
[    2.230891] ... value mask:             0000ffffffffffff
[    2.234891] ... max period:             00007fffffffffff
[    2.238891] ... fixed-purpose events:   0
[    2.242891] ... event mask:             000000000000003f
[    2.247321] signal: max sigframe size: 3376
[    2.250951] rcu: Hierarchical SRCU implementation.
[    2.254891] rcu: 	Max phase no-delay instances is 1000.
[    2.258946] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
[    2.271263] MCE: In-kernel MCE decoding enabled.
[    2.274938] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    2.283853] smp: Bringing up secondary CPUs ...
[    2.287042] smpboot: x86: Booting SMP configuration:
[    2.290894] .... node  #0, CPUs:          #1   #2   #3   #4   #5   #6   #7   #8   #9  #10  #11  #12  #13  #14  #15  #16  #17  #18  #19  #20  #21  #22  #23  #24  #25  #26  #27  #28  #29  #30  #31
[    2.302892] .... node  #1, CPUs:    #32  #33  #34  #35  #36  #37  #38  #39  #40  #41  #42  #43  #44  #45  #46  #47  #48  #49  #50  #51  #52  #53  #54  #55  #56  #57  #58  #59  #60  #61  #62  #63
[    2.454893] .... node  #0, CPUs:    #64  #65  #66  #67  #68  #69  #70  #71  #72  #73  #74  #75  #76  #77  #78  #79  #80  #81  #82  #83  #84  #85  #86  #87  #88  #89  #90  #91  #92  #93  #94  #95
[    2.462895] .... node  #1, CPUs:    #96  #97  #98  #99 #100 #101 #102 #103 #104 #105 #106 #107 #108 #109 #110 #111 #112 #113 #114 #115 #116 #117 #118 #119 #120 #121 #122 #123 #124 #125 #126 #127
[    2.471193] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[    2.623055] smp: Brought up 2 nodes, 128 CPUs
[    2.626896] smpboot: Total of 128 processors activated (511034.11 BogoMIPS)
[    2.637257] Memory: 262225188K/266975624K available (18401K kernel code, 3299K rwdata, 7944K rodata, 4760K init, 6092K bss, 4428308K reserved, 0K cma-reserved)
[    2.645067] devtmpfs: initialized
[    2.646996] x86/mm: Memory block size: 2048MB
[    2.661698] ACPI: PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    2.662893] ACPI: PM: Registering ACPI NVS region [mem 0x6dfcf000-0x6edfefff] (14876672 bytes)
[    2.671022] ACPI: PM: Registering ACPI NVS region [mem 0x6f000000-0x6f00afff] (45056 bytes)
[    2.675013] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    2.678955] posixtimers hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.683103] futex hash table entries: 16384 (1048576 bytes on 2 NUMA nodes, total 2048 KiB, linear).
[    2.687120] pinctrl core: initialized pinctrl subsystem
[    2.691044] PM: RTC time: 14:11:25, date: 2025-06-17
[    2.695664] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    2.699475] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    2.703074] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    2.707076] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    2.710898] audit: initializing netlink subsys (disabled)
[    2.714919] audit: type=2000 audit(1750169484.832:1): state=initialized audit_enabled=0 res=1
[    2.715093] thermal_sys: Registered thermal governor 'fair_share'
[    2.718892] thermal_sys: Registered thermal governor 'bang_bang'
[    2.722892] thermal_sys: Registered thermal governor 'step_wise'
[    2.726891] thermal_sys: Registered thermal governor 'user_space'
[    2.730916] cpuidle: using governor ladder
[    2.738901] cpuidle: using governor menu
[    2.742937] Detected 1 PCC Subspaces
[    2.746892] Registering PCC driver as Mailbox controller
[    2.755063] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    2.758895] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    2.763070] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    2.766902] PCI: Using configuration type 1 for base access
[    2.770902] PCI: Dell System detected, enabling pci=bfsort.
[    2.778959] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    2.783110] HugeTLB: allocation took 0ms with hugepage_allocation_threads=32
[    2.786917] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    2.790891] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    2.794891] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    2.798890] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    2.807600] ACPI: Added _OSI(Module Device)
[    2.810892] ACPI: Added _OSI(Processor Device)
[    2.814891] ACPI: Added _OSI(Processor Aggregator Device)
[    2.860184] ACPI: 6 ACPI AML tables successfully acquired and loaded
[    2.876148] ACPI: Interpreter enabled
[    2.878903] ACPI: PM: (supports S0 S5)
[    2.882891] ACPI: Using IOAPIC for interrupt routing
[    2.887509] HEST: Table parsing has been initialized.
[    2.891310] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    2.894894] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.898891] PCI: Ignoring E820 reservations for host bridge windows
[    2.907664] ACPI: Enabled 1 GPEs in block 00 to 1F
[    2.949629] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    2.950971] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    2.954969] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    2.958969] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    2.962968] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    2.966968] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    2.970968] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    2.974968] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    2.979392] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-3f])
[    2.982895] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.987059] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER DPC]
[    2.991208] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    2.994892] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.999879] PCI host bridge to bus 0000:00
[    3.002895] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    3.006891] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    3.010892] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000fffff window]
[    3.014891] pci_bus 0000:00: root bus resource [io  0x0d00-0x3fff window]
[    3.018891] pci_bus 0000:00: root bus resource [mem 0xe1000000-0xfebfffff window]
[    3.022891] pci_bus 0000:00: root bus resource [mem 0x63dc0000000-0x7fcffffffff window]
[    3.026891] pci_bus 0000:00: root bus resource [bus 00-3f]
[    3.030905] pci 0000:00:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.035045] pci 0000:00:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.039002] pci 0000:00:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.042985] pci 0000:00:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.046984] pci 0000:00:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.050985] pci 0000:00:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.054907] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.058894] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    3.062892] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    3.066960] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    3.071901] pci 0000:00:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.074986] pci 0000:00:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.078985] pci 0000:00:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.082985] pci 0000:00:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.086907] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.090895] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    3.094902] pci 0000:00:07.1: enabling Extended Tags
[    3.098939] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    3.103048] pci 0000:00:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.106988] pci 0000:00:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.110907] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.114895] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    3.118903] pci 0000:00:08.1: enabling Extended Tags
[    3.122941] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    3.127082] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
[    3.131007] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
[    3.135062] pci 0000:00:18.0: [1022:1650] type 00 class 0x060000 conventional PCI endpoint
[    3.138998] pci 0000:00:18.1: [1022:1651] type 00 class 0x060000 conventional PCI endpoint
[    3.142960] pci 0000:00:18.2: [1022:1652] type 00 class 0x060000 conventional PCI endpoint
[    3.146957] pci 0000:00:18.3: [1022:1653] type 00 class 0x060000 conventional PCI endpoint
[    3.150956] pci 0000:00:18.4: [1022:1654] type 00 class 0x060000 conventional PCI endpoint
[    3.154956] pci 0000:00:18.5: [1022:1655] type 00 class 0x060000 conventional PCI endpoint
[    3.158960] pci 0000:00:18.6: [1022:1656] type 00 class 0x060000 conventional PCI endpoint
[    3.162956] pci 0000:00:18.7: [1022:1657] type 00 class 0x060000 conventional PCI endpoint
[    3.167027] pci 0000:01:00.0: [1000:0097] type 00 class 0x010700 PCIe Endpoint
[    3.170921] pci 0000:01:00.0: BAR 0 [io  0x1000-0x10ff]
[    3.174893] pci 0000:01:00.0: BAR 1 [mem 0xf7400000-0xf740ffff 64bit]
[    3.178893] pci 0000:01:00.0: BAR 3 [mem 0xf7300000-0xf73fffff 64bit]
[    3.182893] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]
[    3.186896] pci 0000:01:00.0: enabling Extended Tags
[    3.190977] pci 0000:01:00.0: supports D1 D2
[    3.194932] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[    3.198891] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x000fffff 64bit]: contains BAR 0 for 16 VFs
[    3.202893] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x000fffff 64bit]
[    3.206891] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x00ffffff 64bit]: contains BAR 2 for 16 VFs
[    3.211042] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.214980] pci 0000:02:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.218924] pci 0000:02:00.0: enabling Extended Tags
[    3.223053] pci 0000:02:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.226919] pci 0000:02:00.2: BAR 2 [mem 0xf7200000-0xf727ffff]
[    3.230893] pci 0000:02:00.2: BAR 5 [mem 0xf7280000-0xf7281fff]
[    3.234896] pci 0000:02:00.2: enabling Extended Tags
[    3.239094] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.243029] pci 0000:03:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.246927] pci 0000:03:00.0: enabling Extended Tags
[    3.251103] pci 0000:03:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.254922] pci 0000:03:00.2: BAR 2 [mem 0xf7100000-0xf717ffff]
[    3.258893] pci 0000:03:00.2: BAR 5 [mem 0xf7180000-0xf7181fff]
[    3.262896] pci 0000:03:00.2: enabling Extended Tags
[    3.267085] pci 0000:03:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.270920] pci 0000:03:00.3: BAR 0 [mem 0xf7000000-0xf70fffff 64bit]
[    3.274899] pci 0000:03:00.3: enabling Extended Tags
[    3.278945] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
[    3.283073] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.291127] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 40-7f])
[    3.294894] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.299056] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.303207] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.306892] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.311823] PCI host bridge to bus 0000:40
[    3.314896] pci_bus 0000:40: root bus resource [io  0x4000-0x6fff window]
[    3.318891] pci_bus 0000:40: root bus resource [mem 0x90000000-0xaaffffff window]
[    3.322891] pci_bus 0000:40: root bus resource [mem 0x47e80000000-0x63dbfffffff window]
[    3.326891] pci_bus 0000:40: root bus resource [bus 40-7f]
[    3.330900] pci 0000:40:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.334990] pci 0000:40:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.338992] pci 0000:40:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.342975] pci 0000:40:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.346977] pci 0000:40:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.350985] pci 0000:40:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.354908] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.358897] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    3.362984] pci 0000:40:03.1: PME# supported from D0 D3hot D3cold
[    3.382978] pci 0000:40:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.386914] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.390898] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    3.395015] pci 0000:40:03.2: PME# supported from D0 D3hot D3cold
[    3.411938] pci 0000:40:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.418910] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.422898] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    3.430987] pci 0000:40:03.3: PME# supported from D0 D3hot D3cold
[    3.449717] pci 0000:40:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.454914] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.458898] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    3.466964] pci 0000:40:03.4: PME# supported from D0 D3hot D3cold
[    3.484286] pci 0000:40:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.486991] pci 0000:40:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.491000] pci 0000:40:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.494986] pci 0000:40:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.498911] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.502897] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    3.506904] pci 0000:40:07.1: enabling Extended Tags
[    3.510933] pci 0000:40:07.1: PME# supported from D0 D3hot D3cold
[    3.519050] pci 0000:40:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.526985] pci 0000:40:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.534908] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.538895] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    3.546903] pci 0000:40:08.1: enabling Extended Tags
[    3.550940] pci 0000:40:08.1: PME# supported from D0 D3hot D3cold
[    3.555141] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.562976] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.566974] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.570972] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.574979] pci 0000:45:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.582924] pci 0000:45:00.0: enabling Extended Tags
[    3.591052] pci 0000:45:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.594920] pci 0000:45:00.2: BAR 2 [mem 0xa5300000-0xa537ffff]
[    3.602893] pci 0000:45:00.2: BAR 5 [mem 0xa5380000-0xa5381fff]
[    3.606896] pci 0000:45:00.2: enabling Extended Tags
[    3.615091] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.619027] pci 0000:46:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.626927] pci 0000:46:00.0: enabling Extended Tags
[    3.631101] pci 0000:46:00.1: [1022:1486] type 00 class 0x108000 PCIe Endpoint
[    3.638920] pci 0000:46:00.1: BAR 2 [mem 0xa5100000-0xa51fffff]
[    3.642893] pci 0000:46:00.1: BAR 5 [mem 0xa5282000-0xa5283fff]
[    3.650896] pci 0000:46:00.1: enabling Extended Tags
[    3.655086] pci 0000:46:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.662920] pci 0000:46:00.2: BAR 2 [mem 0xa5200000-0xa527ffff]
[    3.666893] pci 0000:46:00.2: BAR 5 [mem 0xa5280000-0xa5281fff]
[    3.674896] pci 0000:46:00.2: enabling Extended Tags
[    3.679086] pci 0000:46:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.686919] pci 0000:46:00.3: BAR 0 [mem 0xa5000000-0xa50fffff 64bit]
[    3.694899] pci 0000:46:00.3: enabling Extended Tags
[    3.698941] pci 0000:46:00.3: PME# supported from D0 D3hot D3cold
[    3.703075] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.711461] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 80-bf])
[    3.714896] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.727061] acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.735126] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.742891] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.751819] PCI host bridge to bus 0000:80
[    3.754895] pci_bus 0000:80: root bus resource [io  0x7000-0x9fff window]
[    3.762891] pci_bus 0000:80: root bus resource [mem 0xab000000-0xc5ffffff window]
[    3.770891] pci_bus 0000:80: root bus resource [mem 0x2bf40000000-0x47e7fffffff window]
[    3.778892] pci_bus 0000:80: root bus resource [bus 80-bf]
[    3.782900] pci 0000:80:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.790992] pci 0000:80:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.798992] pci 0000:80:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.806988] pci 0000:80:01.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.814908] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.818896] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    3.826983] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    3.847457] pci 0000:80:01.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.854914] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.858898] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    3.866964] pci 0000:80:01.2: PME# supported from D0 D3hot D3cold
[    3.886424] pci 0000:80:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.886989] pci 0000:80:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.890996] pci 0000:80:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.894980] pci 0000:80:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.899051] pci 0000:80:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.902982] pci 0000:80:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.906909] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.910895] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    3.914902] pci 0000:80:07.1: enabling Extended Tags
[    3.918931] pci 0000:80:07.1: PME# supported from D0 D3hot D3cold
[    3.923049] pci 0000:80:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.934988] pci 0000:80:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.938907] pci 0000:80:08.1: PCI bridge to [bus 84]
[    3.946896] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    3.950903] pci 0000:80:08.1: enabling Extended Tags
[    3.958941] pci 0000:80:08.1: PME# supported from D0 D3hot D3cold
[    3.963058] pci 0000:80:08.2: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.970907] pci 0000:80:08.2: PCI bridge to [bus 85]
[    3.974896] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    3.982903] pci 0000:80:08.2: enabling Extended Tags
[    3.986940] pci 0000:80:08.2: PME# supported from D0 D3hot D3cold
[    3.995131] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.998973] pci 0000:80:01.2: PCI bridge to [bus 82]
[    4.002981] pci 0000:83:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    4.010925] pci 0000:83:00.0: enabling Extended Tags
[    4.015050] pci 0000:83:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.022918] pci 0000:83:00.2: BAR 2 [mem 0xbfa00000-0xbfa7ffff]
[    4.030894] pci 0000:83:00.2: BAR 5 [mem 0xbfa80000-0xbfa81fff]
[    4.034896] pci 0000:83:00.2: enabling Extended Tags
[    4.039094] pci 0000:80:07.1: PCI bridge to [bus 83]
[    4.047024] pci 0000:84:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.054927] pci 0000:84:00.0: enabling Extended Tags
[    4.059104] pci 0000:84:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.066920] pci 0000:84:00.2: BAR 2 [mem 0xbf900000-0xbf97ffff]
[    4.070894] pci 0000:84:00.2: BAR 5 [mem 0xbf980000-0xbf981fff]
[    4.078896] pci 0000:84:00.2: enabling Extended Tags
[    4.083097] pci 0000:80:08.1: PCI bridge to [bus 84]
[    4.087026] pci 0000:85:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[    4.094923] pci 0000:85:00.0: BAR 5 [mem 0xbf800000-0xbf8007ff]
[    4.098896] pci 0000:85:00.0: enabling Extended Tags
[    4.106955] pci 0000:85:00.0: PME# supported from D3hot D3cold
[    4.111065] pci 0000:80:08.2: PCI bridge to [bus 85]
[    4.115609] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus c0-ff])
[    4.122911] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    4.135063] acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug AER DPC]
[    4.139216] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    4.150891] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
[    4.159670] PCI host bridge to bus 0000:c0
[    4.162895] pci_bus 0000:c0: root bus resource [io  0xa000-0xffff window]
[    4.170891] pci_bus 0000:c0: root bus resource [mem 0xc6000000-0xe0ffffff window]
[    4.174891] pci_bus 0000:c0: root bus resource [mem 0x10000000000-0x2bf3fffffff window]
[    4.182891] pci_bus 0000:c0: root bus resource [io  0x03b0-0x03df window]
[    4.190891] pci_bus 0000:c0: root bus resource [mem 0x000a0000-0x000bffff window]
[    4.198892] pci_bus 0000:c0: root bus resource [bus c0-ff]
[    4.202901] pci 0000:c0:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    4.210991] pci 0000:c0:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    4.222990] pci 0000:c0:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.230976] pci 0000:c0:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.238976] pci 0000:c0:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.246981] pci 0000:c0:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.254908] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.258897] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    4.266981] pci 0000:c0:03.1: PME# supported from D0 D3hot D3cold
[    4.286366] pci 0000:c0:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.290913] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.298897] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    4.302962] pci 0000:c0:03.2: PME# supported from D0 D3hot D3cold
[    4.321803] pci 0000:c0:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.322913] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.326896] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    4.331001] pci 0000:c0:03.3: PME# supported from D0 D3hot D3cold
[    4.348858] pci 0000:c0:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.350914] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.354898] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    4.359012] pci 0000:c0:03.4: PME# supported from D0 D3hot D3cold
[    4.380139] pci 0000:c0:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.383023] pci 0000:c0:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.386987] pci 0000:c0:05.1: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.390911] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.394903] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    4.398983] pci 0000:c0:05.1: PME# supported from D0 D3hot D3cold
[    4.403046] pci 0000:c0:05.2: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.406906] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.410896] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    4.414896] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.418936] pci 0000:c0:05.2: PME# supported from D0 D3hot D3cold
[    4.423034] pci 0000:c0:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.426983] pci 0000:c0:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.430906] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.434895] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    4.438902] pci 0000:c0:07.1: enabling Extended Tags
[    4.442937] pci 0000:c0:07.1: PME# supported from D0 D3hot D3cold
[    4.447041] pci 0000:c0:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.450981] pci 0000:c0:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.454906] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.458895] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    4.462903] pci 0000:c0:08.1: enabling Extended Tags
[    4.466938] pci 0000:c0:08.1: PME# supported from D0 D3hot D3cold
[    4.471134] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.474975] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.478986] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.482972] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.486991] pci 0000:c1:00.0: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.490936] pci 0000:c1:00.0: BAR 0 [mem 0xc7030000-0xc703ffff 64bit pref]
[    4.494893] pci 0000:c1:00.0: BAR 2 [mem 0xc7040000-0xc704ffff 64bit pref]
[    4.498894] pci 0000:c1:00.0: BAR 4 [mem 0xc7050000-0xc705ffff 64bit pref]
[    4.502892] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.506978] pci 0000:c1:00.0: PME# supported from D0 D3hot D3cold
[    4.510947] pci 0000:c1:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:c0:05.1 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
[    4.518959] pci 0000:c1:00.1: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.522936] pci 0000:c1:00.1: BAR 0 [mem 0xc7000000-0xc700ffff 64bit pref]
[    4.526893] pci 0000:c1:00.1: BAR 2 [mem 0xc7010000-0xc701ffff 64bit pref]
[    4.530893] pci 0000:c1:00.1: BAR 4 [mem 0xc7020000-0xc702ffff 64bit pref]
[    4.534892] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.538979] pci 0000:c1:00.1: PME# supported from D0 D3hot D3cold
[    4.550924] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.554974] pci 0000:c2:00.0: [1556:be00] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    4.558918] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.562898] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    4.566901] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.578907] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.582926] pci_bus 0000:c3: extended config space not accessible
[    4.586921] pci 0000:c3:00.0: [102b:0536] type 00 class 0x030000 conventional PCI endpoint
[    4.590937] pci 0000:c3:00.0: BAR 0 [mem 0xc6000000-0xc6ffffff pref]
[    4.594892] pci 0000:c3:00.0: BAR 1 [mem 0xda808000-0xda80bfff]
[    4.598892] pci 0000:c3:00.0: BAR 2 [mem 0xda000000-0xda7fffff]
[    4.602910] pci 0000:c3:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    4.607016] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.610991] pci 0000:c8:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    4.614923] pci 0000:c8:00.0: enabling Extended Tags
[    4.619054] pci 0000:c8:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.622917] pci 0000:c8:00.2: BAR 2 [mem 0xdbb00000-0xdbb7ffff]
[    4.626893] pci 0000:c8:00.2: BAR 5 [mem 0xdbb80000-0xdbb81fff]
[    4.630896] pci 0000:c8:00.2: enabling Extended Tags
[    4.639029] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.643024] pci 0000:c9:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.646926] pci 0000:c9:00.0: enabling Extended Tags
[    4.651100] pci 0000:c9:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.654920] pci 0000:c9:00.2: BAR 2 [mem 0xdba00000-0xdba7ffff]
[    4.658893] pci 0000:c9:00.2: BAR 5 [mem 0xdba80000-0xdba81fff]
[    4.662896] pci 0000:c9:00.2: enabling Extended Tags
[    4.667100] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.677999] iommu: Default domain type: Translated
[    4.678892] iommu: DMA domain TLB invalidation policy: lazy mode
[    4.687185] SCSI subsystem initialized
[    4.690934] ACPI: bus type USB registered
[    4.694914] usbcore: registered new interface driver usbfs
[    4.698901] usbcore: registered new interface driver hub
[    4.702929] usbcore: registered new device driver usb
[    4.706925] pps_core: LinuxPPS API ver. 1 registered
[    4.710891] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux•it>
[    4.714896] PTP clock support registered
[    4.718971] EDAC MC: Ver: 3.0.0
[    4.723105] efivars: Registered efivars operations
[    4.732767] NetLabel: Initializing
[    4.734893] NetLabel:  domain hash size = 128
[    4.738891] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    4.742913] NetLabel:  unlabeled traffic allowed by default
[    4.746937] PCI: Using ACPI for IRQ routing
[    4.757389] pci 0000:c3:00.0: vgaarb: setting as boot VGA device
[    4.758889] pci 0000:c3:00.0: vgaarb: bridge control possible
[    4.758889] pci 0000:c3:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    4.758892] vgaarb: loaded
[    4.763030] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    4.766891] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    4.773120] clocksource: Switched to clocksource tsc-early
[    4.776710] VFS: Disk quotas dquot_6.6.0
[    4.780658] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.787789] AppArmor: AppArmor Filesystem Enabled
[    4.792519] pnp: PnP ACPI init
[    4.795827] system 00:00: [mem 0x80000000-0x8fffffff] has been reserved
[    4.802533] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[    4.810746] pnp: PnP ACPI: found 5 devices
[    4.821975] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    4.830946] NET: Registered PF_INET protocol family
[    4.835958] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.847716] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.856676] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    4.864706] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.874199] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.882578] TCP: Hash tables configured (established 524288 bind 65536)
[    4.889560] UDP hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.897986] UDP-Lite hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.906815] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    4.912486] NET: Registered PF_XDP protocol family
[    4.917282] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.927099] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.936926] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.946750] pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
[    4.952426] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: can't assign; no space
[    4.960171] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: failed to assign
[    4.967391] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: can't assign; no space
[    4.975648] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: failed to assign
[    4.983387] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: can't assign; no space
[    4.991649] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: failed to assign
[    4.999388] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.004354] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    5.010445] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    5.017234] pci 0000:00:07.1: PCI bridge to [bus 02]
[    5.022197] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    5.028986] pci 0000:00:08.1: PCI bridge to [bus 03]
[    5.033952] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.040738] PCI: No. 2 try to assign unassigned res
[    5.045617] pci 0000:00:03.2: resource 14 [mem 0xf7300000-0xf74fffff] released
[    5.052832] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.057803] pci 0000:00:03.2: bridge window [mem 0x00100000-0x002fffff] to [bus 01] add_size 1200000 add_align 100000
[    5.068412] pci 0000:00:03.2: bridge window [mem 0xe1000000-0xe23fffff]: assigned
[    5.075896] pci 0000:01:00.0: BAR 3 [mem 0xe1000000-0xe10fffff 64bit]: assigned
[    5.083206] pci 0000:01:00.0: ROM [mem 0xe1100000-0xe11fffff pref]: assigned
[    5.090256] pci 0000:01:00.0: VF BAR 2 [mem 0xe1200000-0xe21fffff 64bit]: assigned
[    5.097824] pci 0000:01:00.0: BAR 1 [mem 0xe2200000-0xe220ffff 64bit]: assigned
[    5.105132] pci 0000:01:00.0: VF BAR 0 [mem 0xe2210000-0xe230ffff 64bit]: assigned
[    5.112705] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.117668] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    5.123762] pci 0000:00:03.2:   bridge window [mem 0xe1000000-0xe23fffff]
[    5.130550] pci 0000:00:07.1: PCI bridge to [bus 02]
[    5.135521] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    5.142311] pci 0000:00:08.1: PCI bridge to [bus 03]
[    5.147310] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.154132] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    5.160317] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    5.166496] pci_bus 0000:00: resource 6 [mem 0x000c0000-0x000fffff window]
[    5.173368] pci_bus 0000:00: resource 7 [io  0x0d00-0x3fff window]
[    5.179547] pci_bus 0000:00: resource 8 [mem 0xe1000000-0xfebfffff window]
[    5.186420] pci_bus 0000:00: resource 9 [mem 0x63dc0000000-0x7fcffffffff window]
[    5.193811] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[    5.199384] pci_bus 0000:01: resource 1 [mem 0xe1000000-0xe23fffff]
[    5.205650] pci_bus 0000:02: resource 1 [mem 0xf7200000-0xf72fffff]
[    5.211917] pci_bus 0000:03: resource 1 [mem 0xf7000000-0xf71fffff]
[    5.218259] pci 0000:40:03.1: bridge window [io  0x1000-0x0fff] to [bus 41] add_size 1000
[    5.226434] pci 0000:40:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 41] add_size 200000 add_align 100000
[    5.237898] pci 0000:40:03.2: bridge window [io  0x1000-0x0fff] to [bus 42] add_size 1000
[    5.246069] pci 0000:40:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 42] add_size 200000 add_align 100000
[    5.257555] pci 0000:40:03.3: bridge window [io  0x1000-0x0fff] to [bus 43] add_size 1000
[    5.265729] pci 0000:40:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 43] add_size 200000 add_align 100000
[    5.277192] pci 0000:40:03.4: bridge window [io  0x1000-0x0fff] to [bus 44] add_size 1000
[    5.285366] pci 0000:40:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 44] add_size 200000 add_align 100000
[    5.296840] pci 0000:40:03.1: bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]: assigned
[    5.305793] pci 0000:40:03.2: bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]: assigned
[    5.314744] pci 0000:40:03.3: bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]: assigned
[    5.323697] pci 0000:40:03.4: bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]: assigned
[    5.332652] pci 0000:40:03.1: bridge window [io  0x4000-0x4fff]: assigned
[    5.339441] pci 0000:40:03.2: bridge window [io  0x5000-0x5fff]: assigned
[    5.346229] pci 0000:40:03.3: bridge window [io  0x6000-0x6fff]: assigned
[    5.353017] pci 0000:40:03.4: bridge window [io  size 0x1000]: can't assign; no space
[    5.360842] pci 0000:40:03.4: bridge window [io  size 0x1000]: failed to assign
[    5.368150] pci 0000:40:03.4: bridge window [io  0x4000-0x4fff]: assigned
[    5.374937] pci 0000:40:03.3: bridge window [io  0x5000-0x5fff]: assigned
[    5.381722] pci 0000:40:03.2: bridge window [io  0x6000-0x6fff]: assigned
[    5.388506] pci 0000:40:03.1: bridge window [io  size 0x1000]: can't assign; no space
[    5.396332] pci 0000:40:03.1: bridge window [io  size 0x1000]: failed to assign
[    5.403638] pci 0000:40:03.1: PCI bridge to [bus 41]
[    5.408607] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    5.415392] pci 0000:40:03.1:   bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.423653] pci 0000:40:03.2: PCI bridge to [bus 42]
[    5.428623] pci 0000:40:03.2:   bridge window [io  0x6000-0x6fff]
[    5.434716] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    5.441503] pci 0000:40:03.2:   bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.449763] pci 0000:40:03.3: PCI bridge to [bus 43]
[    5.454728] pci 0000:40:03.3:   bridge window [io  0x5000-0x5fff]
[    5.460857] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    5.467643] pci 0000:40:03.3:   bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.475902] pci 0000:40:03.4: PCI bridge to [bus 44]
[    5.480869] pci 0000:40:03.4:   bridge window [io  0x4000-0x4fff]
[    5.486961] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    5.493746] pci 0000:40:03.4:   bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.502008] pci 0000:40:07.1: PCI bridge to [bus 45]
[    5.506978] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    5.513768] pci 0000:40:08.1: PCI bridge to [bus 46]
[    5.518740] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    5.525529] pci_bus 0000:40: Some PCI device resources are unassigned, try booting with pci=realloc
[    5.534571] pci_bus 0000:40: resource 4 [io  0x4000-0x6fff window]
[    5.540751] pci_bus 0000:40: resource 5 [mem 0x90000000-0xaaffffff window]
[    5.547624] pci_bus 0000:40: resource 6 [mem 0x47e80000000-0x63dbfffffff window]
[    5.555017] pci_bus 0000:41: resource 1 [mem 0xa4c00000-0xa4ffffff]
[    5.561293] pci_bus 0000:41: resource 2 [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.569030] pci_bus 0000:42: resource 0 [io  0x6000-0x6fff]
[    5.574601] pci_bus 0000:42: resource 1 [mem 0xa4800000-0xa4bfffff]
[    5.580866] pci_bus 0000:42: resource 2 [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.588610] pci_bus 0000:43: resource 0 [io  0x5000-0x5fff]
[    5.594179] pci_bus 0000:43: resource 1 [mem 0xa4400000-0xa47fffff]
[    5.600445] pci_bus 0000:43: resource 2 [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.608186] pci_bus 0000:44: resource 0 [io  0x4000-0x4fff]
[    5.613759] pci_bus 0000:44: resource 1 [mem 0xa4000000-0xa43fffff]
[    5.620024] pci_bus 0000:44: resource 2 [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.627764] pci_bus 0000:45: resource 1 [mem 0xa5300000-0xa53fffff]
[    5.634030] pci_bus 0000:46: resource 1 [mem 0xa5000000-0xa52fffff]
[    5.640361] pci 0000:80:01.1: bridge window [io  0x1000-0x0fff] to [bus 81] add_size 1000
[    5.648539] pci 0000:80:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 81] add_size 200000 add_align 100000
[    5.660003] pci 0000:80:01.2: bridge window [io  0x1000-0x0fff] to [bus 82] add_size 1000
[    5.668200] pci 0000:80:01.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 82] add_size 200000 add_align 100000
[    5.679672] pci 0000:80:01.1: bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]: assigned
[    5.688631] pci 0000:80:01.2: bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]: assigned
[    5.697584] pci 0000:80:01.1: bridge window [io  0x7000-0x7fff]: assigned
[    5.704366] pci 0000:80:01.2: bridge window [io  0x8000-0x8fff]: assigned
[    5.711154] pci 0000:80:01.1: PCI bridge to [bus 81]
[    5.716121] pci 0000:80:01.1:   bridge window [io  0x7000-0x7fff]
[    5.722218] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    5.729008] pci 0000:80:01.1:   bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.737267] pci 0000:80:01.2: PCI bridge to [bus 82]
[    5.742232] pci 0000:80:01.2:   bridge window [io  0x8000-0x8fff]
[    5.748326] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    5.755110] pci 0000:80:01.2:   bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.763374] pci 0000:80:07.1: PCI bridge to [bus 83]
[    5.768382] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    5.775168] pci 0000:80:08.1: PCI bridge to [bus 84]
[    5.780132] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    5.786922] pci 0000:80:08.2: PCI bridge to [bus 85]
[    5.791892] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    5.798682] pci_bus 0000:80: resource 4 [io  0x7000-0x9fff window]
[    5.804869] pci_bus 0000:80: resource 5 [mem 0xab000000-0xc5ffffff window]
[    5.811749] pci_bus 0000:80: resource 6 [mem 0x2bf40000000-0x47e7fffffff window]
[    5.819140] pci_bus 0000:81: resource 0 [io  0x7000-0x7fff]
[    5.824711] pci_bus 0000:81: resource 1 [mem 0xbf400000-0xbf7fffff]
[    5.830978] pci_bus 0000:81: resource 2 [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.838715] pci_bus 0000:82: resource 0 [io  0x8000-0x8fff]
[    5.844291] pci_bus 0000:82: resource 1 [mem 0xbf000000-0xbf3fffff]
[    5.850559] pci_bus 0000:82: resource 2 [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.858304] pci_bus 0000:83: resource 1 [mem 0xbfa00000-0xbfafffff]
[    5.864569] pci_bus 0000:84: resource 1 [mem 0xbf900000-0xbf9fffff]
[    5.870871] pci_bus 0000:85: resource 1 [mem 0xbf800000-0xbf8fffff]
[    5.877221] pci 0000:c0:03.1: bridge window [io  0x1000-0x0fff] to [bus c4] add_size 1000
[    5.885401] pci 0000:c0:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c4] add_size 200000 add_align 100000
[    5.896885] pci 0000:c0:03.2: bridge window [io  0x1000-0x0fff] to [bus c5] add_size 1000
[    5.905074] pci 0000:c0:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c5] add_size 200000 add_align 100000
[    5.916548] pci 0000:c0:03.3: bridge window [io  0x1000-0x0fff] to [bus c6] add_size 1000
[    5.924723] pci 0000:c0:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c6] add_size 200000 add_align 100000
[    5.936187] pci 0000:c0:03.4: bridge window [io  0x1000-0x0fff] to [bus c7] add_size 1000
[    5.944360] pci 0000:c0:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c7] add_size 200000 add_align 100000
[    5.955829] pci 0000:c0:05.1: bridge window [mem 0x00100000-0x000fffff] to [bus c1] add_size 100000 add_align 100000
[    5.966350] pci 0000:c0:03.1: bridge window [mem 0x10000000000-0x100001fffff 64bit pref]: assigned
[    5.975300] pci 0000:c0:03.2: bridge window [mem 0x10000200000-0x100003fffff 64bit pref]: assigned
[    5.984287] pci 0000:c0:03.3: bridge window [mem 0x10000400000-0x100005fffff 64bit pref]: assigned
[    5.993242] pci 0000:c0:03.4: bridge window [mem 0x10000600000-0x100007fffff 64bit pref]: assigned
[    6.002194] pci 0000:c0:05.1: bridge window [mem 0xc7100000-0xc71fffff]: assigned
[    6.009671] pci 0000:c0:03.1: bridge window [io  0xa000-0xafff]: assigned
[    6.016459] pci 0000:c0:03.2: bridge window [io  0xb000-0xbfff]: assigned
[    6.023244] pci 0000:c0:03.3: bridge window [io  0xc000-0xcfff]: assigned
[    6.030030] pci 0000:c0:03.4: bridge window [io  0xd000-0xdfff]: assigned
[    6.036818] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    6.041784] pci 0000:c0:03.1:   bridge window [io  0xa000-0xafff]
[    6.047877] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    6.054662] pci 0000:c0:03.1:   bridge window [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.062923] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    6.067885] pci 0000:c0:03.2:   bridge window [io  0xb000-0xbfff]
[    6.073981] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    6.080790] pci 0000:c0:03.2:   bridge window [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.089053] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    6.094016] pci 0000:c0:03.3:   bridge window [io  0xc000-0xcfff]
[    6.100110] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    6.106894] pci 0000:c0:03.3:   bridge window [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.115157] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    6.120120] pci 0000:c0:03.4:   bridge window [io  0xd000-0xdfff]
[    6.126213] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    6.132999] pci 0000:c0:03.4:   bridge window [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.141301] pci 0000:c1:00.0: ROM [mem 0xc7100000-0xc713ffff pref]: assigned
[    6.148348] pci 0000:c1:00.1: ROM [mem 0xc7140000-0xc717ffff pref]: assigned
[    6.155390] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    6.160359] pci 0000:c0:05.1:   bridge window [mem 0xc7100000-0xc71fffff]
[    6.167146] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.174887] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    6.179850] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    6.186671] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.194413] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    6.199644] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    6.206431] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.214172] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    6.219137] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    6.225923] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    6.230886] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    6.237677] pci_bus 0000:c0: resource 4 [io  0xa000-0xffff window]
[    6.243860] pci_bus 0000:c0: resource 5 [mem 0xc6000000-0xe0ffffff window]
[    6.250734] pci_bus 0000:c0: resource 6 [mem 0x10000000000-0x2bf3fffffff window]
[    6.258126] pci_bus 0000:c0: resource 7 [io  0x03b0-0x03df window]
[    6.264304] pci_bus 0000:c0: resource 8 [mem 0x000a0000-0x000bffff window]
[    6.271179] pci_bus 0000:c4: resource 0 [io  0xa000-0xafff]
[    6.276750] pci_bus 0000:c4: resource 1 [mem 0xdb600000-0xdb9fffff]
[    6.283015] pci_bus 0000:c4: resource 2 [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.290789] pci_bus 0000:c5: resource 0 [io  0xb000-0xbfff]
[    6.296362] pci_bus 0000:c5: resource 1 [mem 0xdb200000-0xdb5fffff]
[    6.302627] pci_bus 0000:c5: resource 2 [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.310367] pci_bus 0000:c6: resource 0 [io  0xc000-0xcfff]
[    6.315942] pci_bus 0000:c6: resource 1 [mem 0xdae00000-0xdb1fffff]
[    6.322205] pci_bus 0000:c6: resource 2 [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.329947] pci_bus 0000:c7: resource 0 [io  0xd000-0xdfff]
[    6.335518] pci_bus 0000:c7: resource 1 [mem 0xdaa00000-0xdadfffff]
[    6.341784] pci_bus 0000:c7: resource 2 [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.349524] pci_bus 0000:c1: resource 1 [mem 0xc7100000-0xc71fffff]
[    6.355787] pci_bus 0000:c1: resource 2 [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.363013] pci_bus 0000:c2: resource 1 [mem 0xda000000-0xda8fffff]
[    6.369283] pci_bus 0000:c2: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.376501] pci_bus 0000:c3: resource 1 [mem 0xda000000-0xda8fffff]
[    6.382769] pci_bus 0000:c3: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.390024] pci_bus 0000:c8: resource 1 [mem 0xdbb00000-0xdbbfffff]
[    6.396289] pci_bus 0000:c9: resource 1 [mem 0xdba00000-0xdbafffff]
[    6.403651] PCI: CLS 64 bytes, default 64
[    6.407883] Trying to unpack rootfs image as initramfs...
[    6.468975] AMD-Vi: IOMMU SNP support enabled.
[    6.473603] pci 0000:c0:00.2: AMD-Vi: IOMMU performance counters supported
[    6.480630] pci 0000:c0:01.0: Adding to iommu group 0
[    6.485738] pci 0000:c0:02.0: Adding to iommu group 1
[    6.490959] pci 0000:c0:03.0: Adding to iommu group 2
[    6.496061] pci 0000:c0:03.1: Adding to iommu group 2
[    6.501164] pci 0000:c0:03.2: Adding to iommu group 2
[    6.506259] pci 0000:c0:03.3: Adding to iommu group 2
[    6.511355] pci 0000:c0:03.4: Adding to iommu group 2
[    6.516461] pci 0000:c0:04.0: Adding to iommu group 3
[    6.521610] pci 0000:c0:05.0: Adding to iommu group 4
[    6.526712] pci 0000:c0:05.1: Adding to iommu group 4
[    6.531811] pci 0000:c0:05.2: Adding to iommu group 4
[    6.536923] pci 0000:c0:07.0: Adding to iommu group 5
[    6.542004] pci 0000:c0:07.1: Adding to iommu group 6
[    6.547118] pci 0000:c0:08.0: Adding to iommu group 7
[    6.552206] pci 0000:c0:08.1: Adding to iommu group 8
[    6.557265] pci 0000:c1:00.0: Adding to iommu group 4
[    6.562327] pci 0000:c1:00.1: Adding to iommu group 4
[    6.567389] pci 0000:c2:00.0: Adding to iommu group 4
[    6.572455] pci 0000:c3:00.0: Adding to iommu group 4
[    6.577541] pci 0000:c8:00.0: Adding to iommu group 9
[    6.582627] pci 0000:c8:00.2: Adding to iommu group 10
[    6.587799] pci 0000:c9:00.0: Adding to iommu group 11
[    6.592978] pci 0000:c9:00.2: Adding to iommu group 12
[    6.604305] pci 0000:80:00.2: AMD-Vi: IOMMU performance counters supported
[    6.611351] pci 0000:80:01.0: Adding to iommu group 13
[    6.616534] pci 0000:80:01.1: Adding to iommu group 13
[    6.621711] pci 0000:80:01.2: Adding to iommu group 13
[    6.626907] pci 0000:80:02.0: Adding to iommu group 14
[    6.632098] pci 0000:80:03.0: Adding to iommu group 15
[    6.637295] pci 0000:80:04.0: Adding to iommu group 16
[    6.642489] pci 0000:80:05.0: Adding to iommu group 17
[    6.647683] pci 0000:80:07.0: Adding to iommu group 18
[    6.652864] pci 0000:80:07.1: Adding to iommu group 19
[    6.658056] pci 0000:80:08.0: Adding to iommu group 20
[    6.663234] pci 0000:80:08.1: Adding to iommu group 21
[    6.668410] pci 0000:80:08.2: Adding to iommu group 22
[    6.673582] pci 0000:83:00.0: Adding to iommu group 23
[    6.678762] pci 0000:83:00.2: Adding to iommu group 24
[    6.683939] pci 0000:84:00.0: Adding to iommu group 25
[    6.689114] pci 0000:84:00.2: Adding to iommu group 26
[    6.694311] pci 0000:85:00.0: Adding to iommu group 27
[    6.706491] pci 0000:40:00.2: AMD-Vi: IOMMU performance counters supported
[    6.713562] pci 0000:40:01.0: Adding to iommu group 28
[    6.718765] pci 0000:40:02.0: Adding to iommu group 29
[    6.724048] pci 0000:40:03.0: Adding to iommu group 30
[    6.729225] pci 0000:40:03.1: Adding to iommu group 30
[    6.734398] pci 0000:40:03.2: Adding to iommu group 30
[    6.739573] pci 0000:40:03.3: Adding to iommu group 30
[    6.744749] pci 0000:40:03.4: Adding to iommu group 30
[    6.749945] pci 0000:40:04.0: Adding to iommu group 31
[    6.755138] pci 0000:40:05.0: Adding to iommu group 32
[    6.760330] pci 0000:40:07.0: Adding to iommu group 33
[    6.765502] pci 0000:40:07.1: Adding to iommu group 34
[    6.770695] pci 0000:40:08.0: Adding to iommu group 35
[    6.775864] pci 0000:40:08.1: Adding to iommu group 36
[    6.781040] pci 0000:45:00.0: Adding to iommu group 37
[    6.786213] pci 0000:45:00.2: Adding to iommu group 38
[    6.791386] pci 0000:46:00.0: Adding to iommu group 39
[    6.796567] pci 0000:46:00.1: Adding to iommu group 40
[    6.801742] pci 0000:46:00.2: Adding to iommu group 41
[    6.806918] pci 0000:46:00.3: Adding to iommu group 42
[    6.818764] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    6.825823] pci 0000:00:00.0: Adding to iommu group 43
[    6.831024] pci 0000:00:01.0: Adding to iommu group 44
[    6.836222] pci 0000:00:02.0: Adding to iommu group 45
[    6.841414] pci 0000:00:03.0: Adding to iommu group 46
[    6.844577] Freeing initrd memory: 38564K
[    6.846586] pci 0000:00:03.2: Adding to iommu group 47
[    6.855759] pci 0000:00:04.0: Adding to iommu group 48
[    6.860957] pci 0000:00:05.0: Adding to iommu group 49
[    6.866155] pci 0000:00:07.0: Adding to iommu group 50
[    6.871326] pci 0000:00:07.1: Adding to iommu group 51
[    6.876523] pci 0000:00:08.0: Adding to iommu group 52
[    6.881701] pci 0000:00:08.1: Adding to iommu group 53
[    6.886921] pci 0000:00:14.0: Adding to iommu group 54
[    6.892090] pci 0000:00:14.3: Adding to iommu group 54
[    6.897460] pci 0000:00:18.0: Adding to iommu group 55
[    6.902630] pci 0000:00:18.1: Adding to iommu group 55
[    6.907803] pci 0000:00:18.2: Adding to iommu group 55
[    6.912978] pci 0000:00:18.3: Adding to iommu group 55
[    6.918151] pci 0000:00:18.4: Adding to iommu group 55
[    6.923325] pci 0000:00:18.5: Adding to iommu group 55
[    6.928499] pci 0000:00:18.6: Adding to iommu group 55
[    6.933674] pci 0000:00:18.7: Adding to iommu group 55
[    6.938847] pci 0000:01:00.0: Adding to iommu group 56
[    6.944022] pci 0000:02:00.0: Adding to iommu group 57
[    6.949198] pci 0000:02:00.2: Adding to iommu group 58
[    6.954371] pci 0000:03:00.0: Adding to iommu group 59
[    6.959542] pci 0000:03:00.2: Adding to iommu group 60
[    6.964718] pci 0000:03:00.3: Adding to iommu group 61
[    6.978846] AMD-Vi: Extended features (0x841f77e022094ace, 0x0): PPR X2APIC NX IA GA PC SNP
[    6.987210] AMD-Vi: Interrupt remapping enabled
[    6.991741] AMD-Vi: X2APIC enabled
[    6.996260] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    7.002706] software IO TLB: mapped [mem 0x000000005bf37000-0x0000000063f37000] (128MB)
[    7.010855] LVT offset 0 assigned for vector 0x400
[    7.017226] perf: AMD IBS detected (0x000003ff)
[    7.023119] amd_uncore: 4 amd_df counters detected
[    7.027957] amd_uncore: 6 amd_l3 counters detected
[    7.034458] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    7.041614] perf/amd_iommu: Detected AMD IOMMU #1 (2 banks, 4 counters/bank).
[    7.048778] perf/amd_iommu: Detected AMD IOMMU #2 (2 banks, 4 counters/bank).
[    7.055928] perf/amd_iommu: Detected AMD IOMMU #3 (2 banks, 4 counters/bank).
[    7.066318] Initialise system trusted keyrings
[    7.070770] Key type blacklist registered
[    7.074925] workingset: timestamp_bits=36 max_order=26 bucket_order=0
[    7.081880] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    7.087877] fuse: init (API version 7.44)
[    7.092149] integrity: Platform Keyring initialized
[    7.108949] Key type asymmetric registered
[    7.113046] Asymmetric key parser 'x509' registered
[    7.117960] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    7.125471] io scheduler mq-deadline registered
[    7.132559] ledtrig-cpu: registered to indicate activity on CPUs
[    7.138864] pcieport 0000:00:03.2: PME: Signaling with IRQ 38
[    7.145019] pcieport 0000:00:07.1: PME: Signaling with IRQ 40
[    7.150996] pcieport 0000:00:08.1: PME: Signaling with IRQ 41
[    7.156978] pcieport 0000:40:03.1: PME: Signaling with IRQ 42
[    7.162777] pcieport 0000:40:03.1: pciehp: Slot #167 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.176811] pcieport 0000:40:03.2: PME: Signaling with IRQ 43
[    7.182613] pcieport 0000:40:03.2: pciehp: Slot #166 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.196612] pcieport 0000:40:03.3: PME: Signaling with IRQ 44
[    7.202414] pcieport 0000:40:03.3: pciehp: Slot #169 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.216430] pcieport 0000:40:03.4: PME: Signaling with IRQ 45
[    7.222224] pcieport 0000:40:03.4: pciehp: Slot #168 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.236357] pcieport 0000:40:07.1: PME: Signaling with IRQ 47
[    7.242322] pcieport 0000:40:08.1: PME: Signaling with IRQ 48
[    7.248457] pcieport 0000:80:01.1: PME: Signaling with IRQ 49
[    7.254260] pcieport 0000:80:01.1: pciehp: Slot #160 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.268282] pcieport 0000:80:01.2: PME: Signaling with IRQ 50
[    7.274076] pcieport 0000:80:01.2: pciehp: Slot #161 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.288218] pcieport 0000:80:07.1: PME: Signaling with IRQ 52
[    7.294276] pcieport 0000:80:08.1: PME: Signaling with IRQ 54
[    7.300325] pcieport 0000:80:08.2: PME: Signaling with IRQ 55
[    7.306289] pcieport 0000:c0:03.1: PME: Signaling with IRQ 56
[    7.312093] pcieport 0000:c0:03.1: pciehp: Slot #163 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.326087] pcieport 0000:c0:03.2: PME: Signaling with IRQ 57
[    7.331900] pcieport 0000:c0:03.2: pciehp: Slot #162 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.345899] pcieport 0000:c0:03.3: PME: Signaling with IRQ 58
[    7.351701] pcieport 0000:c0:03.3: pciehp: Slot #165 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.365702] pcieport 0000:c0:03.4: PME: Signaling with IRQ 59
[    7.371502] pcieport 0000:c0:03.4: pciehp: Slot #164 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.385486] pcieport 0000:c0:05.1: PME: Signaling with IRQ 60
[    7.391442] pcieport 0000:c0:05.2: PME: Signaling with IRQ 61
[    7.397500] pcieport 0000:c0:07.1: PME: Signaling with IRQ 63
[    7.403542] pcieport 0000:c0:08.1: PME: Signaling with IRQ 65
[    7.410306] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    7.417781] ACPI: button: Power Button [PWRF]
[    7.859780] Estimated ratio of average max frequency by base frequency (times 1024): 1464
[    7.868319] ERST: Error Record Serialization Table (ERST) support is initialized.
[    7.875822] pstore: Using crash dump compression: deflate
[    7.881224] pstore: Registered erst as persistent store backend
[    7.887293] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    7.893865] 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    7.902059] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    7.913126] Linux agpgart interface v0.103
[    7.943540] loop: module loaded
[    7.957999] ahci 0000:85:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[    7.966005] ahci 0000:85:00.0: 8/8 ports implemented (port mask 0xff)
[    7.972450] ahci 0000:85:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part sxs 
[    7.982767] scsi host0: ahci
[    7.985899] scsi host1: ahci
[    7.989000] scsi host2: ahci
[    7.992096] scsi host3: ahci
[    7.995199] scsi host4: ahci
[    7.998309] scsi host5: ahci
[    8.001409] scsi host6: ahci
[    8.004510] scsi host7: ahci
[    8.007464] ata1: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800100 irq 67 lpm-pol 0 ext
[    8.016078] ata2: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800180 irq 68 lpm-pol 0 ext
[    8.024693] ata3: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800200 irq 69 lpm-pol 0 ext
[    8.033294] ata4: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800280 irq 70 lpm-pol 0 ext
[    8.041901] ata5: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800300 irq 71 lpm-pol 0 ext
[    8.050506] ata6: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800380 irq 72 lpm-pol 0 ext
[    8.059117] ata7: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800400 irq 73 lpm-pol 0 ext
[    8.067729] ata8: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800480 irq 74 lpm-pol 0 ext
[    8.076791] tun: Universal TUN/TAP device driver, 1.6
[    8.081915] PPP generic driver version 2.4.2
[    8.086369] VFIO - User Level meta-driver version: 0.3
[    8.091520] tsc: Refined TSC clocksource calibration: 1996.249 MHz
[    8.097754] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398cadd9d93, max_idle_ns: 881590552906 ns
[    8.098278] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.113012] clocksource: Switched to clocksource tsc
[    8.113014] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 1
[    8.125490] xhci_hcd 0000:03:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.135044] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.140283] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 2
[    8.147679] xhci_hcd 0000:03:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.154774] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.163041] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.170265] usb usb1: Product: xHCI Host Controller
[    8.175197] usb usb1: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.184161] usb usb1: SerialNumber: 0000:03:00.3
[    8.188974] hub 1-0:1.0: USB hub found
[    8.192738] hub 1-0:1.0: 2 ports detected
[    8.197613] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.205733] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.213996] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.221228] usb usb2: Product: xHCI Host Controller
[    8.226109] usb usb2: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.235063] usb usb2: SerialNumber: 0000:03:00.3
[    8.239827] hub 2-0:1.0: USB hub found
[    8.243589] hub 2-0:1.0: 2 ports detected
[    8.248537] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.253768] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 3
[    8.261263] xhci_hcd 0000:46:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.270788] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.276030] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 4
[    8.283431] xhci_hcd 0000:46:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.290523] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.298787] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.306004] usb usb3: Product: xHCI Host Controller
[    8.310884] usb usb3: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.319837] usb usb3: SerialNumber: 0000:46:00.3
[    8.324619] hub 3-0:1.0: USB hub found
[    8.328385] hub 3-0:1.0: 2 ports detected
[    8.333195] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.341317] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.349581] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.356802] usb usb4: Product: xHCI Host Controller
[    8.361687] usb usb4: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.370639] usb usb4: SerialNumber: 0000:46:00.3
[    8.375405] hub 4-0:1.0: USB hub found
[    8.379192] hub 4-0:1.0: 2 ports detected
[    8.384282] usbcore: registered new interface driver uas
[    8.386681] ata3: SATA link down (SStatus 0 SControl 300)
[    8.389630] usbcore: registered new interface driver usb-storage
[    8.395022] ata5: SATA link down (SStatus 0 SControl 300)
[    8.401041] i8042: PNP: No PS/2 controller found.
[    8.406428] ata7: SATA link down (SStatus 0 SControl 300)
[    8.411202] mousedev: PS/2 mouse device common for all mice
[    8.416535] ata4: SATA link down (SStatus 0 SControl 300)
[    8.422193] rtc_cmos 00:02: RTC can wake from S4
[    8.427506] ata2: SATA link down (SStatus 0 SControl 300)
[    8.432477] rtc_cmos 00:02: registered as rtc0
[    8.437525] ata8: SATA link down (SStatus 0 SControl 300)
[    8.442018] rtc_cmos 00:02: setting system clock to 2025-06-17T14:11:32 UTC (1750169492)
[    8.444255] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[    8.447369] ata6: SATA link down (SStatus 0 SControl 300)
[    8.455469] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram
[    8.461980] ata1: SATA link down (SStatus 0 SControl 300)
[    8.467366] i2c_dev: i2c /dev entries driver
[    8.483776] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    8.495974] device-mapper: uevent: version 1.0.3
[    8.500703] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists•linux.dev
[    8.509574] amd_pstate: driver load is disabled, boot with specific mode to enable this
[    8.517623] efifb: probing for efifb
[    8.521217] efifb: No BGRT, not showing boot graphics
[    8.526269] efifb: framebuffer at 0xc6000000, using 3072k, total 3072k
[    8.532797] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    8.538800] efifb: scrolling: redraw
[    8.542380] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    8.548008] fbcon: Deferring console take-over
[    8.552455] fb0: EFI VGA frame buffer device
[    8.556836] drop_monitor: Initializing network drop monitor service
[    8.563272] NET: Registered PF_INET6 protocol family
[    8.575250] Segment Routing with IPv6
[    8.578931] In-situ OAM (IOAM) with IPv6
[    8.580257] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[    8.582924] NET: Registered PF_PACKET protocol family
[    8.583123] usb 1-1: New USB device found, idVendor=0424, idProduct=2744, bcdDevice= 1.21
[    8.583126] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    8.583128] usb 1-1: Product: USB2734
[    8.583130] usb 1-1: Manufacturer: Microchip Tech
[    8.618228] Key type dns_resolver registered
[    8.634598] x86/amd: Previous system reset reason [0x00080800]: software wrote 0x6 to reset control register 0xCF9
[    8.635205] hub 1-1:1.0: USB hub found
[    8.644954] microcode: Current revision: 0x0a0011d5
[    8.648878] hub 1-1:1.0: 4 ports detected
[    8.653580] microcode: Updated early from: 0x0a0011d5
[    8.665576] resctrl: L3 allocation detected
[    8.669762] resctrl: MB allocation detected
[    8.673945] resctrl: L3 monitoring detected
[    8.678302] IPI shorthand broadcast: enabled
[    8.686396] sched_clock: Marking stable (8620001267, 64239222)->(9556541973, -872301484)
[    8.695092] registered taskstats version 1
[    8.700372] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
[    8.709179] Loading compiled-in X.509 certificates
[    8.714472] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.720709] usb 2-1: New USB device found, idVendor=0424, idProduct=5744, bcdDevice= 1.21
[    8.725158] usb 3-1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    8.732557] usb 2-1: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[    8.740732] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.755013] usb 2-1: Product: USB5734
[    8.758681] usb 2-1: Manufacturer: Microchip Tech
[    8.763405] Demotion targets for Node 0: null
[    8.767772] Demotion targets for Node 1: null
[    8.772617] Key type .fscrypt registered
[    8.776541] Key type fscrypt-provisioning registered
[    8.795117] hub 2-1:1.0: USB hub found
[    8.798469] Key type encrypted registered
[    8.799204] hub 2-1:1.0: 4 ports detected
[    8.802878] hub 3-1:1.0: USB hub found
[    8.802904] AppArmor: AppArmor sha256 policy hashing enabled
[    8.803034] hub 3-1:1.0: 4 ports detected
[    8.820424] integrity: Loading X.509 certificate: UEFI:db
[    8.825848] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    8.836624] integrity: Loading X.509 certificate: UEFI:db
[    8.842038] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    8.853073] integrity: Loading X.509 certificate: UEFI:db
[    8.858582] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    8.867451] integrity: Loading X.509 certificate: UEFI:db
[    8.872981] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    8.884553] ima: No TPM chip found, activating TPM-bypass!
[    8.890038] Loading compiled-in module X.509 certificates
[    8.895847] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.905755] ima: Allocated hash algorithm: sha1
[    8.910295] ima: No architecture policies found
[    8.914843] evm: Initialising EVM extended attributes:
[    8.919978] evm: security.selinux
[    8.923299] evm: security.SMACK64
[    8.926617] evm: security.SMACK64EXEC
[    8.930283] evm: security.SMACK64TRANSMUTE
[    8.934381] evm: security.SMACK64MMAP
[    8.938048] evm: security.apparmor
[    8.941452] evm: security.ima
[    8.944424] evm: security.capability
[    8.948004] evm: HMAC attrs: 0x1
[    8.951616] PM:   Magic number: 13:378:182
[    8.955889] acpi device:41: hash matches
[    8.960257] RAS: Correctable Errors collector initialized.
[    8.965887] clk: Disabling unused clocks
[    8.969820] PM: genpd: Disabling unused power domains
[    8.976602] Freeing unused decrypted memory: 2028K
[    8.982190] Freeing unused kernel image (initmem) memory: 4760K
[    8.988128] Write protecting the kernel read-only data: 26624k
[    8.994399] Freeing unused kernel image (text/rodata gap) memory: 28K
[    9.001015] Freeing unused kernel image (rodata/data gap) memory: 248K
[    9.094577] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    9.101026] Run /init as init process
[    9.111399] systemd[1]: Inserted module 'autofs4'
[    9.337734] systemd[1]: systemd 252-46.el9_5.3 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)
[    9.370189] systemd[1]: Detected architecture x86-64.
[    9.375248] systemd[1]: Running in initrd.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow) dracut-057-80.git20250411.el9_5 (Initramfs)^[[0m!

[    9.396338] systemd[1]: Hostname set to <sharavati.amd.com>.
[    9.510432] systemd[1]: Queued start job for default target Initrd Default Target.
[    9.518121] systemd[1]: Reached target Initrd /usr File System.
[    9.520251] usb 3-1.1: new high-speed USB device number 3 using xhci_hcd
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd /usr File System^[[0m.
[    9.548305] systemd[1]: Reached target Local File Systems.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
[    9.568314] systemd[1]: Reached target Slice Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSlice Units^[[0m.
[    9.584307] systemd[1]: Reached target Swaps.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwaps^[[0m.
[    9.600303] systemd[1]: Reached target Timer Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[    9.616435] systemd[1]: Listening on D-Bus System Message Bus Socket.
[    9.621163] usb 3-1.1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    9.631227] usb 3-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[    9.648457] systemd[1]: Listening on Journal Socket (/dev/log).
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket (/dev/log)^[[0m.
[    9.664453] systemd[1]: Listening on Journal Socket.
[    9.666880] hub 3-1.1:1.0: USB hub found
[^[[0;32m  OK  ^[[[    9.673536] hub 3-1.1:1.0: 4 ports detected
0m] Listening on ^[[0;1;39mJournal Socket^[[0m.
[    9.688451] systemd[1]: Listening on udev Control Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[    9.708408] systemd[1]: Listening on udev Kernel Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
[    9.724304] systemd[1]: Reached target Socket Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
[    9.752253] usb 3-1.4: new high-speed USB device number 4 using xhci_hcd
[    9.765987] systemd[1]: Starting Create List of Static Device Nodes...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
[    9.786663] systemd[1]: Starting Journal Service...
         Starting ^[[0;1;39mJournal Service^[[0m...
[    9.801554] systemd[1]: Starting Load Kernel Modules...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
[    9.817317] systemd[1]: Starting Create System Users...
         Starting ^[[0;1;39mCreate System Users^[[0m...
[    9.833504] systemd[1]: Starting Setup Virtual Console...
         Starting ^[[0;1;39mSetup Virtual Console^[[0m...
[    9.845159] usb 3-1.4: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    9.853512] usb 3-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    9.854621] systemd[1]: Finished Create List of Static Device Nodes.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[    9.880582] systemd[1]: Started Journal Service.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSetup Virtual Console^[[0m.
[    9.922889] hub 3-1.4:1.0: USB hub found
[    9.927036] hub 3-1.4:1.0: 4 ports detected
         Starting ^[[0;1;39mdracut cmdline hook^[[0m...
         Starting ^[[0;1;39mApply Kernel Variables^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate System Users^[[0m.
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut cmdline hook^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Starting ^[[0;1;39mdracut pre-udev hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-udev hook^[[0m.
         Starting ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[   10.411524] wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQBC data block query control method not found
[^[[0;32m  OK  ^[[0m] Finished ^[[0[   10.422778] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
;1;39mColdplug A[   10.423248] ccp 0000:46:00.1: no command queues available
ll udev Devices^[[   10.429627] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[0m.
[   10.436458] ccp 0000:46:00.1: sev enabled
[   10.445011] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[   10.449361] ccp 0000:46:00.1: psp enabled
[   10.449578] mpt3sas version 52.100.00.00 loaded
[   10.457620] tg3 0000:c1:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:90
[   10.461133] mpt3sas_cm0: 63 BIT PCI BUS DMA ADDRESSING SUPPORTED, total mem (262592956 kB)
[   10.465103] tg3 0000:c1:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.493711] tg3 0000:c1:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.493716] tg3 0000:c1:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[^[[0;32m  OK  ^[[[   10.509518] ACPI: bus type drm_connector registered
0m] Reached target ^[[0;1;39mSystem Initializatio[   10.518067] tg3 0000:c1:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:91
n^[[0m.
[   10.522691] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   10.529235] tg3 0000:c1:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.537927] mpt3sas_cm0: MSI-X vectors supported: 96
[   10.547752] tg3 0000:c1:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.552714] 	 no of cores: 128, max_msix_vectors: -1
[   10.560537] tg3 0000:c1:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[   10.565503] mpt3sas_cm0:  0 96 96
[^[[0;32m  OK  ^[[[   10.575594] mgag200 0000:c3:00.0: vgaarb: deactivate vga console
[   10.579538] mpt3sas_cm0: High IOPs queues : disabled
0m] Reached targ[   10.587936] mpt3sas0-msix0: PCI-MSI-X enabled: IRQ 107
[   10.587939] mpt3sas0-msix1: PCI-MSI-X enabled: IRQ 108
et ^[[0;1;39mNetw[   10.587940] mpt3sas0-msix2: PCI-MSI-X enabled: IRQ 109
[   10.587941] mpt3sas0-msix3: PCI-MSI-X enabled: IRQ 110
ork^[[0m.
[   10.587943] mpt3sas0-msix4: PCI-MSI-X enabled: IRQ 111
[   10.617244] mpt3sas0-msix5: PCI-MSI-X enabled: IRQ 112
[   10.617246] mpt3sas0-msix6: PCI-MSI-X enabled: IRQ 113
[   10.617247] mpt3sas0-msix7: PCI-MSI-X enabled: IRQ 114
[   10.617248] mpt3sas0-msix8: PCI-MSI-X enabled: IRQ 115
[   10.617250] mpt3sas0-msix9: PCI-MSI-X enabled: IRQ 116
[   10.628510] [drm] Initialized mgag200 1.0.0 for 0000:c3:00.0 on minor 0
[   10.632668] mpt3sas0-msix10: PCI-MSI-X enabled: IRQ 117
[   10.632669] mpt3sas0-msix11: PCI-MSI-X enabled: IRQ 118
[   10.660013] mpt3sas0-msix12: PCI-MSI-X enabled: IRQ 119
[   10.660015] mpt3sas0-msix13: PCI-MSI-X enabled: IRQ 120
[   10.660016] mpt3sas0-msix14: PCI-MSI-X enabled: IRQ 121
[   10.660017] mpt3sas0-msix15: PCI-MSI-X enabled: IRQ 122
[   10.660019] mpt3sas0-msix16: PCI-MSI-X enabled: IRQ 123
[   10.660019] fbcon: mgag200drmfb (fb0) is primary device
[   10.660021] mpt3sas0-msix17: PCI-MSI-X enabled: IRQ 124
[   10.660023] mpt3sas0-msix18: PCI-MSI-X enabled: IRQ 125
[   10.660023] fbcon: Deferring console take-over
[   10.660025] mpt3sas0-msix19: PCI-MSI-X enabled: IRQ 126
[   10.660027] mpt3sas0-msix20: PCI-MSI-X enabled: IRQ 127
[   10.665257] mgag200 0000:c3:00.0: [drm] fb0: mgag200drmfb frame buffer device
[   10.670481] mpt3sas0-msix21: PCI-MSI-X enabled: IRQ 128
[   10.729092] mpt3sas0-msix22: PCI-MSI-X enabled: IRQ 129
[   10.734323] mpt3sas0-msix23: PCI-MSI-X enabled: IRQ 130
[   10.739595] mpt3sas0-msix24: PCI-MSI-X enabled: IRQ 131
[   10.744823] mpt3sas0-msix25: PCI-MSI-X enabled: IRQ 132
[   10.750063] mpt3sas0-msix26: PCI-MSI-X enabled: IRQ 133
[   10.755293] mpt3sas0-msix27: PCI-MSI-X enabled: IRQ 134
[   10.760522] mpt3sas0-msix28: PCI-MSI-X enabled: IRQ 135
[   10.765753] mpt3sas0-msix29: PCI-MSI-X enabled: IRQ 136
[   10.770977] mpt3sas0-msix30: PCI-MSI-X enabled: IRQ 137
[   10.776204] mpt3sas0-msix31: PCI-MSI-X enabled: IRQ 138
[   10.781433] mpt3sas0-msix32: PCI-MSI-X enabled: IRQ 139
[   10.781435] mpt3sas0-msix33: PCI-MSI-X enabled: IRQ 140
[   10.781436] mpt3sas0-msix34: PCI-MSI-X enabled: IRQ 141
[   10.781438] mpt3sas0-msix35: PCI-MSI-X enabled: IRQ 142
[   10.781439] mpt3sas0-msix36: PCI-MSI-X enabled: IRQ 143
         Startin[   10.781441] mpt3sas0-msix37: PCI-MSI-X enabled: IRQ 144
g ^[[0;1;39mdracu[   10.814171] mpt3sas0-msix38: PCI-MSI-X enabled: IRQ 145
t initqueue hook[   10.820785] mpt3sas0-msix39: PCI-MSI-X enabled: IRQ 146
^[[0m...
[   10.827397] mpt3sas0-msix40: PCI-MSI-X enabled: IRQ 147
[   10.833404] mpt3sas0-msix41: PCI-MSI-X enabled: IRQ 148
[   10.838631] mpt3sas0-msix42: PCI-MSI-X enabled: IRQ 149
[   10.838632] mpt3sas0-msix43: PCI-MSI-X enabled: IRQ 150
[   10.838633] mpt3sas0-msix44: PCI-MSI-X enabled: IRQ 151
[   10.838635] mpt3sas0-msix45: PCI-MSI-X enabled: IRQ 152
[   10.838636] mpt3sas0-msix46: PCI-MSI-X enabled: IRQ 153
[   10.838637] mpt3sas0-msix47: PCI-MSI-X enabled: IRQ 154
[   10.838638] mpt3sas0-msix48: PCI-MSI-X enabled: IRQ 155
[   10.838640] mpt3sas0-msix49: PCI-MSI-X enabled: IRQ 156
[   10.838641] mpt3sas0-msix50: PCI-MSI-X enabled: IRQ 157
[   10.885680] mpt3sas0-msix51: PCI-MSI-X enabled: IRQ 158
[   10.885682] mpt3sas0-msix52: PCI-MSI-X enabled: IRQ 159
[   10.885683] mpt3sas0-msix53: PCI-MSI-X enabled: IRQ 160
[   10.885685] mpt3sas0-msix54: PCI-MSI-X enabled: IRQ 161
[   10.885686] mpt3sas0-msix55: PCI-MSI-X enabled: IRQ 162
[   10.885687] mpt3sas0-msix56: PCI-MSI-X enabled: IRQ 163
[   10.885688] mpt3sas0-msix57: PCI-MSI-X enabled: IRQ 164
[   10.885690] mpt3sas0-msix58: PCI-MSI-X enabled: IRQ 165
[   10.885691] mpt3sas0-msix59: PCI-MSI-X enabled: IRQ 166
         Startin[   10.932722] mpt3sas0-msix60: PCI-MSI-X enabled: IRQ 167
g ^[[0;1;39mShow [   10.939326] mpt3sas0-msix61: PCI-MSI-X enabled: IRQ 168
Plymouth Boot Sc[   10.945938] mpt3sas0-msix62: PCI-MSI-X enabled: IRQ 169
reen^[[0m...
[   10.945940] mpt3sas0-msix63: PCI-MSI-X enabled: IRQ 170
[   10.945941] mpt3sas0-msix64: PCI-MSI-X enabled: IRQ 171
[   10.945943] mpt3sas0-msix65: PCI-MSI-X enabled: IRQ 172
[   10.945944] mpt3sas0-msix66: PCI-MSI-X enabled: IRQ 173
[^[[0;32m  OK  ^[[[   10.945946] mpt3sas0-msix67: PCI-MSI-X enabled: IRQ 174
0m] Started ^[[0;[   10.981270] mpt3sas0-msix68: PCI-MSI-X enabled: IRQ 175
1;39mShow Plymou[   10.981272] mpt3sas0-msix69: PCI-MSI-X enabled: IRQ 176
th Boot Screen^[[[   10.981273] mpt3sas0-msix70: PCI-MSI-X enabled: IRQ 177
0m.
[^[[0;32m  [   10.981274] mpt3sas0-msix71: PCI-MSI-X enabled: IRQ 178
[   10.981275] mpt3sas0-msix72: PCI-MSI-X enabled: IRQ 179
OK  ^[[0m] Starte[   10.981277] mpt3sas0-msix73: PCI-MSI-X enabled: IRQ 180
d ^[[0;1;39mForwa[   10.981278] mpt3sas0-msix74: PCI-MSI-X enabled: IRQ 181
[   10.981279] mpt3sas0-msix75: PCI-MSI-X enabled: IRQ 182
rd Password Requ[   10.981281] mpt3sas0-msix76: PCI-MSI-X enabled: IRQ 183
ests to Plymouth[   11.038035] mpt3sas0-msix77: PCI-MSI-X enabled: IRQ 184
 Directory Watch[   11.038037] mpt3sas0-msix78: PCI-MSI-X enabled: IRQ 185
[   11.038038] mpt3sas0-msix79: PCI-MSI-X enabled: IRQ 186
^[[0m.
[   11.038039] mpt3sas0-msix80: PCI-MSI-X enabled: IRQ 187
[^[[0;32m  OK  ^[[[   11.062389] mpt3sas0-msix81: PCI-MSI-X enabled: IRQ 188
0m] Reached targ[   11.062391] mpt3sas0-msix82: PCI-MSI-X enabled: IRQ 189
et ^[[0;1;39mPath[   11.062392] mpt3sas0-msix83: PCI-MSI-X enabled: IRQ 190
 Units^[[0m.
[^[[   11.062393] mpt3sas0-msix84: PCI-MSI-X enabled: IRQ 191
[0;32m  OK  ^[[0m[   11.062395] mpt3sas0-msix85: PCI-MSI-X enabled: IRQ 192
[   11.062396] mpt3sas0-msix86: PCI-MSI-X enabled: IRQ 193
] Reached target[   11.062398] mpt3sas0-msix87: PCI-MSI-X enabled: IRQ 194
 ^[[0;1;39mBasic [   11.107271] mpt3sas0-msix88: PCI-MSI-X enabled: IRQ 195
System^[[0m.
[   11.113884] mpt3sas0-msix89: PCI-MSI-X enabled: IRQ 196
[   11.120325] mpt3sas0-msix90: PCI-MSI-X enabled: IRQ 197
[   11.125549] mpt3sas0-msix91: PCI-MSI-X enabled: IRQ 198
[   11.130774] mpt3sas0-msix92: PCI-MSI-X enabled: IRQ 199
[   11.136001] mpt3sas0-msix93: PCI-MSI-X enabled: IRQ 200
[   11.141244] mpt3sas0-msix94: PCI-MSI-X enabled: IRQ 201
[   11.146468] mpt3sas0-msix95: PCI-MSI-X enabled: IRQ 202
[   11.151697] mpt3sas_cm0: iomem(0x00000000e2200000), mapped(0x00000000398d1954), size(65536)
[   11.160042] mpt3sas_cm0: ioport(0x0000000000001000), size(256)
[   11.223900] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   11.231904] mpt3sas_cm0: sending message unit reset !!
[   11.238554] mpt3sas_cm0: message unit reset: SUCCESS
[   11.271239] mpt3sas_cm0: scatter gather: sge_in_main_msg(1), sge_per_chain(7), sge_per_io(128), chains_per_io(19)
[   11.282701] mpt3sas_cm0: request pool(0x000000008567f866) - dma(0xe0600000): depth(9700), frame_size(128), pool_size(1212 kB)
[   11.319362] mpt3sas_cm0: sense pool(0x00000000e2924c45) - dma(0xdef00000): depth(9463), element_size(96), pool_size (887 kB)
[   11.330737] mpt3sas_cm0: reply pool(0x0000000081284f5e) - dma(0xdec00000): depth(9764), frame_size(128), pool_size(1220 kB)
[   11.341869] mpt3sas_cm0: config page(0x00000000082e8caf) - dma(0xdebee000): size(512)
[   11.349700] mpt3sas_cm0: Allocated physical memory: size(40437 kB)
[   11.355876] mpt3sas_cm0: Current Controller Queue Depth(9460),Max Controller Queue Depth(9584)
[   11.364483] mpt3sas_cm0: Scatter Gather Elements per IO(128)
[   11.415936] mpt3sas_cm0: _base_display_fwpkg_version: complete
[   11.421776] mpt3sas_cm0: FW Package Ver(16.17.01.00)
[   11.427033] mpt3sas_cm0: LSISAS3008: FWVersion(16.00.11.00), ChipRevision(0x02)
[   11.434345] mpt3sas_cm0: Protocol=(Initiator,Target), Capabilities=(TLR,EEDP,Snapshot Buffer,Diag Trace Buffer,Task Set Full,NCQ)
[   11.446070] scsi host8: Fusion MPT SAS Host
[   11.452097] mpt3sas_cm0: sending port enable !!
[   11.457062] mpt3sas_cm0: hba_port entry: 0000000048270346, port: 255 is added to hba_port list
[   11.466791] mpt3sas_cm0: host_add: handle(0x0001), sas_addr(0x52cea7f0be87bf00), phys(8)
[   11.475224] mpt3sas_cm0: handle(0xa) sas_address(0x4433221100000000) port_type(0x1)
[   11.484166] scsi 8:0:0:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.492262] scsi 8:0:0:0: SATA: handle(0x000a), sas_addr(0x4433221100000000), phy(0), device_name(0x500a075131911ad0)
[   11.502858] scsi 8:0:0:0: enclosure logical id (0x52cea7f0be87bf00), slot(1) 
[   11.509990] scsi 8:0:0:0: enclosure level(0x0001), connector name(     )
[   11.516745] scsi 8:0:0:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.525178] scsi 8:0:0:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.539997]  end_device-8:0: add: handle(0x000a), sas_addr(0x4433221100000000)
[   11.547339] mpt3sas_cm0: handle(0xc) sas_address(0x58ce38ee219651a2) port_type(0x1)
[   11.556004] scsi 8:0:1:0: Direct-Access     KIOXIA   KPM6WVUG960G     BD08 PQ: 0 ANSI: 6
[   11.564092] scsi 8:0:1:0: SSP: handle(0x000c), sas_addr(0x58ce38ee219651a2), phy(4), device_name(0x58ce38ee219651a0)
[   11.574606] scsi 8:0:1:0: enclosure logical id (0x52cea7f0be87bf00), slot(0) 
[   11.581740] scsi 8:0:1:0: enclosure level(0x0001), connector name(     )
[   11.588445] scsi 8:0:1:0: qdepth(254), tagged(1), scsi_level(7), cmd_que(1)
[   11.597136]  end_device-8:1: add: handle(0x000c), sas_addr(0x58ce38ee219651a2)
[   11.604478] mpt3sas_cm0: handle(0xb) sas_address(0x4433221106000000) port_type(0x1)
[   11.613239] scsi 8:0:2:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.621338] scsi 8:0:2:0: SATA: handle(0x000b), sas_addr(0x4433221106000000), phy(6), device_name(0x500a075131911a6f)
[   11.631935] scsi 8:0:2:0: enclosure logical id (0x52cea7f0be87bf00), slot(2) 
[   11.639069] scsi 8:0:2:0: enclosure level(0x0001), connector name(     )
[   11.645821] scsi 8:0:2:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.654254] scsi 8:0:2:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.669072]  end_device-8:2: add: handle(0x000b), sas_addr(0x4433221106000000)
[   11.676299] mpt3sas_cm0: port enable: SUCCESS
[   11.680972] sd 8:0:0:0: Attached scsi generic sg0 type 0
[   11.681527] sd 8:0:0:0: [sda] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.686526] scsi 8:0:1:0: Attached scsi generic sg1 type 0
[   11.693856] sd 8:0:0:0: [sda] 4096-byte physical blocks
[   11.699533] scsi 8:0:2:0: Attached scsi generic sg2 type 0
[   11.704616] sd 8:0:1:0: [sdb] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.705021] sd 8:0:2:0: [sdc] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.705025] sd 8:0:2:0: [sdc] 4096-byte physical blocks
[   11.706604] sd 8:0:0:0: [sda] Write Protect is off
[   11.707033] sd 8:0:2:0: [sdc] Write Protect is off
[   11.707885] sd 8:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.708396] sd 8:0:2:0: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.757040] sd 8:0:1:0: [sdb] 4096-byte physical blocks
[   11.762462] sd 8:0:1:0: [sdb] Write Protect is off
[   11.767479] sd 8:0:1:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   11.818144]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7
[   11.818465]  sdc: sdc1 sdc2
[   11.823532] sd 8:0:0:0: [sda] Attached SCSI disk
[   11.826081] sd 8:0:2:0: [sdc] Attached SCSI disk
[   11.841405]  sdb: sdb1 sdb2
[   11.844358] sd 8:0:1:0: [sdb] Attached SCSI disk
[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39m/dev/mapper/rhel_sharavati-root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut initqueue hook^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m.
         Mounting ^[[0;1;39m/sysroot^[[0m...
[   12.574642] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled
[   12.585023] XFS (dm-1): Mounting V5 Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[   12.608259] XFS (dm-1): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/sysroot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root File System^[[0m.
         Starting ^[[0;1;39mMountpoints Configured in the Real Root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMountpoints Configured in the Real Root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Default Target^[[0m.
         Starting ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
         Starting ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Default Target^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd /usr File System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut initqueue hook^[[0m.
         Starting ^[[0;1;39mPlymouth switch root service^[[0m...[   12.853894] systemd-journald[1090]: Received SIGTERM from PID 1 (systemd).

[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mColdplug All udev Devices^[[0m.
         Stopping ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Kernel Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-udev hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut cmdline hook^[[0m.
         Starting ^[[0;1;39mCleanup udev Database^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate System Users^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleanup udev Database^[[0m.
[^[[0;32m  OK  [   12.967808] systemd[1]: RTC configured in localtime, applying delta of 330 minutes to system time.
^[[0m] Reached target ^[[0;1;39mSwitch Root^[[0m.
         Starting ^[[0;1;39mSwitch Root^[[0m...
[   12.992690] systemd[1]: systemd 252-46.el9_5.3 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)
[   13.025168] systemd[1]: Detected architecture x86-64.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow)^[[0m!

[   13.115713] systemd-rc-local-generator[1706]: /etc/rc.d/rc.local is not marked executable, skipping.
[   13.373128] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[   13.380461] systemd[1]: Stopped Switch Root.
[^[[0;32m  OK  ^[[[   13.385020] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
0m] Stopped ^[[0;[   13.395751] systemd[1]: Created slice Virtual Machine and Container Slice.
1;39mSwitch Root[   13.404069] systemd[1]: Created slice Slice /system/getty.
^[[0m.
[^[[0;32m[   13.410917] systemd[1]: Created slice Slice /system/modprobe.
  OK  ^[[0m] Crea[   13.418045] systemd[1]: Created slice Slice /system/serial-getty.
ted slice ^[[0;1;[   13.425519] systemd[1]: Created slice Slice /system/sshd-keygen.
39mVirtual Machi[   13.432939] systemd[1]: Created slice Slice /system/systemd-fsck.
ne and Container[   13.440395] systemd[1]: Created slice User and Session Slice.
 Slice^[[0m.
[^[[   13.446884] systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
[0;32m  OK  ^[[0m[   13.463206] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
] Created slice [   13.472308] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
^[[0;1;39mSlice /[   13.482953] systemd[1]: Reached target Local Encrypted Volumes.
system/getty^[[0m[   13.490241] systemd[1]: Stopped target Switch Root.
.
[^[[0;32m  OK[   13.496495] systemd[1]: Stopped target Initrd File Systems.
  ^[[0m] Created [   13.503444] systemd[1]: Stopped target Initrd Root File System.
slice ^[[0;1;39mS[   13.510754] systemd[1]: Reached target Local Integrity Protected Volumes.
lice /system/mod[   13.518930] systemd[1]: Reached target Path Units.
probe^[[0m.
[^[[[   13.525107] systemd[1]: Reached target Slice Units.
0;32m  OK  ^[[0m][   13.531371] systemd[1]: Reached target Local Verity Protected Volumes.
 Created slice ^[[   13.539338] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[0;1;39mSlice /s[   13.547413] systemd[1]: Listening on LVM2 poll daemon socket.
ystem/serial-get[   13.554365] systemd[1]: multipathd control socket was skipped because of an unmet condition check (ConditionPathExists=/etc/multipath.conf).
ty^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/sshd-keygen^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;3[   13.597175] systemd[1]: Listening on RPCbind Server Activation Socket.
2m  OK  ^[[0m] Se[   13.603968] systemd[1]: Reached target RPC Port Mapper.
t up automount ^[[   13.611649] systemd[1]: Listening on Process Core Dump Socket.
[0;1;39mArbitrar[   13.617892] systemd[1]: Listening on initctl Compatibility Named Pipe.
y Executa…orma[   13.626801] systemd[1]: Listening on udev Control Socket.
ts File System A[   13.632617] systemd[1]: Listening on udev Kernel Socket.
utomount Point^[[0m.
[^[[0;32m  [   13.640557] systemd[1]: Activating swap /dev/mapper/rhel_sharavati-swap...
OK  ^[[0m] Reache[   13.645500] Adding 7815164k swap on /dev/mapper/rhel_sharavati-swap.  Priority:-2 extents:1 across:7815164k SS
d target ^[[0;1;39mLocal Encrypte[   13.661900] systemd[1]: Mounting Huge Pages File System...
d Volumes^[[0m.
[^[[0;32m  OK  ^[[   13.669909] systemd[1]: Mounting POSIX Message Queue File System...
[0m] Stopped tar[   13.678758] systemd[1]: Mounting Kernel Debug File System...
get ^[[0;1;39mSwi[   13.685793] systemd[1]: Mounting Kernel Trace File System...
tch Root^[[0m.
[   13.691705] systemd[1]: Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
[^[[0;32m  OK  ^[[[   13.706522] systemd[1]: iscsi-starter.service was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes).
0m] Stopped target ^[[0;1;39mInit[   13.721930] systemd[1]: Starting Create List of Static Device Nodes...
rd File Systems^[[0m.
[^[[0;32m [   13.731174] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
 OK  ^[[0m] Stopped target ^[[0;1;[   13.744174] systemd[1]: Starting Load Kernel Module configfs...
39mInitrd Root F[   13.752726] systemd[1]: Starting Load Kernel Module drm...
ile System^[[0m.\r[   13.759554] systemd[1]: Starting Load Kernel Module fuse...

[^[[0;32m  OK  ^[[0m] Reached ta[   13.767166] systemd[1]: Starting Read and set NIS domainname from /etc/sysconfig/network...
rget ^[[0;1;39mLo[   13.776559] systemd[1]: plymouth-switch-root.service: Deactivated successfully.
cal Integrity Pr[   13.785290] systemd[1]: Stopped Plymouth switch root service.
otected Volumes^[[   13.792459] systemd[1]: systemd-fsck-root.service: Deactivated successfully.
[0m.
[^[[0;32m [   13.800790] systemd[1]: Stopped File System Check on Root Device.
 OK  ^[[0m] Reach[   13.808326] systemd[1]: Stopped Journal Service.
ed target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  O[   13.816971] systemd[1]: Starting Journal Service...
K  ^[[0m] Reached target ^[[0;1;39[   13.825272] systemd[1]: Starting Load Kernel Modules...
[   13.829713] systemd-journald[1735]: File /run/log/journal/8f37f8055146469d8baec3ad508b0084/system.journal corrupted or uncleanly shut down, renaming and replacing.
mSlice Units^[[0m.
[^[[0;32m  OK[   13.847218] systemd[1]: Starting Generate network units from Kernel command line...
  ^[[0m] Reached [   13.856330] systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
target ^[[0;1;39mLocal Verity Pro[   13.877525] systemd[1]: Starting Remount Root and Kernel File Systems...
tected Volumes^[[[   13.885698] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
0m.
[^[[0;32m  OK  ^[[0m] Listen[   13.897764] systemd[1]: Starting Coldplug All udev Devices...
ing on ^[[0;1;39mDevice-mapper event daemon FIFOs[   13.908003] systemd[1]: Activated swap /dev/mapper/rhel_sharavati-swap.
^[[0m.
[^[[0;32m[   13.916311] systemd[1]: Started Journal Service.
  OK  ^[[0m] Listening on ^[[0;1;39mLVM2 poll daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mRPCbind Server Activation Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mR[   13.937177] systemd-journald[1735]: Received client request to flush runtime journal.
PC Port Mapper^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mProcess Core Dump Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39minitctl Compatibility Named Pipe^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
         Activating swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m...
         Mounting ^[[0;1;39mHuge Pages File System^[[0m...
         Mounting ^[[0;1;39mPOSIX Message Queue File System^[[0m...
         Mounting ^[[0;1;39mKernel Debug File System^[[0m...
         Mounting ^[[0;1;39mKernel Trace File System^[[0m...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
         Starting ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module drm^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mJournal Service^[[0m.
         Starting ^[[0;1;39mJournal Service^[[0m...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
         Starting ^[[0;1;39mGenerate network units from Kernel command line^[[0m...
         Starting ^[[0;1;39mRemount Root and Kernel File Systems^[[0m...
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[^[[0;32m  OK  ^[[0m] Activated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mHuge Pages File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mPOSIX Message Queue File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Debug File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Trace File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMonitoring of LVM2 mirror…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module drm^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[   14.165687] IPMI message handler: version 39.2
[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[[   14.176092] ipmi device interface
^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mGenerate network units from Kernel command line^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRemount Root and Kernel File Systems^[[0m.
[^[[0;32m  OK  ^[[0m[   14.195145] ipmi_si: IPMI System Interface driver
] Reached target[   14.196073] pstore: backend 'erst' already in use: ignoring 'efi_pstore'
 ^[[0;1;39mSwaps^[[   14.201058] input: PC Speaker as /devices/platform/pcspkr/input/input1
[0m.
         [   14.201310] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
Mounting ^[[0;1;3[   14.202703] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
9mFUSE Control F[   14.202706] RAPL PMU: hw unit of domain package 2^-16 Joules
ile System^[[0m..[   14.202708] RAPL PMU: hw unit of domain core 2^-16 Joules
.
         Mou[   14.204580] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
nting ^[[0;1;39mK[   14.204585] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
ernel Configurat[   14.209296] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
ion File System^[[   14.211759] i2c i2c-3: Successfully instantiated SPD at 0x50
[0m...
       [   14.217262] ipmi_platform: ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 10
  Starting ^[[0;1[   14.225632] i2c i2c-3: Successfully instantiated SPD at 0x51
;39mFlush Journa[   14.234284] ipmi_si: Adding SMBIOS-specified kcs state machine
l to Persistent [   14.234393] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
Storage^[[0m...\r\r[   14.241904] i2c i2c-3: Successfully instantiated SPD at 0x52

         Starti[   14.248140] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca8] regsize 1 spacing 4 irq 10
ng ^[[0;1;39mLoad[   14.257394] i2c i2c-3: Successfully instantiated SPD at 0x53
/Save OS Random [   14.266027] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
Seed^[[0m...
  [   14.275016] i2c i2c-3: Successfully instantiated SPD at 0x54
[   14.281490] ipmi_si: Adding ACPI-specified kcs state machine
       Starting [   14.290747] i2c i2c-3: Successfully instantiated SPD at 0x55
^[[0;1;39mApply K[   14.297307] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 10
[   14.305011] i2c i2c-3: Successfully instantiated SPD at 0x56
ernel Variables^[[   14.382540] i2c i2c-3: Successfully instantiated SPD at 0x57
[0m...
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mFUSE Control File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Configuration File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad/Save OS Random Seed^[[0m.
[^[[0;32m  OK  ^[[0m] Fini[   14.416028] ee1004 3-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
shed ^[[0;1;39mFlush Journal to P[   14.425288] ee1004 3-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
ersistent Storag[   14.434236] kvm_amd: TSC scaling supported
e^[[0m.
[^[[0;32[   14.434951] ee1004 3-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
m  OK  ^[[0m] Fin[   14.438728] kvm_amd: Nested Virtualization enabled
ished ^[[0;1;39mA[   14.438729] kvm_amd: Nested Paging enabled
pply Kernel Vari[   14.438731] kvm_amd: LBR virtualization supported
ables^[[0m.
[^[[0;32m  OK  ^[[0m][   14.466676] ee1004 3-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
 Finished ^[[0;1;39mCreate Static[   14.476031] ee1004 3-0054: 512 byte EE1004-compliant SPD EEPROM, read-only
 Device Nodes in /dev^[[0m.
   [   14.485670] ee1004 3-0055: 512 byte EE1004-compliant SPD EEPROM, read-only
      Starting ^[[0;1;39mRule-bas[   14.495332] ee1004 3-0056: 512 byte EE1004-compliant SPD EEPROM, read-only
ed Manager for Device Events and[   14.504819] ee1004 3-0057: 512 byte EE1004-compliant SPD EEPROM, read-only
 Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mColdplug All udev Devices^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mLoad/Save RF Kill Switch Status /dev/rfkill Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39m/usr/sbin/lvm vgchange -aa…utoactivation event rhel_sharavati^[[0m.
[   14.736268] ipmi_si IPI0001:00: The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.
[   14.808377] ipmi_si IPI0001:00: Using irq 10
[   14.831325] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20)
[   14.885853] ipmi_si IPI0001:00: IPMI kcs interface initialized
[   14.894364] ipmi_ssif: IPMI SSIF Interface driver
[   14.912300] power_meter ACPI000D:00: Found ACPI power meter.
[^[[0m^[[0;31m*     ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;1;31m*^[[0m^[[0;31m*    ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*   ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
[   17.994523] ccp 0000:46:00.1: SEV-SNP API:1.55 build:22
[   18.050666] ccp 0000:46:00.1: SEV API:1.55 build:22
[   18.057436] kvm_amd: SEV enabled (ASIDs 101 - 509)
[   18.062234] kvm_amd: SEV-ES enabled (ASIDs 1 - 100)
[   18.067111] kvm_amd: SEV-SNP enabled (ASIDs 1 - 100)
[   18.072263] kvm_amd: Virtual VMLOAD VMSAVE supported
[   18.077232] kvm_amd: Virtual GIF supported
[   18.103174] EDAC MC0: Giving out device to module amd64_edac controller F19h: DEV 0000:00:18.3 (INTERRUPT)
[   18.112834] EDAC amd64: F19h detected (node 0).
[   18.117387] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.122100] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.126821] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.131540] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.136262] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.140978] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.145698] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.150414] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.155137] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.159851] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.164575] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.169290] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.174013] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.178727] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.183449] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.188167] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.200074] intel_rapl_common: Found RAPL domain package
[   18.201217] amd_atl: AMD Address Translation Library initialized
[   18.205394] intel_rapl_common: Found RAPL domain core
^[M\r^[[K[ ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*  ^[[0m] A start job is running for Wait for…ice Initialization (5s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Local File Systems^[[0m.
         Mounting ^[[0;1;39m/boot^[[0m...
      [   18.595972] XFS (sda6): Mounting V5 Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
   Mounting ^[[0;[   18.598342] XFS (dm-0): Mounting V5 Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
1;39m/home^[[0m...
         Starting ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m...
[   18.624722] XFS (sda6): Ending clean mount
[   18.631934] XFS (dm-0): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
         Mounting ^[[0;1;39m/boot/efi^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
         Starting ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Mounting ^[[0;1;39mRPC Pipe File System^[[0m...
         Starting ^[[0;1;39mSecurity Auditing Service^[[0m...
         Starting ^[[0;1;39mRPC Bind^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRPC Bind^[[0m.
[   18.741118] RPC: Registered named UNIX socket transport module.
[   18.747041] RPC: Registered udp transport module.
[   18.751745] RPC: Registered tcp transport module.
[   18.756451] RPC: Registered tcp-with-tls transport module.
[   18.761939] RPC: Registered tcp NFSv4.1 backchannel transport module.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mRPC Pipe File System^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mrpc_pipefs.target^[[0m.
         Starting ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdnf makecache --timer^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily rotation of log files^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUpdates mlocate database every day^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily Cleanup of Temporary Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdaily update of the root trust anchor for DNSSEC^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt interface daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt network daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nodedev daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nwfilter daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt proxy daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt secret daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt storage daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
         Starting ^[[0;1;39mD-Bus System Message Bus^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mBasic System^[[0m.
         Starting ^[[0;1;39mNTP client/server^[[0m...
         Starting ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m...
         Starting ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mirqbalance daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mlibstoragemgmt plug-in server daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mMachine Check Exception Logging Daemon^[[0m.
         Starting ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msshd-keygen.target^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUser and Group Name Lookups^[[0m.
         Starting ^[[0;1;39mUser Login Management^[[0m...
         Starting ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNTP client/server^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Network^[[0m.
         Starting ^[[0;1;39mNetwork Manager^[[0m...
         Starting ^[[0;1;39mHostname Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mHostname Service^[[0m.
         Starting ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork^[[0m.
         Starting ^[[0;1;39mNetwork Manager Wait Online^[[0m...
         Starting ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
         Starting ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m...
         Starting ^[[0;1;39mOpenSSH server daemon^[[0m...
         Starting ^[[0;1;39mDynamic System Tuning Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNFS client services^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mOpenSSH server daemon^[[0m.
         Starting ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
[   22.968316] tg3 0000:c1:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   22.974936] tg3 0000:c1:00.0 eth0: Flow control is off for TX and off for RX
[   22.981987] tg3 0000:c1:00.0 eth0: EEE is disabled
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[     ^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (12s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mNetwork Manager Wait Online^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork is Online^[[0m.
         Starting ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m...
         Starting ^[[0;1;39mNotify NFS peers of a restart^[[0m...
         Starting ^[[0;1;39mSystem Logging Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNotify NFS peers of a restart^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mCrash recovery kernel arming^[[0m...
         Starting ^[[0;1;39mPermit User Sessions^[[0m...
         Starting ^[[0;1;39mlibvirt QEMU daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDeferred execution scheduler^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mCommand Scheduler^[[0m.
         Starting ^[[0;1;39mHold until boot process finishes up^[[0m...
         Starting ^[[0;1;39mTerminate Plymouth Boot Screen^[[0m...
[^[[0;1;31mFAILED^[[0m] Failed to start ^[[0;1;39mCrash recovery kernel arming^[[0m.
See 'systemctl status kdump.service' for details.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSystem Logging Service^[[0m.
[   25.739025] fbcon: Taking over console
[   25.758771] Console: switching to colour frame buffer device 128x48

Red Hat Enterprise Linux 9.5 (Plow)
Kernel 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e on an x86_64

Activate the web console with: systemctl enable --now cockpit.socket

sharavati login: [  122.866057] /proc/cgroups lists only v1 controllers, use cgroup.controllers of root cgroup for v2 info
[  313.024109] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[  313.083808] systemd-rc-local-generator[3154]: /etc/rc.d/rc.local is not marked executable, skipping.
[  334.707734] virbr0: port 1(t0-AtVZTc) entered blocking state
[  334.713408] virbr0: port 1(t0-AtVZTc) entered disabled state
[  334.719136] t0-AtVZTc: entered allmulticast mode
[  334.723850] t0-AtVZTc: entered promiscuous mode
[  334.732742] virbr0: port 1(t0-AtVZTc) entered blocking state
[  334.738403] virbr0: port 1(t0-AtVZTc) entered listening state
[  336.776040] virbr0: port 1(t0-AtVZTc) entered learning state
[  338.791987] virbr0: port 1(t0-AtVZTc) entered forwarding state
[  338.797825] virbr0: topology change detected, propagating
[  349.035853] virbr0: port 1(t0-AtVZTc) entered disabled state
[  349.042621] t0-AtVZTc (unregistering): left allmulticast mode
[  349.048390] t0-AtVZTc (unregistering): left promiscuous mode
[  349.054071] virbr0: port 1(t0-AtVZTc) entered disabled state
[  353.345965] virbr0: port 1(t0-ym2aWd) entered blocking state
[  353.351641] virbr0: port 1(t0-ym2aWd) entered disabled state
[  353.357373] t0-ym2aWd: entered allmulticast mode
[  353.362071] t0-ym2aWd: entered promiscuous mode
[  353.371135] virbr0: port 1(t0-ym2aWd) entered blocking state
[  353.376795] virbr0: port 1(t0-ym2aWd) entered listening state
[  355.399643] virbr0: port 1(t0-ym2aWd) entered learning state
[  357.415601] virbr0: port 1(t0-ym2aWd) entered forwarding state
[  357.421445] virbr0: topology change detected, propagating
[  367.652182] virbr0: port 1(t0-ym2aWd) entered disabled state
[  367.659085] t0-ym2aWd (unregistering): left allmulticast mode
[  367.664848] t0-ym2aWd (unregistering): left promiscuous mode
[  367.670524] virbr0: port 1(t0-ym2aWd) entered disabled state
[  413.178083] JFS: nTxBlock = 8192, nTxLock = 65536
[  413.216244] QNX4 filesystem 0.2.3 registered.
[  413.298411] raid6: avx2x4   gen() 28250 MB/s
[  413.370410] raid6: avx2x2   gen() 29610 MB/s
[  413.442409] raid6: avx2x1   gen() 22117 MB/s
[  413.446682] raid6: using algorithm avx2x2 gen() 29610 MB/s
[  413.518407] raid6: .... xor() 27212 MB/s, rmw enabled
[  413.523458] raid6: using avx2x2 recovery algorithm
[  413.530298] xor: automatically using best checksumming function   avx       
[  413.625661] Btrfs loaded, zoned=yes, fsverity=yes
[  418.008462] sda6: Can't mount, would change RO state
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Runtime Directory /run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser Slice of UID 0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNFS client services^[[0m.
         Stopping ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mShow Plymouth Reboot Screen^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mUser and Group Name Lookups^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSystem Logging Service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork is Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager Wait Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
         Stopping ^[[0;1;39mNetwork Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Network^[[0m.
         Stopping ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGenerate network units from Kernel command line^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
         Stopping ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Plymouth Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mVirtual Machine and Container Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt locking daem[  419.475441] audit: type=1305 audit(1750150103.068:289): op=set audit_pid=0 old=2289 auid=4294967295 ses=4294967295 subj=unconfined res=1
on admin socket^[[0m.
[^[[0;32m [  419.490015] audit: type=1131 audit(1750150103.080:290): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=auditd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
 OK  ^[[0m] Closed ^[[0;1;39mlibvi[  419.511711] audit: type=1131 audit(1750150103.104:291): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
rt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon socket^[[0m.
         Stopping ^[[0;1;39mD-Bus System Message Bus^[[0m...
         Starting ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Unset automount ^[[0;1;3[  419.583092] audit: type=1131 audit(1750150103.176:292): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-fsck@dev-disk-by\x2duuid-FBE5\x2d86EF comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
9mArbitrary Exec[  419.601967] XFS (dm-0): Unmounting Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
utab…ormats Fi[  419.607475] XFS (sda6): Unmounting Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
le System Automount Point^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Encrypted Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Integrity Protected Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Verity Protected Volumes^[[0m.
         Deactivating swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
         Stopping ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-sysctl.service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
         Stopping ^[[0;1;39mSecurity Auditing Service^[[0m...
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/d…kEo36yeb12DWUnp5czhD1hrKFNCXkJMetK^[[0m.\r[  419.730958] audit: type=1131 audit(1750150103.324:293): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'

[^[[0;32m  OK  [  419.751748] audit: type=1131 audit(1750150103.344:294): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-uuid…8d2e1f-0fb1-4c94-97ac-38505613fcbf^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/rhel_sharavati/swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/dm-2^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
         Unmounting ^[[0;1;39m/boot/efi^[[0m...
         Unmounting ^[[0;1;39m/home^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m...\r\r[  419.843836] audit: type=1131 audit(1750150103.436:295): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'

         Unmoun[  419.865273] audit: type=1130 audit(1750150103.456:296): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
ting ^[[0;1;39m/r[  419.886434] audit: type=1131 audit(1750150103.456:297): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
un/credentials/systemd-tmpfiles-setup-dev.service^[[0m...
[^[[0;[  419.913199] audit: type=1334 audit(1750150103.504:298): prog-id=33 op=UNLOAD
32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m.
         Unmounting ^[[0;1;39m/boot^[[0m...
[^[[0;32m  OK  ^[[0[  419.946654] watchdog: watchdog0: watchdog did not stop!
m] Stopped ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-[  419.957146] systemd-shutdown[1]: Using hardware watchdog 'SP5100 TCO timer', version 0, device /dev/watchdog0
86EF^[[0m.
[^[[0[  419.967718] systemd-shutdown[1]: Watchdog running with a timeout of 10min.
;32m  OK  ^[[0m] Removed slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m[  419.984403] systemd-shutdown[1]: Syncing filesystems and block devices.
/home^[[0m.
[^[[[  419.992201] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Local File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUnmount All Filesystems^[[0m.
         Stopping ^[[0;1;39mMon[  420.019766] systemd-journald[1735]: Received SIGTERM from PID 1 (systemd-shutdow).
itoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRemount Root and Kernel File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mMonitoring of LVM2 mirrors…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLate Shutdown Services^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSystem Reboot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Reboot^[[0m.
[  420.090840] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
[  420.115189] systemd-shutdown[1]: Unmounting file systems.
[  420.121492] [7957]: Remounting '/' read-only with options 'attr2,inode64,logbufs=8,logbsize=32k,noquota'.
[  420.140601] systemd-shutdown[1]: All filesystems unmounted.
[  420.146176] systemd-shutdown[1]: Deactivating swaps.
[  420.151676] systemd-shutdown[1]: All swaps deactivated.
[  420.156906] systemd-shutdown[1]: Detaching loop devices.
[  420.162765] systemd-shutdown[1]: All loop devices detached.
[  420.168354] systemd-shutdown[1]: Stopping MD devices.
[  420.173458] systemd-shutdown[1]: All MD devices stopped.
[  420.178770] systemd-shutdown[1]: Detaching DM devices.
[  420.184322] systemd-shutdown[1]: Detaching DM /dev/dm-2 (253:2).
[  420.230509] systemd-shutdown[1]: Detaching DM /dev/dm-0 (253:0).
[  420.286396] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  420.292888] systemd-shutdown[1]: Detaching DM devices.
[  420.298199] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  420.304647] systemd-shutdown[1]: Cannot finalize remaining DM devices, continuing.
[  420.312338] watchdog: watchdog0: watchdog did not stop!
[  420.406190] systemd-shutdown[1]: Successfully changed into root pivot.
[  420.412724] systemd-shutdown[1]: Returning to initrd...
[  420.463232] dracut Warning: Killing all remaining processes
dracut Warning: Killing all remaining processes
[  420.544531] XFS (dm-1): Unmounting Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[  420.560548] dracut Warning: Unmounted /oldroot.
dracut Warning: Unmounted /oldroot.
[  420.578399] dracut: Disassembling device-mapper devices
Rebooting.
[  420.784520] sd 8:0:2:0: [sdc] Synchronizing SCSI cache
[  420.789793] sd 8:0:0:0: [sda] Synchronizing SCSI cache
[  422.267913] mpt3sas_cm0: sending message unit reset !!
[  422.275746] mpt3sas_cm0: message unit reset: SUCCESS
[  422.283305] ACPI: PM: Preparing to enter system sleep state S5
[  422.289245] kvm: exiting hardware virtualization
[  422.293914] reboot: Restarting system
[  422.297586] reboot: machine restart
^[[c^[[2J^[[01;01H^[[=3h^[[2J^[[01;01HKEY MAPPING FOR CONSOLE REDIRECTION:

Use the <ESC><1> key sequence for <F1>
Use the <ESC><2> key sequence for <F2>
Use the <ESC><3> key sequence for <F3>
Use the <ESC><0> key sequence for <F10>
Use the <ESC><!> key sequence for <F11>
Use the <ESC><@> key sequence for <F12>

Use the <ESC><Ctrl><M> key sequence for <Ctrl><M>
Use the <ESC><Ctrl><H> key sequence for <Ctrl><H>
Use the <ESC><Ctrl><I> key sequence for <Ctrl><I>
Use the <ESC><Ctrl><J> key sequence for <Ctrl><J>

Use the <ESC><X><X> key sequence for <Alt><x>, where x is any letter
key, and X is the upper case of that key

Use the <ESC><R><ESC><r><ESC><R> key sequence for <Ctrl><Alt><Del>

Press the spacebar to pause...
Initializing PCIe, USB, and Video... Done
PowerEdge R6515
BIOS Version: 2.17.0
Console Redirection Enabled Requested by iDRAC

F2	 = System Setup
F10	 = Lifecycle Controller (Config
	   iDRAC, Update FW, Install OS)
F11	 = Boot Manager
F12	 = PXE Boot
iDRAC IPV4:  10.86.18.202 [Dedicated]
                                
Initializing Firmware Interfaces...
 





Enumerating Boot options...
Enumerating Boot options... Done
Loading Lifecycle Controller Drivers...
Loading Lifecycle Controller Drivers...Done
Lifecycle Controller: Collecting System Inventory...

iDRAC IPV4:  10.86.18.202 [Dedicated]

^[[2J^[[01;01HLifecycle Controller: Done
Booting...
^[[2J^[[01;01HBooting from Integrated Storage Controller 1: Red Hat Enterprise Linux
^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[02;32HGRUB version 2.06

\r^[[04;02H/----------------------------------------------------------------------------\^[[05;02H|^[[05;79H|^[[06;02H|^[[06;79H|^[[07;02H|^[[07;79H|^[[08;02H|^[[08;79H|^[[09;02H|^[[09;79H|^[[10;02H|^[[10;79H|^[[11;02H|^[[11;79H|^[[12;02H|^[[12;79H|^[[13;02H|^[[13;79H|^[[14;02H|^[[14;79H|^[[15;02H|^[[15;79H|^[[16;02H|^[[16;79H|^[[17;02H\----------------------------------------------------------------------------/^[[18;02H^[[19;02H     Use the ^ and v keys to select which entry is highlighted.          
\r      Press enter to boot the selected OS, `e' to edit the commands       
\r      before booting or `c' for a command-line. ESC to return previous    
\r      menu.                                                               ^[[05;80H ^[[0m^[[30m^[[47m^[[05;03H*Red Hat Enterprise Linux (6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e)>
\r^[[06;01H^[[0m^[[37m^[[40m^[[05;78H^[[06;03H Red Hat Enterprise Linux (6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997)>
\r^[[07;01H^[[06;78H^[[07;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250613-bc6e0ba6c9-dc42f4ece61)>
\r^[[08;01H^[[07;78H^[[08;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250612-0bb71d3018-d909e6968a1)>
\r^[[09;01H^[[08;78H^[[09;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250611-19a60293b9-72d7c68e20e)>
\r^[[10;01H^[[09;78H^[[10;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250610-b27cc623e0-9a3b1b1b837)>
\r^[[11;01H^[[10;78H^[[11;03H Red Hat Enterprise Linux (6.15.0-rc7-next-20250526-3be1a7a31f-22d449bcd69)>
\r^[[12;01H^[[11;78H^[[12;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250514-bdd609656f-ccb396cc166)>
\r^[[13;01H^[[12;78H^[[13;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250513-aa94665adc-e0bf3d3816b)>
\r^[[14;01H^[[13;78H^[[14;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250512-edef457004-450c56522a8)>
\r^[[15;01H^[[14;78H^[[15;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250508-f48887a98b-19c541fe872)>
\r^[[16;01H^[[15;78H^[[16;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250507-08710e6960-81586bd2ca8)>
\r^[[17;01H^[[16;78H^[[16;80Hv^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 5s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 4s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 3s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 2s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 1s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 0s.                 ^[[05;78H^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m  Booting `Red Hat Enterprise Linux
\r(6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e) 9.5 (Plow)'

\r[    0.000000] Linux version 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e (root@sharavati•amd.com) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-5), GNU ld version 2.35.2-63.el9) #1 SMP PREEMPT_DYNAMIC Tue Jun 17 12:09:52 IST 2025
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] SEV-SNP: RMP table physical range [0x0000000015e00000 - 0x00000000566fffff]
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000015dfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000015e00000-0x00000000566fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000056700000-0x00000000567fbfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000567fc000-0x00000000567fcfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000567fd000-0x000000005a142fff] usable
[    0.000000] BIOS-e820: [mem 0x000000005a143000-0x000000005a342fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005a343000-0x0000000067acefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000067acf000-0x000000006dfcefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006dfcf000-0x000000006edfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006edff000-0x000000006effefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000006efff000-0x000000006effffff] usable
[    0.000000] BIOS-e820: [mem 0x000000006f000000-0x000000006f00afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006f00b000-0x000000006fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000070000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa000000-0x00000000aaffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c5000000-0x00000000c5ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e0ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000207fcfffff] usable
[    0.000000] BIOS-e820: [mem 0x000000207fd00000-0x000000207fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000002080000000-0x000000407f1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000407f200000-0x000000407fffffff] reserved
[    0.000000] printk: legacy bootconsole [earlyser0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by Dell Inc.
[    0.000000] efi: ACPI=0x6effe000 ACPI 2.0=0x6effe014 MEMATTR=0x63f376a0 SMBIOS=0x6979e000 SMBIOS 3.0=0x6979c000 MOKvar=0x67bcc000 RNG=0x6efb4020 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem56: MMIO range=[0x80000000-0x8fffffff] (256MB) from e820 map
[    0.000000] efi: Remove mem57: MMIO range=[0xaa000000-0xaaffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem58: MMIO range=[0xc5000000-0xc5ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem59: MMIO range=[0xe0000000-0xe0ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem60: MMIO range=[0xfd000000-0xffffffff] (48MB) from e820 map
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[    0.000000] DMI: Memory slots populated: 8/16
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1996.101 MHz processor
[    0.000028] last_pfn = 0x407f200 max_arch_pfn = 0x400000000
[    0.005551] MTRR map: 7 entries (2 fixed + 5 variable; max 19), built from 9 variable MTRRs
[    0.013868] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Memory KASLR using RDRAND RDTSC...
[    0.023939] x2apic: enabled by BIOS, switching to x2apic ops
[    0.029609] last_pfn = 0x70000 max_arch_pfn = 0x400000000
[    0.039476] SEV-SNP: Reserving start/end of RMP table on a 2MB boundary [0x0000000056600000]
[    0.047746] Using GB pages for direct mapping
[    0.052860] Secure boot disabled
[    0.055911] RAMDISK: [mem 0x0bb2c000-0x0e0d4fff]
[    0.060508] ACPI: Early table checksum verification disabled
[    0.066141] ACPI: RSDP 0x000000006EFFE014 000024 (v02 DELL  )
[    0.071860] ACPI: XSDT 0x000000006EFB7188 0000DC (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.080354] ACPI: FACP 0x000000006EFF9000 000114 (v06 DELL   PE_SC3   00000002 DELL 00000001)
[    0.088849] ACPI: DSDT 0x000000006EFDA000 019528 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.097340] ACPI: FACS 0x000000006EDB9000 000040
[    0.101934] ACPI: BERT 0x000000006EFFC000 000030 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.110427] ACPI: ERST 0x000000006EFFB000 000230 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.118921] ACPI: HEST 0x000000006EFFA000 0007F4 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.127414] ACPI: HPET 0x000000006EFF8000 000038 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.135909] ACPI: APIC 0x000000006EFF6000 0018BE (v05 DELL   PE_SC3   00000002 DELL 00000001)
[    0.144401] ACPI: MCFG 0x000000006EFF5000 00003C (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.152896] ACPI: WSMT 0x000000006EFF4000 000028 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.161390] ACPI: SSDT 0x000000006EFD9000 000629 (v02 DELL   xhc_port 00000001 INTL 20210331)
[    0.169884] ACPI: SSDT 0x000000006EFD8000 000D6E (v02 AMD    CPMRAS   00000001 INTL 20210331)
[    0.178378] ACPI: EINJ 0x000000006EFD7000 000170 (v01 AMD    PE_SC3   00000001 AMD  00000001)
[    0.186871] ACPI: PCCT 0x000000006EFD6000 00006E (v02 DELL   AmdTable 00000001 AMD  00000001)
[    0.195366] ACPI: SSDT 0x000000006EFC7000 00E849 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.203859] ACPI: SRAT 0x000000006EFC6000 000CD0 (v03 DELL   PE_SC3   00000001 AMD  00000001)
[    0.212353] ACPI: MSCT 0x000000006EFC5000 00004E (v01 DELL   PE_SC3   00000000 AMD  00000001)
[    0.220847] ACPI: SLIT 0x000000006EFC4000 000030 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.229340] ACPI: CRAT 0x000000006EFBC000 0072F8 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.237833] ACPI: CDIT 0x000000006EFBB000 00002C (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.246352] ACPI: IVRS 0x000000006EFBA000 0001F0 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.254847] ACPI: SPCR 0x000000006EFB9000 000050 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.263340] ACPI: SLIC 0x000000006EFB8000 000176 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.271834] ACPI: SSDT 0x000000006EFFD000 000D66 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.280329] ACPI: SSDT 0x000000006EFB5000 00193C (v02 AMD    CPMCMN   00000001 INTL 20210331)
[    0.288823] ACPI: Reserving FACP table memory at [mem 0x6eff9000-0x6eff9113]
[    0.295842] ACPI: Reserving DSDT table memory at [mem 0x6efda000-0x6eff3527]
[    0.302862] ACPI: Reserving FACS table memory at [mem 0x6edb9000-0x6edb903f]
[    0.309883] ACPI: Reserving BERT table memory at [mem 0x6effc000-0x6effc02f]
[    0.316902] ACPI: Reserving ERST table memory at [mem 0x6effb000-0x6effb22f]
[    0.323924] ACPI: Reserving HEST table memory at [mem 0x6effa000-0x6effa7f3]
[    0.330944] ACPI: Reserving HPET table memory at [mem 0x6eff8000-0x6eff8037]
[    0.337964] ACPI: Reserving APIC table memory at [mem 0x6eff6000-0x6eff78bd]
[    0.344984] ACPI: Reserving MCFG table memory at [mem 0x6eff5000-0x6eff503b]
[    0.352039] ACPI: Reserving WSMT table memory at [mem 0x6eff4000-0x6eff4027]
[    0.359060] ACPI: Reserving SSDT table memory at [mem 0x6efd9000-0x6efd9628]
[    0.366081] ACPI: Reserving SSDT table memory at [mem 0x6efd8000-0x6efd8d6d]
[    0.373101] ACPI: Reserving EINJ table memory at [mem 0x6efd7000-0x6efd716f]
[    0.380120] ACPI: Reserving PCCT table memory at [mem 0x6efd6000-0x6efd606d]
[    0.387141] ACPI: Reserving SSDT table memory at [mem 0x6efc7000-0x6efd5848]
[    0.394162] ACPI: Reserving SRAT table memory at [mem 0x6efc6000-0x6efc6ccf]
[    0.401181] ACPI: Reserving MSCT table memory at [mem 0x6efc5000-0x6efc504d]
[    0.408201] ACPI: Reserving SLIT table memory at [mem 0x6efc4000-0x6efc402f]
[    0.415223] ACPI: Reserving CRAT table memory at [mem 0x6efbc000-0x6efc32f7]
[    0.422242] ACPI: Reserving CDIT table memory at [mem 0x6efbb000-0x6efbb02b]
[    0.429264] ACPI: Reserving IVRS table memory at [mem 0x6efba000-0x6efba1ef]
[    0.436284] ACPI: Reserving SPCR table memory at [mem 0x6efb9000-0x6efb904f]
[    0.443305] ACPI: Reserving SLIC table memory at [mem 0x6efb8000-0x6efb8175]
[    0.450358] ACPI: Reserving SSDT table memory at [mem 0x6effd000-0x6effdd65]
[    0.457380] ACPI: Reserving SSDT table memory at [mem 0x6efb5000-0x6efb693b]
[    0.464475] APIC: Switched APIC routing to: cluster x2apic
[    0.469876] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.475840] ACPI: SRAT: Node 0 PXM 0 [mem 0x000c0000-0x7fffffff]
[    0.481820] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.488060] ACPI: SRAT: Node 1 PXM 1 [mem 0x2080000000-0x407fffffff]
[    0.494393] NUMA: Node 0 [mem 0x00001000-0x0009ffff] + [mem 0x000c0000-0x7fffffff] -> [mem 0x00001000-0x7fffffff]
[    0.504615] NUMA: Node 0 [mem 0x00001000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00001000-0x207fffffff]
[    0.515283] NODE_DATA(0) allocated [mem 0x207fcd59c0-0x207fcfffff]
[    0.521437] NODE_DATA(1) allocated [mem 0x407f1d49c0-0x407f1fefff]
[    0.527723] cannot allocate crashkernel low memory (size:0x10800000).
[    0.534238] Zone ranges:
[    0.536596]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.542750]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.548903]   Normal   [mem 0x0000000100000000-0x000000407f1fffff]
[    0.555057]   Device   empty
[    0.557918] Movable zone start for each node
[    0.562165] Early memory node ranges
[    0.565718]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.571959]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.578198]   node   0: [mem 0x0000000000100000-0x0000000015dfffff]
[    0.584439]   node   0: [mem 0x0000000056700000-0x00000000567fbfff]
[    0.590679]   node   0: [mem 0x00000000567fd000-0x000000005a142fff]
[    0.596920]   node   0: [mem 0x000000005a343000-0x0000000067acefff]
[    0.603159]   node   0: [mem 0x000000006efff000-0x000000006effffff]
[    0.609400]   node   0: [mem 0x000000006f00b000-0x000000006fffffff]
[    0.615641]   node   0: [mem 0x0000000100000000-0x000000207fcfffff]
[    0.621891]   node   1: [mem 0x0000002080000000-0x000000407f1fffff]
[    0.628132] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fcfffff]
[    0.635142] Initmem setup node 1 [mem 0x0000002080000000-0x000000407f1fffff]
[    0.642163] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.647969] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.653786] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.660019] On node 0, zone DMA32: 35072 pages in unavailable ranges
[    0.666247] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.672341] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.678432] On node 0, zone DMA32: 30000 pages in unavailable ranges
[    0.684676] On node 0, zone DMA32: 11 pages in unavailable ranges
[    0.910191] On node 1, zone Normal: 768 pages in unavailable ranges
[    0.916290] On node 1, zone Normal: 3584 pages in unavailable ranges
[    0.922747] ACPI: PM-Timer IO Port: 0x408
[    0.926618] ACPI: X2APIC_NMI (uid[0xffffffff] high edge lint[0x1])
[    0.932746] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.938651] IOAPIC[0]: apic_id 240, version 33, address 0xfec00000, GSI 0-23
[    0.945661] IOAPIC[1]: apic_id 241, version 33, address 0xe0100000, GSI 120-151
[    0.952942] IOAPIC[2]: apic_id 242, version 33, address 0xc5100000, GSI 88-119
[    0.960135] IOAPIC[3]: apic_id 243, version 33, address 0xaa100000, GSI 56-87
[    0.967242] IOAPIC[4]: apic_id 244, version 33, address 0xfd100000, GSI 24-55
[    0.974348] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.980673] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.987182] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.993587] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.998703] ACPI: SPCR: console: uart,io,0x2f8,115200
[    1.003731] CPU topo: Max. logical packages:   1
[    1.008321] CPU topo: Max. logical dies:       1
[    1.012914] CPU topo: Max. dies per package:   1
[    1.017512] CPU topo: Max. threads per core:   2
[    1.022137] CPU topo: Num. cores per package:    64
[    1.026998] CPU topo: Num. threads per package: 128
[    1.031852] CPU topo: Allowing 128 present CPUs plus 0 hotplug CPUs
[    1.038117] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    1.045634] PM: hibernation: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    1.053174] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    1.060714] PM: hibernation: Registered nosave memory: [mem 0x15e00000-0x567fffff]
[    1.068254] PM: hibernation: Registered nosave memory: [mem 0x5a143000-0x5a342fff]
[    1.075795] PM: hibernation: Registered nosave memory: [mem 0x67acf000-0x6effefff]
[    1.083335] PM: hibernation: Registered nosave memory: [mem 0x6f000000-0x6f00afff]
[    1.090876] PM: hibernation: Registered nosave memory: [mem 0x70000000-0xffffffff]
[    1.098415] PM: hibernation: Registered nosave memory: [mem 0x207fd00000-0x207fffffff]
[    1.106302] [mem 0x56800000-0xffffffff] available for PCI devices
[    1.112370] Booting paravirtualized kernel on bare hardware
[    1.117917] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    1.128329] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:128 nr_cpu_ids:128 nr_node_ids:2
[    1.139175] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[    1.145651] Kernel command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    1.174980] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e biosdevname=0 mem_encrypt=off", will be passed to user space.
[    1.191829] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    1.198745] printk: log_buf_len total cpu_extra contributions: 520192 bytes
[    1.205678] printk: log_buf_len min size: 262144 bytes
[    1.211128] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[    1.218515] printk: early log buf free: 246352(93%)
[    1.224868] software IO TLB: area num 128.
[    1.228791] software IO TLB: swiotlb_memblock_alloc: Failed to allocate 268435456 bytes tlb structure
[    1.244344] software IO TLB: SWIOTLB bounce buffer size adjusted 131072 -> 65536 slabs
[    1.250449] Fallback order for Node 0: 0 1 
[    1.250454] Fallback order for Node 1: 1 0 
[    1.250468] Built 2 zonelists, mobility grouping on.  Total pages: 66743906
[    1.273456] Policy zone: Normal
[    1.276584] mem auto-init: stack:off, heap alloc:on, heap free:off
[    1.698546] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=128, Nodes=2
Poking KASLR using RDRAND RDTSC...
[    1.719815] ftrace: allocating 53763 entries in 212 pages
[    1.725029] ftrace: allocated 212 pages with 4 groups
[    1.730970] Dynamic Preempt: voluntary
[    1.734909] rcu: Preemptible hierarchical RCU implementation.
[    1.740474] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=128.
[    1.747407] 	Trampoline variant of Tasks RCU enabled.
[    1.752434] 	Rude variant of Tasks RCU enabled.
[    1.756941] 	Tracing variant of Tasks RCU enabled.
[    1.761708] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.769249] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=128
[    1.776136] RCU Tasks: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.784939] RCU Tasks Rude: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.794214] RCU Tasks Trace: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.807107] NR_IRQS: 524544, nr_irqs: 3624, preallocated irqs: 16
[    1.813298] rcu: srcu_init: Setting srcu_struct sizes to big.
[    1.819039] Console: colour dummy device 80x25
[    1.823324] printk: legacy console [ttyS0] enabled
[    1.823324] printk: legacy console [ttyS0] enabled
[    1.832857] printk: legacy bootconsole [earlyser0] disabled
[    1.832857] printk: legacy bootconsole [earlyser0] disabled
[    1.844046] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    1.855325] ACPI: Core revision 20250404
[    1.859475] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    1.868616] APIC: Switch to symmetric I/O mode setup
[    1.874010] AMD-Vi: Using global IVHD EFR:0x841f77e022094ace, EFR2:0x0
[    1.883080] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    1.908621] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x398b961a484, max_idle_ns: 881590688797 ns
[    1.919151] Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.20 BogoMIPS (lpj=7984404)
[    1.923163] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    1.927254] LVT offset 2 assigned for vector 0xf4
[    1.931180] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    1.935149] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    1.939151] process: using mwait in idle threads
[    1.943154] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    1.947149] Spectre V2 : Mitigation: Retpolines
[    1.951149] Spectre V2 : User space: Mitigation: STIBP always-on protection
[    1.955149] Speculative Return Stack Overflow: Mitigation: Safe RET
[    1.959149] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.963150] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
[    1.967149] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    1.971150] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    1.975153] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.979149] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.983149] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.987149] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    1.991149] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    1.995150] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    1.999149] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    2.003149] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    2.007149] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[    2.044909] Freeing SMP alternatives memory: 48K
[    2.047152] pid_max: default: 131072 minimum: 1024
[    2.058604] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm
[    2.059203] Yama: becoming mindful.
[    2.063275] AppArmor: AppArmor initialized
[    2.075765] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    2.084050] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    2.087301] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.091245] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.207839] smpboot: CPU0: AMD EPYC 7713 64-Core Processor (family: 0x19, model: 0x1, stepping: 0x1)
[    2.211506] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    2.215151] ... version:                0
[    2.219150] ... bit width:              48
[    2.223151] ... generic registers:      6
[    2.227150] ... value mask:             0000ffffffffffff
[    2.231150] ... max period:             00007fffffffffff
[    2.235150] ... fixed-purpose events:   0
[    2.239150] ... event mask:             000000000000003f
[    2.243585] signal: max sigframe size: 3376
[    2.247214] rcu: Hierarchical SRCU implementation.
[    2.251151] rcu: 	Max phase no-delay instances is 1000.
[    2.255208] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
[    2.267576] MCE: In-kernel MCE decoding enabled.
[    2.271200] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    2.276124] smp: Bringing up secondary CPUs ...
[    2.279316] smpboot: x86: Booting SMP configuration:
[    2.283153] .... node  #0, CPUs:          #1   #2   #3   #4   #5   #6   #7   #8   #9  #10  #11  #12  #13  #14  #15  #16  #17  #18  #19  #20  #21  #22  #23  #24  #25  #26  #27  #28  #29  #30  #31
[    2.295152] .... node  #1, CPUs:    #32  #33  #34  #35  #36  #37  #38  #39  #40  #41  #42  #43  #44  #45  #46  #47  #48  #49  #50  #51  #52  #53  #54  #55  #56  #57  #58  #59  #60  #61  #62  #63
[    2.447152] .... node  #0, CPUs:    #64  #65  #66  #67  #68  #69  #70  #71  #72  #73  #74  #75  #76  #77  #78  #79  #80  #81  #82  #83  #84  #85  #86  #87  #88  #89  #90  #91  #92  #93  #94  #95
[    2.455151] .... node  #1, CPUs:    #96  #97  #98  #99 #100 #101 #102 #103 #104 #105 #106 #107 #108 #109 #110 #111 #112 #113 #114 #115 #116 #117 #118 #119 #120 #121 #122 #123 #124 #125 #126 #127
[    2.463458] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[    2.615335] smp: Brought up 2 nodes, 128 CPUs
[    2.619153] smpboot: Total of 128 processors activated (511001.85 BogoMIPS)
[    2.633291] Memory: 262224964K/266975624K available (18401K kernel code, 3299K rwdata, 7944K rodata, 4760K init, 6092K bss, 4428308K reserved, 0K cma-reserved)
[    2.641076] devtmpfs: initialized
[    2.643257] x86/mm: Memory block size: 2048MB
[    2.657733] ACPI: PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    2.659153] ACPI: PM: Registering ACPI NVS region [mem 0x6dfcf000-0x6edfefff] (14876672 bytes)
[    2.663439] ACPI: PM: Registering ACPI NVS region [mem 0x6f000000-0x6f00afff] (45056 bytes)
[    2.667272] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    2.671215] posixtimers hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.675372] futex hash table entries: 16384 (1048576 bytes on 2 NUMA nodes, total 2048 KiB, linear).
[    2.679380] pinctrl core: initialized pinctrl subsystem
[    2.683301] PM: RTC time: 14:20:38, date: 2025-06-17
[    2.687935] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    2.691758] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    2.695333] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    2.699331] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    2.703158] audit: initializing netlink subsys (disabled)
[    2.707180] audit: type=2000 audit(1750170037.824:1): state=initialized audit_enabled=0 res=1
[    2.707356] thermal_sys: Registered thermal governor 'fair_share'
[    2.711152] thermal_sys: Registered thermal governor 'bang_bang'
[    2.715150] thermal_sys: Registered thermal governor 'step_wise'
[    2.719151] thermal_sys: Registered thermal governor 'user_space'
[    2.723175] cpuidle: using governor ladder
[    2.731161] cpuidle: using governor menu
[    2.735198] Detected 1 PCC Subspaces
[    2.739152] Registering PCC driver as Mailbox controller
[    2.747325] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    2.751154] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    2.755330] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    2.759161] PCI: Using configuration type 1 for base access
[    2.763162] PCI: Dell System detected, enabling pci=bfsort.
[    2.767357] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    2.771373] HugeTLB: allocation took 0ms with hugepage_allocation_threads=32
[    2.775194] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    2.779151] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    2.783151] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    2.787150] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    2.795712] ACPI: Added _OSI(Module Device)
[    2.799151] ACPI: Added _OSI(Processor Device)
[    2.803151] ACPI: Added _OSI(Processor Aggregator Device)
[    2.848320] ACPI: 6 ACPI AML tables successfully acquired and loaded
[    2.864274] ACPI: Interpreter enabled
[    2.867163] ACPI: PM: (supports S0 S5)
[    2.871151] ACPI: Using IOAPIC for interrupt routing
[    2.875769] HEST: Table parsing has been initialized.
[    2.879571] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    2.883154] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.887151] PCI: Ignoring E820 reservations for host bridge windows
[    2.895779] ACPI: Enabled 1 GPEs in block 00 to 1F
[    2.937692] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    2.939231] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    2.943229] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    2.947228] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    2.951228] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    2.955228] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    2.959229] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    2.963228] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    2.967649] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-3f])
[    2.971154] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.975316] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER DPC]
[    2.979467] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    2.983151] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.988136] PCI host bridge to bus 0000:00
[    2.991155] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    2.995151] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    2.999151] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000fffff window]
[    3.003150] pci_bus 0000:00: root bus resource [io  0x0d00-0x3fff window]
[    3.007150] pci_bus 0000:00: root bus resource [mem 0xe1000000-0xfebfffff window]
[    3.011150] pci_bus 0000:00: root bus resource [mem 0x63dc0000000-0x7fcffffffff window]
[    3.015151] pci_bus 0000:00: root bus resource [bus 00-3f]
[    3.019166] pci 0000:00:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.023307] pci 0000:00:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.027260] pci 0000:00:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.031244] pci 0000:00:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.035241] pci 0000:00:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.039245] pci 0000:00:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.043167] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.047154] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    3.051152] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    3.055220] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    3.060158] pci 0000:00:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.063246] pci 0000:00:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.067244] pci 0000:00:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.071245] pci 0000:00:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.075166] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.079156] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    3.083162] pci 0000:00:07.1: enabling Extended Tags
[    3.091159] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    3.095308] pci 0000:00:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.099244] pci 0000:00:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.103166] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.107155] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    3.111162] pci 0000:00:08.1: enabling Extended Tags
[    3.115200] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    3.119341] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
[    3.123266] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
[    3.127322] pci 0000:00:18.0: [1022:1650] type 00 class 0x060000 conventional PCI endpoint
[    3.131257] pci 0000:00:18.1: [1022:1651] type 00 class 0x060000 conventional PCI endpoint
[    3.135216] pci 0000:00:18.2: [1022:1652] type 00 class 0x060000 conventional PCI endpoint
[    3.139220] pci 0000:00:18.3: [1022:1653] type 00 class 0x060000 conventional PCI endpoint
[    3.143215] pci 0000:00:18.4: [1022:1654] type 00 class 0x060000 conventional PCI endpoint
[    3.147215] pci 0000:00:18.5: [1022:1655] type 00 class 0x060000 conventional PCI endpoint
[    3.151219] pci 0000:00:18.6: [1022:1656] type 00 class 0x060000 conventional PCI endpoint
[    3.155215] pci 0000:00:18.7: [1022:1657] type 00 class 0x060000 conventional PCI endpoint
[    3.159286] pci 0000:01:00.0: [1000:0097] type 00 class 0x010700 PCIe Endpoint
[    3.163181] pci 0000:01:00.0: BAR 0 [io  0x1000-0x10ff]
[    3.167152] pci 0000:01:00.0: BAR 1 [mem 0xf7400000-0xf740ffff 64bit]
[    3.171152] pci 0000:01:00.0: BAR 3 [mem 0xf7300000-0xf73fffff 64bit]
[    3.175152] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]
[    3.179155] pci 0000:01:00.0: enabling Extended Tags
[    3.183235] pci 0000:01:00.0: supports D1 D2
[    3.187191] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[    3.191150] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x000fffff 64bit]: contains BAR 0 for 16 VFs
[    3.195152] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x000fffff 64bit]
[    3.199152] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x00ffffff 64bit]: contains BAR 2 for 16 VFs
[    3.203302] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.207239] pci 0000:02:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.211184] pci 0000:02:00.0: enabling Extended Tags
[    3.215313] pci 0000:02:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.219178] pci 0000:02:00.2: BAR 2 [mem 0xf7200000-0xf727ffff]
[    3.223153] pci 0000:02:00.2: BAR 5 [mem 0xf7280000-0xf7281fff]
[    3.227155] pci 0000:02:00.2: enabling Extended Tags
[    3.231354] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.235287] pci 0000:03:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.239187] pci 0000:03:00.0: enabling Extended Tags
[    3.243362] pci 0000:03:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.247180] pci 0000:03:00.2: BAR 2 [mem 0xf7100000-0xf717ffff]
[    3.251153] pci 0000:03:00.2: BAR 5 [mem 0xf7180000-0xf7181fff]
[    3.255156] pci 0000:03:00.2: enabling Extended Tags
[    3.259345] pci 0000:03:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.263181] pci 0000:03:00.3: BAR 0 [mem 0xf7000000-0xf70fffff 64bit]
[    3.267159] pci 0000:03:00.3: enabling Extended Tags
[    3.271201] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
[    3.275334] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.280536] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 40-7f])
[    3.283154] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.287314] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.291466] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.295151] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.303867] PCI host bridge to bus 0000:40
[    3.307154] pci_bus 0000:40: root bus resource [io  0x4000-0x6fff window]
[    3.311151] pci_bus 0000:40: root bus resource [mem 0x90000000-0xaaffffff window]
[    3.315150] pci_bus 0000:40: root bus resource [mem 0x47e80000000-0x63dbfffffff window]
[    3.319152] pci_bus 0000:40: root bus resource [bus 40-7f]
[    3.323160] pci 0000:40:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.327249] pci 0000:40:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.331253] pci 0000:40:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.335234] pci 0000:40:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.339235] pci 0000:40:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.343244] pci 0000:40:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.347167] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.351155] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    3.355242] pci 0000:40:03.1: PME# supported from D0 D3hot D3cold
[    3.374971] pci 0000:40:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.375168] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.379157] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    3.383245] pci 0000:40:03.2: PME# supported from D0 D3hot D3cold
[    3.400538] pci 0000:40:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.403174] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.407158] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    3.411245] pci 0000:40:03.3: PME# supported from D0 D3hot D3cold
[    3.429322] pci 0000:40:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.435170] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.439156] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    3.447245] pci 0000:40:03.4: PME# supported from D0 D3hot D3cold
[    3.468309] pci 0000:40:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.471249] pci 0000:40:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.475242] pci 0000:40:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.479240] pci 0000:40:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.483166] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.487155] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    3.491163] pci 0000:40:07.1: enabling Extended Tags
[    3.495198] pci 0000:40:07.1: PME# supported from D0 D3hot D3cold
[    3.499307] pci 0000:40:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.503244] pci 0000:40:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.507166] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.511155] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    3.515162] pci 0000:40:08.1: enabling Extended Tags
[    3.519199] pci 0000:40:08.1: PME# supported from D0 D3hot D3cold
[    3.523403] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.527237] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.531235] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.535236] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.539237] pci 0000:45:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.543183] pci 0000:45:00.0: enabling Extended Tags
[    3.551168] pci 0000:45:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.555182] pci 0000:45:00.2: BAR 2 [mem 0xa5300000-0xa537ffff]
[    3.559153] pci 0000:45:00.2: BAR 5 [mem 0xa5380000-0xa5381fff]
[    3.563155] pci 0000:45:00.2: enabling Extended Tags
[    3.567349] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.571288] pci 0000:46:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.579187] pci 0000:46:00.0: enabling Extended Tags
[    3.583360] pci 0000:46:00.1: [1022:1486] type 00 class 0x108000 PCIe Endpoint
[    3.591181] pci 0000:46:00.1: BAR 2 [mem 0xa5100000-0xa51fffff]
[    3.595153] pci 0000:46:00.1: BAR 5 [mem 0xa5282000-0xa5283fff]
[    3.603156] pci 0000:46:00.1: enabling Extended Tags
[    3.607343] pci 0000:46:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.615180] pci 0000:46:00.2: BAR 2 [mem 0xa5200000-0xa527ffff]
[    3.619153] pci 0000:46:00.2: BAR 5 [mem 0xa5280000-0xa5281fff]
[    3.627155] pci 0000:46:00.2: enabling Extended Tags
[    3.631343] pci 0000:46:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.639179] pci 0000:46:00.3: BAR 0 [mem 0xa5000000-0xa50fffff 64bit]
[    3.647158] pci 0000:46:00.3: enabling Extended Tags
[    3.651194] pci 0000:46:00.3: PME# supported from D0 D3hot D3cold
[    3.655332] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.663811] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 80-bf])
[    3.667154] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.679317] acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.687469] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.695151] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.703805] PCI host bridge to bus 0000:80
[    3.707247] pci_bus 0000:80: root bus resource [io  0x7000-0x9fff window]
[    3.715152] pci_bus 0000:80: root bus resource [mem 0xab000000-0xc5ffffff window]
[    3.723151] pci_bus 0000:80: root bus resource [mem 0x2bf40000000-0x47e7fffffff window]
[    3.731151] pci_bus 0000:80: root bus resource [bus 80-bf]
[    3.735160] pci 0000:80:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.743251] pci 0000:80:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.751254] pci 0000:80:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.759246] pci 0000:80:01.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.767168] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.771156] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    3.779256] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    3.799090] pci 0000:80:01.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.807174] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.811158] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    3.819256] pci 0000:80:01.2: PME# supported from D0 D3hot D3cold
[    3.837546] pci 0000:80:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.843270] pci 0000:80:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.855311] pci 0000:80:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.863239] pci 0000:80:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.871235] pci 0000:80:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.879244] pci 0000:80:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.887166] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.891155] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    3.899162] pci 0000:80:07.1: enabling Extended Tags
[    3.903200] pci 0000:80:07.1: PME# supported from D0 D3hot D3cold
[    3.907311] pci 0000:80:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.915246] pci 0000:80:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.923166] pci 0000:80:08.1: PCI bridge to [bus 84]
[    3.931155] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    3.935162] pci 0000:80:08.1: enabling Extended Tags
[    3.943200] pci 0000:80:08.1: PME# supported from D0 D3hot D3cold
[    3.947321] pci 0000:80:08.2: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.955166] pci 0000:80:08.2: PCI bridge to [bus 85]
[    3.959155] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    3.967163] pci 0000:80:08.2: enabling Extended Tags
[    3.971199] pci 0000:80:08.2: PME# supported from D0 D3hot D3cold
[    3.979392] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.983234] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.987239] pci 0000:83:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.995184] pci 0000:83:00.0: enabling Extended Tags
[    3.999311] pci 0000:83:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.007177] pci 0000:83:00.2: BAR 2 [mem 0xbfa00000-0xbfa7ffff]
[    4.015153] pci 0000:83:00.2: BAR 5 [mem 0xbfa80000-0xbfa81fff]
[    4.019155] pci 0000:83:00.2: enabling Extended Tags
[    4.023349] pci 0000:80:07.1: PCI bridge to [bus 83]
[    4.031285] pci 0000:84:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.035186] pci 0000:84:00.0: enabling Extended Tags
[    4.043265] pci 0000:84:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.051180] pci 0000:84:00.2: BAR 2 [mem 0xbf900000-0xbf97ffff]
[    4.055153] pci 0000:84:00.2: BAR 5 [mem 0xbf980000-0xbf981fff]
[    4.063156] pci 0000:84:00.2: enabling Extended Tags
[    4.067355] pci 0000:80:08.1: PCI bridge to [bus 84]
[    4.071284] pci 0000:85:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[    4.079182] pci 0000:85:00.0: BAR 5 [mem 0xbf800000-0xbf8007ff]
[    4.083156] pci 0000:85:00.0: enabling Extended Tags
[    4.091215] pci 0000:85:00.0: PME# supported from D3hot D3cold
[    4.095330] pci 0000:80:08.2: PCI bridge to [bus 85]
[    4.099889] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus c0-ff])
[    4.107154] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    4.115316] acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug AER DPC]
[    4.123471] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    4.135151] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
[    4.143370] PCI host bridge to bus 0000:c0
[    4.147154] pci_bus 0000:c0: root bus resource [io  0xa000-0xffff window]
[    4.155152] pci_bus 0000:c0: root bus resource [mem 0xc6000000-0xe0ffffff window]
[    4.159150] pci_bus 0000:c0: root bus resource [mem 0x10000000000-0x2bf3fffffff window]
[    4.167150] pci_bus 0000:c0: root bus resource [io  0x03b0-0x03df window]
[    4.175153] pci_bus 0000:c0: root bus resource [mem 0x000a0000-0x000bffff window]
[    4.183151] pci_bus 0000:c0: root bus resource [bus c0-ff]
[    4.187161] pci 0000:c0:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    4.195251] pci 0000:c0:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    4.203253] pci 0000:c0:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.215235] pci 0000:c0:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.223235] pci 0000:c0:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.231242] pci 0000:c0:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.239168] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.243155] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    4.251241] pci 0000:c0:03.1: PME# supported from D0 D3hot D3cold
[    4.270006] pci 0000:c0:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.275174] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.283159] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    4.287229] pci 0000:c0:03.2: PME# supported from D0 D3hot D3cold
[    4.305915] pci 0000:c0:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.307173] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.311156] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    4.315262] pci 0000:c0:03.3: PME# supported from D0 D3hot D3cold
[    4.331953] pci 0000:c0:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.339169] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.343156] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    4.351246] pci 0000:c0:03.4: PME# supported from D0 D3hot D3cold
[    4.371145] pci 0000:c0:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.379364] pci 0000:c0:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.387246] pci 0000:c0:05.1: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.395166] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.399161] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    4.407196] pci 0000:c0:05.1: PME# supported from D0 D3hot D3cold
[    4.415304] pci 0000:c0:05.2: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.419166] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.427155] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    4.431156] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.439196] pci 0000:c0:05.2: PME# supported from D0 D3hot D3cold
[    4.447297] pci 0000:c0:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.455240] pci 0000:c0:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.463165] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.467154] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    4.475163] pci 0000:c0:07.1: enabling Extended Tags
[    4.479196] pci 0000:c0:07.1: PME# supported from D0 D3hot D3cold
[    4.487299] pci 0000:c0:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.495241] pci 0000:c0:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.499166] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.507155] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    4.511162] pci 0000:c0:08.1: enabling Extended Tags
[    4.519198] pci 0000:c0:08.1: PME# supported from D0 D3hot D3cold
[    4.523398] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.531234] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.535235] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.539232] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.543250] pci 0000:c1:00.0: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.551197] pci 0000:c1:00.0: BAR 0 [mem 0xc7030000-0xc703ffff 64bit pref]
[    4.559153] pci 0000:c1:00.0: BAR 2 [mem 0xc7040000-0xc704ffff 64bit pref]
[    4.567153] pci 0000:c1:00.0: BAR 4 [mem 0xc7050000-0xc705ffff 64bit pref]
[    4.571152] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.579238] pci 0000:c1:00.0: PME# supported from D0 D3hot D3cold
[    4.583206] pci 0000:c1:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:c0:05.1 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
[    4.600578] pci 0000:c1:00.1: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.607197] pci 0000:c1:00.1: BAR 0 [mem 0xc7000000-0xc700ffff 64bit pref]
[    4.615153] pci 0000:c1:00.1: BAR 2 [mem 0xc7010000-0xc701ffff 64bit pref]
[    4.623153] pci 0000:c1:00.1: BAR 4 [mem 0xc7020000-0xc702ffff 64bit pref]
[    4.627152] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.635238] pci 0000:c1:00.1: PME# supported from D0 D3hot D3cold
[    4.651176] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.655234] pci 0000:c2:00.0: [1556:be00] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    4.663177] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.667158] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    4.675160] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.691165] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.695186] pci_bus 0000:c3: extended config space not accessible
[    4.703182] pci 0000:c3:00.0: [102b:0536] type 00 class 0x030000 conventional PCI endpoint
[    4.711197] pci 0000:c3:00.0: BAR 0 [mem 0xc6000000-0xc6ffffff pref]
[    4.715152] pci 0000:c3:00.0: BAR 1 [mem 0xda808000-0xda80bfff]
[    4.723152] pci 0000:c3:00.0: BAR 2 [mem 0xda000000-0xda7fffff]
[    4.727175] pci 0000:c3:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    4.735282] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.743257] pci 0000:c8:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    4.747183] pci 0000:c8:00.0: enabling Extended Tags
[    4.755311] pci 0000:c8:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.763177] pci 0000:c8:00.2: BAR 2 [mem 0xdbb00000-0xdbb7ffff]
[    4.767154] pci 0000:c8:00.2: BAR 5 [mem 0xdbb80000-0xdbb81fff]
[    4.771155] pci 0000:c8:00.2: enabling Extended Tags
[    4.779256] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.783286] pci 0000:c9:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.791186] pci 0000:c9:00.0: enabling Extended Tags
[    4.795360] pci 0000:c9:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.803179] pci 0000:c9:00.2: BAR 2 [mem 0xdba00000-0xdba7ffff]
[    4.807153] pci 0000:c9:00.2: BAR 5 [mem 0xdba80000-0xdba81fff]
[    4.815157] pci 0000:c9:00.2: enabling Extended Tags
[    4.819356] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.831177] iommu: Default domain type: Translated
[    4.835151] iommu: DMA domain TLB invalidation policy: lazy mode
[    4.843456] SCSI subsystem initialized
[    4.847193] ACPI: bus type USB registered
[    4.851174] usbcore: registered new interface driver usbfs
[    4.859160] usbcore: registered new interface driver hub
[    4.863185] usbcore: registered new device driver usb
[    4.867182] pps_core: LinuxPPS API ver. 1 registered
[    4.871151] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux•it>
[    4.883153] PTP clock support registered
[    4.887229] EDAC MC: Ver: 3.0.0
[    4.891366] efivars: Registered efivars operations
[    4.895613] NetLabel: Initializing
[    4.899153] NetLabel:  domain hash size = 128
[    4.903151] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    4.907173] NetLabel:  unlabeled traffic allowed by default
[    4.915187] PCI: Using ACPI for IRQ routing
[    4.923486] pci 0000:c3:00.0: vgaarb: setting as boot VGA device
[    4.927149] pci 0000:c3:00.0: vgaarb: bridge control possible
[    4.927149] pci 0000:c3:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    4.943152] vgaarb: loaded
[    4.947299] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    4.951151] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    4.959341] clocksource: Switched to clocksource tsc-early
[    4.964958] VFS: Disk quotas dquot_6.6.0
[    4.968912] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.976030] AppArmor: AppArmor Filesystem Enabled
[    4.980758] pnp: PnP ACPI init
[    4.984070] system 00:00: [mem 0x80000000-0x8fffffff] has been reserved
[    4.990782] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[    4.998996] pnp: PnP ACPI: found 5 devices
[    5.010120] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    5.019092] NET: Registered PF_INET protocol family
[    5.024108] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    5.035964] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    5.044947] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    5.052979] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    5.062471] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc hugepage)
[    5.070864] TCP: Hash tables configured (established 524288 bind 65536)
[    5.077838] UDP hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    5.086260] UDP-Lite hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    5.095089] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    5.100752] NET: Registered PF_XDP protocol family
[    5.105550] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]: can't claim; no compatible bridge window
[    5.115370] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    5.125188] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    5.135008] pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
[    5.140681] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: can't assign; no space
[    5.148424] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: failed to assign
[    5.155646] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: can't assign; no space
[    5.163905] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: failed to assign
[    5.171644] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: can't assign; no space
[    5.179903] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: failed to assign
[    5.187643] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.192610] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    5.198704] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    5.205492] pci 0000:00:07.1: PCI bridge to [bus 02]
[    5.210456] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    5.217246] pci 0000:00:08.1: PCI bridge to [bus 03]
[    5.222219] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.229006] PCI: No. 2 try to assign unassigned res
[    5.233886] pci 0000:00:03.2: resource 14 [mem 0xf7300000-0xf74fffff] released
[    5.241162] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.246133] pci 0000:00:03.2: bridge window [mem 0x00100000-0x002fffff] to [bus 01] add_size 1200000 add_align 100000
[    5.256743] pci 0000:00:03.2: bridge window [mem 0xe1000000-0xe23fffff]: assigned
[    5.264227] pci 0000:01:00.0: BAR 3 [mem 0xe1000000-0xe10fffff 64bit]: assigned
[    5.271538] pci 0000:01:00.0: ROM [mem 0xe1100000-0xe11fffff pref]: assigned
[    5.278587] pci 0000:01:00.0: VF BAR 2 [mem 0xe1200000-0xe21fffff 64bit]: assigned
[    5.286155] pci 0000:01:00.0: BAR 1 [mem 0xe2200000-0xe220ffff 64bit]: assigned
[    5.293465] pci 0000:01:00.0: VF BAR 0 [mem 0xe2210000-0xe230ffff 64bit]: assigned
[    5.301039] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.306010] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    5.312105] pci 0000:00:03.2:   bridge window [mem 0xe1000000-0xe23fffff]
[    5.318894] pci 0000:00:07.1: PCI bridge to [bus 02]
[    5.323865] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    5.330656] pci 0000:00:08.1: PCI bridge to [bus 03]
[    5.335627] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.342447] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    5.348628] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    5.354804] pci_bus 0000:00: resource 6 [mem 0x000c0000-0x000fffff window]
[    5.361678] pci_bus 0000:00: resource 7 [io  0x0d00-0x3fff window]
[    5.367859] pci_bus 0000:00: resource 8 [mem 0xe1000000-0xfebfffff window]
[    5.374731] pci_bus 0000:00: resource 9 [mem 0x63dc0000000-0x7fcffffffff window]
[    5.382122] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[    5.387696] pci_bus 0000:01: resource 1 [mem 0xe1000000-0xe23fffff]
[    5.393963] pci_bus 0000:02: resource 1 [mem 0xf7200000-0xf72fffff]
[    5.400227] pci_bus 0000:03: resource 1 [mem 0xf7000000-0xf71fffff]
[    5.406580] pci 0000:40:03.1: bridge window [io  0x1000-0x0fff] to [bus 41] add_size 1000
[    5.414757] pci 0000:40:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 41] add_size 200000 add_align 100000
[    5.426222] pci 0000:40:03.2: bridge window [io  0x1000-0x0fff] to [bus 42] add_size 1000
[    5.434394] pci 0000:40:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 42] add_size 200000 add_align 100000
[    5.445862] pci 0000:40:03.3: bridge window [io  0x1000-0x0fff] to [bus 43] add_size 1000
[    5.454088] pci 0000:40:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 43] add_size 200000 add_align 100000
[    5.465556] pci 0000:40:03.4: bridge window [io  0x1000-0x0fff] to [bus 44] add_size 1000
[    5.473727] pci 0000:40:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 44] add_size 200000 add_align 100000
[    5.485201] pci 0000:40:03.1: bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]: assigned
[    5.494154] pci 0000:40:03.2: bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]: assigned
[    5.503107] pci 0000:40:03.3: bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]: assigned
[    5.512060] pci 0000:40:03.4: bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]: assigned
[    5.521014] pci 0000:40:03.1: bridge window [io  0x4000-0x4fff]: assigned
[    5.527803] pci 0000:40:03.2: bridge window [io  0x5000-0x5fff]: assigned
[    5.534585] pci 0000:40:03.3: bridge window [io  0x6000-0x6fff]: assigned
[    5.541372] pci 0000:40:03.4: bridge window [io  size 0x1000]: can't assign; no space
[    5.549200] pci 0000:40:03.4: bridge window [io  size 0x1000]: failed to assign
[    5.556519] pci 0000:40:03.4: bridge window [io  0x4000-0x4fff]: assigned
[    5.563310] pci 0000:40:03.3: bridge window [io  0x5000-0x5fff]: assigned
[    5.570097] pci 0000:40:03.2: bridge window [io  0x6000-0x6fff]: assigned
[    5.576883] pci 0000:40:03.1: bridge window [io  size 0x1000]: can't assign; no space
[    5.584709] pci 0000:40:03.1: bridge window [io  size 0x1000]: failed to assign
[    5.592015] pci 0000:40:03.1: PCI bridge to [bus 41]
[    5.596985] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    5.603779] pci 0000:40:03.1:   bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.612038] pci 0000:40:03.2: PCI bridge to [bus 42]
[    5.617001] pci 0000:40:03.2:   bridge window [io  0x6000-0x6fff]
[    5.623098] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    5.629881] pci 0000:40:03.2:   bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.638145] pci 0000:40:03.3: PCI bridge to [bus 43]
[    5.643117] pci 0000:40:03.3:   bridge window [io  0x5000-0x5fff]
[    5.649211] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    5.655998] pci 0000:40:03.3:   bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.664261] pci 0000:40:03.4: PCI bridge to [bus 44]
[    5.669229] pci 0000:40:03.4:   bridge window [io  0x4000-0x4fff]
[    5.675324] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    5.682111] pci 0000:40:03.4:   bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.690374] pci 0000:40:07.1: PCI bridge to [bus 45]
[    5.695346] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    5.702135] pci 0000:40:08.1: PCI bridge to [bus 46]
[    5.707107] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    5.713897] pci_bus 0000:40: Some PCI device resources are unassigned, try booting with pci=realloc
[    5.722941] pci_bus 0000:40: resource 4 [io  0x4000-0x6fff window]
[    5.729121] pci_bus 0000:40: resource 5 [mem 0x90000000-0xaaffffff window]
[    5.735991] pci_bus 0000:40: resource 6 [mem 0x47e80000000-0x63dbfffffff window]
[    5.743387] pci_bus 0000:41: resource 1 [mem 0xa4c00000-0xa4ffffff]
[    5.749652] pci_bus 0000:41: resource 2 [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.757393] pci_bus 0000:42: resource 0 [io  0x6000-0x6fff]
[    5.762963] pci_bus 0000:42: resource 1 [mem 0xa4800000-0xa4bfffff]
[    5.769234] pci_bus 0000:42: resource 2 [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.776971] pci_bus 0000:43: resource 0 [io  0x5000-0x5fff]
[    5.782542] pci_bus 0000:43: resource 1 [mem 0xa4400000-0xa47fffff]
[    5.788812] pci_bus 0000:43: resource 2 [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.796552] pci_bus 0000:44: resource 0 [io  0x4000-0x4fff]
[    5.802122] pci_bus 0000:44: resource 1 [mem 0xa4000000-0xa43fffff]
[    5.808387] pci_bus 0000:44: resource 2 [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.816127] pci_bus 0000:45: resource 1 [mem 0xa5300000-0xa53fffff]
[    5.822394] pci_bus 0000:46: resource 1 [mem 0xa5000000-0xa52fffff]
[    5.828733] pci 0000:80:01.1: bridge window [io  0x1000-0x0fff] to [bus 81] add_size 1000
[    5.836905] pci 0000:80:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 81] add_size 200000 add_align 100000
[    5.848373] pci 0000:80:01.2: bridge window [io  0x1000-0x0fff] to [bus 82] add_size 1000
[    5.856543] pci 0000:80:01.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 82] add_size 200000 add_align 100000
[    5.868035] pci 0000:80:01.1: bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]: assigned
[    5.876991] pci 0000:80:01.2: bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]: assigned
[    5.885942] pci 0000:80:01.1: bridge window [io  0x7000-0x7fff]: assigned
[    5.892729] pci 0000:80:01.2: bridge window [io  0x8000-0x8fff]: assigned
[    5.899517] pci 0000:80:01.1: PCI bridge to [bus 81]
[    5.904484] pci 0000:80:01.1:   bridge window [io  0x7000-0x7fff]
[    5.910578] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    5.917362] pci 0000:80:01.1:   bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.925621] pci 0000:80:01.2: PCI bridge to [bus 82]
[    5.930586] pci 0000:80:01.2:   bridge window [io  0x8000-0x8fff]
[    5.936682] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    5.943466] pci 0000:80:01.2:   bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.951733] pci 0000:80:07.1: PCI bridge to [bus 83]
[    5.956705] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    5.963502] pci 0000:80:08.1: PCI bridge to [bus 84]
[    5.968475] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    5.975273] pci 0000:80:08.2: PCI bridge to [bus 85]
[    5.980245] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    5.987045] pci_bus 0000:80: resource 4 [io  0x7000-0x9fff window]
[    5.993223] pci_bus 0000:80: resource 5 [mem 0xab000000-0xc5ffffff window]
[    6.000098] pci_bus 0000:80: resource 6 [mem 0x2bf40000000-0x47e7fffffff window]
[    6.007490] pci_bus 0000:81: resource 0 [io  0x7000-0x7fff]
[    6.013064] pci_bus 0000:81: resource 1 [mem 0xbf400000-0xbf7fffff]
[    6.019331] pci_bus 0000:81: resource 2 [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    6.027070] pci_bus 0000:82: resource 0 [io  0x8000-0x8fff]
[    6.032643] pci_bus 0000:82: resource 1 [mem 0xbf000000-0xbf3fffff]
[    6.038908] pci_bus 0000:82: resource 2 [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    6.046648] pci_bus 0000:83: resource 1 [mem 0xbfa00000-0xbfafffff]
[    6.052915] pci_bus 0000:84: resource 1 [mem 0xbf900000-0xbf9fffff]
[    6.059184] pci_bus 0000:85: resource 1 [mem 0xbf800000-0xbf8fffff]
[    6.065523] pci 0000:c0:03.1: bridge window [io  0x1000-0x0fff] to [bus c4] add_size 1000
[    6.073733] pci 0000:c0:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c4] add_size 200000 add_align 100000
[    6.085201] pci 0000:c0:03.2: bridge window [io  0x1000-0x0fff] to [bus c5] add_size 1000
[    6.093373] pci 0000:c0:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c5] add_size 200000 add_align 100000
[    6.104838] pci 0000:c0:03.3: bridge window [io  0x1000-0x0fff] to [bus c6] add_size 1000
[    6.113012] pci 0000:c0:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c6] add_size 200000 add_align 100000
[    6.124477] pci 0000:c0:03.4: bridge window [io  0x1000-0x0fff] to [bus c7] add_size 1000
[    6.132651] pci 0000:c0:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c7] add_size 200000 add_align 100000
[    6.144120] pci 0000:c0:05.1: bridge window [mem 0x00100000-0x000fffff] to [bus c1] add_size 100000 add_align 100000
[    6.154640] pci 0000:c0:03.1: bridge window [mem 0x10000000000-0x100001fffff 64bit pref]: assigned
[    6.163594] pci 0000:c0:03.2: bridge window [mem 0x10000200000-0x100003fffff 64bit pref]: assigned
[    6.172546] pci 0000:c0:03.3: bridge window [mem 0x10000400000-0x100005fffff 64bit pref]: assigned
[    6.181527] pci 0000:c0:03.4: bridge window [mem 0x10000600000-0x100007fffff 64bit pref]: assigned
[    6.190477] pci 0000:c0:05.1: bridge window [mem 0xc7100000-0xc71fffff]: assigned
[    6.197956] pci 0000:c0:03.1: bridge window [io  0xa000-0xafff]: assigned
[    6.204745] pci 0000:c0:03.2: bridge window [io  0xb000-0xbfff]: assigned
[    6.211532] pci 0000:c0:03.3: bridge window [io  0xc000-0xcfff]: assigned
[    6.218319] pci 0000:c0:03.4: bridge window [io  0xd000-0xdfff]: assigned
[    6.225105] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    6.230072] pci 0000:c0:03.1:   bridge window [io  0xa000-0xafff]
[    6.236167] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    6.242962] pci 0000:c0:03.1:   bridge window [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.251228] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    6.256192] pci 0000:c0:03.2:   bridge window [io  0xb000-0xbfff]
[    6.262288] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    6.269073] pci 0000:c0:03.2:   bridge window [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.277340] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    6.282307] pci 0000:c0:03.3:   bridge window [io  0xc000-0xcfff]
[    6.288401] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    6.295186] pci 0000:c0:03.3:   bridge window [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.303449] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    6.308413] pci 0000:c0:03.4:   bridge window [io  0xd000-0xdfff]
[    6.314506] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    6.321294] pci 0000:c0:03.4:   bridge window [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.329572] pci 0000:c1:00.0: ROM [mem 0xc7100000-0xc713ffff pref]: assigned
[    6.336628] pci 0000:c1:00.1: ROM [mem 0xc7140000-0xc717ffff pref]: assigned
[    6.343679] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    6.348647] pci 0000:c0:05.1:   bridge window [mem 0xc7100000-0xc71fffff]
[    6.355431] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.363180] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    6.368148] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    6.374933] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.382676] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    6.387910] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    6.394713] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.402454] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    6.407426] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    6.414215] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    6.419186] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    6.425977] pci_bus 0000:c0: resource 4 [io  0xa000-0xffff window]
[    6.432159] pci_bus 0000:c0: resource 5 [mem 0xc6000000-0xe0ffffff window]
[    6.439034] pci_bus 0000:c0: resource 6 [mem 0x10000000000-0x2bf3fffffff window]
[    6.446426] pci_bus 0000:c0: resource 7 [io  0x03b0-0x03df window]
[    6.452607] pci_bus 0000:c0: resource 8 [mem 0x000a0000-0x000bffff window]
[    6.459479] pci_bus 0000:c4: resource 0 [io  0xa000-0xafff]
[    6.465052] pci_bus 0000:c4: resource 1 [mem 0xdb600000-0xdb9fffff]
[    6.471318] pci_bus 0000:c4: resource 2 [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.479057] pci_bus 0000:c5: resource 0 [io  0xb000-0xbfff]
[    6.484629] pci_bus 0000:c5: resource 1 [mem 0xdb200000-0xdb5fffff]
[    6.490896] pci_bus 0000:c5: resource 2 [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.498638] pci_bus 0000:c6: resource 0 [io  0xc000-0xcfff]
[    6.504211] pci_bus 0000:c6: resource 1 [mem 0xdae00000-0xdb1fffff]
[    6.510476] pci_bus 0000:c6: resource 2 [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.518216] pci_bus 0000:c7: resource 0 [io  0xd000-0xdfff]
[    6.523788] pci_bus 0000:c7: resource 1 [mem 0xdaa00000-0xdadfffff]
[    6.530056] pci_bus 0000:c7: resource 2 [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.537798] pci_bus 0000:c1: resource 1 [mem 0xc7100000-0xc71fffff]
[    6.544071] pci_bus 0000:c1: resource 2 [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.551291] pci_bus 0000:c2: resource 1 [mem 0xda000000-0xda8fffff]
[    6.557555] pci_bus 0000:c2: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.564778] pci_bus 0000:c3: resource 1 [mem 0xda000000-0xda8fffff]
[    6.571041] pci_bus 0000:c3: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.578263] pci_bus 0000:c8: resource 1 [mem 0xdbb00000-0xdbbfffff]
[    6.584529] pci_bus 0000:c9: resource 1 [mem 0xdba00000-0xdbafffff]
[    6.591584] PCI: CLS 64 bytes, default 64
[    6.595683] Trying to unpack rootfs image as initramfs...
[    6.658216] AMD-Vi: IOMMU SNP support enabled.
[    6.662853] pci 0000:c0:00.2: AMD-Vi: IOMMU performance counters supported
[    6.669893] pci 0000:c0:01.0: Adding to iommu group 0
[    6.675000] pci 0000:c0:02.0: Adding to iommu group 1
[    6.680206] pci 0000:c0:03.0: Adding to iommu group 2
[    6.685302] pci 0000:c0:03.1: Adding to iommu group 2
[    6.690400] pci 0000:c0:03.2: Adding to iommu group 2
[    6.695496] pci 0000:c0:03.3: Adding to iommu group 2
[    6.700594] pci 0000:c0:03.4: Adding to iommu group 2
[    6.705706] pci 0000:c0:04.0: Adding to iommu group 3
[    6.710854] pci 0000:c0:05.0: Adding to iommu group 4
[    6.715951] pci 0000:c0:05.1: Adding to iommu group 4
[    6.721045] pci 0000:c0:05.2: Adding to iommu group 4
[    6.726152] pci 0000:c0:07.0: Adding to iommu group 5
[    6.731235] pci 0000:c0:07.1: Adding to iommu group 6
[    6.736343] pci 0000:c0:08.0: Adding to iommu group 7
[    6.741427] pci 0000:c0:08.1: Adding to iommu group 8
[    6.746488] pci 0000:c1:00.0: Adding to iommu group 4
[    6.751549] pci 0000:c1:00.1: Adding to iommu group 4
[    6.756612] pci 0000:c2:00.0: Adding to iommu group 4
[    6.761676] pci 0000:c3:00.0: Adding to iommu group 4
[    6.766763] pci 0000:c8:00.0: Adding to iommu group 9
[    6.771852] pci 0000:c8:00.2: Adding to iommu group 10
[    6.777026] pci 0000:c9:00.0: Adding to iommu group 11
[    6.782197] pci 0000:c9:00.2: Adding to iommu group 12
[    6.793556] pci 0000:80:00.2: AMD-Vi: IOMMU performance counters supported
[    6.800619] pci 0000:80:01.0: Adding to iommu group 13
[    6.805842] pci 0000:80:01.1: Adding to iommu group 13
[    6.811023] pci 0000:80:01.2: Adding to iommu group 13
[    6.816219] pci 0000:80:02.0: Adding to iommu group 14
[    6.821413] pci 0000:80:03.0: Adding to iommu group 15
[    6.826614] pci 0000:80:04.0: Adding to iommu group 16
[    6.831812] pci 0000:80:05.0: Adding to iommu group 17
[    6.837004] pci 0000:80:07.0: Adding to iommu group 18
[    6.842174] pci 0000:80:07.1: Adding to iommu group 19
[    6.847372] pci 0000:80:08.0: Adding to iommu group 20
[    6.852547] pci 0000:80:08.1: Adding to iommu group 21
[    6.857722] pci 0000:80:08.2: Adding to iommu group 22
[    6.862899] pci 0000:83:00.0: Adding to iommu group 23
[    6.868072] pci 0000:83:00.2: Adding to iommu group 24
[    6.873246] pci 0000:84:00.0: Adding to iommu group 25
[    6.878418] pci 0000:84:00.2: Adding to iommu group 26
[    6.883594] pci 0000:85:00.0: Adding to iommu group 27
[    6.895863] pci 0000:40:00.2: AMD-Vi: IOMMU performance counters supported
[    6.902868] pci 0000:40:01.0: Adding to iommu group 28
[    6.908065] pci 0000:40:02.0: Adding to iommu group 29
[    6.913352] pci 0000:40:03.0: Adding to iommu group 30
[    6.918526] pci 0000:40:03.1: Adding to iommu group 30
[    6.923700] pci 0000:40:03.2: Adding to iommu group 30
[    6.928873] pci 0000:40:03.3: Adding to iommu group 30
[    6.934050] pci 0000:40:03.4: Adding to iommu group 30
[    6.939248] pci 0000:40:04.0: Adding to iommu group 31
[    6.944444] pci 0000:40:05.0: Adding to iommu group 32
[    6.949645] pci 0000:40:07.0: Adding to iommu group 33
[    6.954822] pci 0000:40:07.1: Adding to iommu group 34
[    6.960016] pci 0000:40:08.0: Adding to iommu group 35
[    6.965184] pci 0000:40:08.1: Adding to iommu group 36
[    6.970360] pci 0000:45:00.0: Adding to iommu group 37
[    6.975534] pci 0000:45:00.2: Adding to iommu group 38
[    6.980711] pci 0000:46:00.0: Adding to iommu group 39
[    6.985882] pci 0000:46:00.1: Adding to iommu group 40
[    6.991059] pci 0000:46:00.2: Adding to iommu group 41
[    6.996237] pci 0000:46:00.3: Adding to iommu group 42
[    7.008747] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    7.015760] pci 0000:00:00.0: Adding to iommu group 43
[    7.020956] pci 0000:00:01.0: Adding to iommu group 44
[    7.026154] pci 0000:00:02.0: Adding to iommu group 45
[    7.031347] pci 0000:00:03.0: Adding to iommu group 46
[    7.032119] Freeing initrd memory: 38564K
[    7.036522] pci 0000:00:03.2: Adding to iommu group 47
[    7.045700] pci 0000:00:04.0: Adding to iommu group 48
[    7.050900] pci 0000:00:05.0: Adding to iommu group 49
[    7.056093] pci 0000:00:07.0: Adding to iommu group 50
[    7.061269] pci 0000:00:07.1: Adding to iommu group 51
[    7.066466] pci 0000:00:08.0: Adding to iommu group 52
[    7.071635] pci 0000:00:08.1: Adding to iommu group 53
[    7.076853] pci 0000:00:14.0: Adding to iommu group 54
[    7.082025] pci 0000:00:14.3: Adding to iommu group 54
[    7.087380] pci 0000:00:18.0: Adding to iommu group 55
[    7.092547] pci 0000:00:18.1: Adding to iommu group 55
[    7.097720] pci 0000:00:18.2: Adding to iommu group 55
[    7.102895] pci 0000:00:18.3: Adding to iommu group 55
[    7.108071] pci 0000:00:18.4: Adding to iommu group 55
[    7.113243] pci 0000:00:18.5: Adding to iommu group 55
[    7.118420] pci 0000:00:18.6: Adding to iommu group 55
[    7.123594] pci 0000:00:18.7: Adding to iommu group 55
[    7.128770] pci 0000:01:00.0: Adding to iommu group 56
[    7.133942] pci 0000:02:00.0: Adding to iommu group 57
[    7.139118] pci 0000:02:00.2: Adding to iommu group 58
[    7.144294] pci 0000:03:00.0: Adding to iommu group 59
[    7.149466] pci 0000:03:00.2: Adding to iommu group 60
[    7.154642] pci 0000:03:00.3: Adding to iommu group 61
[    7.168725] AMD-Vi: Extended features (0x841f77e022094ace, 0x0): PPR X2APIC NX IA GA PC SNP
[    7.177090] AMD-Vi: Interrupt remapping enabled
[    7.181621] AMD-Vi: X2APIC enabled
[    7.186178] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    7.192625] software IO TLB: mapped [mem 0x000000005bf37000-0x0000000063f37000] (128MB)
[    7.200777] LVT offset 0 assigned for vector 0x400
[    7.207099] perf: AMD IBS detected (0x000003ff)
[    7.213088] amd_uncore: 4 amd_df counters detected
[    7.217916] amd_uncore: 6 amd_l3 counters detected
[    7.224287] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    7.231444] perf/amd_iommu: Detected AMD IOMMU #1 (2 banks, 4 counters/bank).
[    7.238610] perf/amd_iommu: Detected AMD IOMMU #2 (2 banks, 4 counters/bank).
[    7.245760] perf/amd_iommu: Detected AMD IOMMU #3 (2 banks, 4 counters/bank).
[    7.256171] Initialise system trusted keyrings
[    7.260624] Key type blacklist registered
[    7.264776] workingset: timestamp_bits=36 max_order=26 bucket_order=0
[    7.271693] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    7.277687] fuse: init (API version 7.44)
[    7.281952] integrity: Platform Keyring initialized
[    7.298729] Key type asymmetric registered
[    7.302832] Asymmetric key parser 'x509' registered
[    7.307742] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    7.315238] io scheduler mq-deadline registered
[    7.322388] ledtrig-cpu: registered to indicate activity on CPUs
[    7.328697] pcieport 0000:00:03.2: PME: Signaling with IRQ 38
[    7.334835] pcieport 0000:00:07.1: PME: Signaling with IRQ 40
[    7.340825] pcieport 0000:00:08.1: PME: Signaling with IRQ 41
[    7.346813] pcieport 0000:40:03.1: PME: Signaling with IRQ 42
[    7.352616] pcieport 0000:40:03.1: pciehp: Slot #167 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.366638] pcieport 0000:40:03.2: PME: Signaling with IRQ 43
[    7.372446] pcieport 0000:40:03.2: pciehp: Slot #166 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.386452] pcieport 0000:40:03.3: PME: Signaling with IRQ 44
[    7.392252] pcieport 0000:40:03.3: pciehp: Slot #169 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.406260] pcieport 0000:40:03.4: PME: Signaling with IRQ 45
[    7.412059] pcieport 0000:40:03.4: pciehp: Slot #168 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.426151] pcieport 0000:40:07.1: PME: Signaling with IRQ 47
[    7.432241] pcieport 0000:40:08.1: PME: Signaling with IRQ 48
[    7.438367] pcieport 0000:80:01.1: PME: Signaling with IRQ 49
[    7.444182] pcieport 0000:80:01.1: pciehp: Slot #160 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.458195] pcieport 0000:80:01.2: PME: Signaling with IRQ 50
[    7.463997] pcieport 0000:80:01.2: pciehp: Slot #161 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.478131] pcieport 0000:80:07.1: PME: Signaling with IRQ 52
[    7.484183] pcieport 0000:80:08.1: PME: Signaling with IRQ 54
[    7.490235] pcieport 0000:80:08.2: PME: Signaling with IRQ 55
[    7.496214] pcieport 0000:c0:03.1: PME: Signaling with IRQ 56
[    7.502009] pcieport 0000:c0:03.1: pciehp: Slot #163 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.516007] pcieport 0000:c0:03.2: PME: Signaling with IRQ 57
[    7.521813] pcieport 0000:c0:03.2: pciehp: Slot #162 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.535797] pcieport 0000:c0:03.3: PME: Signaling with IRQ 58
[    7.541625] pcieport 0000:c0:03.3: pciehp: Slot #165 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.555613] pcieport 0000:c0:03.4: PME: Signaling with IRQ 59
[    7.561413] pcieport 0000:c0:03.4: pciehp: Slot #164 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.575392] pcieport 0000:c0:05.1: PME: Signaling with IRQ 60
[    7.581329] pcieport 0000:c0:05.2: PME: Signaling with IRQ 61
[    7.587385] pcieport 0000:c0:07.1: PME: Signaling with IRQ 63
[    7.593423] pcieport 0000:c0:08.1: PME: Signaling with IRQ 65
[    7.600174] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    7.607649] ACPI: button: Power Button [PWRF]
[    8.052144] Estimated ratio of average max frequency by base frequency (times 1024): 1464
[    8.060657] ERST: Error Record Serialization Table (ERST) support is initialized.
[    8.068160] pstore: Using crash dump compression: deflate
[    8.073562] pstore: Registered erst as persistent store backend
[    8.079616] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    8.086185] 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    8.094371] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    8.105379] Linux agpgart interface v0.103
[    8.136111] loop: module loaded
[    8.150715] ahci 0000:85:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[    8.158730] ahci 0000:85:00.0: 8/8 ports implemented (port mask 0xff)
[    8.165194] ahci 0000:85:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part sxs 
[    8.175550] scsi host0: ahci
[    8.178681] scsi host1: ahci
[    8.181783] scsi host2: ahci
[    8.184889] scsi host3: ahci
[    8.187982] scsi host4: ahci
[    8.191088] scsi host5: ahci
[    8.194192] scsi host6: ahci
[    8.197287] scsi host7: ahci
[    8.200233] ata1: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800100 irq 67 lpm-pol 0 ext
[    8.208840] ata2: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800180 irq 68 lpm-pol 0 ext
[    8.217445] ata3: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800200 irq 69 lpm-pol 0 ext
[    8.226052] ata4: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800280 irq 70 lpm-pol 0 ext
[    8.234658] ata5: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800300 irq 71 lpm-pol 0 ext
[    8.243263] ata6: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800380 irq 72 lpm-pol 0 ext
[    8.251871] ata7: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800400 irq 73 lpm-pol 0 ext
[    8.260477] ata8: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800480 irq 74 lpm-pol 0 ext
[    8.269541] tun: Universal TUN/TAP device driver, 1.6
[    8.274659] PPP generic driver version 2.4.2
[    8.279099] VFIO - User Level meta-driver version: 0.3
[    8.284249] tsc: Refined TSC clocksource calibration: 1996.249 MHz
[    8.290489] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398cadd9d93, max_idle_ns: 881590552906 ns
[    8.291047] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.305746] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 1
[    8.305755] clocksource: Switched to clocksource tsc
[    8.313268] xhci_hcd 0000:03:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.327654] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.332888] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 2
[    8.340284] xhci_hcd 0000:03:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.347389] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.355655] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.362879] usb usb1: Product: xHCI Host Controller
[    8.367765] usb usb1: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.376717] usb usb1: SerialNumber: 0000:03:00.3
[    8.381538] hub 1-0:1.0: USB hub found
[    8.385307] hub 1-0:1.0: 2 ports detected
[    8.390138] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.398255] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.406520] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.413746] usb usb2: Product: xHCI Host Controller
[    8.418629] usb usb2: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.427590] usb usb2: SerialNumber: 0000:03:00.3
[    8.432361] hub 2-0:1.0: USB hub found
[    8.436118] hub 2-0:1.0: 2 ports detected
[    8.441067] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.446304] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 3
[    8.453794] xhci_hcd 0000:46:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.463308] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.468541] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 4
[    8.475974] xhci_hcd 0000:46:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.483085] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.491347] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.498566] usb usb3: Product: xHCI Host Controller
[    8.503444] usb usb3: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.512397] usb usb3: SerialNumber: 0000:46:00.3
[    8.517169] hub 3-0:1.0: USB hub found
[    8.520934] hub 3-0:1.0: 2 ports detected
[    8.525734] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.533853] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.542114] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.549338] usb usb4: Product: xHCI Host Controller
[    8.554224] usb usb4: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.563175] usb usb4: SerialNumber: 0000:46:00.3
[    8.567935] hub 4-0:1.0: USB hub found
[    8.571704] hub 4-0:1.0: 2 ports detected
[    8.576761] usbcore: registered new interface driver uas
[    8.582111] ata6: SATA link down (SStatus 0 SControl 300)
[    8.582128] usbcore: registered new interface driver usb-storage
[    8.587547] ata1: SATA link down (SStatus 0 SControl 300)
[    8.593558] i8042: PNP: No PS/2 controller found.
[    8.598946] ata8: SATA link down (SStatus 0 SControl 300)
[    8.603733] mousedev: PS/2 mouse device common for all mice
[    8.609052] ata4: SATA link down (SStatus 0 SControl 300)
[    8.614738] rtc_cmos 00:02: RTC can wake from S4
[    8.620022] ata5: SATA link down (SStatus 0 SControl 300)
[    8.625000] rtc_cmos 00:02: registered as rtc0
[    8.630039] ata2: SATA link down (SStatus 0 SControl 300)
[    8.634540] rtc_cmos 00:02: setting system clock to 2025-06-17T14:20:44 UTC (1750170044)
[    8.636284] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[    8.639888] ata3: SATA link down (SStatus 0 SControl 300)
[    8.647987] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram
[    8.654498] ata7: SATA link down (SStatus 0 SControl 300)
[    8.659885] i2c_dev: i2c /dev entries driver
[    8.676259] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    8.688464] device-mapper: uevent: version 1.0.3
[    8.693195] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists•linux.dev
[    8.702067] amd_pstate: driver load is disabled, boot with specific mode to enable this
[    8.710124] efifb: probing for efifb
[    8.713714] efifb: No BGRT, not showing boot graphics
[    8.718770] efifb: framebuffer at 0xc6000000, using 3072k, total 3072k
[    8.725297] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    8.731300] efifb: scrolling: redraw
[    8.734882] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    8.740510] fbcon: Deferring console take-over
[    8.744963] fb0: EFI VGA frame buffer device
[    8.749331] drop_monitor: Initializing network drop monitor service
[    8.755762] NET: Registered PF_INET6 protocol family
[    8.767981] Segment Routing with IPv6
[    8.771654] In-situ OAM (IOAM) with IPv6
[    8.775604] NET: Registered PF_PACKET protocol family
[    8.776281] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[    8.779108] usb 1-1: New USB device found, idVendor=0424, idProduct=2744, bcdDevice= 1.21
[    8.779111] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    8.779113] usb 1-1: Product: USB2734
[    8.779115] usb 1-1: Manufacturer: Microchip Tech
[    8.780754] Key type dns_resolver registered
[    8.826881] x86/amd: Previous system reset reason [0x00080800]: software wrote 0x6 to reset control register 0xCF9
[    8.827806] hub 1-1:1.0: USB hub found
[    8.837234] microcode: Current revision: 0x0a0011d5
[    8.841238] hub 1-1:1.0: 4 ports detected
[    8.845856] microcode: Updated early from: 0x0a0011d5
[    8.858335] resctrl: L3 allocation detected
[    8.862521] resctrl: MB allocation detected
[    8.866706] resctrl: L3 monitoring detected
[    8.871073] IPI shorthand broadcast: enabled
[    8.879088] sched_clock: Marking stable (8812001341, 64263714)->(9560029033, -683763978)
[    8.887780] registered taskstats version 1
[    8.894738] Loading compiled-in X.509 certificates
[    8.900043] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.912388] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
[    8.918948] Demotion targets for Node 0: null
[    8.923316] Demotion targets for Node 1: null
[    8.928184] Key type .fscrypt registered
[    8.932116] Key type fscrypt-provisioning registered
[    8.937485] usb 2-1: New USB device found, idVendor=0424, idProduct=5744, bcdDevice= 1.21
[    8.945672] usb 2-1: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[    8.952335] Key type encrypted registered
[    8.952837] usb 2-1: Product: USB5734
[    8.956817] AppArmor: AppArmor sha256 policy hashing enabled
[    8.960478] usb 2-1: Manufacturer: Microchip Tech
[    8.960742] usb 3-1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    8.966230] integrity: Loading X.509 certificate: UEFI:db
[    8.970842] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.987726] hub 2-1:1.0: USB hub found
[    8.991586] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    8.995369] hub 2-1:1.0: 4 ports detected
[    9.006094] integrity: Loading X.509 certificate: UEFI:db
[    9.015522] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    9.026562] integrity: Loading X.509 certificate: UEFI:db
[    9.027538] hub 3-1:1.0: USB hub found
[    9.032098] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    9.035987] hub 3-1:1.0: 4 ports detected
[    9.044577] integrity: Loading X.509 certificate: UEFI:db
[    9.054128] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    9.065710] ima: No TPM chip found, activating TPM-bypass!
[    9.071204] Loading compiled-in module X.509 certificates
[    9.077018] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    9.086925] ima: Allocated hash algorithm: sha1
[    9.091468] ima: No architecture policies found
[    9.096029] evm: Initialising EVM extended attributes:
[    9.101172] evm: security.selinux
[    9.104487] evm: security.SMACK64
[    9.107804] evm: security.SMACK64EXEC
[    9.111477] evm: security.SMACK64TRANSMUTE
[    9.115573] evm: security.SMACK64MMAP
[    9.119274] evm: security.apparmor
[    9.122680] evm: security.ima
[    9.125651] evm: security.capability
[    9.129229] evm: HMAC attrs: 0x1
[    9.132859] PM:   Magic number: 13:34:334
[    9.136889] machinecheck machinecheck109: hash matches
[    9.142088] thermal cooling_device118: hash matches
[    9.147007] tty tty55: hash matches
[    9.151016] RAS: Correctable Errors collector initialized.
[    9.156663] clk: Disabling unused clocks
[    9.160597] PM: genpd: Disabling unused power domains
[    9.167373] Freeing unused decrypted memory: 2028K
[    9.172982] Freeing unused kernel image (initmem) memory: 4760K
[    9.178925] Write protecting the kernel read-only data: 26624k
[    9.185191] Freeing unused kernel image (text/rodata gap) memory: 28K
[    9.191808] Freeing unused kernel image (rodata/data gap) memory: 248K
[    9.285367] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    9.291809] Run /init as init process
[    9.302318] systemd[1]: Inserted module 'autofs4'
[    9.530426] systemd[1]: systemd 252-46.el9_5.3 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)
[    9.562876] systemd[1]: Detected architecture x86-64.
[    9.567926] systemd[1]: Running in initrd.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow) dracut-057-80.git20250411.el9_5 (Initramfs)^[[0m!

[    9.588364] systemd[1]: Hostname set to <sharavati.amd.com>.
[    9.707576] systemd[1]: Queued start job for default target Initrd Default Target.
[    9.715293] systemd[1]: Reached target Initrd /usr File System.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd /usr File System^[[0m.
[    9.732331] systemd[1]: Reached target Local File Systems.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
[    9.748341] systemd[1]: Reached target Slice Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSlice Units^[[0m.
[    9.764324] systemd[1]: Reached target Swaps.
[    9.768281] usb 3-1.1: new high-speed USB device number 3 using xhci_hcd
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwaps^[[0m.
[    9.784329] systemd[1]: Reached target Timer Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[    9.800456] systemd[1]: Listening on D-Bus System Message Bus Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[    9.820519] systemd[1]: Listening on Journal Socket (/dev/log).
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket (/dev/log)^[[0m.
[    9.836474] systemd[1]: Listening on Journal Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket^[[0m.
[    9.852488] systemd[1]: Listening on udev Control Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev C[    9.861243] usb 3-1.1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
ontrol Socket^[[0[    9.870442] usb 3-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
m.
[    9.884429] systemd[1]: Listening on udev Kernel Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
[    9.900333] systemd[1]: Reached target Socket Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
[    9.923583] hub 3-1.1:1.0: USB hub found
[    9.927740] hub 3-1.1:1.0: 4 ports detected
[    9.933704] systemd[1]: Starting Create List of Static Device Nodes...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
[    9.954868] systemd[1]: Starting Journal Service...
         Starting ^[[0;1;39mJournal Service^[[0m...
[    9.969994] systemd[1]: Starting Load Kernel Modules...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
[    9.985412] systemd[1]: Starting Create System Users...
         Starting ^[[0;1;39mCreate System Users^[[0m...
[   10.001436] systemd[1]: Starting Setup Virtual Console...
         Starting ^[[0;1;39mSetup[   10.008281] usb 3-1.4: new high-speed USB device number 4 using xhci_hcd
 Virtual Console^[[0m...
[   10.025522] systemd[1]: Finished Create List of Static Device Nodes.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[   10.044796] systemd[1]: Finished Load Kernel Modules.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[   10.060531] systemd[1]: Started Journal Service.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSetup Virtual Console^[[0m.
[   10.113246] usb 3-1.4: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[   10.121603] usb 3-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
         Starting ^[[0;1;39mdracut cmdline hook^[[0m...
         Starting ^[[0;1;39mApply Kernel Variables^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate System Users^[[0m.
[   10.179571] hub 3-1.4:1.0: USB hub found
[   10.183738] hub 3-1.4:1.0: 4 ports detected
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut cmdline hook^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Starting ^[[0;1;39mdracut pre-udev hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-udev hook^[[0m.
         Starting ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[   10.615677] wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQBC data block query control method not found
[^[[0;32m  OK  ^[[0m] Finished ^[[0[   10.627556] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
;1;39mColdplug A[   10.628183] ccp 0000:46:00.1: no command queues available
ll udev Devices^[[   10.633839] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[0m.
[   10.640619] ccp 0000:46:00.1: sev enabled
[   10.649083] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[   10.653488] ccp 0000:46:00.1: psp enabled
[   10.656463] tg3 0000:c1:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:90
[   10.675160] tg3 0000:c1:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.675166] tg3 0000:c1:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.675168] tg3 0000:c1:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[^[[0;32m  OK  ^[[[   10.700472] mpt3sas version 52.100.00.00 loaded
0m] Reached targ[   10.705511] ACPI: bus type drm_connector registered
et ^[[0;1;39mSyst[   10.706083] mpt3sas_cm0: 63 BIT PCI BUS DMA ADDRESSING SUPPORTED, total mem (262592956 kB)
em Initializatio[   10.721676] tg3 0000:c1:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:91
n^[[0m.
[   10.733249] tg3 0000:c1:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.743772] tg3 0000:c1:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.743775] tg3 0000:c1:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[^[[0;32m  OK  ^[[[   10.758387] mgag200 0000:c3:00.0: vgaarb: deactivate vga console
0m] Reached targ[   10.766907] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
et ^[[0;1;39mNetw[   10.771898] [drm] Initialized mgag200 1.0.0 for 0000:c3:00.0 on minor 0
[   10.775179] mpt3sas_cm0: MSI-X vectors supported: 96
ork^[[0m.
[   10.788121] 	 no of cores: 128, max_msix_vectors: -1
[   10.788123] mpt3sas_cm0:  0 96 96
[   10.788125] fbcon: mgag200drmfb (fb0) is primary device
[   10.788127] fbcon: Deferring console take-over
[   10.792142] mpt3sas_cm0: High IOPs queues : disabled
[   10.793947] mgag200 0000:c3:00.0: [drm] fb0: mgag200drmfb frame buffer device
[   10.797262] mpt3sas0-msix0: PCI-MSI-X enabled: IRQ 108
[   10.824172] mpt3sas0-msix1: PCI-MSI-X enabled: IRQ 109
[   10.829315] mpt3sas0-msix2: PCI-MSI-X enabled: IRQ 110
[   10.834451] mpt3sas0-msix3: PCI-MSI-X enabled: IRQ 111
[   10.839592] mpt3sas0-msix4: PCI-MSI-X enabled: IRQ 112
[   10.844731] mpt3sas0-msix5: PCI-MSI-X enabled: IRQ 113
[   10.849868] mpt3sas0-msix6: PCI-MSI-X enabled: IRQ 114
[   10.855010] mpt3sas0-msix7: PCI-MSI-X enabled: IRQ 115
[   10.860146] mpt3sas0-msix8: PCI-MSI-X enabled: IRQ 116
[   10.865288] mpt3sas0-msix9: PCI-MSI-X enabled: IRQ 117
[   10.870426] mpt3sas0-msix10: PCI-MSI-X enabled: IRQ 118
[   10.875653] mpt3sas0-msix11: PCI-MSI-X enabled: IRQ 119
[   10.880879] mpt3sas0-msix12: PCI-MSI-X enabled: IRQ 120
[   10.886104] mpt3sas0-msix13: PCI-MSI-X enabled: IRQ 121
[   10.891332] mpt3sas0-msix14: PCI-MSI-X enabled: IRQ 122
[   10.896555] mpt3sas0-msix15: PCI-MSI-X enabled: IRQ 123
[   10.901780] mpt3sas0-msix16: PCI-MSI-X enabled: IRQ 124
[   10.907008] mpt3sas0-msix17: PCI-MSI-X enabled: IRQ 125
[   10.912237] mpt3sas0-msix18: PCI-MSI-X enabled: IRQ 126
[   10.917468] mpt3sas0-msix19: PCI-MSI-X enabled: IRQ 127
[   10.922693] mpt3sas0-msix20: PCI-MSI-X enabled: IRQ 128
[   10.927920] mpt3sas0-msix21: PCI-MSI-X enabled: IRQ 129
[   10.933146] mpt3sas0-msix22: PCI-MSI-X enabled: IRQ 130
[   10.938371] mpt3sas0-msix23: PCI-MSI-X enabled: IRQ 131
[   10.943598] mpt3sas0-msix24: PCI-MSI-X enabled: IRQ 132
[   10.948824] mpt3sas0-msix25: PCI-MSI-X enabled: IRQ 133
[   10.954049] mpt3sas0-msix26: PCI-MSI-X enabled: IRQ 134
[   10.959273] mpt3sas0-msix27: PCI-MSI-X enabled: IRQ 135
[   10.964499] mpt3sas0-msix28: PCI-MSI-X enabled: IRQ 136
[   10.969725] mpt3sas0-msix29: PCI-MSI-X enabled: IRQ 137
[   10.974952] mpt3sas0-msix30: PCI-MSI-X enabled: IRQ 138
[   10.980179] mpt3sas0-msix31: PCI-MSI-X enabled: IRQ 139
[   10.985404] mpt3sas0-msix32: PCI-MSI-X enabled: IRQ 140
[   10.990631] mpt3sas0-msix33: PCI-MSI-X enabled: IRQ 141
[   10.995854] mpt3sas0-msix34: PCI-MSI-X enabled: IRQ 142
[   11.001081] mpt3sas0-msix35: PCI-MSI-X enabled: IRQ 143
[   11.006307] mpt3sas0-msix36: PCI-MSI-X enabled: IRQ 144
[   11.011534] mpt3sas0-msix37: PCI-MSI-X enabled: IRQ 145
[   11.016759] mpt3sas0-msix38: PCI-MSI-X enabled: IRQ 146
[   11.022003] mpt3sas0-msix39: PCI-MSI-X enabled: IRQ 147
[   11.027229] mpt3sas0-msix40: PCI-MSI-X enabled: IRQ 148
[   11.032457] mpt3sas0-msix41: PCI-MSI-X enabled: IRQ 149
[   11.032458] mpt3sas0-msix42: PCI-MSI-X enabled: IRQ 150
[   11.032459] mpt3sas0-msix43: PCI-MSI-X enabled: IRQ 151
[   11.032461] mpt3sas0-msix44: PCI-MSI-X enabled: IRQ 152
[   11.032462] mpt3sas0-msix45: PCI-MSI-X enabled: IRQ 153
         Startin[   11.032463] mpt3sas0-msix46: PCI-MSI-X enabled: IRQ 154
g ^[[0;1;39mdracu[   11.032465] mpt3sas0-msix47: PCI-MSI-X enabled: IRQ 155
t initqueue hook[   11.071800] mpt3sas0-msix48: PCI-MSI-X enabled: IRQ 156
^[[0m...
[   11.078414] mpt3sas0-msix49: PCI-MSI-X enabled: IRQ 157
[   11.084419] mpt3sas0-msix50: PCI-MSI-X enabled: IRQ 158
[   11.089647] mpt3sas0-msix51: PCI-MSI-X enabled: IRQ 159
[   11.089648] mpt3sas0-msix52: PCI-MSI-X enabled: IRQ 160
[   11.089650] mpt3sas0-msix53: PCI-MSI-X enabled: IRQ 161
[   11.089651] mpt3sas0-msix54: PCI-MSI-X enabled: IRQ 162
[   11.089653] mpt3sas0-msix55: PCI-MSI-X enabled: IRQ 163
[   11.115782] mpt3sas0-msix56: PCI-MSI-X enabled: IRQ 164
[   11.115784] mpt3sas0-msix57: PCI-MSI-X enabled: IRQ 165
[   11.115785] mpt3sas0-msix58: PCI-MSI-X enabled: IRQ 166
[   11.115786] mpt3sas0-msix59: PCI-MSI-X enabled: IRQ 167
[   11.115788] mpt3sas0-msix60: PCI-MSI-X enabled: IRQ 168
[   11.115789] mpt3sas0-msix61: PCI-MSI-X enabled: IRQ 169
[   11.115790] mpt3sas0-msix62: PCI-MSI-X enabled: IRQ 170
[   11.115792] mpt3sas0-msix63: PCI-MSI-X enabled: IRQ 171
[   11.115793] mpt3sas0-msix64: PCI-MSI-X enabled: IRQ 172
         Startin[   11.115794] mpt3sas0-msix65: PCI-MSI-X enabled: IRQ 173
g ^[[0;1;39mShow [   11.169426] mpt3sas0-msix66: PCI-MSI-X enabled: IRQ 174
Plymouth Boot Sc[   11.176034] mpt3sas0-msix67: PCI-MSI-X enabled: IRQ 175
reen^[[0m...
[   11.176035] mpt3sas0-msix68: PCI-MSI-X enabled: IRQ 176
[   11.176036] mpt3sas0-msix69: PCI-MSI-X enabled: IRQ 177
[   11.176038] mpt3sas0-msix70: PCI-MSI-X enabled: IRQ 178
[   11.176040] mpt3sas0-msix71: PCI-MSI-X enabled: IRQ 179
[^[[0;32m  OK  ^[[[   11.176041] mpt3sas0-msix72: PCI-MSI-X enabled: IRQ 180
0m] Started ^[[0;[   11.176043] mpt3sas0-msix73: PCI-MSI-X enabled: IRQ 181
[   11.176044] mpt3sas0-msix74: PCI-MSI-X enabled: IRQ 182
1;39mShow Plymou[   11.223204] mpt3sas0-msix75: PCI-MSI-X enabled: IRQ 183
th Boot Screen^[[[   11.223205] mpt3sas0-msix76: PCI-MSI-X enabled: IRQ 184
0m.
[   11.223207] mpt3sas0-msix77: PCI-MSI-X enabled: IRQ 185
[   11.223208] mpt3sas0-msix78: PCI-MSI-X enabled: IRQ 186
[   11.223210] mpt3sas0-msix79: PCI-MSI-X enabled: IRQ 187
[^[[0;32m  OK  ^[[[   11.223211] mpt3sas0-msix80: PCI-MSI-X enabled: IRQ 188
0m] Started ^[[0;[   11.259202] mpt3sas0-msix81: PCI-MSI-X enabled: IRQ 189
1;39mForward Pas[   11.259204] mpt3sas0-msix82: PCI-MSI-X enabled: IRQ 190
sword Requests t[   11.259205] mpt3sas0-msix83: PCI-MSI-X enabled: IRQ 191
[   11.259207] mpt3sas0-msix84: PCI-MSI-X enabled: IRQ 192
o Plymouth Direc[   11.259208] mpt3sas0-msix85: PCI-MSI-X enabled: IRQ 193
[   11.259210] mpt3sas0-msix86: PCI-MSI-X enabled: IRQ 194
tory Watch^[[0m.\r[   11.259211] mpt3sas0-msix87: PCI-MSI-X enabled: IRQ 195
[   11.259213] mpt3sas0-msix88: PCI-MSI-X enabled: IRQ 196

[^[[0;32m  OK  [   11.307926] mpt3sas0-msix89: PCI-MSI-X enabled: IRQ 197
^[[0m] Reached ta[   11.307928] mpt3sas0-msix90: PCI-MSI-X enabled: IRQ 198
rget ^[[0;1;39mPa[   11.307930] mpt3sas0-msix91: PCI-MSI-X enabled: IRQ 199
[   11.307931] mpt3sas0-msix92: PCI-MSI-X enabled: IRQ 200
th Units^[[0m.
[   11.307932] mpt3sas0-msix93: PCI-MSI-X enabled: IRQ 201
[^[[0;32m  OK  ^[[[   11.307934] mpt3sas0-msix94: PCI-MSI-X enabled: IRQ 202
0m] Reached targ[   11.346204] mpt3sas0-msix95: PCI-MSI-X enabled: IRQ 203
et ^[[0;1;39mBasi[   11.352812] mpt3sas_cm0: iomem(0x00000000e2200000), mapped(0x00000000ded03b78), size(65536)
c System^[[0m.
[   11.362542] mpt3sas_cm0: ioport(0x0000000000001000), size(256)
[   11.427767] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   11.435767] mpt3sas_cm0: sending message unit reset !!
[   11.442420] mpt3sas_cm0: message unit reset: SUCCESS
[   11.475122] mpt3sas_cm0: scatter gather: sge_in_main_msg(1), sge_per_chain(7), sge_per_io(128), chains_per_io(19)
[   11.486606] mpt3sas_cm0: request pool(0x000000004fd717a6) - dma(0xe0600000): depth(9700), frame_size(128), pool_size(1212 kB)
[   11.523336] mpt3sas_cm0: sense pool(0x00000000cfde8c26) - dma(0xdef00000): depth(9463), element_size(96), pool_size (887 kB)
[   11.534647] mpt3sas_cm0: reply pool(0x00000000da73eb26) - dma(0xdec00000): depth(9764), frame_size(128), pool_size(1220 kB)
[   11.545784] mpt3sas_cm0: config page(0x00000000e22995e9) - dma(0xdebee000): size(512)
[   11.553611] mpt3sas_cm0: Allocated physical memory: size(40437 kB)
[   11.559791] mpt3sas_cm0: Current Controller Queue Depth(9460),Max Controller Queue Depth(9584)
[   11.568398] mpt3sas_cm0: Scatter Gather Elements per IO(128)
[   11.619827] mpt3sas_cm0: _base_display_fwpkg_version: complete
[   11.625665] mpt3sas_cm0: FW Package Ver(16.17.01.00)
[   11.630922] mpt3sas_cm0: LSISAS3008: FWVersion(16.00.11.00), ChipRevision(0x02)
[   11.638234] mpt3sas_cm0: Protocol=(Initiator,Target), Capabilities=(TLR,EEDP,Snapshot Buffer,Diag Trace Buffer,Task Set Full,NCQ)
[   11.649954] scsi host8: Fusion MPT SAS Host
[   11.655981] mpt3sas_cm0: sending port enable !!
[   11.660933] mpt3sas_cm0: hba_port entry: 00000000edfae11b, port: 255 is added to hba_port list
[   11.670660] mpt3sas_cm0: host_add: handle(0x0001), sas_addr(0x52cea7f0be87bf00), phys(8)
[   11.679089] mpt3sas_cm0: handle(0xa) sas_address(0x4433221100000000) port_type(0x1)
[   11.687929] scsi 8:0:0:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.696028] scsi 8:0:0:0: SATA: handle(0x000a), sas_addr(0x4433221100000000), phy(0), device_name(0x500a075131911ad0)
[   11.706625] scsi 8:0:0:0: enclosure logical id (0x52cea7f0be87bf00), slot(1) 
[   11.713755] scsi 8:0:0:0: enclosure level(0x0001), connector name(     )
[   11.720528] scsi 8:0:0:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.728962] scsi 8:0:0:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.743783]  end_device-8:0: add: handle(0x000a), sas_addr(0x4433221100000000)
[   11.751175] mpt3sas_cm0: handle(0xc) sas_address(0x58ce38ee219651a2) port_type(0x1)
[   11.759340] scsi 8:0:1:0: Direct-Access     KIOXIA   KPM6WVUG960G     BD08 PQ: 0 ANSI: 6
[   11.767436] scsi 8:0:1:0: SSP: handle(0x000c), sas_addr(0x58ce38ee219651a2), phy(4), device_name(0x58ce38ee219651a0)
[   11.777950] scsi 8:0:1:0: enclosure logical id (0x52cea7f0be87bf00), slot(0) 
[   11.785081] scsi 8:0:1:0: enclosure level(0x0001), connector name(     )
[   11.791803] scsi 8:0:1:0: qdepth(254), tagged(1), scsi_level(7), cmd_que(1)
[   11.800252]  end_device-8:1: add: handle(0x000c), sas_addr(0x58ce38ee219651a2)
[   11.807591] mpt3sas_cm0: handle(0xb) sas_address(0x4433221106000000) port_type(0x1)
[   11.816359] scsi 8:0:2:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.824451] scsi 8:0:2:0: SATA: handle(0x000b), sas_addr(0x4433221106000000), phy(6), device_name(0x500a075131911a6f)
[   11.835051] scsi 8:0:2:0: enclosure logical id (0x52cea7f0be87bf00), slot(2) 
[   11.842184] scsi 8:0:2:0: enclosure level(0x0001), connector name(     )
[   11.848949] scsi 8:0:2:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.857381] scsi 8:0:2:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.872196]  end_device-8:2: add: handle(0x000b), sas_addr(0x4433221106000000)
[   11.880282] mpt3sas_cm0: port enable: SUCCESS
[   11.884939] sd 8:0:0:0: Attached scsi generic sg0 type 0
[   11.885534] sd 8:0:0:0: [sda] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.890513] scsi 8:0:1:0: Attached scsi generic sg1 type 0
[   11.890770] sd 8:0:1:0: [sdb] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.890773] sd 8:0:1:0: [sdb] 4096-byte physical blocks
[   11.890953] sd 8:0:1:0: [sdb] Write Protect is off
[   11.891168] sd 8:0:1:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   11.897829] sd 8:0:0:0: [sda] 4096-byte physical blocks
[   11.903517] scsi 8:0:2:0: Attached scsi generic sg2 type 0
[   11.904148] sd 8:0:2:0: [sdc] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.904151] sd 8:0:2:0: [sdc] 4096-byte physical blocks
[   11.906159] sd 8:0:2:0: [sdc] Write Protect is off
[   11.907443] sd 8:0:2:0: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.912912] sd 8:0:0:0: [sda] Write Protect is off
[   11.972399] sd 8:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   12.009518]  sdb: sdb1 sdb2
[   12.012479] sd 8:0:1:0: [sdb] Attached SCSI disk
[   12.026451]  sdc: sdc1 sdc2
[   12.029425] sd 8:0:2:0: [sdc] Attached SCSI disk
[   12.042336]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7
[   12.047729] sd 8:0:0:0: [sda] Attached SCSI disk
[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39m/dev/mapper/rhel_sharavati-root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut initqueue hook^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m.
         Mounting ^[[0;1;39m/sysroot^[[0m...
[   12.745559] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled
[   12.756010] XFS (dm-1): Mounting V5 Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[   12.779698] XFS (dm-1): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/sysroot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root File System^[[0m.
         Starting ^[[0;1;39mMountpoints Configured in the Real Root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMountpoints Configured in the Real Root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Default Target^[[0m.
         Starting ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
         Starting ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Default Target^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd /usr File System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut initqueue hook^[[0m.
         Starting ^[[0;1;39mPlymouth switch root service^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stoppe[   13.046055] systemd-journald[1090]: Received SIGTERM from PID 1 (systemd).
d ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mColdplug All udev Devices^[[0m.
         Stopping ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Kernel Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-udev hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut cmdline hook^[[0m.
         Starting ^[[0;1;39mCleanup udev Database^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate System Users^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleanup udev Database^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwitch Root^[[0m.
         Starting ^[[0;1;39mSwitch Root^[[0m...\r\r[   13.158971] systemd[1]: RTC configured in localtime, applying delta of 330 minutes to system time.

[   13.185512] systemd[1]: systemd 252-46.el9_5.3 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)
[   13.217986] systemd[1]: Detected architecture x86-64.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow)^[[0m!

[   13.298606] systemd-rc-local-generator[1706]: /etc/rc.d/rc.local is not marked executable, skipping.
[   13.552661] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[   13.559981] systemd[1]: Stopped Switch Root.
[^[[0;32m  OK  ^[[[   13.564562] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
0m] Stopped ^[[0;[   13.575218] systemd[1]: Created slice Virtual Machine and Container Slice.
1;39mSwitch Root[   13.583609] systemd[1]: Created slice Slice /system/getty.
^[[0m.
[^[[0;32m[   13.590657] systemd[1]: Created slice Slice /system/modprobe.
  OK  ^[[0m] Crea[   13.597612] systemd[1]: Created slice Slice /system/serial-getty.
ted slice ^[[0;1;[   13.605033] systemd[1]: Created slice Slice /system/sshd-keygen.
39mVirtual Machi[   13.612414] systemd[1]: Created slice Slice /system/systemd-fsck.
ne and Container[   13.619774] systemd[1]: Created slice User and Session Slice.
 Slice^[[0m.
[^[[   13.626504] systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
[0;32m  OK  ^[[0m[   13.642694] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
] Created slice [   13.651797] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
^[[0;1;39mSlice /[   13.662427] systemd[1]: Reached target Local Encrypted Volumes.
system/getty^[[0m[   13.669719] systemd[1]: Stopped target Switch Root.
.
[^[[0;32m  OK[   13.676062] systemd[1]: Stopped target Initrd File Systems.
  ^[[0m] Created [   13.683014] systemd[1]: Stopped target Initrd Root File System.
slice ^[[0;1;39mS[   13.690323] systemd[1]: Reached target Local Integrity Protected Volumes.
lice /system/mod[   13.698510] systemd[1]: Reached target Path Units.
probe^[[0m.
[^[[[   13.704683] systemd[1]: Reached target Slice Units.
0;32m  OK  ^[[0m][   13.710947] systemd[1]: Reached target Local Verity Protected Volumes.
 Created slice ^[[   13.718911] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[0;1;39mSlice /s[   13.726989] systemd[1]: Listening on LVM2 poll daemon socket.
ystem/serial-get[   13.733926] systemd[1]: multipathd control socket was skipped because of an unmet condition check (ConditionPathExists=/etc/multipath.conf).
ty^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/sshd-keygen^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Set up automount ^[[0;1;39mArbitrary Executa…ormats File System Automount Point^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;3[   13.789205] systemd[1]: Listening on RPCbind Server Activation Socket.
9mLocal Encrypte[   13.796039] systemd[1]: Reached target RPC Port Mapper.
d Volumes^[[0m.\r\r[   13.803760] systemd[1]: Listening on Process Core Dump Socket.

[^[[0;32m  OK  ^[[   13.809863] systemd[1]: Listening on initctl Compatibility Named Pipe.
[0m] Stopped tar[   13.818780] systemd[1]: Listening on udev Control Socket.
get ^[[0;1;39mSwi[   13.824585] systemd[1]: Listening on udev Kernel Socket.
tch Root^[[0m.
[^[[0;32m  OK  ^[[[   13.832716] systemd[1]: Activating swap /dev/mapper/rhel_sharavati-swap...
0m] Stopped targ[   13.837839] Adding 7815164k swap on /dev/mapper/rhel_sharavati-swap.  Priority:-2 extents:1 across:7815164k SS
et ^[[0;1;39mInitrd File Systems^[[   13.853836] systemd[1]: Mounting Huge Pages File System...
[0m.
[^[[0;32m  OK  ^[[0m] Stopp[   13.861919] systemd[1]: Mounting POSIX Message Queue File System...
ed target ^[[0;1;[   13.870751] systemd[1]: Mounting Kernel Debug File System...
39mInitrd Root F[   13.877771] systemd[1]: Mounting Kernel Trace File System...
ile System^[[0m.\r[   13.883675] systemd[1]: Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).

[^[[0;32m  OK  [   13.898506] systemd[1]: iscsi-starter.service was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes).
^[[0m] Reached target ^[[0;1;39mLo[   13.913874] systemd[1]: Starting Create List of Static Device Nodes...
cal Integrity Protected Volumes^[[   13.923131] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[0m.
[^[[0;32m  OK  ^[[0m] Reach[   13.936136] systemd[1]: Starting Load Kernel Module configfs...
ed target ^[[0;1;[   13.944661] systemd[1]: Starting Load Kernel Module drm...
39mPath Units^[[0[   13.951531] systemd[1]: Starting Load Kernel Module fuse...
m.
[^[[0;32m  OK  ^[[0m] Reached[   13.959098] systemd[1]: Starting Read and set NIS domainname from /etc/sysconfig/network...
 target ^[[0;1;39[   13.968527] systemd[1]: plymouth-switch-root.service: Deactivated successfully.
mSlice Units^[[0m[   13.977272] systemd[1]: Stopped Plymouth switch root service.
.
[^[[0;32m  OK[   13.984466] systemd[1]: systemd-fsck-root.service: Deactivated successfully.
  ^[[0m] Reached [   13.992751] systemd[1]: Stopped File System Check on Root Device.
target ^[[0;1;39m[   14.000294] systemd[1]: Stopped Journal Service.
Local Verity Protected Volumes^[[[   14.008818] systemd[1]: Starting Journal Service...
0m.
[^[[0;32m  OK  ^[[0m] Listen[   14.015862] systemd[1]: Starting Load Kernel Modules...
[   14.021532] systemd-journald[1736]: File /run/log/journal/8f37f8055146469d8baec3ad508b0084/system.journal corrupted or uncleanly shut down, renaming and replacing.
ing on ^[[0;1;39mDevice-mapper ev[   14.038107] systemd[1]: Starting Generate network units from Kernel command line...
ent daemon FIFOs[   14.046914] systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
^[[0m.
[^[[0;32m  OK  ^[[0m] List[   14.068074] systemd[1]: Starting Remount Root and Kernel File Systems...
ening on ^[[0;1;3[   14.076284] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
9mLVM2 poll daemon socket^[[0m.\r\r[   14.088478] systemd[1]: Starting Coldplug All udev Devices...

[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mRPCbi[   14.098659] systemd[1]: Activated swap /dev/mapper/rhel_sharavati-swap.
nd Server Activa[   14.106892] systemd[1]: Started Journal Service.
tion Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRPC Port Mapper^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mProcess Core Dump Socket^[[0m.
[^[[0;32m  OK  ^[[[   14.127142] systemd-journald[1736]: Received client request to flush runtime journal.
0m] Listening on ^[[0;1;39minitctl Compatibility Named Pipe^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
         Activating swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m...
         Mounting ^[[0;1;39mHuge Pages File System^[[0m...
         Mounting ^[[0;1;39mPOSIX Message Queue File System^[[0m...
         Mounting ^[[0;1;39mKernel Debug File System^[[0m...
         Mounting ^[[0;1;39mKernel Trace File System^[[0m...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
         Starting ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module drm^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mJournal Service^[[0m.
         Starting ^[[0;1;39mJournal Service^[[0m...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
         Starting ^[[0;1;39mGenerate network units from Kernel command line^[[0m...
         Starting ^[[0;1;39mRemount Root and Kernel File Systems^[[0m...
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[^[[0;32m  OK  ^[[0m] Activated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mHuge Pages File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mPOSIX Message Queue File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Debug File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Trace File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMonitoring of LVM2 mirror…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module drm^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[[   14.351104] IPMI message handler: version 39.2
^[[0;32m  OK  ^[[0m] Finished ^[[0;[   14.358657] ipmi device interface
1;39mGenerate network units from Kernel command line^[[0m.
[^[[0;32m  OK  ^[[0m] [   14.368989] ipmi_si: IPMI System Interface driver
Finished ^[[0;1;3[   14.373854] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
9mRemount Root a[   14.381567] ipmi_platform: ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 10
nd Kernel File S[   14.386085] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
ystems^[[0m.
[^[[   14.388044] pstore: backend 'erst' already in use: ignoring 'efi_pstore'
[   14.388782] input: PC Speaker as /devices/platform/pcspkr/input/input1
[0;32m  OK  ^[[0m[   14.389746] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
] Reached target[   14.389749] RAPL PMU: hw unit of domain package 2^-16 Joules
 ^[[0;1;39mSwaps^[[   14.389750] RAPL PMU: hw unit of domain core 2^-16 Joules
[0m.
         [   14.390248] ipmi_si: Adding SMBIOS-specified kcs state machine
Mounting ^[[0;1;3[   14.390434] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
9mFUSE Control F[   14.399027] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
ile System^[[0m..[   14.406653] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
.
         Mou[   14.407152] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca8] regsize 1 spacing 4 irq 10
[   14.415756] i2c i2c-3: Successfully instantiated SPD at 0x50
nting ^[[0;1;39mK[   14.423166] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
ernel Configurat[   14.430564] i2c i2c-3: Successfully instantiated SPD at 0x51
[   14.436759] ipmi_si: Adding ACPI-specified kcs state machine
ion File System^[[   14.436851] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 10
[0m...
       [   14.444339] i2c i2c-3: Successfully instantiated SPD at 0x52
  Starting ^[[0;1[   14.525482] i2c i2c-3: Successfully instantiated SPD at 0x53
;39mFlush Journa[   14.532322] i2c i2c-3: Successfully instantiated SPD at 0x54
l to Persistent [   14.539574] i2c i2c-3: Successfully instantiated SPD at 0x55
Storage^[[0m...\r\r[   14.546622] i2c i2c-3: Successfully instantiated SPD at 0x56

         Starti[   14.553663] i2c i2c-3: Successfully instantiated SPD at 0x57
ng ^[[0;1;39mLoad/Save OS Random Seed^[[0m...
         Starting ^[[0;1;39mApply Kernel Variables^[[0m...
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mFUSE Control File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Configuration File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFlush Journal to Persistent Storage^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad/Save OS Random Seed^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
   [   14.612837] ee1004 3-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
      Starting ^[[0;1;39mRule-bas[   14.622750] ee1004 3-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
ed Manager for D[   14.631550] kvm_amd: TSC scaling supported
[   14.632327] ee1004 3-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
evice Events and[   14.636218] kvm_amd: Nested Virtualization enabled
 Files^[[0m...
[   14.644762] ee1004 3-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
[^[[0;32m  OK  ^[[[   14.649262] kvm_amd: Nested Paging enabled
0m] Started ^[[0;[   14.659182] ee1004 3-0054: 512 byte EE1004-compliant SPD EEPROM, read-only
1;39mRule-based [   14.663006] kvm_amd: LBR virtualization supported
Manager for Device Events and Fi[   14.679043] ee1004 3-0055: 512 byte EE1004-compliant SPD EEPROM, read-only
les^[[0m.
         Starting ^[[0[   14.688658] ee1004 3-0056: 512 byte EE1004-compliant SPD EEPROM, read-only
;1;39mLoad Kernel Module configf[   14.698312] ee1004 3-0057: 512 byte EE1004-compliant SPD EEPROM, read-only
s^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mColdplug All udev Devices^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mLoad/Save RF Kill Switch Status /dev/rfkill Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39m/usr/sbin/lvm vgchange -aa…utoactivation event rhel_sharavati^[[0m.
[   14.876287] ipmi_si IPI0001:00: The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.
[   14.960365] ipmi_si IPI0001:00: Using irq 10
[   14.995885] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20)
[   15.067866] ipmi_si IPI0001:00: IPMI kcs interface initialized
[   15.076303] ipmi_ssif: IPMI SSIF Interface driver
[   15.097733] power_meter ACPI000D:00: Found ACPI power meter.
[^[[0m^[[0;31m*     ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;1;31m*^[[0m^[[0;31m*    ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*   ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
[   18.224365] ccp 0000:46:00.1: SEV-SNP API:1.55 build:22
[   18.278508] ccp 0000:46:00.1: SEV API:1.55 build:22
[   18.285266] kvm_amd: SEV enabled (ASIDs 101 - 509)
[   18.290064] kvm_amd: SEV-ES enabled (ASIDs 1 - 100)
[   18.294945] kvm_amd: SEV-SNP enabled (ASIDs 1 - 100)
[   18.300086] kvm_amd: Virtual VMLOAD VMSAVE supported
[   18.305060] kvm_amd: Virtual GIF supported
^[M\r^[[K[ ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*  ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
[   18.330715] EDAC MC0: Giving out device to module amd64_edac controller F19h: DEV 0000:00:18.3 (INTERRUPT)
[   18.340368] EDAC amd64: F19h detected (node 0).
[   18.344928] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.349650] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.354381] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.359098] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.363827] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.368542] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.373264] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.377981] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.382711] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.387428] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.392160] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.396883] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.401612] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.406329] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.411050] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.415767] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.428483] intel_rapl_common: Found RAPL domain package
[   18.429561] amd_atl: AMD Address Translation Library initialized
[   18.433800] intel_rapl_common: Found RAPL domain core
^[M\r^[[K[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Wait for…ice Initialization (5s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Local File Systems^[[0m.
         Mounting ^[[0;1;39m/boot^[[0m...
      [   18.792058] XFS (sda6): Mounting V5 Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
   Mounting ^[[0;[   18.794173] XFS (dm-0): Mounting V5 Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
1;39m/home^[[0m...
         Starting ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m...
[   18.819745] XFS (sda6): Ending clean mount
[^[[0;32m  OK  ^[[[   18.828692] XFS (dm-0): Ending clean mount
0m] Mounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
         Mounting ^[[0;1;39m/boot/efi^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
         Starting ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Mounting ^[[0;1;39mRPC Pipe File System^[[0m...
         Starting ^[[0;1;39mSecurity Auditing Service^[[0m...
         Starting ^[[0;1;39mRPC Bind^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRPC Bind^[[0m.
[   18.938251] RPC: Registered named UNIX socket transport module.
[   18.944176] RPC: Registered udp transport module.
[   18.948881] RPC: Registered tcp transport module.
[   18.953587] RPC: Registered tcp-with-tls transport module.
[   18.959074] RPC: Registered tcp NFSv4.1 backchannel transport module.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mRPC Pipe File System^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mrpc_pipefs.target^[[0m.
         Starting ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdnf makecache --timer^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily rotation of log files^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUpdates mlocate database every day^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily Cleanup of Temporary Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdaily update of the root trust anchor for DNSSEC^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt interface daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt network daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nodedev daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nwfilter daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt proxy daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt secret daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt storage daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
         Starting ^[[0;1;39mD-Bus System Message Bus^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mBasic System^[[0m.
         Starting ^[[0;1;39mNTP client/server^[[0m...
         Starting ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m...
         Starting ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mirqbalance daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mlibstoragemgmt plug-in server daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mMachine Check Exception Logging Daemon^[[0m.
         Starting ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msshd-keygen.target^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUser and Group Name Lookups^[[0m.
         Starting ^[[0;1;39mUser Login Management^[[0m...
         Starting ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNTP client/server^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Network^[[0m.
         Starting ^[[0;1;39mNetwork Manager^[[0m...
         Starting ^[[0;1;39mHostname Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mHostname Service^[[0m.
         Starting ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork^[[0m.
         Starting ^[[0;1;39mNetwork Manager Wait Online^[[0m...
         Starting ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
         Starting ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m...
         Starting ^[[0;1;39mOpenSSH server daemon^[[0m...
         Starting ^[[0;1;39mDynamic System Tuning Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNFS client services^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mOpenSSH server daemon^[[0m.
         Starting ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
[   23.106501] tg3 0000:c1:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   23.113122] tg3 0000:c1:00.0 eth0: Flow control is off for TX and off for RX
[   23.120173] tg3 0000:c1:00.0 eth0: EEE is disabled
^[M\r^[[K[     ^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[ ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*  ^[[0m] A start job is running for Network …nager Wait Online (12s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mNetwork Manager Wait Online^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork is Online^[[0m.
         Starting ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m...
         Starting ^[[0;1;39mNotify NFS peers of a restart^[[0m...
         Starting ^[[0;1;39mSystem Logging Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNotify NFS peers of a restart^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mCrash recovery kernel arming^[[0m...
         Starting ^[[0;1;39mPermit User Sessions^[[0m...
         Starting ^[[0;1;39mlibvirt QEMU daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDeferred execution scheduler^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mCommand Scheduler^[[0m.
         Starting ^[[0;1;39mHold until boot process finishes up^[[0m...
         Starting ^[[0;1;39mTerminate Plymouth Boot Screen^[[0m...
[^[[0;1;31mFAILED^[[0m] Failed to start ^[[0;1;39mCrash recovery kernel arming^[[0m.
See 'systemctl status kdump.service' for details.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSystem Logging Service^[[0m.
[   25.926205] fbcon: Taking over console
[   25.946095] Console: switching to colour frame buffer device 128x48

Red Hat Enterprise Linux 9.5 (Plow)
Kernel 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e on an x86_64

Activate the web console with: systemctl enable --now cockpit.socket

sharavati login: [  109.221452] /proc/cgroups lists only v1 controllers, use cgroup.controllers of root cgroup for v2 info
[  299.105465] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[  299.174108] systemd-rc-local-generator[3170]: /etc/rc.d/rc.local is not marked executable, skipping.
[  321.042077] virbr0: port 1(t0-8xmYmJ) entered blocking state
[  321.047742] virbr0: port 1(t0-8xmYmJ) entered disabled state
[  321.053422] t0-8xmYmJ: entered allmulticast mode
[  321.058120] t0-8xmYmJ: entered promiscuous mode
[  321.067086] virbr0: port 1(t0-8xmYmJ) entered blocking state
[  321.072752] virbr0: port 1(t0-8xmYmJ) entered listening state
[  323.097156] virbr0: port 1(t0-8xmYmJ) entered learning state
[  325.113115] virbr0: port 1(t0-8xmYmJ) entered forwarding state
[  325.118956] virbr0: topology change detected, propagating
[  337.262975] virbr0: port 1(t0-8xmYmJ) entered disabled state
[  337.269821] t0-8xmYmJ (unregistering): left allmulticast mode
[  337.275590] t0-8xmYmJ (unregistering): left promiscuous mode
[  337.281270] virbr0: port 1(t0-8xmYmJ) entered disabled state
[  341.851554] virbr0: port 1(t0-oEDfR2) entered blocking state
[  341.857232] virbr0: port 1(t0-oEDfR2) entered disabled state
[  341.862921] t0-oEDfR2: entered allmulticast mode
[  341.867621] t0-oEDfR2: entered promiscuous mode
[  341.876378] virbr0: port 1(t0-oEDfR2) entered blocking state
[  341.882050] virbr0: port 1(t0-oEDfR2) entered listening state
[  343.896707] virbr0: port 1(t0-oEDfR2) entered learning state
[  345.912671] virbr0: port 1(t0-oEDfR2) entered forwarding state
[  345.912684] virbr0: topology change detected, propagating
[  358.074863] virbr0: port 1(t0-oEDfR2) entered disabled state
[  358.081666] t0-oEDfR2 (unregistering): left allmulticast mode
[  358.087432] t0-oEDfR2 (unregistering): left promiscuous mode
[  358.093112] virbr0: port 1(t0-oEDfR2) entered disabled state
[  400.151763] JFS: nTxBlock = 8192, nTxLock = 65536
[  400.192363] QNX4 filesystem 0.2.3 registered.
[  400.275473] raid6: avx2x4   gen() 28777 MB/s
[  400.347472] raid6: avx2x2   gen() 29692 MB/s
[  400.419470] raid6: avx2x1   gen() 22609 MB/s
[  400.423746] raid6: using algorithm avx2x2 gen() 29692 MB/s
[  400.495471] raid6: .... xor() 27179 MB/s, rmw enabled
[  400.500523] raid6: using avx2x2 recovery algorithm
[  400.507324] xor: automatically using best checksumming function   avx       
[  400.602828] Btrfs loaded, zoned=yes, fsverity=yes
[  405.048759] sda6: Can't mount, would change RO state
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNFS client services^[[0m.
         Stopping ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mShow Plymouth Reboot Screen^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Manager for UID 0^[[0m.
         Stopping ^[[0;1;39mUser Runtime Directory /run/user/0^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Runtime Directory /run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser Slice of UID 0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mUser and Group Name Lookups^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSystem Logging Service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork is Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager Wait Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
         Stopping ^[[0;1;39mNetwork Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Network^[[0m.
         Stopping ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGenerate network units from Kernel command line^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
         Stopping ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Plymouth Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mVirtual Machine and Container Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemo[  406.520284] audit: type=1305 audit(1750150642.350:333): op=set audit_pid=0 old=2290 auid=4294967295 ses=4294967295 subj=unconfined res=1
n socket^[[0m.
[^[[0;32m  OK  ^[[[  406.534380] audit: type=1131 audit(1750150642.362:334): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=auditd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
0m] Closed ^[[0;1;39mSSSD Kerbero[  406.556292] audit: type=1131 audit(1750150642.386:335): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
s Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon socket^[[0m.
         Stopping ^[[0;1;39mD-Bus System Message Bus^[[0m...
         Starting ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mD-Bus System Me[  406.624144] audit: type=1131 audit(1750150642.454:336): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-fsck@dev-disk-by\x2duuid-FBE5\x2d86EF comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
ssage Bus^[[0m.\r\r[  406.643278] XFS (dm-0): Unmounting Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47

[^[[0;32m  OK  ^[[  406.647859] XFS (sda6): Unmounting Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
[0m] Closed ^[[0;1;39mD-Bus System Message Bus So[  406.669003] audit: type=1131 audit(1750150642.498:337): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
cket^[[0m.
[^[[0[  406.689660] audit: type=1131 audit(1750150642.518:338): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Unset automount ^[[0;1;39mArbitrary Executab…ormats File System Automount Point^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Encrypted Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Integrity Protected Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Verity Protected Volumes^[[0m.
         Deactivating swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
      [  406.788715] audit: type=1131 audit(1750150642.618:339): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
   Stopping ^[[0;[  406.810124] audit: type=1130 audit(1750150642.638:340): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
1;39mRecord Syst[  406.831269] audit: type=1131 audit(1750150642.638:341): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
em Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted [  406.857385] audit: type=1334 audit(1750150642.686:342): prog-id=36 op=UNLOAD
^[[0;1;39m/run/credentials/systemd-sysctl.service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
         Stopping ^[[0;1;39mSecurity Auditing Service^[[0m...
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-uuid…8d2e1f-0fb1-4c94-97ac-38505613fcbf^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m.
[^[[0;32m  OK [  406.907985] watchdog: watchdog0: watchdog did not stop!
 ^[[0m] Deactivated swap ^[[0;1;39m/dev/rhel_sharavati/swap^[[0m.
[^[[0;32m  OK  ^[[  406.919353] systemd-shutdown[1]: Using hardware watchdog 'SP5100 TCO timer', version 0, device /dev/watchdog0
[0m] Deactivated[  406.930447] systemd-shutdown[1]: Watchdog running with a timeout of 10min.
 swap ^[[0;1;39m/dev/disk/by-id/d…kEo36yeb12DWUnp5czhD1hrKFNCXkJMetK^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swa[  406.947171] systemd-shutdown[1]: Syncing filesystems and block devices.
p ^[[0;1;39m/dev/[  406.955042] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
dm-2^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile File[  406.981771] systemd-journald[1736]: Received SIGTERM from PID 1 (systemd-shutdow).
s and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
         Unmounting ^[[0;1;39m/boot/efi^[[0m...
         Unmounting ^[[0;1;39m/home^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m.
         Unmounting ^[[0;1;39m/boot^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Local File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUnmount All Filesystems^[[0m.
         Stopping ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRemount Root and Kernel File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mMonitoring of LVM2 mirrors…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLate Shutdown Services^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSystem Reboot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Reboot^[[0m.
[  407.143864] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
[  407.167938] systemd-shutdown[1]: Unmounting file systems.
[  407.174108] [8164]: Remounting '/' read-only with options 'attr2,inode64,logbufs=8,logbsize=32k,noquota'.
[  407.193610] systemd-shutdown[1]: All filesystems unmounted.
[  407.199211] systemd-shutdown[1]: Deactivating swaps.
[  407.204216] systemd-shutdown[1]: All swaps deactivated.
[  407.209446] systemd-shutdown[1]: Detaching loop devices.
[  407.215250] systemd-shutdown[1]: All loop devices detached.
[  407.221368] systemd-shutdown[1]: Stopping MD devices.
[  407.226505] systemd-shutdown[1]: All MD devices stopped.
[  407.231824] systemd-shutdown[1]: Detaching DM devices.
[  407.237347] systemd-shutdown[1]: Detaching DM /dev/dm-2 (253:2).
[  407.271409] systemd-shutdown[1]: Detaching DM /dev/dm-0 (253:0).
[  407.315455] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  407.321951] systemd-shutdown[1]: Detaching DM devices.
[  407.327271] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  407.333714] systemd-shutdown[1]: Cannot finalize remaining DM devices, continuing.
[  407.341276] watchdog: watchdog0: watchdog did not stop!
[  407.434942] systemd-shutdown[1]: Successfully changed into root pivot.
[  407.441480] systemd-shutdown[1]: Returning to initrd...
[  407.490469] dracut Warning: Killing all remaining processes
dracut Warning: Killing all remaining processes
[  407.570217] XFS (dm-1): Unmounting Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[  407.587337] dracut Warning: Unmounted /oldroot.
dracut Warning: Unmounted /oldroot.
[  407.603505] dracut: Disassembling device-mapper devices
Rebooting.
[  407.809149] sd 8:0:2:0: [sdc] Synchronizing SCSI cache
[  407.814422] sd 8:0:0:0: [sda] Synchronizing SCSI cache
[  409.281018] mpt3sas_cm0: sending message unit reset !!
[  409.288800] mpt3sas_cm0: message unit reset: SUCCESS
[  409.296396] ACPI: PM: Preparing to enter system sleep state S5
[  409.302359] kvm: exiting hardware virtualization
[  409.307017] reboot: Restarting system
[  409.310686] reboot: machine restart
^[[c^[[2J^[[01;01H^[[=3h^[[2J^[[01;01HKEY MAPPING FOR CONSOLE REDIRECTION:

Use the <ESC><1> key sequence for <F1>
Use the <ESC><2> key sequence for <F2>
Use the <ESC><3> key sequence for <F3>
Use the <ESC><0> key sequence for <F10>
Use the <ESC><!> key sequence for <F11>
Use the <ESC><@> key sequence for <F12>

Use the <ESC><Ctrl><M> key sequence for <Ctrl><M>
Use the <ESC><Ctrl><H> key sequence for <Ctrl><H>
Use the <ESC><Ctrl><I> key sequence for <Ctrl><I>
Use the <ESC><Ctrl><J> key sequence for <Ctrl><J>

Use the <ESC><X><X> key sequence for <Alt><x>, where x is any letter
key, and X is the upper case of that key

Use the <ESC><R><ESC><r><ESC><R> key sequence for <Ctrl><Alt><Del>

Press the spacebar to pause...
Initializing PCIe, USB, and Video... Done
PowerEdge R6515
BIOS Version: 2.17.0
Console Redirection Enabled Requested by iDRAC

F2	 = System Setup
F10	 = Lifecycle Controller (Config
	   iDRAC, Update FW, Install OS)
F11	 = Boot Manager
F12	 = PXE Boot
iDRAC IPV4:  10.86.18.202 [Dedicated]
                                
Initializing Firmware Interfaces...
 





Enumerating Boot options...
Enumerating Boot options... Done
Loading Lifecycle Controller Drivers...
Loading Lifecycle Controller Drivers...Done
Lifecycle Controller: Collecting System Inventory...

iDRAC IPV4:  10.86.18.202 [Dedicated]

^[[2J^[[01;01HLifecycle Controller: Done
Booting...
^[[2J^[[01;01HBooting from Integrated Storage Controller 1: Red Hat Enterprise Linux
^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[02;32HGRUB version 2.06

\r^[[04;02H/----------------------------------------------------------------------------\^[[05;02H|^[[05;79H|^[[06;02H|^[[06;79H|^[[07;02H|^[[07;79H|^[[08;02H|^[[08;79H|^[[09;02H|^[[09;79H|^[[10;02H|^[[10;79H|^[[11;02H|^[[11;79H|^[[12;02H|^[[12;79H|^[[13;02H|^[[13;79H|^[[14;02H|^[[14;79H|^[[15;02H|^[[15;79H|^[[16;02H|^[[16;79H|^[[17;02H\----------------------------------------------------------------------------/^[[18;02H^[[19;02H     Use the ^ and v keys to select which entry is highlighted.          
\r      Press enter to boot the selected OS, `e' to edit the commands       
\r      before booting or `c' for a command-line. ESC to return previous    
\r      menu.                                                               ^[[05;80H ^[[0m^[[30m^[[47m^[[05;03H*Red Hat Enterprise Linux (6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e)>
\r^[[06;01H^[[0m^[[37m^[[40m^[[05;78H^[[06;03H Red Hat Enterprise Linux (6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997)>
\r^[[07;01H^[[06;78H^[[07;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250613-bc6e0ba6c9-dc42f4ece61)>
\r^[[08;01H^[[07;78H^[[08;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250612-0bb71d3018-d909e6968a1)>
\r^[[09;01H^[[08;78H^[[09;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250611-19a60293b9-72d7c68e20e)>
\r^[[10;01H^[[09;78H^[[10;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250610-b27cc623e0-9a3b1b1b837)>
\r^[[11;01H^[[10;78H^[[11;03H Red Hat Enterprise Linux (6.15.0-rc7-next-20250526-3be1a7a31f-22d449bcd69)>
\r^[[12;01H^[[11;78H^[[12;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250514-bdd609656f-ccb396cc166)>
\r^[[13;01H^[[12;78H^[[13;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250513-aa94665adc-e0bf3d3816b)>
\r^[[14;01H^[[13;78H^[[14;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250512-edef457004-450c56522a8)>
\r^[[15;01H^[[14;78H^[[15;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250508-f48887a98b-19c541fe872)>
\r^[[16;01H^[[15;78H^[[16;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250507-08710e6960-81586bd2ca8)>
\r^[[17;01H^[[16;78H^[[16;80Hv^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 5s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 4s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 3s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 2s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 1s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 0s.                 ^[[05;78H^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m  Booting `Red Hat Enterprise Linux
\r(6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e) 9.5 (Plow)'

\r[    0.000000] Linux version 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e (root@sharavati•amd.com) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-5), GNU ld version 2.35.2-63.el9) #1 SMP PREEMPT_DYNAMIC Tue Jun 17 12:09:52 IST 2025
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] SEV-SNP: RMP table physical range [0x0000000015e00000 - 0x00000000566fffff]
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000015dfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000015e00000-0x00000000566fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000056700000-0x00000000567fbfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000567fc000-0x00000000567fcfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000567fd000-0x000000005a142fff] usable
[    0.000000] BIOS-e820: [mem 0x000000005a143000-0x000000005a342fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005a343000-0x0000000067acefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000067acf000-0x000000006dfcefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006dfcf000-0x000000006edfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006edff000-0x000000006effefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000006efff000-0x000000006effffff] usable
[    0.000000] BIOS-e820: [mem 0x000000006f000000-0x000000006f00afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006f00b000-0x000000006fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000070000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa000000-0x00000000aaffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c5000000-0x00000000c5ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e0ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000207fcfffff] usable
[    0.000000] BIOS-e820: [mem 0x000000207fd00000-0x000000207fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000002080000000-0x000000407f1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000407f200000-0x000000407fffffff] reserved
[    0.000000] printk: legacy bootconsole [earlyser0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by Dell Inc.
[    0.000000] efi: ACPI=0x6effe000 ACPI 2.0=0x6effe014 MEMATTR=0x63f376a0 SMBIOS=0x6979e000 SMBIOS 3.0=0x6979c000 MOKvar=0x67bcc000 RNG=0x6efb4020 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem56: MMIO range=[0x80000000-0x8fffffff] (256MB) from e820 map
[    0.000000] efi: Remove mem57: MMIO range=[0xaa000000-0xaaffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem58: MMIO range=[0xc5000000-0xc5ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem59: MMIO range=[0xe0000000-0xe0ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem60: MMIO range=[0xfd000000-0xffffffff] (48MB) from e820 map
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[    0.000000] DMI: Memory slots populated: 8/16
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1996.128 MHz processor
[    0.000029] last_pfn = 0x407f200 max_arch_pfn = 0x400000000
[    0.005551] MTRR map: 7 entries (2 fixed + 5 variable; max 19), built from 9 variable MTRRs
[    0.013866] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Memory KASLR using RDRAND RDTSC...
[    0.023938] x2apic: enabled by BIOS, switching to x2apic ops
[    0.029572] last_pfn = 0x70000 max_arch_pfn = 0x400000000
[    0.039490] SEV-SNP: Reserving start/end of RMP table on a 2MB boundary [0x0000000056600000]
[    0.047762] Using GB pages for direct mapping
[    0.052632] Secure boot disabled
[    0.055684] RAMDISK: [mem 0x0bb2c000-0x0e0d4fff]
[    0.060281] ACPI: Early table checksum verification disabled
[    0.065913] ACPI: RSDP 0x000000006EFFE014 000024 (v02 DELL  )
[    0.071632] ACPI: XSDT 0x000000006EFB7188 0000DC (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.080128] ACPI: FACP 0x000000006EFF9000 000114 (v06 DELL   PE_SC3   00000002 DELL 00000001)
[    0.088622] ACPI: DSDT 0x000000006EFDA000 019528 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.097114] ACPI: FACS 0x000000006EDB9000 000040
[    0.101707] ACPI: BERT 0x000000006EFFC000 000030 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.110200] ACPI: ERST 0x000000006EFFB000 000230 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.118694] ACPI: HEST 0x000000006EFFA000 0007F4 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.127186] ACPI: HPET 0x000000006EFF8000 000038 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.135680] ACPI: APIC 0x000000006EFF6000 0018BE (v05 DELL   PE_SC3   00000002 DELL 00000001)
[    0.144175] ACPI: MCFG 0x000000006EFF5000 00003C (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.152668] ACPI: WSMT 0x000000006EFF4000 000028 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.161178] ACPI: SSDT 0x000000006EFD9000 000629 (v02 DELL   xhc_port 00000001 INTL 20210331)
[    0.169675] ACPI: SSDT 0x000000006EFD8000 000D6E (v02 AMD    CPMRAS   00000001 INTL 20210331)
[    0.178166] ACPI: EINJ 0x000000006EFD7000 000170 (v01 AMD    PE_SC3   00000001 AMD  00000001)
[    0.186660] ACPI: PCCT 0x000000006EFD6000 00006E (v02 DELL   AmdTable 00000001 AMD  00000001)
[    0.195154] ACPI: SSDT 0x000000006EFC7000 00E849 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.203646] ACPI: SRAT 0x000000006EFC6000 000CD0 (v03 DELL   PE_SC3   00000001 AMD  00000001)
[    0.212141] ACPI: MSCT 0x000000006EFC5000 00004E (v01 DELL   PE_SC3   00000000 AMD  00000001)
[    0.220635] ACPI: SLIT 0x000000006EFC4000 000030 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.229128] ACPI: CRAT 0x000000006EFBC000 0072F8 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.237622] ACPI: CDIT 0x000000006EFBB000 00002C (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.246115] ACPI: IVRS 0x000000006EFBA000 0001F0 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.254609] ACPI: SPCR 0x000000006EFB9000 000050 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.263137] ACPI: SLIC 0x000000006EFB8000 000176 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.271631] ACPI: SSDT 0x000000006EFFD000 000D66 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.280125] ACPI: SSDT 0x000000006EFB5000 00193C (v02 AMD    CPMCMN   00000001 INTL 20210331)
[    0.288617] ACPI: Reserving FACP table memory at [mem 0x6eff9000-0x6eff9113]
[    0.295638] ACPI: Reserving DSDT table memory at [mem 0x6efda000-0x6eff3527]
[    0.302657] ACPI: Reserving FACS table memory at [mem 0x6edb9000-0x6edb903f]
[    0.309678] ACPI: Reserving BERT table memory at [mem 0x6effc000-0x6effc02f]
[    0.316698] ACPI: Reserving ERST table memory at [mem 0x6effb000-0x6effb22f]
[    0.323719] ACPI: Reserving HEST table memory at [mem 0x6effa000-0x6effa7f3]
[    0.330738] ACPI: Reserving HPET table memory at [mem 0x6eff8000-0x6eff8037]
[    0.337760] ACPI: Reserving APIC table memory at [mem 0x6eff6000-0x6eff78bd]
[    0.344779] ACPI: Reserving MCFG table memory at [mem 0x6eff5000-0x6eff503b]
[    0.351800] ACPI: Reserving WSMT table memory at [mem 0x6eff4000-0x6eff4027]
[    0.358820] ACPI: Reserving SSDT table memory at [mem 0x6efd9000-0x6efd9628]
[    0.365841] ACPI: Reserving SSDT table memory at [mem 0x6efd8000-0x6efd8d6d]
[    0.372860] ACPI: Reserving EINJ table memory at [mem 0x6efd7000-0x6efd716f]
[    0.379880] ACPI: Reserving PCCT table memory at [mem 0x6efd6000-0x6efd606d]
[    0.386902] ACPI: Reserving SSDT table memory at [mem 0x6efc7000-0x6efd5848]
[    0.393922] ACPI: Reserving SRAT table memory at [mem 0x6efc6000-0x6efc6ccf]
[    0.400942] ACPI: Reserving MSCT table memory at [mem 0x6efc5000-0x6efc504d]
[    0.407961] ACPI: Reserving SLIT table memory at [mem 0x6efc4000-0x6efc402f]
[    0.414983] ACPI: Reserving CRAT table memory at [mem 0x6efbc000-0x6efc32f7]
[    0.422002] ACPI: Reserving CDIT table memory at [mem 0x6efbb000-0x6efbb02b]
[    0.429022] ACPI: Reserving IVRS table memory at [mem 0x6efba000-0x6efba1ef]
[    0.436043] ACPI: Reserving SPCR table memory at [mem 0x6efb9000-0x6efb904f]
[    0.443064] ACPI: Reserving SLIC table memory at [mem 0x6efb8000-0x6efb8175]
[    0.450084] ACPI: Reserving SSDT table memory at [mem 0x6effd000-0x6effdd65]
[    0.457103] ACPI: Reserving SSDT table memory at [mem 0x6efb5000-0x6efb693b]
[    0.464200] APIC: Switched APIC routing to: cluster x2apic
[    0.469602] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.475565] ACPI: SRAT: Node 0 PXM 0 [mem 0x000c0000-0x7fffffff]
[    0.481544] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.487785] ACPI: SRAT: Node 1 PXM 1 [mem 0x2080000000-0x407fffffff]
[    0.494119] NUMA: Node 0 [mem 0x00001000-0x0009ffff] + [mem 0x000c0000-0x7fffffff] -> [mem 0x00001000-0x7fffffff]
[    0.504338] NUMA: Node 0 [mem 0x00001000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00001000-0x207fffffff]
[    0.515005] NODE_DATA(0) allocated [mem 0x207fcd59c0-0x207fcfffff]
[    0.521161] NODE_DATA(1) allocated [mem 0x407f1d49c0-0x407f1fefff]
[    0.527446] cannot allocate crashkernel low memory (size:0x10800000).
[    0.533964] Zone ranges:
[    0.536320]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.542474]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.548627]   Normal   [mem 0x0000000100000000-0x000000407f1fffff]
[    0.554780]   Device   empty
[    0.557641] Movable zone start for each node
[    0.561889] Early memory node ranges
[    0.565440]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.571681]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.577956]   node   0: [mem 0x0000000000100000-0x0000000015dfffff]
[    0.584196]   node   0: [mem 0x0000000056700000-0x00000000567fbfff]
[    0.590437]   node   0: [mem 0x00000000567fd000-0x000000005a142fff]
[    0.596677]   node   0: [mem 0x000000005a343000-0x0000000067acefff]
[    0.602917]   node   0: [mem 0x000000006efff000-0x000000006effffff]
[    0.609157]   node   0: [mem 0x000000006f00b000-0x000000006fffffff]
[    0.615397]   node   0: [mem 0x0000000100000000-0x000000207fcfffff]
[    0.621649]   node   1: [mem 0x0000002080000000-0x000000407f1fffff]
[    0.627889] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fcfffff]
[    0.634901] Initmem setup node 1 [mem 0x0000002080000000-0x000000407f1fffff]
[    0.641921] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.647725] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.653543] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.659775] On node 0, zone DMA32: 35072 pages in unavailable ranges
[    0.665985] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.672080] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.678172] On node 0, zone DMA32: 30000 pages in unavailable ranges
[    0.684416] On node 0, zone DMA32: 11 pages in unavailable ranges
[    0.909535] On node 1, zone Normal: 768 pages in unavailable ranges
[    0.915636] On node 1, zone Normal: 3584 pages in unavailable ranges
[    0.922126] ACPI: PM-Timer IO Port: 0x408
[    0.925997] ACPI: X2APIC_NMI (uid[0xffffffff] high edge lint[0x1])
[    0.932125] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.938032] IOAPIC[0]: apic_id 240, version 33, address 0xfec00000, GSI 0-23
[    0.945042] IOAPIC[1]: apic_id 241, version 33, address 0xe0100000, GSI 120-151
[    0.952322] IOAPIC[2]: apic_id 242, version 33, address 0xc5100000, GSI 88-119
[    0.959514] IOAPIC[3]: apic_id 243, version 33, address 0xaa100000, GSI 56-87
[    0.966621] IOAPIC[4]: apic_id 244, version 33, address 0xfd100000, GSI 24-55
[    0.973728] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.980053] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.986560] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.992966] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.998082] ACPI: SPCR: console: uart,io,0x2f8,115200
[    1.003111] CPU topo: Max. logical packages:   1
[    1.007699] CPU topo: Max. logical dies:       1
[    1.012293] CPU topo: Max. dies per package:   1
[    1.016891] CPU topo: Max. threads per core:   2
[    1.021481] CPU topo: Num. cores per package:    64
[    1.026334] CPU topo: Num. threads per package: 128
[    1.031187] CPU topo: Allowing 128 present CPUs plus 0 hotplug CPUs
[    1.037453] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    1.044968] PM: hibernation: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    1.052508] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    1.060050] PM: hibernation: Registered nosave memory: [mem 0x15e00000-0x567fffff]
[    1.067590] PM: hibernation: Registered nosave memory: [mem 0x5a143000-0x5a342fff]
[    1.075130] PM: hibernation: Registered nosave memory: [mem 0x67acf000-0x6effefff]
[    1.082670] PM: hibernation: Registered nosave memory: [mem 0x6f000000-0x6f00afff]
[    1.090211] PM: hibernation: Registered nosave memory: [mem 0x70000000-0xffffffff]
[    1.097751] PM: hibernation: Registered nosave memory: [mem 0x207fd00000-0x207fffffff]
[    1.105638] [mem 0x56800000-0xffffffff] available for PCI devices
[    1.111704] Booting paravirtualized kernel on bare hardware
[    1.117251] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    1.127664] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:128 nr_cpu_ids:128 nr_node_ids:2
[    1.138568] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[    1.145046] Kernel command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    1.174377] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e biosdevname=0 mem_encrypt=off", will be passed to user space.
[    1.191222] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    1.198139] printk: log_buf_len total cpu_extra contributions: 520192 bytes
[    1.205073] printk: log_buf_len min size: 262144 bytes
[    1.210524] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[    1.217909] printk: early log buf free: 246352(93%)
[    1.224249] software IO TLB: area num 128.
[    1.228175] software IO TLB: swiotlb_memblock_alloc: Failed to allocate 268435456 bytes tlb structure
[    1.243285] software IO TLB: SWIOTLB bounce buffer size adjusted 131072 -> 65536 slabs
[    1.249397] Fallback order for Node 0: 0 1 
[    1.249402] Fallback order for Node 1: 1 0 
[    1.249414] Built 2 zonelists, mobility grouping on.  Total pages: 66743906
[    1.272397] Policy zone: Normal
[    1.275526] mem auto-init: stack:off, heap alloc:on, heap free:off
[    1.695977] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=128, Nodes=2
Poking KASLR using RDRAND RDTSC...
[    1.717239] ftrace: allocating 53763 entries in 212 pages
[    1.722457] ftrace: allocated 212 pages with 4 groups
[    1.728393] Dynamic Preempt: voluntary
[    1.732339] rcu: Preemptible hierarchical RCU implementation.
[    1.737901] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=128.
[    1.744835] 	Trampoline variant of Tasks RCU enabled.
[    1.749862] 	Rude variant of Tasks RCU enabled.
[    1.754369] 	Tracing variant of Tasks RCU enabled.
[    1.759170] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.766745] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=128
[    1.773633] RCU Tasks: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.782436] RCU Tasks Rude: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.791710] RCU Tasks Trace: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.804595] NR_IRQS: 524544, nr_irqs: 3624, preallocated irqs: 16
[    1.810781] rcu: srcu_init: Setting srcu_struct sizes to big.
[    1.816525] Console: colour dummy device 80x25
[    1.820810] printk: legacy console [ttyS0] enabled
[    1.820810] printk: legacy console [ttyS0] enabled
[    1.830344] printk: legacy bootconsole [earlyser0] disabled
[    1.830344] printk: legacy bootconsole [earlyser0] disabled
[    1.841531] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    1.852811] ACPI: Core revision 20250404
[    1.856961] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    1.866121] APIC: Switch to symmetric I/O mode setup
[    1.871543] AMD-Vi: Using global IVHD EFR:0x841f77e022094ace, EFR2:0x0
[    1.880508] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    1.906126] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x398bc90951d, max_idle_ns: 881590574132 ns
[    1.916635] Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.25 BogoMIPS (lpj=7984512)
[    1.920647] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    1.924743] LVT offset 2 assigned for vector 0xf4
[    1.928668] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    1.932634] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    1.936635] process: using mwait in idle threads
[    1.940638] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    1.944634] Spectre V2 : Mitigation: Retpolines
[    1.948634] Spectre V2 : User space: Mitigation: STIBP always-on protection
[    1.952634] Speculative Return Stack Overflow: Mitigation: Safe RET
[    1.956634] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.960634] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
[    1.964634] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    1.968634] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    1.972637] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.976634] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.980634] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.984634] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    1.988634] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    1.992634] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    1.996634] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    2.000634] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    2.004634] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[    2.043168] Freeing SMP alternatives memory: 48K
[    2.044636] pid_max: default: 131072 minimum: 1024
[    2.056719] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm
[    2.060686] Yama: becoming mindful.
[    2.064760] AppArmor: AppArmor initialized
[    2.077873] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    2.086156] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    2.088783] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.092730] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.205939] smpboot: CPU0: AMD EPYC 7713 64-Core Processor (family: 0x19, model: 0x1, stepping: 0x1)
[    2.208989] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    2.212636] ... version:                0
[    2.216635] ... bit width:              48
[    2.220635] ... generic registers:      6
[    2.224635] ... value mask:             0000ffffffffffff
[    2.228635] ... max period:             00007fffffffffff
[    2.232635] ... fixed-purpose events:   0
[    2.236635] ... event mask:             000000000000003f
[    2.241068] signal: max sigframe size: 3376
[    2.244697] rcu: Hierarchical SRCU implementation.
[    2.248635] rcu: 	Max phase no-delay instances is 1000.
[    2.252690] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
[    2.265047] MCE: In-kernel MCE decoding enabled.
[    2.268686] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    2.273602] smp: Bringing up secondary CPUs ...
[    2.276800] smpboot: x86: Booting SMP configuration:
[    2.280638] .... node  #0, CPUs:          #1   #2   #3   #4   #5   #6   #7   #8   #9  #10  #11  #12  #13  #14  #15  #16  #17  #18  #19  #20  #21  #22  #23  #24  #25  #26  #27  #28  #29  #30  #31
[    2.292636] .... node  #1, CPUs:    #32  #33  #34  #35  #36  #37  #38  #39  #40  #41  #42  #43  #44  #45  #46  #47  #48  #49  #50  #51  #52  #53  #54  #55  #56  #57  #58  #59  #60  #61  #62  #63
[    2.444636] .... node  #0, CPUs:    #64  #65  #66  #67  #68  #69  #70  #71  #72  #73  #74  #75  #76  #77  #78  #79  #80  #81  #82  #83  #84  #85  #86  #87  #88  #89  #90  #91  #92  #93  #94  #95
[    2.452636] .... node  #1, CPUs:    #96  #97  #98  #99 #100 #101 #102 #103 #104 #105 #106 #107 #108 #109 #110 #111 #112 #113 #114 #115 #116 #117 #118 #119 #120 #121 #122 #123 #124 #125 #126 #127
[    2.460939] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[    2.612806] smp: Brought up 2 nodes, 128 CPUs
[    2.616638] smpboot: Total of 128 processors activated (511008.76 BogoMIPS)
[    2.630553] Memory: 262224980K/266975624K available (18401K kernel code, 3299K rwdata, 7944K rodata, 4760K init, 6092K bss, 4428296K reserved, 0K cma-reserved)
[    2.638392] devtmpfs: initialized
[    2.640741] x86/mm: Memory block size: 2048MB
[    2.655033] ACPI: PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    2.656637] ACPI: PM: Registering ACPI NVS region [mem 0x6dfcf000-0x6edfefff] (14876672 bytes)
[    2.660920] ACPI: PM: Registering ACPI NVS region [mem 0x6f000000-0x6f00afff] (45056 bytes)
[    2.664761] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    2.668699] posixtimers hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.672854] futex hash table entries: 16384 (1048576 bytes on 2 NUMA nodes, total 2048 KiB, linear).
[    2.676865] pinctrl core: initialized pinctrl subsystem
[    2.680786] PM: RTC time: 14:29:38, date: 2025-06-17
[    2.685415] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    2.689244] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    2.692819] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    2.696819] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    2.700642] audit: initializing netlink subsys (disabled)
[    2.704666] audit: type=2000 audit(1750170577.824:1): state=initialized audit_enabled=0 res=1
[    2.704841] thermal_sys: Registered thermal governor 'fair_share'
[    2.708636] thermal_sys: Registered thermal governor 'bang_bang'
[    2.712636] thermal_sys: Registered thermal governor 'step_wise'
[    2.716635] thermal_sys: Registered thermal governor 'user_space'
[    2.720658] cpuidle: using governor ladder
[    2.728645] cpuidle: using governor menu
[    2.732683] Detected 1 PCC Subspaces
[    2.736636] Registering PCC driver as Mailbox controller
[    2.744812] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    2.748639] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    2.752814] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    2.756646] PCI: Using configuration type 1 for base access
[    2.760644] PCI: Dell System detected, enabling pci=bfsort.
[    2.764843] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    2.768853] HugeTLB: allocation took 0ms with hugepage_allocation_threads=32
[    2.772678] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    2.776635] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    2.780635] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    2.784635] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    2.793092] ACPI: Added _OSI(Module Device)
[    2.796635] ACPI: Added _OSI(Processor Device)
[    2.800635] ACPI: Added _OSI(Processor Aggregator Device)
[    2.845593] ACPI: 6 ACPI AML tables successfully acquired and loaded
[    2.861523] ACPI: Interpreter enabled
[    2.864649] ACPI: PM: (supports S0 S5)
[    2.868635] ACPI: Using IOAPIC for interrupt routing
[    2.873252] HEST: Table parsing has been initialized.
[    2.877042] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    2.880638] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.884635] PCI: Ignoring E820 reservations for host bridge windows
[    2.893032] ACPI: Enabled 1 GPEs in block 00 to 1F
[    2.934974] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    2.936715] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    2.940713] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    2.944712] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    2.948713] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    2.952713] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    2.956712] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    2.960713] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    2.965133] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-3f])
[    2.968639] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.972799] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER DPC]
[    2.976952] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    2.980635] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.985623] PCI host bridge to bus 0000:00
[    2.988639] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    2.992635] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    2.996636] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000fffff window]
[    3.000635] pci_bus 0000:00: root bus resource [io  0x0d00-0x3fff window]
[    3.004635] pci_bus 0000:00: root bus resource [mem 0xe1000000-0xfebfffff window]
[    3.008635] pci_bus 0000:00: root bus resource [mem 0x63dc0000000-0x7fcffffffff window]
[    3.012635] pci_bus 0000:00: root bus resource [bus 00-3f]
[    3.016649] pci 0000:00:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.020792] pci 0000:00:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.024745] pci 0000:00:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.028728] pci 0000:00:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.032725] pci 0000:00:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.036729] pci 0000:00:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.040651] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.044640] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    3.048636] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    3.052705] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    3.057642] pci 0000:00:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.060730] pci 0000:00:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.064729] pci 0000:00:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.068730] pci 0000:00:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.072650] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.076639] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    3.080646] pci 0000:00:07.1: enabling Extended Tags
[    3.084683] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    3.088791] pci 0000:00:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.092729] pci 0000:00:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.096651] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.100639] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    3.104648] pci 0000:00:08.1: enabling Extended Tags
[    3.108685] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    3.112828] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
[    3.116750] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
[    3.120806] pci 0000:00:18.0: [1022:1650] type 00 class 0x060000 conventional PCI endpoint
[    3.124741] pci 0000:00:18.1: [1022:1651] type 00 class 0x060000 conventional PCI endpoint
[    3.128703] pci 0000:00:18.2: [1022:1652] type 00 class 0x060000 conventional PCI endpoint
[    3.132700] pci 0000:00:18.3: [1022:1653] type 00 class 0x060000 conventional PCI endpoint
[    3.136699] pci 0000:00:18.4: [1022:1654] type 00 class 0x060000 conventional PCI endpoint
[    3.140699] pci 0000:00:18.5: [1022:1655] type 00 class 0x060000 conventional PCI endpoint
[    3.144705] pci 0000:00:18.6: [1022:1656] type 00 class 0x060000 conventional PCI endpoint
[    3.148699] pci 0000:00:18.7: [1022:1657] type 00 class 0x060000 conventional PCI endpoint
[    3.152771] pci 0000:01:00.0: [1000:0097] type 00 class 0x010700 PCIe Endpoint
[    3.156665] pci 0000:01:00.0: BAR 0 [io  0x1000-0x10ff]
[    3.160637] pci 0000:01:00.0: BAR 1 [mem 0xf7400000-0xf740ffff 64bit]
[    3.164638] pci 0000:01:00.0: BAR 3 [mem 0xf7300000-0xf73fffff 64bit]
[    3.168637] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]
[    3.172640] pci 0000:01:00.0: enabling Extended Tags
[    3.176719] pci 0000:01:00.0: supports D1 D2
[    3.180676] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[    3.184635] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x000fffff 64bit]: contains BAR 0 for 16 VFs
[    3.188636] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x000fffff 64bit]
[    3.192635] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x00ffffff 64bit]: contains BAR 2 for 16 VFs
[    3.196786] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.200723] pci 0000:02:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.204668] pci 0000:02:00.0: enabling Extended Tags
[    3.208797] pci 0000:02:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.212662] pci 0000:02:00.2: BAR 2 [mem 0xf7200000-0xf727ffff]
[    3.216637] pci 0000:02:00.2: BAR 5 [mem 0xf7280000-0xf7281fff]
[    3.220640] pci 0000:02:00.2: enabling Extended Tags
[    3.224837] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.228771] pci 0000:03:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.232671] pci 0000:03:00.0: enabling Extended Tags
[    3.240807] pci 0000:03:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.244665] pci 0000:03:00.2: BAR 2 [mem 0xf7100000-0xf717ffff]
[    3.248638] pci 0000:03:00.2: BAR 5 [mem 0xf7180000-0xf7181fff]
[    3.252641] pci 0000:03:00.2: enabling Extended Tags
[    3.256829] pci 0000:03:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.260664] pci 0000:03:00.3: BAR 0 [mem 0xf7000000-0xf70fffff 64bit]
[    3.264643] pci 0000:03:00.3: enabling Extended Tags
[    3.268686] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
[    3.272817] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.278031] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 40-7f])
[    3.280638] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.284800] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.288951] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.292635] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.301122] PCI host bridge to bus 0000:40
[    3.304638] pci_bus 0000:40: root bus resource [io  0x4000-0x6fff window]
[    3.308635] pci_bus 0000:40: root bus resource [mem 0x90000000-0xaaffffff window]
[    3.312635] pci_bus 0000:40: root bus resource [mem 0x47e80000000-0x63dbfffffff window]
[    3.316635] pci_bus 0000:40: root bus resource [bus 40-7f]
[    3.320644] pci 0000:40:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.324734] pci 0000:40:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.328736] pci 0000:40:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.332719] pci 0000:40:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.336719] pci 0000:40:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.340729] pci 0000:40:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.344653] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.348640] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    3.352726] pci 0000:40:03.1: PME# supported from D0 D3hot D3cold
[    3.372185] pci 0000:40:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.372653] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.376640] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    3.380732] pci 0000:40:03.2: PME# supported from D0 D3hot D3cold
[    3.397722] pci 0000:40:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.400658] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.404644] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    3.408826] pci 0000:40:03.3: PME# supported from D0 D3hot D3cold
[    3.427511] pci 0000:40:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.428653] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.432646] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    3.436772] pci 0000:40:03.4: PME# supported from D0 D3hot D3cold
[    3.453487] pci 0000:40:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.456764] pci 0000:40:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.460723] pci 0000:40:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.464727] pci 0000:40:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.468654] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.472641] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    3.476648] pci 0000:40:07.1: enabling Extended Tags
[    3.480687] pci 0000:40:07.1: PME# supported from D0 D3hot D3cold
[    3.488805] pci 0000:40:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.496728] pci 0000:40:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.504652] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.508639] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    3.512646] pci 0000:40:08.1: enabling Extended Tags
[    3.520684] pci 0000:40:08.1: PME# supported from D0 D3hot D3cold
[    3.524897] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.532720] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.536716] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.540717] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.544723] pci 0000:45:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.552668] pci 0000:45:00.0: enabling Extended Tags
[    3.556795] pci 0000:45:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.564663] pci 0000:45:00.2: BAR 2 [mem 0xa5300000-0xa537ffff]
[    3.572637] pci 0000:45:00.2: BAR 5 [mem 0xa5380000-0xa5381fff]
[    3.576640] pci 0000:45:00.2: enabling Extended Tags
[    3.580836] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.588769] pci 0000:46:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.596671] pci 0000:46:00.0: enabling Extended Tags
[    3.600844] pci 0000:46:00.1: [1022:1486] type 00 class 0x108000 PCIe Endpoint
[    3.608664] pci 0000:46:00.1: BAR 2 [mem 0xa5100000-0xa51fffff]
[    3.612637] pci 0000:46:00.1: BAR 5 [mem 0xa5282000-0xa5283fff]
[    3.620640] pci 0000:46:00.1: enabling Extended Tags
[    3.624829] pci 0000:46:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.632664] pci 0000:46:00.2: BAR 2 [mem 0xa5200000-0xa527ffff]
[    3.636637] pci 0000:46:00.2: BAR 5 [mem 0xa5280000-0xa5281fff]
[    3.644640] pci 0000:46:00.2: enabling Extended Tags
[    3.648827] pci 0000:46:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.656664] pci 0000:46:00.3: BAR 0 [mem 0xa5000000-0xa50fffff 64bit]
[    3.660643] pci 0000:46:00.3: enabling Extended Tags
[    3.668685] pci 0000:46:00.3: PME# supported from D0 D3hot D3cold
[    3.672817] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.680879] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 80-bf])
[    3.684639] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.696799] acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.704962] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.712635] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.721541] PCI host bridge to bus 0000:80
[    3.724639] pci_bus 0000:80: root bus resource [io  0x7000-0x9fff window]
[    3.732635] pci_bus 0000:80: root bus resource [mem 0xab000000-0xc5ffffff window]
[    3.736635] pci_bus 0000:80: root bus resource [mem 0x2bf40000000-0x47e7fffffff window]
[    3.744636] pci_bus 0000:80: root bus resource [bus 80-bf]
[    3.752644] pci 0000:80:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.760735] pci 0000:80:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.768735] pci 0000:80:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.776729] pci 0000:80:01.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.784653] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.788640] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    3.796738] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    3.816858] pci 0000:80:01.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.824659] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.828642] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    3.832763] pci 0000:80:01.2: PME# supported from D0 D3hot D3cold
[    3.855250] pci 0000:80:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.860757] pci 0000:80:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.868725] pci 0000:80:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.880791] pci 0000:80:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.888722] pci 0000:80:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.896723] pci 0000:80:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.904650] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.908639] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    3.916646] pci 0000:80:07.1: enabling Extended Tags
[    3.920683] pci 0000:80:07.1: PME# supported from D0 D3hot D3cold
[    3.924790] pci 0000:80:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.932730] pci 0000:80:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.940651] pci 0000:80:08.1: PCI bridge to [bus 84]
[    3.948639] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    3.952647] pci 0000:80:08.1: enabling Extended Tags
[    3.956684] pci 0000:80:08.1: PME# supported from D0 D3hot D3cold
[    3.964801] pci 0000:80:08.2: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.972651] pci 0000:80:08.2: PCI bridge to [bus 85]
[    3.976639] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    3.984647] pci 0000:80:08.2: enabling Extended Tags
[    3.988686] pci 0000:80:08.2: PME# supported from D0 D3hot D3cold
[    3.996670] pci 0000:80:01.1: PCI bridge to [bus 81]
[    4.000717] pci 0000:80:01.2: PCI bridge to [bus 82]
[    4.004721] pci 0000:83:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    4.012668] pci 0000:83:00.0: enabling Extended Tags
[    4.016796] pci 0000:83:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.024662] pci 0000:83:00.2: BAR 2 [mem 0xbfa00000-0xbfa7ffff]
[    4.032637] pci 0000:83:00.2: BAR 5 [mem 0xbfa80000-0xbfa81fff]
[    4.036640] pci 0000:83:00.2: enabling Extended Tags
[    4.040838] pci 0000:80:07.1: PCI bridge to [bus 83]
[    4.048768] pci 0000:84:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.052671] pci 0000:84:00.0: enabling Extended Tags
[    4.060846] pci 0000:84:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.068664] pci 0000:84:00.2: BAR 2 [mem 0xbf900000-0xbf97ffff]
[    4.072637] pci 0000:84:00.2: BAR 5 [mem 0xbf980000-0xbf981fff]
[    4.076640] pci 0000:84:00.2: enabling Extended Tags
[    4.084843] pci 0000:80:08.1: PCI bridge to [bus 84]
[    4.088769] pci 0000:85:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[    4.096667] pci 0000:85:00.0: BAR 5 [mem 0xbf800000-0xbf8007ff]
[    4.100641] pci 0000:85:00.0: enabling Extended Tags
[    4.108701] pci 0000:85:00.0: PME# supported from D3hot D3cold
[    4.112810] pci 0000:80:08.2: PCI bridge to [bus 85]
[    4.120657] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus c0-ff])
[    4.124639] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    4.132800] acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug AER DPC]
[    4.140950] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    4.148635] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
[    4.161002] PCI host bridge to bus 0000:c0
[    4.164638] pci_bus 0000:c0: root bus resource [io  0xa000-0xffff window]
[    4.168635] pci_bus 0000:c0: root bus resource [mem 0xc6000000-0xe0ffffff window]
[    4.176635] pci_bus 0000:c0: root bus resource [mem 0x10000000000-0x2bf3fffffff window]
[    4.184637] pci_bus 0000:c0: root bus resource [io  0x03b0-0x03df window]
[    4.192635] pci_bus 0000:c0: root bus resource [mem 0x000a0000-0x000bffff window]
[    4.200635] pci_bus 0000:c0: root bus resource [bus c0-ff]
[    4.204644] pci 0000:c0:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    4.212732] pci 0000:c0:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    4.220733] pci 0000:c0:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.232720] pci 0000:c0:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.240721] pci 0000:c0:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.248728] pci 0000:c0:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.256652] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.260640] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    4.264726] pci 0000:c0:03.1: PME# supported from D0 D3hot D3cold
[    4.287617] pci 0000:c0:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.292659] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.296641] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    4.304705] pci 0000:c0:03.2: PME# supported from D0 D3hot D3cold
[    4.322987] pci 0000:c0:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.324658] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.328640] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    4.332751] pci 0000:c0:03.3: PME# supported from D0 D3hot D3cold
[    4.354035] pci 0000:c0:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.356658] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.360643] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    4.364761] pci 0000:c0:03.4: PME# supported from D0 D3hot D3cold
[    4.385299] pci 0000:c0:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.388727] pci 0000:c0:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.392736] pci 0000:c0:05.1: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.396650] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.400645] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    4.404683] pci 0000:c0:05.1: PME# supported from D0 D3hot D3cold
[    4.408791] pci 0000:c0:05.2: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.412651] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.416640] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    4.420640] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.424680] pci 0000:c0:05.2: PME# supported from D0 D3hot D3cold
[    4.428781] pci 0000:c0:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.432724] pci 0000:c0:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.436650] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.440639] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    4.444646] pci 0000:c0:07.1: enabling Extended Tags
[    4.448681] pci 0000:c0:07.1: PME# supported from D0 D3hot D3cold
[    4.452787] pci 0000:c0:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.456724] pci 0000:c0:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.460650] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.464640] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    4.468647] pci 0000:c0:08.1: enabling Extended Tags
[    4.472682] pci 0000:c0:08.1: PME# supported from D0 D3hot D3cold
[    4.476876] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.480717] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.484725] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.488718] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.492736] pci 0000:c1:00.0: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.496682] pci 0000:c1:00.0: BAR 0 [mem 0xc7030000-0xc703ffff 64bit pref]
[    4.500643] pci 0000:c1:00.0: BAR 2 [mem 0xc7040000-0xc704ffff 64bit pref]
[    4.504639] pci 0000:c1:00.0: BAR 4 [mem 0xc7050000-0xc705ffff 64bit pref]
[    4.508638] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.512711] pci 0000:c1:00.0: PME# supported from D0 D3hot D3cold
[    4.516692] pci 0000:c1:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:c0:05.1 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
[    4.534078] pci 0000:c1:00.1: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.540682] pci 0000:c1:00.1: BAR 0 [mem 0xc7000000-0xc700ffff 64bit pref]
[    4.548638] pci 0000:c1:00.1: BAR 2 [mem 0xc7010000-0xc701ffff 64bit pref]
[    4.556638] pci 0000:c1:00.1: BAR 4 [mem 0xc7020000-0xc702ffff 64bit pref]
[    4.560636] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.568724] pci 0000:c1:00.1: PME# supported from D0 D3hot D3cold
[    4.584661] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.588717] pci 0000:c2:00.0: [1556:be00] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    4.596662] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.600642] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    4.608645] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.624660] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.628671] pci_bus 0000:c3: extended config space not accessible
[    4.632665] pci 0000:c3:00.0: [102b:0536] type 00 class 0x030000 conventional PCI endpoint
[    4.644681] pci 0000:c3:00.0: BAR 0 [mem 0xc6000000-0xc6ffffff pref]
[    4.648636] pci 0000:c3:00.0: BAR 1 [mem 0xda808000-0xda80bfff]
[    4.656636] pci 0000:c3:00.0: BAR 2 [mem 0xda000000-0xda7fffff]
[    4.660654] pci 0000:c3:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    4.668761] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.676734] pci 0000:c8:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    4.680668] pci 0000:c8:00.0: enabling Extended Tags
[    4.688794] pci 0000:c8:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.692661] pci 0000:c8:00.2: BAR 2 [mem 0xdbb00000-0xdbb7ffff]
[    4.700637] pci 0000:c8:00.2: BAR 5 [mem 0xdbb80000-0xdbb81fff]
[    4.704640] pci 0000:c8:00.2: enabling Extended Tags
[    4.712838] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.716769] pci 0000:c9:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.724670] pci 0000:c9:00.0: enabling Extended Tags
[    4.728849] pci 0000:c9:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.736665] pci 0000:c9:00.2: BAR 2 [mem 0xdba00000-0xdba7ffff]
[    4.740637] pci 0000:c9:00.2: BAR 5 [mem 0xdba80000-0xdba81fff]
[    4.748641] pci 0000:c9:00.2: enabling Extended Tags
[    4.752839] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.763800] iommu: Default domain type: Translated
[    4.768636] iommu: DMA domain TLB invalidation policy: lazy mode
[    4.776944] SCSI subsystem initialized
[    4.780678] ACPI: bus type USB registered
[    4.784660] usbcore: registered new interface driver usbfs
[    4.788645] usbcore: registered new interface driver hub
[    4.796670] usbcore: registered new device driver usb
[    4.800666] pps_core: LinuxPPS API ver. 1 registered
[    4.804635] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux•it>
[    4.816639] PTP clock support registered
[    4.820713] EDAC MC: Ver: 3.0.0
[    4.820848] efivars: Registered efivars operations
[    4.829090] NetLabel: Initializing
[    4.832636] NetLabel:  domain hash size = 128
[    4.836636] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    4.840663] NetLabel:  unlabeled traffic allowed by default
[    4.844678] PCI: Using ACPI for IRQ routing
[    4.853527] pci 0000:c3:00.0: vgaarb: setting as boot VGA device
[    4.856633] pci 0000:c3:00.0: vgaarb: bridge control possible
[    4.856633] pci 0000:c3:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    4.856636] vgaarb: loaded
[    4.860810] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    4.864635] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    4.872855] clocksource: Switched to clocksource tsc-early
[    4.878466] VFS: Disk quotas dquot_6.6.0
[    4.882420] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.889545] AppArmor: AppArmor Filesystem Enabled
[    4.894273] pnp: PnP ACPI init
[    4.897574] system 00:00: [mem 0x80000000-0x8fffffff] has been reserved
[    4.904281] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[    4.912473] pnp: PnP ACPI: found 5 devices
[    4.923599] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    4.932577] NET: Registered PF_INET protocol family
[    4.937595] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.949354] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.958311] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    4.966342] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.975835] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.984220] TCP: Hash tables configured (established 524288 bind 65536)
[    4.991199] UDP hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.999624] UDP-Lite hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    5.008464] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    5.014131] NET: Registered PF_XDP protocol family
[    5.018928] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]: can't claim; no compatible bridge window
[    5.028749] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    5.038568] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    5.048388] pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
[    5.054058] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: can't assign; no space
[    5.061796] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: failed to assign
[    5.069014] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: can't assign; no space
[    5.077275] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: failed to assign
[    5.085021] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: can't assign; no space
[    5.093283] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: failed to assign
[    5.101022] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.105988] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    5.112082] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    5.118870] pci 0000:00:07.1: PCI bridge to [bus 02]
[    5.123834] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    5.130622] pci 0000:00:08.1: PCI bridge to [bus 03]
[    5.135587] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.142373] PCI: No. 2 try to assign unassigned res
[    5.147254] pci 0000:00:03.2: resource 14 [mem 0xf7300000-0xf74fffff] released
[    5.154479] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.159450] pci 0000:00:03.2: bridge window [mem 0x00100000-0x002fffff] to [bus 01] add_size 1200000 add_align 100000
[    5.170058] pci 0000:00:03.2: bridge window [mem 0xe1000000-0xe23fffff]: assigned
[    5.177545] pci 0000:01:00.0: BAR 3 [mem 0xe1000000-0xe10fffff 64bit]: assigned
[    5.184882] pci 0000:01:00.0: ROM [mem 0xe1100000-0xe11fffff pref]: assigned
[    5.191930] pci 0000:01:00.0: VF BAR 2 [mem 0xe1200000-0xe21fffff 64bit]: assigned
[    5.199498] pci 0000:01:00.0: BAR 1 [mem 0xe2200000-0xe220ffff 64bit]: assigned
[    5.206807] pci 0000:01:00.0: VF BAR 0 [mem 0xe2210000-0xe230ffff 64bit]: assigned
[    5.214378] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.219343] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    5.225436] pci 0000:00:03.2:   bridge window [mem 0xe1000000-0xe23fffff]
[    5.232227] pci 0000:00:07.1: PCI bridge to [bus 02]
[    5.237199] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    5.243986] pci 0000:00:08.1: PCI bridge to [bus 03]
[    5.248953] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.255741] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    5.261925] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    5.268102] pci_bus 0000:00: resource 6 [mem 0x000c0000-0x000fffff window]
[    5.274974] pci_bus 0000:00: resource 7 [io  0x0d00-0x3fff window]
[    5.281156] pci_bus 0000:00: resource 8 [mem 0xe1000000-0xfebfffff window]
[    5.288054] pci_bus 0000:00: resource 9 [mem 0x63dc0000000-0x7fcffffffff window]
[    5.295447] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[    5.301018] pci_bus 0000:01: resource 1 [mem 0xe1000000-0xe23fffff]
[    5.307287] pci_bus 0000:02: resource 1 [mem 0xf7200000-0xf72fffff]
[    5.313553] pci_bus 0000:03: resource 1 [mem 0xf7000000-0xf71fffff]
[    5.319895] pci 0000:40:03.1: bridge window [io  0x1000-0x0fff] to [bus 41] add_size 1000
[    5.328070] pci 0000:40:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 41] add_size 200000 add_align 100000
[    5.339541] pci 0000:40:03.2: bridge window [io  0x1000-0x0fff] to [bus 42] add_size 1000
[    5.347719] pci 0000:40:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 42] add_size 200000 add_align 100000
[    5.359185] pci 0000:40:03.3: bridge window [io  0x1000-0x0fff] to [bus 43] add_size 1000
[    5.367360] pci 0000:40:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 43] add_size 200000 add_align 100000
[    5.378827] pci 0000:40:03.4: bridge window [io  0x1000-0x0fff] to [bus 44] add_size 1000
[    5.386997] pci 0000:40:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 44] add_size 200000 add_align 100000
[    5.398496] pci 0000:40:03.1: bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]: assigned
[    5.407450] pci 0000:40:03.2: bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]: assigned
[    5.416404] pci 0000:40:03.3: bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]: assigned
[    5.425358] pci 0000:40:03.4: bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]: assigned
[    5.434309] pci 0000:40:03.1: bridge window [io  0x4000-0x4fff]: assigned
[    5.441096] pci 0000:40:03.2: bridge window [io  0x5000-0x5fff]: assigned
[    5.447883] pci 0000:40:03.3: bridge window [io  0x6000-0x6fff]: assigned
[    5.454670] pci 0000:40:03.4: bridge window [io  size 0x1000]: can't assign; no space
[    5.462495] pci 0000:40:03.4: bridge window [io  size 0x1000]: failed to assign
[    5.469803] pci 0000:40:03.4: bridge window [io  0x4000-0x4fff]: assigned
[    5.476588] pci 0000:40:03.3: bridge window [io  0x5000-0x5fff]: assigned
[    5.483373] pci 0000:40:03.2: bridge window [io  0x6000-0x6fff]: assigned
[    5.490159] pci 0000:40:03.1: bridge window [io  size 0x1000]: can't assign; no space
[    5.498003] pci 0000:40:03.1: bridge window [io  size 0x1000]: failed to assign
[    5.505311] pci 0000:40:03.1: PCI bridge to [bus 41]
[    5.510277] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    5.517062] pci 0000:40:03.1:   bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.525324] pci 0000:40:03.2: PCI bridge to [bus 42]
[    5.530289] pci 0000:40:03.2:   bridge window [io  0x6000-0x6fff]
[    5.536382] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    5.543168] pci 0000:40:03.2:   bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.551431] pci 0000:40:03.3: PCI bridge to [bus 43]
[    5.556403] pci 0000:40:03.3:   bridge window [io  0x5000-0x5fff]
[    5.562497] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    5.569283] pci 0000:40:03.3:   bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.577545] pci 0000:40:03.4: PCI bridge to [bus 44]
[    5.582515] pci 0000:40:03.4:   bridge window [io  0x4000-0x4fff]
[    5.588610] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    5.595396] pci 0000:40:03.4:   bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.603666] pci 0000:40:07.1: PCI bridge to [bus 45]
[    5.608631] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    5.615418] pci 0000:40:08.1: PCI bridge to [bus 46]
[    5.620383] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    5.627171] pci_bus 0000:40: Some PCI device resources are unassigned, try booting with pci=realloc
[    5.636217] pci_bus 0000:40: resource 4 [io  0x4000-0x6fff window]
[    5.642396] pci_bus 0000:40: resource 5 [mem 0x90000000-0xaaffffff window]
[    5.649269] pci_bus 0000:40: resource 6 [mem 0x47e80000000-0x63dbfffffff window]
[    5.656659] pci_bus 0000:41: resource 1 [mem 0xa4c00000-0xa4ffffff]
[    5.662929] pci_bus 0000:41: resource 2 [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.670668] pci_bus 0000:42: resource 0 [io  0x6000-0x6fff]
[    5.676240] pci_bus 0000:42: resource 1 [mem 0xa4800000-0xa4bfffff]
[    5.682507] pci_bus 0000:42: resource 2 [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.690246] pci_bus 0000:43: resource 0 [io  0x5000-0x5fff]
[    5.695820] pci_bus 0000:43: resource 1 [mem 0xa4400000-0xa47fffff]
[    5.702086] pci_bus 0000:43: resource 2 [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.709824] pci_bus 0000:44: resource 0 [io  0x4000-0x4fff]
[    5.715398] pci_bus 0000:44: resource 1 [mem 0xa4000000-0xa43fffff]
[    5.721667] pci_bus 0000:44: resource 2 [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.729402] pci_bus 0000:45: resource 1 [mem 0xa5300000-0xa53fffff]
[    5.735669] pci_bus 0000:46: resource 1 [mem 0xa5000000-0xa52fffff]
[    5.742192] pci 0000:80:01.1: bridge window [io  0x1000-0x0fff] to [bus 81] add_size 1000
[    5.750370] pci 0000:80:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 81] add_size 200000 add_align 100000
[    5.761836] pci 0000:80:01.2: bridge window [io  0x1000-0x0fff] to [bus 82] add_size 1000
[    5.770006] pci 0000:80:01.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 82] add_size 200000 add_align 100000
[    5.781478] pci 0000:80:01.1: bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]: assigned
[    5.790438] pci 0000:80:01.2: bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]: assigned
[    5.799389] pci 0000:80:01.1: bridge window [io  0x7000-0x7fff]: assigned
[    5.806202] pci 0000:80:01.2: bridge window [io  0x8000-0x8fff]: assigned
[    5.812989] pci 0000:80:01.1: PCI bridge to [bus 81]
[    5.817954] pci 0000:80:01.1:   bridge window [io  0x7000-0x7fff]
[    5.824048] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    5.830833] pci 0000:80:01.1:   bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.839095] pci 0000:80:01.2: PCI bridge to [bus 82]
[    5.844060] pci 0000:80:01.2:   bridge window [io  0x8000-0x8fff]
[    5.850159] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    5.856950] pci 0000:80:01.2:   bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.865219] pci 0000:80:07.1: PCI bridge to [bus 83]
[    5.870190] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    5.876980] pci 0000:80:08.1: PCI bridge to [bus 84]
[    5.881953] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    5.888741] pci 0000:80:08.2: PCI bridge to [bus 85]
[    5.893714] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    5.900500] pci_bus 0000:80: resource 4 [io  0x7000-0x9fff window]
[    5.906678] pci_bus 0000:80: resource 5 [mem 0xab000000-0xc5ffffff window]
[    5.913549] pci_bus 0000:80: resource 6 [mem 0x2bf40000000-0x47e7fffffff window]
[    5.920943] pci_bus 0000:81: resource 0 [io  0x7000-0x7fff]
[    5.926516] pci_bus 0000:81: resource 1 [mem 0xbf400000-0xbf7fffff]
[    5.932780] pci_bus 0000:81: resource 2 [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.940522] pci_bus 0000:82: resource 0 [io  0x8000-0x8fff]
[    5.946094] pci_bus 0000:82: resource 1 [mem 0xbf000000-0xbf3fffff]
[    5.952361] pci_bus 0000:82: resource 2 [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.960101] pci_bus 0000:83: resource 1 [mem 0xbfa00000-0xbfafffff]
[    5.966365] pci_bus 0000:84: resource 1 [mem 0xbf900000-0xbf9fffff]
[    5.972634] pci_bus 0000:85: resource 1 [mem 0xbf800000-0xbf8fffff]
[    5.978954] pci 0000:c0:03.1: bridge window [io  0x1000-0x0fff] to [bus c4] add_size 1000
[    5.987125] pci 0000:c0:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c4] add_size 200000 add_align 100000
[    5.998593] pci 0000:c0:03.2: bridge window [io  0x1000-0x0fff] to [bus c5] add_size 1000
[    6.006766] pci 0000:c0:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c5] add_size 200000 add_align 100000
[    6.018230] pci 0000:c0:03.3: bridge window [io  0x1000-0x0fff] to [bus c6] add_size 1000
[    6.026404] pci 0000:c0:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c6] add_size 200000 add_align 100000
[    6.037868] pci 0000:c0:03.4: bridge window [io  0x1000-0x0fff] to [bus c7] add_size 1000
[    6.046042] pci 0000:c0:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c7] add_size 200000 add_align 100000
[    6.057511] pci 0000:c0:05.1: bridge window [mem 0x00100000-0x000fffff] to [bus c1] add_size 100000 add_align 100000
[    6.068029] pci 0000:c0:03.1: bridge window [mem 0x10000000000-0x100001fffff 64bit pref]: assigned
[    6.076985] pci 0000:c0:03.2: bridge window [mem 0x10000200000-0x100003fffff 64bit pref]: assigned
[    6.085938] pci 0000:c0:03.3: bridge window [mem 0x10000400000-0x100005fffff 64bit pref]: assigned
[    6.094890] pci 0000:c0:03.4: bridge window [mem 0x10000600000-0x100007fffff 64bit pref]: assigned
[    6.103845] pci 0000:c0:05.1: bridge window [mem 0xc7100000-0xc71fffff]: assigned
[    6.111321] pci 0000:c0:03.1: bridge window [io  0xa000-0xafff]: assigned
[    6.118107] pci 0000:c0:03.2: bridge window [io  0xb000-0xbfff]: assigned
[    6.124898] pci 0000:c0:03.3: bridge window [io  0xc000-0xcfff]: assigned
[    6.131680] pci 0000:c0:03.4: bridge window [io  0xd000-0xdfff]: assigned
[    6.138471] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    6.143434] pci 0000:c0:03.1:   bridge window [io  0xa000-0xafff]
[    6.149528] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    6.156314] pci 0000:c0:03.1:   bridge window [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.164576] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    6.169548] pci 0000:c0:03.2:   bridge window [io  0xb000-0xbfff]
[    6.175641] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    6.182428] pci 0000:c0:03.2:   bridge window [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.190691] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    6.195661] pci 0000:c0:03.3:   bridge window [io  0xc000-0xcfff]
[    6.201756] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    6.208543] pci 0000:c0:03.3:   bridge window [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.216803] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    6.221766] pci 0000:c0:03.4:   bridge window [io  0xd000-0xdfff]
[    6.227904] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    6.234690] pci 0000:c0:03.4:   bridge window [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.242964] pci 0000:c1:00.0: ROM [mem 0xc7100000-0xc713ffff pref]: assigned
[    6.250023] pci 0000:c1:00.1: ROM [mem 0xc7140000-0xc717ffff pref]: assigned
[    6.257077] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    6.262043] pci 0000:c0:05.1:   bridge window [mem 0xc7100000-0xc71fffff]
[    6.268827] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.276573] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    6.281545] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    6.288331] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.296071] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    6.301307] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    6.308101] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.315850] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    6.320822] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    6.327612] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    6.332611] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    6.339398] pci_bus 0000:c0: resource 4 [io  0xa000-0xffff window]
[    6.345583] pci_bus 0000:c0: resource 5 [mem 0xc6000000-0xe0ffffff window]
[    6.352458] pci_bus 0000:c0: resource 6 [mem 0x10000000000-0x2bf3fffffff window]
[    6.359848] pci_bus 0000:c0: resource 7 [io  0x03b0-0x03df window]
[    6.366029] pci_bus 0000:c0: resource 8 [mem 0x000a0000-0x000bffff window]
[    6.372902] pci_bus 0000:c4: resource 0 [io  0xa000-0xafff]
[    6.378475] pci_bus 0000:c4: resource 1 [mem 0xdb600000-0xdb9fffff]
[    6.384740] pci_bus 0000:c4: resource 2 [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.392481] pci_bus 0000:c5: resource 0 [io  0xb000-0xbfff]
[    6.398053] pci_bus 0000:c5: resource 1 [mem 0xdb200000-0xdb5fffff]
[    6.404321] pci_bus 0000:c5: resource 2 [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.412057] pci_bus 0000:c6: resource 0 [io  0xc000-0xcfff]
[    6.417632] pci_bus 0000:c6: resource 1 [mem 0xdae00000-0xdb1fffff]
[    6.423898] pci_bus 0000:c6: resource 2 [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.431637] pci_bus 0000:c7: resource 0 [io  0xd000-0xdfff]
[    6.437209] pci_bus 0000:c7: resource 1 [mem 0xdaa00000-0xdadfffff]
[    6.443476] pci_bus 0000:c7: resource 2 [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.451214] pci_bus 0000:c1: resource 1 [mem 0xc7100000-0xc71fffff]
[    6.457482] pci_bus 0000:c1: resource 2 [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.464700] pci_bus 0000:c2: resource 1 [mem 0xda000000-0xda8fffff]
[    6.470967] pci_bus 0000:c2: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.478188] pci_bus 0000:c3: resource 1 [mem 0xda000000-0xda8fffff]
[    6.484456] pci_bus 0000:c3: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.491686] pci_bus 0000:c8: resource 1 [mem 0xdbb00000-0xdbbfffff]
[    6.497959] pci_bus 0000:c9: resource 1 [mem 0xdba00000-0xdbafffff]
[    6.504983] PCI: CLS 64 bytes, default 64
[    6.509076] Trying to unpack rootfs image as initramfs...
[    6.569460] AMD-Vi: IOMMU SNP support enabled.
[    6.574080] pci 0000:c0:00.2: AMD-Vi: IOMMU performance counters supported
[    6.581113] pci 0000:c0:01.0: Adding to iommu group 0
[    6.586223] pci 0000:c0:02.0: Adding to iommu group 1
[    6.591424] pci 0000:c0:03.0: Adding to iommu group 2
[    6.596521] pci 0000:c0:03.1: Adding to iommu group 2
[    6.601617] pci 0000:c0:03.2: Adding to iommu group 2
[    6.606713] pci 0000:c0:03.3: Adding to iommu group 2
[    6.611808] pci 0000:c0:03.4: Adding to iommu group 2
[    6.616914] pci 0000:c0:04.0: Adding to iommu group 3
[    6.622063] pci 0000:c0:05.0: Adding to iommu group 4
[    6.627168] pci 0000:c0:05.1: Adding to iommu group 4
[    6.632276] pci 0000:c0:05.2: Adding to iommu group 4
[    6.637384] pci 0000:c0:07.0: Adding to iommu group 5
[    6.642470] pci 0000:c0:07.1: Adding to iommu group 6
[    6.647579] pci 0000:c0:08.0: Adding to iommu group 7
[    6.652669] pci 0000:c0:08.1: Adding to iommu group 8
[    6.657729] pci 0000:c1:00.0: Adding to iommu group 4
[    6.662789] pci 0000:c1:00.1: Adding to iommu group 4
[    6.667851] pci 0000:c2:00.0: Adding to iommu group 4
[    6.672919] pci 0000:c3:00.0: Adding to iommu group 4
[    6.678006] pci 0000:c8:00.0: Adding to iommu group 9
[    6.683105] pci 0000:c8:00.2: Adding to iommu group 10
[    6.688288] pci 0000:c9:00.0: Adding to iommu group 11
[    6.693469] pci 0000:c9:00.2: Adding to iommu group 12
[    6.705006] pci 0000:80:00.2: AMD-Vi: IOMMU performance counters supported
[    6.712069] pci 0000:80:01.0: Adding to iommu group 13
[    6.717260] pci 0000:80:01.1: Adding to iommu group 13
[    6.722438] pci 0000:80:01.2: Adding to iommu group 13
[    6.727635] pci 0000:80:02.0: Adding to iommu group 14
[    6.732832] pci 0000:80:03.0: Adding to iommu group 15
[    6.738026] pci 0000:80:04.0: Adding to iommu group 16
[    6.743218] pci 0000:80:05.0: Adding to iommu group 17
[    6.748411] pci 0000:80:07.0: Adding to iommu group 18
[    6.753588] pci 0000:80:07.1: Adding to iommu group 19
[    6.758789] pci 0000:80:08.0: Adding to iommu group 20
[    6.763963] pci 0000:80:08.1: Adding to iommu group 21
[    6.769140] pci 0000:80:08.2: Adding to iommu group 22
[    6.774310] pci 0000:83:00.0: Adding to iommu group 23
[    6.779490] pci 0000:83:00.2: Adding to iommu group 24
[    6.784701] pci 0000:84:00.0: Adding to iommu group 25
[    6.789883] pci 0000:84:00.2: Adding to iommu group 26
[    6.795063] pci 0000:85:00.0: Adding to iommu group 27
[    6.807570] pci 0000:40:00.2: AMD-Vi: IOMMU performance counters supported
[    6.814581] pci 0000:40:01.0: Adding to iommu group 28
[    6.819778] pci 0000:40:02.0: Adding to iommu group 29
[    6.825071] pci 0000:40:03.0: Adding to iommu group 30
[    6.830254] pci 0000:40:03.1: Adding to iommu group 30
[    6.835435] pci 0000:40:03.2: Adding to iommu group 30
[    6.840611] pci 0000:40:03.3: Adding to iommu group 30
[    6.845792] pci 0000:40:03.4: Adding to iommu group 30
[    6.850994] pci 0000:40:04.0: Adding to iommu group 31
[    6.856195] pci 0000:40:05.0: Adding to iommu group 32
[    6.861396] pci 0000:40:07.0: Adding to iommu group 33
[    6.866574] pci 0000:40:07.1: Adding to iommu group 34
[    6.871770] pci 0000:40:08.0: Adding to iommu group 35
[    6.876948] pci 0000:40:08.1: Adding to iommu group 36
[    6.882121] pci 0000:45:00.0: Adding to iommu group 37
[    6.887297] pci 0000:45:00.2: Adding to iommu group 38
[    6.892479] pci 0000:46:00.0: Adding to iommu group 39
[    6.897653] pci 0000:46:00.1: Adding to iommu group 40
[    6.902825] pci 0000:46:00.2: Adding to iommu group 41
[    6.908003] pci 0000:46:00.3: Adding to iommu group 42
[    6.920370] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    6.927391] pci 0000:00:00.0: Adding to iommu group 43
[    6.932585] pci 0000:00:01.0: Adding to iommu group 44
[    6.937791] pci 0000:00:02.0: Adding to iommu group 45
[    6.942988] pci 0000:00:03.0: Adding to iommu group 46
[    6.945220] Freeing initrd memory: 38564K
[    6.948167] pci 0000:00:03.2: Adding to iommu group 47
[    6.957339] pci 0000:00:04.0: Adding to iommu group 48
[    6.962535] pci 0000:00:05.0: Adding to iommu group 49
[    6.967730] pci 0000:00:07.0: Adding to iommu group 50
[    6.972908] pci 0000:00:07.1: Adding to iommu group 51
[    6.978103] pci 0000:00:08.0: Adding to iommu group 52
[    6.983282] pci 0000:00:08.1: Adding to iommu group 53
[    6.988502] pci 0000:00:14.0: Adding to iommu group 54
[    6.993672] pci 0000:00:14.3: Adding to iommu group 54
[    6.999027] pci 0000:00:18.0: Adding to iommu group 55
[    7.004201] pci 0000:00:18.1: Adding to iommu group 55
[    7.009377] pci 0000:00:18.2: Adding to iommu group 55
[    7.014549] pci 0000:00:18.3: Adding to iommu group 55
[    7.019728] pci 0000:00:18.4: Adding to iommu group 55
[    7.024898] pci 0000:00:18.5: Adding to iommu group 55
[    7.030071] pci 0000:00:18.6: Adding to iommu group 55
[    7.035250] pci 0000:00:18.7: Adding to iommu group 55
[    7.040423] pci 0000:01:00.0: Adding to iommu group 56
[    7.045597] pci 0000:02:00.0: Adding to iommu group 57
[    7.050774] pci 0000:02:00.2: Adding to iommu group 58
[    7.055946] pci 0000:03:00.0: Adding to iommu group 59
[    7.061121] pci 0000:03:00.2: Adding to iommu group 60
[    7.066293] pci 0000:03:00.3: Adding to iommu group 61
[    7.080691] AMD-Vi: Extended features (0x841f77e022094ace, 0x0): PPR X2APIC NX IA GA PC SNP
[    7.089056] AMD-Vi: Interrupt remapping enabled
[    7.093588] AMD-Vi: X2APIC enabled
[    7.097949] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    7.104388] software IO TLB: mapped [mem 0x000000005bf37000-0x0000000063f37000] (128MB)
[    7.112565] LVT offset 0 assigned for vector 0x400
[    7.118940] perf: AMD IBS detected (0x000003ff)
[    7.124855] amd_uncore: 4 amd_df counters detected
[    7.129685] amd_uncore: 6 amd_l3 counters detected
[    7.136149] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    7.143307] perf/amd_iommu: Detected AMD IOMMU #1 (2 banks, 4 counters/bank).
[    7.150468] perf/amd_iommu: Detected AMD IOMMU #2 (2 banks, 4 counters/bank).
[    7.157621] perf/amd_iommu: Detected AMD IOMMU #3 (2 banks, 4 counters/bank).
[    7.168035] Initialise system trusted keyrings
[    7.172494] Key type blacklist registered
[    7.176617] workingset: timestamp_bits=36 max_order=26 bucket_order=0
[    7.183606] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    7.189596] fuse: init (API version 7.44)
[    7.193873] integrity: Platform Keyring initialized
[    7.210812] Key type asymmetric registered
[    7.214916] Asymmetric key parser 'x509' registered
[    7.219832] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    7.227312] io scheduler mq-deadline registered
[    7.234395] ledtrig-cpu: registered to indicate activity on CPUs
[    7.240698] pcieport 0000:00:03.2: PME: Signaling with IRQ 38
[    7.246842] pcieport 0000:00:07.1: PME: Signaling with IRQ 40
[    7.252820] pcieport 0000:00:08.1: PME: Signaling with IRQ 41
[    7.258807] pcieport 0000:40:03.1: PME: Signaling with IRQ 42
[    7.264601] pcieport 0000:40:03.1: pciehp: Slot #167 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.278623] pcieport 0000:40:03.2: PME: Signaling with IRQ 43
[    7.284427] pcieport 0000:40:03.2: pciehp: Slot #166 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.298433] pcieport 0000:40:03.3: PME: Signaling with IRQ 44
[    7.304224] pcieport 0000:40:03.3: pciehp: Slot #169 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.318229] pcieport 0000:40:03.4: PME: Signaling with IRQ 45
[    7.324038] pcieport 0000:40:03.4: pciehp: Slot #168 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.338160] pcieport 0000:40:07.1: PME: Signaling with IRQ 47
[    7.344125] pcieport 0000:40:08.1: PME: Signaling with IRQ 48
[    7.350222] pcieport 0000:80:01.1: PME: Signaling with IRQ 49
[    7.356028] pcieport 0000:80:01.1: pciehp: Slot #160 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.370024] pcieport 0000:80:01.2: PME: Signaling with IRQ 50
[    7.375822] pcieport 0000:80:01.2: pciehp: Slot #161 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.389935] pcieport 0000:80:07.1: PME: Signaling with IRQ 52
[    7.395970] pcieport 0000:80:08.1: PME: Signaling with IRQ 54
[    7.401986] pcieport 0000:80:08.2: PME: Signaling with IRQ 55
[    7.407935] pcieport 0000:c0:03.1: PME: Signaling with IRQ 56
[    7.413733] pcieport 0000:c0:03.1: pciehp: Slot #163 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.427718] pcieport 0000:c0:03.2: PME: Signaling with IRQ 57
[    7.433540] pcieport 0000:c0:03.2: pciehp: Slot #162 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.447518] pcieport 0000:c0:03.3: PME: Signaling with IRQ 58
[    7.453318] pcieport 0000:c0:03.3: pciehp: Slot #165 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.467297] pcieport 0000:c0:03.4: PME: Signaling with IRQ 59
[    7.473097] pcieport 0000:c0:03.4: pciehp: Slot #164 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.487072] pcieport 0000:c0:05.1: PME: Signaling with IRQ 60
[    7.493004] pcieport 0000:c0:05.2: PME: Signaling with IRQ 61
[    7.499037] pcieport 0000:c0:07.1: PME: Signaling with IRQ 63
[    7.505059] pcieport 0000:c0:08.1: PME: Signaling with IRQ 65
[    7.511583] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    7.519062] ACPI: button: Power Button [PWRF]
[    7.964920] Estimated ratio of average max frequency by base frequency (times 1024): 1464
[    7.973424] ERST: Error Record Serialization Table (ERST) support is initialized.
[    7.980928] pstore: Using crash dump compression: deflate
[    7.986329] pstore: Registered erst as persistent store backend
[    7.992396] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    7.998960] 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    8.007103] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    8.018193] Linux agpgart interface v0.103
[    8.048483] loop: module loaded
[    8.062991] ahci 0000:85:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[    8.070999] ahci 0000:85:00.0: 8/8 ports implemented (port mask 0xff)
[    8.077473] ahci 0000:85:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part sxs 
[    8.087767] scsi host0: ahci
[    8.090890] scsi host1: ahci
[    8.094006] scsi host2: ahci
[    8.097106] scsi host3: ahci
[    8.100198] scsi host4: ahci
[    8.103292] scsi host5: ahci
[    8.106386] scsi host6: ahci
[    8.109485] scsi host7: ahci
[    8.112441] ata1: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800100 irq 67 lpm-pol 0 ext
[    8.121052] ata2: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800180 irq 68 lpm-pol 0 ext
[    8.129664] ata3: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800200 irq 69 lpm-pol 0 ext
[    8.138270] ata4: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800280 irq 70 lpm-pol 0 ext
[    8.146875] ata5: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800300 irq 71 lpm-pol 0 ext
[    8.155481] ata6: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800380 irq 72 lpm-pol 0 ext
[    8.164090] ata7: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800400 irq 73 lpm-pol 0 ext
[    8.172696] ata8: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800480 irq 74 lpm-pol 0 ext
[    8.181599] tun: Universal TUN/TAP device driver, 1.6
[    8.186667] tsc: Refined TSC clocksource calibration: 1996.247 MHz
[    8.192896] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398caa9ddcb, max_idle_ns: 881590739785 ns
[    8.192952] PPP generic driver version 2.4.2
[    8.207202] clocksource: Switched to clocksource tsc
[    8.207375] VFIO - User Level meta-driver version: 0.3
[    8.217687] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.222927] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 1
[    8.230431] xhci_hcd 0000:03:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.239981] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.245210] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 2
[    8.252604] xhci_hcd 0000:03:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.259694] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.267960] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.275184] usb usb1: Product: xHCI Host Controller
[    8.280065] usb usb1: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.289046] usb usb1: SerialNumber: 0000:03:00.3
[    8.293844] hub 1-0:1.0: USB hub found
[    8.297607] hub 1-0:1.0: 2 ports detected
[    8.302440] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.310559] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.318822] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.326047] usb usb2: Product: xHCI Host Controller
[    8.330929] usb usb2: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.339886] usb usb2: SerialNumber: 0000:03:00.3
[    8.344663] hub 2-0:1.0: USB hub found
[    8.348428] hub 2-0:1.0: 2 ports detected
[    8.353353] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.358592] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 3
[    8.366082] xhci_hcd 0000:46:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.375593] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.380827] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 4
[    8.388222] xhci_hcd 0000:46:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.395310] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.403575] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.410809] usb usb3: Product: xHCI Host Controller
[    8.415688] usb usb3: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.424641] usb usb3: SerialNumber: 0000:46:00.3
[    8.429413] hub 3-0:1.0: USB hub found
[    8.433176] hub 3-0:1.0: 2 ports detected
[    8.437987] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.446103] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.454364] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.461589] usb usb4: Product: xHCI Host Controller
[    8.466473] usb usb4: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.475426] usb usb4: SerialNumber: 0000:46:00.3
[    8.480186] hub 4-0:1.0: USB hub found
[    8.483956] hub 4-0:1.0: 2 ports detected
[    8.489013] usbcore: registered new interface driver uas
[    8.494381] ata7: SATA link down (SStatus 0 SControl 300)
[    8.494398] usbcore: registered new interface driver usb-storage
[    8.499813] ata3: SATA link down (SStatus 0 SControl 300)
[    8.505822] i8042: PNP: No PS/2 controller found.
[    8.511215] ata4: SATA link down (SStatus 0 SControl 300)
[    8.516013] mousedev: PS/2 mouse device common for all mice
[    8.521318] ata5: SATA link down (SStatus 0 SControl 300)
[    8.526982] rtc_cmos 00:02: RTC can wake from S4
[    8.532292] ata2: SATA link down (SStatus 0 SControl 300)
[    8.537254] rtc_cmos 00:02: registered as rtc0
[    8.542310] ata1: SATA link down (SStatus 0 SControl 300)
[    8.546808] rtc_cmos 00:02: setting system clock to 2025-06-17T14:29:45 UTC (1750170585)
[    8.548283] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[    8.552155] ata8: SATA link down (SStatus 0 SControl 300)
[    8.560259] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram
[    8.566770] ata6: SATA link down (SStatus 0 SControl 300)
[    8.572151] i2c_dev: i2c /dev entries driver
[    8.588530] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    8.600743] device-mapper: uevent: version 1.0.3
[    8.605461] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists•linux.dev
[    8.614335] amd_pstate: driver load is disabled, boot with specific mode to enable this
[    8.622389] efifb: probing for efifb
[    8.625983] efifb: No BGRT, not showing boot graphics
[    8.631043] efifb: framebuffer at 0xc6000000, using 3072k, total 3072k
[    8.637575] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    8.643581] efifb: scrolling: redraw
[    8.647159] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    8.652785] fbcon: Deferring console take-over
[    8.657232] fb0: EFI VGA frame buffer device
[    8.661610] drop_monitor: Initializing network drop monitor service
[    8.668048] NET: Registered PF_INET6 protocol family
[    8.681337] Segment Routing with IPv6
[    8.685018] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[    8.685024] In-situ OAM (IOAM) with IPv6
[    8.685049] NET: Registered PF_PACKET protocol family
[    8.687793] usb 1-1: New USB device found, idVendor=0424, idProduct=2744, bcdDevice= 1.21
[    8.687797] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    8.687799] usb 1-1: Product: USB2734
[    8.687801] usb 1-1: Manufacturer: Microchip Tech
[    8.724339] Key type dns_resolver registered
[    8.740050] hub 1-1:1.0: USB hub found
[    8.740763] x86/amd: Previous system reset reason [0x00080800]: software wrote 0x6 to reset control register 0xCF9
[    8.744047] hub 1-1:1.0: 4 ports detected
[    8.754146] microcode: Current revision: 0x0a0011d5
[    8.763029] microcode: Updated early from: 0x0a0011d5
[    8.771433] resctrl: L3 allocation detected
[    8.775621] resctrl: MB allocation detected
[    8.779806] resctrl: L3 monitoring detected
[    8.784165] IPI shorthand broadcast: enabled
[    8.792149] sched_clock: Marking stable (8724178656, 64260935)->(9556353021, -767913430)
[    8.800842] registered taskstats version 1
[    8.807213] Loading compiled-in X.509 certificates
[    8.812553] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.824421] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
[    8.830974] Demotion targets for Node 0: null
[    8.831957] usb 3-1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    8.835336] Demotion targets for Node 1: null
[    8.843507] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.848504] Key type .fscrypt registered
[    8.855599] usb 2-1: New USB device found, idVendor=0424, idProduct=5744, bcdDevice= 1.21
[    8.858940] Key type fscrypt-provisioning registered
[    8.872082] usb 2-1: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[    8.875014] Key type encrypted registered
[    8.879214] usb 2-1: Product: USB5734
[    8.879216] usb 2-1: Manufacturer: Microchip Tech
[    8.891605] AppArmor: AppArmor sha256 policy hashing enabled
[    8.897360] integrity: Loading X.509 certificate: UEFI:db
[    8.900035] hub 2-1:1.0: USB hub found
[    8.902780] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    8.906840] hub 2-1:1.0: 4 ports detected
[    8.917296] integrity: Loading X.509 certificate: UEFI:db
[    8.917319] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    8.937749] integrity: Loading X.509 certificate: UEFI:db
[    8.939757] hub 3-1:1.0: USB hub found
[    8.943268] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    8.947082] hub 3-1:1.0: 4 ports detected
[    8.955763] integrity: Loading X.509 certificate: UEFI:db
[    8.965309] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    8.976898] ima: No TPM chip found, activating TPM-bypass!
[    8.982390] Loading compiled-in module X.509 certificates
[    8.988208] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.998121] ima: Allocated hash algorithm: sha1
[    9.002663] ima: No architecture policies found
[    9.007213] evm: Initialising EVM extended attributes:
[    9.012391] evm: security.selinux
[    9.015706] evm: security.SMACK64
[    9.019026] evm: security.SMACK64EXEC
[    9.022695] evm: security.SMACK64TRANSMUTE
[    9.026793] evm: security.SMACK64MMAP
[    9.030459] evm: security.apparmor
[    9.033865] evm: security.ima
[    9.036837] evm: security.capability
[    9.040416] evm: HMAC attrs: 0x1
[    9.044036] PM:   Magic number: 13:687:485
[    9.048195] thermal cooling_device61: hash matches
[    9.053018] pcie_bwctrl 0000:00:07.1:pcie010: hash matches
[    9.058555] acpi ACPI0007:7a: hash matches
[    9.063118] RAS: Correctable Errors collector initialized.
[    9.068757] clk: Disabling unused clocks
[    9.072694] PM: genpd: Disabling unused power domains
[    9.079470] Freeing unused decrypted memory: 2028K
[    9.085058] Freeing unused kernel image (initmem) memory: 4760K
[    9.090993] Write protecting the kernel read-only data: 26624k
[    9.097264] Freeing unused kernel image (text/rodata gap) memory: 28K
[    9.103888] Freeing unused kernel image (rodata/data gap) memory: 248K
[    9.197359] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    9.203803] Run /init as init process
[    9.214179] systemd[1]: Inserted module 'autofs4'
[    9.441501] systemd[1]: systemd 252-46.el9_5.3 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)
[    9.473946] systemd[1]: Detected architecture x86-64.
[    9.479001] systemd[1]: Running in initrd.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow) dracut-057-80.git20250411.el9_5 (Initramfs)^[[0m!

[    9.500369] systemd[1]: Hostname set to <sharavati.amd.com>.
[    9.617230] systemd[1]: Queued start job for default target Initrd Default Target.
[    9.625029] systemd[1]: Reached target Initrd /usr File System.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd /usr File System^[[0m.
[    9.644328] systemd[1]: Reached target Local File Systems.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
[    9.660339] systemd[1]: Reached target Slice Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSlice Units^[[0m.
[    9.680288] usb 3-1.1: new high-speed USB device number 3 using xhci_hcd
[    9.680335] systemd[1]: Reached target Swaps.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwaps^[[0m.
[    9.700320] systemd[1]: Reached target Timer Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[    9.716468] systemd[1]: Listening on D-Bus System Message Bus Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[    9.736483] systemd[1]: Listening on Journal Socket (/dev/log).
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket (/dev/log)^[[0m.
[    9.752479] systemd[1]: Listening on Journal Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket^[[0m.
[    9.768491] systemd[1]: Listening on udev Control Socket.
[^[[0;32m  OK  ^[[[    9.774840] usb 3-1.1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
0m] Listening on[    9.783672] usb 3-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
 ^[[0;1;39mudev Control Socket^[[0m.
[    9.800445] systemd[1]: Listening on udev Kernel Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
[    9.816332] systemd[1]: Reached target Socket Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
[    9.835785] hub 3-1.1:1.0: USB hub found
[    9.839960] hub 3-1.1:1.0: 4 ports detected
[    9.850074] systemd[1]: Starting Create List of Static Device Nodes...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
[    9.870852] systemd[1]: Starting Journal Service...
         Starting ^[[0;1;39mJournal Service^[[0m...
[    9.885685] systemd[1]: Starting Load Kernel Modules...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
[    9.901633] systemd[1]: Starting Create System Users...
         Starting ^[[0;1;39mCreate System Users^[[0m...
[    9.917621] systemd[1]: Starting Setup Virtual Console...
[    9.921238] usb 3-1.4: new high-speed USB device number 4 using xhci_hcd
         Starting ^[[0;1;39mSetup Virtual Console^[[0m...
[    9.941697] systemd[1]: Finished Create List of Static Device Nodes.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[    9.960796] systemd[1]: Finished Load Kernel Modules.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[    9.976685] systemd[1]: Started Journal Service.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSetup Virtual Console^[[0m.
[   10.025213] usb 3-1.4: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[   10.033570] usb 3-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
         Starting ^[[0;1;39mdracut cmdline hook^[[0m...
         Starting ^[[0;1;39mApply Kernel Variables^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate System Users^[[0m.
[   10.091792] hub 3-1.4:1.0: USB hub found
[   10.095959] hub 3-1.4:1.0: 4 ports detected
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut cmdline hook^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Starting ^[[0;1;39mdracut pre-udev hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-udev hook^[[0m.
         Starting ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[   10.494036] wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQBC data block query control method not found
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mColdplug A[   10.506158] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
ll udev Devices^[[   10.506496] ccp 0000:46:00.1: no command queues available
[0m.
[   10.513571] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[   10.520401] ccp 0000:46:00.1: sev enabled
[   10.528024] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[   10.531883] ccp 0000:46:00.1: psp enabled
[   10.540536] tg3 0000:c1:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:90
[   10.553604] tg3 0000:c1:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.553607] tg3 0000:c1:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.553611] tg3 0000:c1:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[^[[0;32m  OK  ^[[[   10.578932] mpt3sas version 52.100.00.00 loaded
0m] Reached targ[   10.583963] ACPI: bus type drm_connector registered
et ^[[0;1;39mSyst[   10.584600] mpt3sas_cm0: 63 BIT PCI BUS DMA ADDRESSING SUPPORTED, total mem (262592968 kB)
em Initialization^[[0m.
[   10.605663] tg3 0000:c1:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:91
[   10.616184] tg3 0000:c1:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.626024] tg3 0000:c1:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.626027] tg3 0000:c1:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[^[[0;32m  OK  ^[[[   10.640693] mgag200 0000:c3:00.0: vgaarb: deactivate vga console
0m] Reached target ^[[0;1;39mNetwork^[[0m.
[   10.654233] [drm] Initialized mgag200 1.0.0 for 0000:c3:00.0 on minor 0
[   10.654303] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   10.668879] fbcon: mgag200drmfb (fb0) is primary device
[   10.668883] fbcon: Deferring console take-over
[   10.668888] mpt3sas_cm0: MSI-X vectors supported: 96
[   10.674116] mgag200 0000:c3:00.0: [drm] fb0: mgag200drmfb frame buffer device
[   10.678560] 	 no of cores: 128, max_msix_vectors: -1
[   10.695625] mpt3sas_cm0:  0 96 96
[   10.702830] mpt3sas_cm0: High IOPs queues : disabled
[   10.707804] mpt3sas0-msix0: PCI-MSI-X enabled: IRQ 108
[   10.712943] mpt3sas0-msix1: PCI-MSI-X enabled: IRQ 109
[   10.718081] mpt3sas0-msix2: PCI-MSI-X enabled: IRQ 110
[   10.723223] mpt3sas0-msix3: PCI-MSI-X enabled: IRQ 111
[   10.723225] mpt3sas0-msix4: PCI-MSI-X enabled: IRQ 112
[   10.723226] mpt3sas0-msix5: PCI-MSI-X enabled: IRQ 113
[   10.723227] mpt3sas0-msix6: PCI-MSI-X enabled: IRQ 114
         Startin[   10.723229] mpt3sas0-msix7: PCI-MSI-X enabled: IRQ 115
g ^[[0;1;39mdracu[   10.723230] mpt3sas0-msix8: PCI-MSI-X enabled: IRQ 116
t initqueue hook[   10.723232] mpt3sas0-msix9: PCI-MSI-X enabled: IRQ 117
^[[0m...
[   10.723234] mpt3sas0-msix10: PCI-MSI-X enabled: IRQ 118
[   10.769376] mpt3sas0-msix11: PCI-MSI-X enabled: IRQ 119
[   10.774608] mpt3sas0-msix12: PCI-MSI-X enabled: IRQ 120
[   10.774609] mpt3sas0-msix13: PCI-MSI-X enabled: IRQ 121
[   10.774611] mpt3sas0-msix14: PCI-MSI-X enabled: IRQ 122
[   10.774612] mpt3sas0-msix15: PCI-MSI-X enabled: IRQ 123
[   10.774614] mpt3sas0-msix16: PCI-MSI-X enabled: IRQ 124
[   10.774615] mpt3sas0-msix17: PCI-MSI-X enabled: IRQ 125
[   10.774616] mpt3sas0-msix18: PCI-MSI-X enabled: IRQ 126
[   10.774618] mpt3sas0-msix19: PCI-MSI-X enabled: IRQ 127
[   10.774619] mpt3sas0-msix20: PCI-MSI-X enabled: IRQ 128
[   10.821655] mpt3sas0-msix21: PCI-MSI-X enabled: IRQ 129
[   10.821656] mpt3sas0-msix22: PCI-MSI-X enabled: IRQ 130
[   10.821658] mpt3sas0-msix23: PCI-MSI-X enabled: IRQ 131
[   10.821659] mpt3sas0-msix24: PCI-MSI-X enabled: IRQ 132
[   10.821660] mpt3sas0-msix25: PCI-MSI-X enabled: IRQ 133
[   10.821662] mpt3sas0-msix26: PCI-MSI-X enabled: IRQ 134
[   10.853017] mpt3sas0-msix27: PCI-MSI-X enabled: IRQ 135
         Startin[   10.858247] mpt3sas0-msix28: PCI-MSI-X enabled: IRQ 136
g ^[[0;1;39mShow [   10.864858] mpt3sas0-msix29: PCI-MSI-X enabled: IRQ 137
Plymouth Boot Sc[   10.864860] mpt3sas0-msix30: PCI-MSI-X enabled: IRQ 138
reen^[[0m...
[   10.864861] mpt3sas0-msix31: PCI-MSI-X enabled: IRQ 139
[   10.864862] mpt3sas0-msix32: PCI-MSI-X enabled: IRQ 140
[   10.864864] mpt3sas0-msix33: PCI-MSI-X enabled: IRQ 141
[^[[0;32m  OK  ^[[[   10.864865] mpt3sas0-msix34: PCI-MSI-X enabled: IRQ 142
0m] Started ^[[0;[   10.864866] mpt3sas0-msix35: PCI-MSI-X enabled: IRQ 143
1;39mShow Plymou[   10.864868] mpt3sas0-msix36: PCI-MSI-X enabled: IRQ 144
th Boot Screen^[[[   10.914801] mpt3sas0-msix37: PCI-MSI-X enabled: IRQ 145
0m.
[   10.914803] mpt3sas0-msix38: PCI-MSI-X enabled: IRQ 146
[   10.914805] mpt3sas0-msix39: PCI-MSI-X enabled: IRQ 147
[   10.914806] mpt3sas0-msix40: PCI-MSI-X enabled: IRQ 148
[   10.914807] mpt3sas0-msix41: PCI-MSI-X enabled: IRQ 149
[^[[0;32m  OK  ^[[[   10.914808] mpt3sas0-msix42: PCI-MSI-X enabled: IRQ 150
0m] Started ^[[0;[   10.914810] mpt3sas0-msix43: PCI-MSI-X enabled: IRQ 151
1;39mForward Pas[   10.914811] mpt3sas0-msix44: PCI-MSI-X enabled: IRQ 152
sword Requests t[   10.962667] mpt3sas0-msix45: PCI-MSI-X enabled: IRQ 153
o Plymouth Direc[   10.962668] mpt3sas0-msix46: PCI-MSI-X enabled: IRQ 154
[   10.962670] mpt3sas0-msix47: PCI-MSI-X enabled: IRQ 155
tory Watch^[[0m.\r[   10.962671] mpt3sas0-msix48: PCI-MSI-X enabled: IRQ 156

[^[[0;32m  OK  [   10.962673] mpt3sas0-msix49: PCI-MSI-X enabled: IRQ 157
^[[0m] Reached ta[   10.962674] mpt3sas0-msix50: PCI-MSI-X enabled: IRQ 158
rget ^[[0;1;39mPa[   10.962676] mpt3sas0-msix51: PCI-MSI-X enabled: IRQ 159
th Units^[[0m.
[   10.962678] mpt3sas0-msix52: PCI-MSI-X enabled: IRQ 160
[   11.014171] mpt3sas0-msix53: PCI-MSI-X enabled: IRQ 161
[   11.014172] mpt3sas0-msix54: PCI-MSI-X enabled: IRQ 162
[   11.014174] mpt3sas0-msix55: PCI-MSI-X enabled: IRQ 163
[^[[0;32m  OK  ^[[[   11.014175] mpt3sas0-msix56: PCI-MSI-X enabled: IRQ 164
0m] Reached targ[   11.014177] mpt3sas0-msix57: PCI-MSI-X enabled: IRQ 165
et ^[[0;1;39mBasi[   11.043106] mpt3sas0-msix58: PCI-MSI-X enabled: IRQ 166
c System^[[0m.
[   11.049705] mpt3sas0-msix59: PCI-MSI-X enabled: IRQ 167
[   11.056317] mpt3sas0-msix60: PCI-MSI-X enabled: IRQ 168
[   11.061543] mpt3sas0-msix61: PCI-MSI-X enabled: IRQ 169
[   11.066766] mpt3sas0-msix62: PCI-MSI-X enabled: IRQ 170
[   11.071992] mpt3sas0-msix63: PCI-MSI-X enabled: IRQ 171
[   11.077218] mpt3sas0-msix64: PCI-MSI-X enabled: IRQ 172
[   11.082446] mpt3sas0-msix65: PCI-MSI-X enabled: IRQ 173
[   11.087671] mpt3sas0-msix66: PCI-MSI-X enabled: IRQ 174
[   11.092898] mpt3sas0-msix67: PCI-MSI-X enabled: IRQ 175
[   11.098122] mpt3sas0-msix68: PCI-MSI-X enabled: IRQ 176
[   11.103346] mpt3sas0-msix69: PCI-MSI-X enabled: IRQ 177
[   11.108575] mpt3sas0-msix70: PCI-MSI-X enabled: IRQ 178
[   11.113802] mpt3sas0-msix71: PCI-MSI-X enabled: IRQ 179
[   11.119026] mpt3sas0-msix72: PCI-MSI-X enabled: IRQ 180
[   11.124251] mpt3sas0-msix73: PCI-MSI-X enabled: IRQ 181
[   11.129479] mpt3sas0-msix74: PCI-MSI-X enabled: IRQ 182
[   11.134704] mpt3sas0-msix75: PCI-MSI-X enabled: IRQ 183
[   11.139930] mpt3sas0-msix76: PCI-MSI-X enabled: IRQ 184
[   11.145159] mpt3sas0-msix77: PCI-MSI-X enabled: IRQ 185
[   11.150391] mpt3sas0-msix78: PCI-MSI-X enabled: IRQ 186
[   11.155615] mpt3sas0-msix79: PCI-MSI-X enabled: IRQ 187
[   11.160843] mpt3sas0-msix80: PCI-MSI-X enabled: IRQ 188
[   11.166069] mpt3sas0-msix81: PCI-MSI-X enabled: IRQ 189
[   11.171294] mpt3sas0-msix82: PCI-MSI-X enabled: IRQ 190
[   11.176520] mpt3sas0-msix83: PCI-MSI-X enabled: IRQ 191
[   11.181743] mpt3sas0-msix84: PCI-MSI-X enabled: IRQ 192
[   11.186969] mpt3sas0-msix85: PCI-MSI-X enabled: IRQ 193
[   11.192197] mpt3sas0-msix86: PCI-MSI-X enabled: IRQ 194
[   11.197423] mpt3sas0-msix87: PCI-MSI-X enabled: IRQ 195
[   11.202650] mpt3sas0-msix88: PCI-MSI-X enabled: IRQ 196
[   11.207877] mpt3sas0-msix89: PCI-MSI-X enabled: IRQ 197
[   11.213101] mpt3sas0-msix90: PCI-MSI-X enabled: IRQ 198
[   11.218326] mpt3sas0-msix91: PCI-MSI-X enabled: IRQ 199
[   11.223551] mpt3sas0-msix92: PCI-MSI-X enabled: IRQ 200
[   11.228776] mpt3sas0-msix93: PCI-MSI-X enabled: IRQ 201
[   11.234006] mpt3sas0-msix94: PCI-MSI-X enabled: IRQ 202
[   11.239228] mpt3sas0-msix95: PCI-MSI-X enabled: IRQ 203
[   11.244455] mpt3sas_cm0: iomem(0x00000000e2200000), mapped(0x00000000e50c22b1), size(65536)
[   11.252801] mpt3sas_cm0: ioport(0x0000000000001000), size(256)
[   11.316217] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   11.324225] mpt3sas_cm0: sending message unit reset !!
[   11.330878] mpt3sas_cm0: message unit reset: SUCCESS
[   11.363588] mpt3sas_cm0: scatter gather: sge_in_main_msg(1), sge_per_chain(7), sge_per_io(128), chains_per_io(19)
[   11.375056] mpt3sas_cm0: request pool(0x00000000c02a0273) - dma(0xe0600000): depth(9700), frame_size(128), pool_size(1212 kB)
[   11.411787] mpt3sas_cm0: sense pool(0x00000000360942f6) - dma(0xdef00000): depth(9463), element_size(96), pool_size (887 kB)
[   11.423095] mpt3sas_cm0: reply pool(0x00000000989451dd) - dma(0xdec00000): depth(9764), frame_size(128), pool_size(1220 kB)
[   11.434230] mpt3sas_cm0: config page(0x00000000cb880859) - dma(0xdebee000): size(512)
[   11.442060] mpt3sas_cm0: Allocated physical memory: size(40437 kB)
[   11.448242] mpt3sas_cm0: Current Controller Queue Depth(9460),Max Controller Queue Depth(9584)
[   11.456843] mpt3sas_cm0: Scatter Gather Elements per IO(128)
[   11.508281] mpt3sas_cm0: _base_display_fwpkg_version: complete
[   11.514120] mpt3sas_cm0: FW Package Ver(16.17.01.00)
[   11.519378] mpt3sas_cm0: LSISAS3008: FWVersion(16.00.11.00), ChipRevision(0x02)
[   11.526687] mpt3sas_cm0: Protocol=(Initiator,Target), Capabilities=(TLR,EEDP,Snapshot Buffer,Diag Trace Buffer,Task Set Full,NCQ)
[   11.538404] scsi host8: Fusion MPT SAS Host
[   11.544448] mpt3sas_cm0: sending port enable !!
[   11.549388] mpt3sas_cm0: hba_port entry: 0000000043db537f, port: 255 is added to hba_port list
[   11.559113] mpt3sas_cm0: host_add: handle(0x0001), sas_addr(0x52cea7f0be87bf00), phys(8)
[   11.567544] mpt3sas_cm0: handle(0xa) sas_address(0x4433221100000000) port_type(0x1)
[   11.576397] scsi 8:0:0:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.584486] scsi 8:0:0:0: SATA: handle(0x000a), sas_addr(0x4433221100000000), phy(0), device_name(0x500a075131911ad0)
[   11.595081] scsi 8:0:0:0: enclosure logical id (0x52cea7f0be87bf00), slot(1) 
[   11.602213] scsi 8:0:0:0: enclosure level(0x0001), connector name(     )
[   11.608968] scsi 8:0:0:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.617402] scsi 8:0:0:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.632219]  end_device-8:0: add: handle(0x000a), sas_addr(0x4433221100000000)
[   11.639562] mpt3sas_cm0: handle(0xc) sas_address(0x58ce38ee219651a2) port_type(0x1)
[   11.647723] scsi 8:0:1:0: Direct-Access     KIOXIA   KPM6WVUG960G     BD08 PQ: 0 ANSI: 6
[   11.655814] scsi 8:0:1:0: SSP: handle(0x000c), sas_addr(0x58ce38ee219651a2), phy(4), device_name(0x58ce38ee219651a0)
[   11.666327] scsi 8:0:1:0: enclosure logical id (0x52cea7f0be87bf00), slot(0) 
[   11.673459] scsi 8:0:1:0: enclosure level(0x0001), connector name(     )
[   11.680169] scsi 8:0:1:0: qdepth(254), tagged(1), scsi_level(7), cmd_que(1)
[   11.688648]  end_device-8:1: add: handle(0x000c), sas_addr(0x58ce38ee219651a2)
[   11.695988] mpt3sas_cm0: handle(0xb) sas_address(0x4433221106000000) port_type(0x1)
[   11.704762] scsi 8:0:2:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.712858] scsi 8:0:2:0: SATA: handle(0x000b), sas_addr(0x4433221106000000), phy(6), device_name(0x500a075131911a6f)
[   11.723456] scsi 8:0:2:0: enclosure logical id (0x52cea7f0be87bf00), slot(2) 
[   11.730589] scsi 8:0:2:0: enclosure level(0x0001), connector name(     )
[   11.737342] scsi 8:0:2:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.745776] scsi 8:0:2:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.760602]  end_device-8:2: add: handle(0x000b), sas_addr(0x4433221106000000)
[   11.768278] mpt3sas_cm0: port enable: SUCCESS
[   11.772933] sd 8:0:0:0: Attached scsi generic sg0 type 0
[   11.773517] sd 8:0:0:0: [sda] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.778508] scsi 8:0:1:0: Attached scsi generic sg1 type 0
[   11.785823] sd 8:0:0:0: [sda] 4096-byte physical blocks
[   11.787839] sd 8:0:0:0: [sda] Write Protect is off
[   11.791331] sd 8:0:1:0: [sdb] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.791624] scsi 8:0:2:0: Attached scsi generic sg2 type 0
[   11.792295] sd 8:0:2:0: [sdc] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.792300] sd 8:0:2:0: [sdc] 4096-byte physical blocks
[   11.794306] sd 8:0:2:0: [sdc] Write Protect is off
[   11.795590] sd 8:0:2:0: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.801335] sd 8:0:1:0: [sdb] 4096-byte physical blocks
[   11.809622] sd 8:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.814566] sd 8:0:1:0: [sdb] Write Protect is off
[   11.859240] sd 8:0:1:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   11.906429]  sdc: sdc1 sdc2
[   11.909388] sd 8:0:2:0: [sdc] Attached SCSI disk
[   11.922248]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7
[   11.927656] sd 8:0:0:0: [sda] Attached SCSI disk
[   11.937436]  sdb: sdb1 sdb2
[   11.940399] sd 8:0:1:0: [sdb] Attached SCSI disk
[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39m/dev/mapper/rhel_sharavati-root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut initqueue hook^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m.
         Mounting ^[[0;1;39m/sysroot^[[0m...
[   12.625670] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled
[   12.636251] XFS (dm-1): Mounting V5 Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[   12.660121] XFS (dm-1): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/sysroot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root File System^[[0m.
         Starting ^[[0;1;39mMountpoints Configured in the Real Root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMountpoints Configured in the Real Root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Default Target^[[0m.
         Starting ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
         Starting ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Default Target^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd /usr File System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut initqueue hook^[[0m.
         Starting ^[[0;1;39mPlymouth switch root service^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0[   12.894334] systemd-journald[1088]: Received SIGTERM from PID 1 (systemd).
m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mColdplug All udev Devices^[[0m.
         Stopping ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Kernel Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-udev hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut cmdline hook^[[0m.
         Starting ^[[0;1;39mCleanup udev Database^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate System Users^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleanup udev Database^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwitch Root^[[0m.
         Starting ^[[0;1;39mSwitch Root^[[0m...
[   13.006161] systemd[1]: RTC configured in localtime, applying delta of 330 minutes to system time.
[   13.030807] systemd[1]: systemd 252-46.el9_5.3 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)
[   13.063303] systemd[1]: Detected architecture x86-64.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow)^[[0m!

[   13.136203] systemd-rc-local-generator[1708]: /etc/rc.d/rc.local is not marked executable, skipping.
[   13.397151] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[   13.404489] systemd[1]: Stopped Switch Root.
[^[[0;32m  OK  ^[[[   13.409048] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
0m] Stopped ^[[0;[   13.419769] systemd[1]: Created slice Virtual Machine and Container Slice.
1;39mSwitch Root[   13.428097] systemd[1]: Created slice Slice /system/getty.
^[[0m.
[^[[0;32m[   13.434957] systemd[1]: Created slice Slice /system/modprobe.
  OK  ^[[0m] Crea[   13.442072] systemd[1]: Created slice Slice /system/serial-getty.
ted slice ^[[0;1;[   13.449570] systemd[1]: Created slice Slice /system/sshd-keygen.
39mVirtual Machi[   13.457177] systemd[1]: Created slice Slice /system/systemd-fsck.
ne and Container[   13.464344] systemd[1]: Created slice User and Session Slice.
 Slice^[[0m.
[^[[   13.471216] systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
[0;32m  OK  ^[[0m[   13.487224] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
] Created slice [   13.496314] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
^[[0;1;39mSlice /[   13.506957] systemd[1]: Reached target Local Encrypted Volumes.
system/getty^[[0m[   13.514387] systemd[1]: Stopped target Switch Root.
.
[^[[0;32m  OK[   13.520509] systemd[1]: Stopped target Initrd File Systems.
  ^[[0m] Created [   13.527465] systemd[1]: Stopped target Initrd Root File System.
slice ^[[0;1;39mS[   13.534777] systemd[1]: Reached target Local Integrity Protected Volumes.
lice /system/mod[   13.542962] systemd[1]: Reached target Path Units.
probe^[[0m.
[^[[[   13.549133] systemd[1]: Reached target Slice Units.
0;32m  OK  ^[[0m][   13.555403] systemd[1]: Reached target Local Verity Protected Volumes.
 Created slice ^[[   13.563367] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[0;1;39mSlice /s[   13.571442] systemd[1]: Listening on LVM2 poll daemon socket.
ystem/serial-get[   13.578397] systemd[1]: multipathd control socket was skipped because of an unmet condition check (ConditionPathExists=/etc/multipath.conf).
ty^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/sshd-keygen^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;3[   13.621059] systemd[1]: Listening on RPCbind Server Activation Socket.
2m  OK  ^[[0m] Se[   13.628033] systemd[1]: Reached target RPC Port Mapper.
t up automount ^[[   13.635780] systemd[1]: Listening on Process Core Dump Socket.
[0;1;39mArbitrar[   13.641930] systemd[1]: Listening on initctl Compatibility Named Pipe.
y Executa…orma[   13.650860] systemd[1]: Listening on udev Control Socket.
ts File System A[   13.656652] systemd[1]: Listening on udev Kernel Socket.
utomount Point^[[0m.
[^[[0;32m  [   13.664790] systemd[1]: Activating swap /dev/mapper/rhel_sharavati-swap...
OK  ^[[0m] Reache[   13.669706] Adding 7815164k swap on /dev/mapper/rhel_sharavati-swap.  Priority:-2 extents:1 across:7815164k SS
d target ^[[0;1;39mLocal Encrypte[   13.685980] systemd[1]: Mounting Huge Pages File System...
d Volumes^[[0m.
[^[[0;32m  OK  ^[[   13.693830] systemd[1]: Mounting POSIX Message Queue File System...
[0m] Stopped tar[   13.702847] systemd[1]: Mounting Kernel Debug File System...
get ^[[0;1;39mSwi[   13.709861] systemd[1]: Mounting Kernel Trace File System...
tch Root^[[0m.
[   13.715743] systemd[1]: Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
[^[[0;32m  OK  ^[[[   13.730572] systemd[1]: iscsi-starter.service was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes).
0m] Stopped target ^[[0;1;39mInit[   13.746165] systemd[1]: Starting Create List of Static Device Nodes...
rd File Systems^[[0m.
[^[[0;32m [   13.755221] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
 OK  ^[[0m] Stopp[   13.768083] systemd[1]: Starting Load Kernel Module configfs...
ed target ^[[0;1;[   13.775377] systemd[1]: Starting Load Kernel Module drm...
39mInitrd Root F[   13.782184] systemd[1]: Starting Load Kernel Module fuse...
ile System^[[0m.
[^[[0;32m  OK  [   13.790011] systemd[1]: Starting Read and set NIS domainname from /etc/sysconfig/network...
^[[0m] Reached ta[   13.799205] systemd[1]: plymouth-switch-root.service: Deactivated successfully.
rget ^[[0;1;39mLo[   13.807867] systemd[1]: Stopped Plymouth switch root service.
cal Integrity Pr[   13.815116] systemd[1]: systemd-fsck-root.service: Deactivated successfully.
otected Volumes^[[   13.823425] systemd[1]: Stopped File System Check on Root Device.
[0m.
[^[[0;32m [   13.830968] systemd[1]: Stopped Journal Service.
 OK  ^[[0m] Reached target ^[[0;1;[   13.839322] systemd[1]: Starting Journal Service...
39mPath Units^[[0m.
[^[[0;32m  O[   13.846581] systemd[1]: Starting Load Kernel Modules...
K  ^[[0m] Reached[   13.852096] systemd-journald[1738]: File /run/log/journal/8f37f8055146469d8baec3ad508b0084/system.journal corrupted or uncleanly shut down, renaming and replacing.
 target ^[[0;1;39mSlice Units^[[0m[   13.870308] systemd[1]: Starting Generate network units from Kernel command line...
.
[^[[0;32m  OK[   13.878983] systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
  ^[[0m] Reached target ^[[0;1;39m[   13.900387] systemd[1]: Starting Remount Root and Kernel File Systems...
Local Verity Pro[   13.908358] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
tected Volumes^[[0m.
[^[[0;32m  [   13.920509] systemd[1]: Starting Coldplug All udev Devices...
OK  ^[[0m] Listening on ^[[0;1;39mDevice-mapper ev[   13.930737] systemd[1]: Activated swap /dev/mapper/rhel_sharavati-swap.
ent daemon FIFOs[   13.938976] systemd[1]: Started Journal Service.
^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mLVM2 poll daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mRPCbind Server Activation Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached t[   13.960662] systemd-journald[1738]: Received client request to flush runtime journal.
arget ^[[0;1;39mRPC Port Mapper^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mProcess Core Dump Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39minitctl Compatibility Named Pipe^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
         Activating swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m...
         Mounting ^[[0;1;39mHuge Pages File System^[[0m...
         Mounting ^[[0;1;39mPOSIX Message Queue File System^[[0m...
         Mounting ^[[0;1;39mKernel Debug File System^[[0m...
         Mounting ^[[0;1;39mKernel Trace File System^[[0m...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
         Starting ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module drm^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mJournal Service^[[0m.
         Starting ^[[0;1;39mJournal Service^[[0m...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
         Starting ^[[0;1;39mGenerate network units from Kernel command line^[[0m...
         Starting ^[[0;1;39mRemount Root and Kernel File Systems^[[0m...
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[^[[0;32m  OK  ^[[0m] Activated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mHuge Pages File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mPOSIX Message Queue File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Debug File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Trace File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMonitoring of LVM2 mirror…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module drm^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/n[   14.188282] IPMI message handler: version 39.2
etwork^[[0m.
[^[[0;32m  OK  ^[[0m[   14.196233] ipmi device interface
] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mGenerate ne[   14.206715] ipmi_si: IPMI System Interface driver
twork units from[   14.212862] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
 Kernel command [   14.220579] ipmi_platform: ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 10
line^[[0m.
[^[[0[   14.222807] pstore: backend 'erst' already in use: ignoring 'efi_pstore'
;32m  OK  ^[[0m] [   14.223871] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
Finished ^[[0;1;3[   14.223876] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
9mRemount Root a[   14.224912] input: PC Speaker as /devices/platform/pcspkr/input/input1
nd Kernel File S[   14.225630] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
ystems^[[0m.
[^[[   14.225632] RAPL PMU: hw unit of domain package 2^-16 Joules
[0;32m  OK  ^[[0m[   14.225634] RAPL PMU: hw unit of domain core 2^-16 Joules
] Reached target[   14.229321] ipmi_si: Adding SMBIOS-specified kcs state machine
 ^[[0;1;39mSwaps^[[   14.230111] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
[0m.
         [   14.230767] i2c i2c-3: Successfully instantiated SPD at 0x50
Mounting ^[[0;1;3[   14.232654] i2c i2c-3: Successfully instantiated SPD at 0x51
9mFUSE Control F[   14.233239] i2c i2c-3: Successfully instantiated SPD at 0x52
ile System^[[0m..[   14.233825] i2c i2c-3: Successfully instantiated SPD at 0x53
.
         Mou[   14.234406] i2c i2c-3: Successfully instantiated SPD at 0x54
nting ^[[0;1;39mK[   14.234976] i2c i2c-3: Successfully instantiated SPD at 0x55
ernel Configurat[   14.236898] i2c i2c-3: Successfully instantiated SPD at 0x56
ion File System^[[   14.237471] i2c i2c-3: Successfully instantiated SPD at 0x57
[0m...
       [   14.246220] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
  Starting ^[[0;1[   14.365649] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca8] regsize 1 spacing 4 irq 10
;39mFlush Journa[   14.375280] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
l to Persistent [   14.384976] ipmi_si: Adding ACPI-specified kcs state machine
Storage^[[0m...\r\r[   14.392109] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 10

         Starting ^[[0;1;39mLoad/Save OS Random Seed^[[0m...
         Starting ^[[0;1;39mApply Kernel Variables^[[0m...
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mFUSE Control File System^[[0[   14.425191] ee1004 3-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
m.
[^[[0;32m  OK  ^[[0m] Mounted[   14.434129] ee1004 3-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
 ^[[0;1;39mKernel Configuration F[   14.443679] ee1004 3-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
ile System^[[0m.
[^[[0;32m  OK  [   14.453310] ee1004 3-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
^[[0m] Finished ^[[0;1;39mLoad/Sav[   14.462950] ee1004 3-0054: 512 byte EE1004-compliant SPD EEPROM, read-only
e OS Random Seed^[[0m.
[^[[0;32m[   14.472595] ee1004 3-0055: 512 byte EE1004-compliant SPD EEPROM, read-only
  OK  ^[[0m] Finished ^[[0;1;39mFl[   14.482236] ee1004 3-0056: 512 byte EE1004-compliant SPD EEPROM, read-only
ush Journal to Persistent Storag[   14.491886] ee1004 3-0057: 512 byte EE1004-compliant SPD EEPROM, read-only
e^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
         Starting ^[[0;1;39mRule-based Manager for D[   14.516653] kvm_amd: TSC scaling supported
evice Events and[   14.522011] kvm_amd: Nested Virtualization enabled
 Files^[[0m...
[   14.528188] kvm_amd: Nested Paging enabled
[^[[0;32m  OK  ^[[[   14.533674] kvm_amd: LBR virtualization supported
0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mColdplug All udev Devices^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mLoad/Save RF Kill Switch Status /dev/rfkill Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39m/usr/sbin/lvm vgchange -aa…utoactivation event rhel_sharavati^[[0m.
[   14.788284] ipmi_si IPI0001:00: The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.
[   14.860355] ipmi_si IPI0001:00: Using irq 10
[   14.884143] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20)
[   14.938216] ipmi_si IPI0001:00: IPMI kcs interface initialized
[   14.946752] ipmi_ssif: IPMI SSIF Interface driver
[   14.959851] power_meter ACPI000D:00: Found ACPI power meter.
[^[[0m^[[0;31m*     ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;1;31m*^[[0m^[[0;31m*    ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
^[M\r^[[K[^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*   ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
[   18.086755] ccp 0000:46:00.1: SEV-SNP API:1.55 build:22
[   18.142920] ccp 0000:46:00.1: SEV API:1.55 build:22
[   18.149681] kvm_amd: SEV enabled (ASIDs 101 - 509)
[   18.154479] kvm_amd: SEV-ES enabled (ASIDs 1 - 100)
[   18.159358] kvm_amd: SEV-SNP enabled (ASIDs 1 - 100)
[   18.164499] kvm_amd: Virtual VMLOAD VMSAVE supported
[   18.169463] kvm_amd: Virtual GIF supported
[   18.195570] EDAC MC0: Giving out device to module amd64_edac controller F19h: DEV 0000:00:18.3 (INTERRUPT)
[   18.205227] EDAC amd64: F19h detected (node 0).
[   18.209780] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.214497] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.219225] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.223944] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.228673] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.233390] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.238118] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.242836] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.247567] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.252288] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.257012] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.261726] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.266450] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.271169] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.275898] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.280623] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.292399] intel_rapl_common: Found RAPL domain package
[   18.293487] amd_atl: AMD Address Translation Library initialized
[   18.297722] intel_rapl_common: Found RAPL domain core
^[M\r^[[K[ ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*  ^[[0m] A start job is running for Wait for…ice Initialization (5s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Local File Systems^[[0m.
         Mounting ^[[0;1;39m/boot^[[0m...
      [   18.683998] XFS (sda6): Mounting V5 Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
   Mounting ^[[0;[   18.686590] XFS (dm-0): Mounting V5 Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
1;39m/home^[[0m...
         Starting ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m...
[   18.711107] XFS (sda6): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot^[[0m.\r[   18.721618] XFS (dm-0): Ending clean mount

[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
         Mounting ^[[0;1;39m/boot/efi^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
         Starting ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Mounting ^[[0;1;39mRPC Pipe File System^[[0m...
         Starting ^[[0;1;39mSecurity Auditing Service^[[0m...
         Starting ^[[0;1;39mRPC Bind^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRPC Bind^[[0m.
[   18.830189] RPC: Registered named UNIX socket transport module.
[   18.836125] RPC: Registered udp transport module.
[   18.840841] RPC: Registered tcp transport module.
[   18.845551] RPC: Registered tcp-with-tls transport module.
[   18.851039] RPC: Registered tcp NFSv4.1 backchannel transport module.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSecurity Auditing Service^[[0m.
         Starting ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mRPC Pipe File System^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mrpc_pipefs.target^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdnf makecache --timer^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily rotation of log files^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUpdates mlocate database every day^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily Cleanup of Temporary Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdaily update of the root trust anchor for DNSSEC^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt interface daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt network daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nodedev daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nwfilter daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt proxy daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt secret daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt storage daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
         Starting ^[[0;1;39mD-Bus System Message Bus^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mBasic System^[[0m.
         Starting ^[[0;1;39mNTP client/server^[[0m...
         Starting ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m...
         Starting ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mirqbalance daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mlibstoragemgmt plug-in server daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mMachine Check Exception Logging Daemon^[[0m.
         Starting ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msshd-keygen.target^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUser and Group Name Lookups^[[0m.
         Starting ^[[0;1;39mUser Login Management^[[0m...
         Starting ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNTP client/server^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Network^[[0m.
         Starting ^[[0;1;39mNetwork Manager^[[0m...
         Starting ^[[0;1;39mHostname Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mHostname Service^[[0m.
         Starting ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork^[[0m.
         Starting ^[[0;1;39mNetwork Manager Wait Online^[[0m...
         Starting ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
         Starting ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m...
         Starting ^[[0;1;39mOpenSSH server daemon^[[0m...
         Starting ^[[0;1;39mDynamic System Tuning Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNFS client services^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mOpenSSH server daemon^[[0m.
         Starting ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
[   22.976206] tg3 0000:c1:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   22.982827] tg3 0000:c1:00.0 eth0: Flow control is off for TX and off for RX
[   22.989878] tg3 0000:c1:00.0 eth0: EEE is disabled
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[     ^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (12s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mNetwork Manager Wait Online^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork is Online^[[0m.
         Starting ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m...
         Starting ^[[0;1;39mNotify NFS peers of a restart^[[0m...
         Starting ^[[0;1;39mSystem Logging Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNotify NFS peers of a restart^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mCrash recovery kernel arming^[[0m...
         Starting ^[[0;1;39mPermit User Sessions^[[0m...
         Starting ^[[0;1;39mlibvirt QEMU daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDeferred execution scheduler^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mCommand Scheduler^[[0m.
         Starting ^[[0;1;39mHold until boot process finishes up^[[0m...
         Starting ^[[0;1;39mTerminate Plymouth Boot Screen^[[0m...
[^[[0;1;31mFAILED^[[0m] Failed to start ^[[0;1;39mCrash recovery kernel arming^[[0m.
See 'systemctl status kdump.service' for details.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSystem Logging Service^[[0m.
[   25.802957] fbcon: Taking over console
[   25.822865] Console: switching to colour frame buffer device 128x48

Red Hat Enterprise Linux 9.5 (Plow)
Kernel 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e on an x86_64

Activate the web console with: systemctl enable --now cockpit.socket

sharavati login: [   43.209453] /proc/cgroups lists only v1 controllers, use cgroup.controllers of root cgroup for v2 info
[  288.948949] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[  289.008518] systemd-rc-local-generator[3154]: /etc/rc.d/rc.local is not marked executable, skipping.
[  310.556507] virbr0: port 1(t0-Mu5EVn) entered blocking state
[  310.562179] virbr0: port 1(t0-Mu5EVn) entered disabled state
[  310.567880] t0-Mu5EVn: entered allmulticast mode
[  310.572573] t0-Mu5EVn: entered promiscuous mode
[  310.581713] virbr0: port 1(t0-Mu5EVn) entered blocking state
[  310.587380] virbr0: port 1(t0-Mu5EVn) entered listening state
[  312.599867] virbr0: port 1(t0-Mu5EVn) entered learning state
[  314.615797] virbr0: port 1(t0-Mu5EVn) entered forwarding state
[  314.621636] virbr0: topology change detected, propagating
[  323.195142] virbr0: port 1(t0-Mu5EVn) entered disabled state
[  323.201847] t0-Mu5EVn (unregistering): left allmulticast mode
[  323.207610] t0-Mu5EVn (unregistering): left promiscuous mode
[  323.213284] virbr0: port 1(t0-Mu5EVn) entered disabled state
[  327.940348] virbr0: port 1(t0-wmOVrg) entered blocking state
[  327.946032] virbr0: port 1(t0-wmOVrg) entered disabled state
[  327.951753] t0-wmOVrg: entered allmulticast mode
[  327.956454] t0-wmOVrg: entered promiscuous mode
[  327.965325] virbr0: port 1(t0-wmOVrg) entered blocking state
[  327.970988] virbr0: port 1(t0-wmOVrg) entered listening state
[  330.007340] virbr0: port 1(t0-wmOVrg) entered learning state
[  332.023271] virbr0: port 1(t0-wmOVrg) entered forwarding state
[  332.029110] virbr0: topology change detected, propagating
[  340.493317] virbr0: port 1(t0-wmOVrg) entered disabled state
[  340.499985] t0-wmOVrg (unregistering): left allmulticast mode
[  340.505747] t0-wmOVrg (unregistering): left promiscuous mode
[  340.511425] virbr0: port 1(t0-wmOVrg) entered disabled state
[  382.388860] JFS: nTxBlock = 8192, nTxLock = 65536
[  382.426727] QNX4 filesystem 0.2.3 registered.
[  382.510106] raid6: avx2x4   gen() 28213 MB/s
[  382.582104] raid6: avx2x2   gen() 28966 MB/s
[  382.654102] raid6: avx2x1   gen() 19880 MB/s
[  382.658380] raid6: using algorithm avx2x2 gen() 28966 MB/s
[  382.730100] raid6: .... xor() 27334 MB/s, rmw enabled
[  382.735155] raid6: using avx2x2 recovery algorithm
[  382.741981] xor: automatically using best checksumming function   avx       
[  382.838032] Btrfs loaded, zoned=yes, fsverity=yes
[  387.243669] sda6: Can't mount, would change RO state
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Runtime Directory /run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser Slice of UID 0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNFS client services^[[0m.
         Stopping ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mShow Plymouth Reboot Screen^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mUser and Group Name Lookups^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSystem Logging Service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork is Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager Wait Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
         Stopping ^[[0;1;39mNetwork Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Network^[[0m.
         Stopping ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGenerate network units from Kernel command line^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
         Stopping ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Plymouth Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mVirtual Machine and Container Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mSSSD Kerberos Cache Manager [  388.695265] audit: type=1305 audit(1750151165.071:289): op=set audit_pid=0 old=2289 auid=4294967295 ses=4294967295 subj=unconfined res=1
responder socket^[[0m.
[^[[0;32m[  388.709841] audit: type=1131 audit(1750151165.083:290): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=auditd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
  OK  ^[[0m] Clos[  388.730600] audit: type=1131 audit(1750151165.107:291): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
ed ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon socket^[[0m.
         Stopping ^[[0;1;39mD-Bus System Message Bus^[[0m...
         Starting ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39[  388.790851] audit: type=1131 audit(1750151165.167:292): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-fsck@dev-disk-by\x2duuid-FBE5\x2d86EF comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
mD-Bus System Me[  388.809745] XFS (dm-0): Unmounting Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
ssage Bus^[[0m.\r\r[  388.815265] XFS (sda6): Unmounting Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188

[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus So[  388.836472] audit: type=1131 audit(1750151165.211:293): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
cket^[[0m.
[^[[0[  388.858387] audit: type=1131 audit(1750151165.235:294): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Unset automount ^[[0;1;39mArbitrary Executab…ormats File System Automount Point^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Encrypted Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Integrity Protected Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Verity Protected Volumes^[[0m.
         Deactivating swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modul[  388.955675] audit: type=1131 audit(1750151165.331:295): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
es^[[0m.
      [  388.977450] audit: type=1130 audit(1750151165.351:296): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
   Stopping ^[[0;[  388.998603] audit: type=1131 audit(1750151165.351:297): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
1;39mRecord Syst[  389.020666] audit: type=1334 audit(1750151165.395:298): prog-id=34 op=UNLOAD
em Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-sysctl.service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
         Stopping ^[[0;1;[  389.054360] watchdog: watchdog0: watchdog did not stop!
39mSecurity Auditing Service^[[0m...
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1[  389.065635] systemd-shutdown[1]: Using hardware watchdog 'SP5100 TCO timer', version 0, device /dev/watchdog0
;39m/dev/disk/by[  389.076989] systemd-shutdown[1]: Watchdog running with a timeout of 10min.
-id/dm-name-rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-uuid…8d2e1f-[  389.094451] systemd-shutdown[1]: Syncing filesystems and block devices.
0fb1-4c94-97ac-3[  389.101576] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
8505613fcbf^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/d…kEo36yeb12DWUnp5czhD1hrKFNCXkJMetK^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/rhel_sharavati/swap^[[0m.
[^[[0;32m  OK  ^[[0m][  389.128823] systemd-journald[1738]: Received SIGTERM from PID 1 (systemd-shutdow).
 Deactivated swap ^[[0;1;39m/dev/dm-2^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
         Unmounting ^[[0;1;39m/boot/efi^[[0m...
         Unmounting ^[[0;1;39m/home^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m.
         Unmounting ^[[0;1;39m/boot^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Local File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUnmount All Filesystems^[[0m.
         Stopping ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRemount Root and Kernel File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mMonitoring of LVM2 mirrors…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLate Shutdown Services^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSystem Reboot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Reboot^[[0m.
[  389.314476] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
[  389.339515] systemd-shutdown[1]: Unmounting file systems.
[  389.345714] [7932]: Remounting '/' read-only with options 'attr2,inode64,logbufs=8,logbsize=32k,noquota'.
[  389.364314] systemd-shutdown[1]: All filesystems unmounted.
[  389.370319] systemd-shutdown[1]: Deactivating swaps.
[  389.375324] systemd-shutdown[1]: All swaps deactivated.
[  389.380552] systemd-shutdown[1]: Detaching loop devices.
[  389.386387] systemd-shutdown[1]: All loop devices detached.
[  389.391965] systemd-shutdown[1]: Stopping MD devices.
[  389.397080] systemd-shutdown[1]: All MD devices stopped.
[  389.402396] systemd-shutdown[1]: Detaching DM devices.
[  389.407899] systemd-shutdown[1]: Detaching DM /dev/dm-2 (253:2).
[  389.450075] systemd-shutdown[1]: Detaching DM /dev/dm-0 (253:0).
[  389.498102] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  389.504601] systemd-shutdown[1]: Detaching DM devices.
[  389.509921] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  389.516363] systemd-shutdown[1]: Cannot finalize remaining DM devices, continuing.
[  389.523927] watchdog: watchdog0: watchdog did not stop!
[  389.619092] systemd-shutdown[1]: Successfully changed into root pivot.
[  389.625661] systemd-shutdown[1]: Returning to initrd...
[  389.678877] dracut Warning: Killing all remaining processes
dracut Warning: Killing all remaining processes
[  389.759877] XFS (dm-1): Unmounting Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[  389.774705] dracut Warning: Unmounted /oldroot.
dracut Warning: Unmounted /oldroot.
[  389.791900] dracut: Disassembling device-mapper devices
Rebooting.
[  389.976456] sd 8:0:2:0: [sdc] Synchronizing SCSI cache
[  389.981763] sd 8:0:0:0: [sda] Synchronizing SCSI cache
[  391.443557] mpt3sas_cm0: sending message unit reset !!
[  391.451427] mpt3sas_cm0: message unit reset: SUCCESS
[  391.459062] ACPI: PM: Preparing to enter system sleep state S5
[  391.465037] kvm: exiting hardware virtualization
[  391.469703] reboot: Restarting system
[  391.473377] reboot: machine restart
^[[c^[[2J^[[01;01H^[[=3h^[[2J^[[01;01HKEY MAPPING FOR CONSOLE REDIRECTION:

Use the <ESC><1> key sequence for <F1>
Use the <ESC><2> key sequence for <F2>
Use the <ESC><3> key sequence for <F3>
Use the <ESC><0> key sequence for <F10>
Use the <ESC><!> key sequence for <F11>
Use the <ESC><@> key sequence for <F12>

Use the <ESC><Ctrl><M> key sequence for <Ctrl><M>
Use the <ESC><Ctrl><H> key sequence for <Ctrl><H>
Use the <ESC><Ctrl><I> key sequence for <Ctrl><I>
Use the <ESC><Ctrl><J> key sequence for <Ctrl><J>

Use the <ESC><X><X> key sequence for <Alt><x>, where x is any letter
key, and X is the upper case of that key

Use the <ESC><R><ESC><r><ESC><R> key sequence for <Ctrl><Alt><Del>

Press the spacebar to pause...
Initializing PCIe, USB, and Video... Done
PowerEdge R6515
BIOS Version: 2.17.0
Console Redirection Enabled Requested by iDRAC

F2	 = System Setup
F10	 = Lifecycle Controller (Config
	   iDRAC, Update FW, Install OS)
F11	 = Boot Manager
F12	 = PXE Boot
iDRAC IPV4:  10.86.18.202 [Dedicated]
                                
Initializing Firmware Interfaces...
 





Enumerating Boot options...
Enumerating Boot options... Done
Loading Lifecycle Controller Drivers...
Loading Lifecycle Controller Drivers...Done
Lifecycle Controller: Collecting System Inventory...

iDRAC IPV4:  10.86.18.202 [Dedicated]

^[[2J^[[01;01HLifecycle Controller: Done
Booting...
^[[2J^[[01;01HBooting from Integrated Storage Controller 1: Red Hat Enterprise Linux
^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[02;32HGRUB version 2.06

\r^[[04;02H/----------------------------------------------------------------------------\^[[05;02H|^[[05;79H|^[[06;02H|^[[06;79H|^[[07;02H|^[[07;79H|^[[08;02H|^[[08;79H|^[[09;02H|^[[09;79H|^[[10;02H|^[[10;79H|^[[11;02H|^[[11;79H|^[[12;02H|^[[12;79H|^[[13;02H|^[[13;79H|^[[14;02H|^[[14;79H|^[[15;02H|^[[15;79H|^[[16;02H|^[[16;79H|^[[17;02H\----------------------------------------------------------------------------/^[[18;02H^[[19;02H     Use the ^ and v keys to select which entry is highlighted.          
\r      Press enter to boot the selected OS, `e' to edit the commands       
\r      before booting or `c' for a command-line. ESC to return previous    
\r      menu.                                                               ^[[05;80H ^[[0m^[[30m^[[47m^[[05;03H*Red Hat Enterprise Linux (6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e)>
\r^[[06;01H^[[0m^[[37m^[[40m^[[05;78H^[[06;03H Red Hat Enterprise Linux (6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997)>
\r^[[07;01H^[[06;78H^[[07;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250613-bc6e0ba6c9-dc42f4ece61)>
\r^[[08;01H^[[07;78H^[[08;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250612-0bb71d3018-d909e6968a1)>
\r^[[09;01H^[[08;78H^[[09;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250611-19a60293b9-72d7c68e20e)>
\r^[[10;01H^[[09;78H^[[10;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250610-b27cc623e0-9a3b1b1b837)>
\r^[[11;01H^[[10;78H^[[11;03H Red Hat Enterprise Linux (6.15.0-rc7-next-20250526-3be1a7a31f-22d449bcd69)>
\r^[[12;01H^[[11;78H^[[12;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250514-bdd609656f-ccb396cc166)>
\r^[[13;01H^[[12;78H^[[13;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250513-aa94665adc-e0bf3d3816b)>
\r^[[14;01H^[[13;78H^[[14;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250512-edef457004-450c56522a8)>
\r^[[15;01H^[[14;78H^[[15;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250508-f48887a98b-19c541fe872)>
\r^[[16;01H^[[15;78H^[[16;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250507-08710e6960-81586bd2ca8)>
\r^[[17;01H^[[16;78H^[[16;80Hv^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 5s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 4s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 3s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 2s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 1s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 0s.                 ^[[05;78H^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m  Booting `Red Hat Enterprise Linux
\r(6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e) 9.5 (Plow)'

\r[    0.000000] Linux version 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e (root@sharavati•amd.com) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-5), GNU ld version 2.35.2-63.el9) #1 SMP PREEMPT_DYNAMIC Tue Jun 17 12:09:52 IST 2025
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] SEV-SNP: RMP table physical range [0x0000000015e00000 - 0x00000000566fffff]
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000015dfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000015e00000-0x00000000566fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000056700000-0x00000000567fbfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000567fc000-0x00000000567fcfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000567fd000-0x000000005a142fff] usable
[    0.000000] BIOS-e820: [mem 0x000000005a143000-0x000000005a342fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005a343000-0x0000000067acefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000067acf000-0x000000006dfcefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006dfcf000-0x000000006edfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006edff000-0x000000006effefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000006efff000-0x000000006effffff] usable
[    0.000000] BIOS-e820: [mem 0x000000006f000000-0x000000006f00afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006f00b000-0x000000006fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000070000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa000000-0x00000000aaffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c5000000-0x00000000c5ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e0ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000207fcfffff] usable
[    0.000000] BIOS-e820: [mem 0x000000207fd00000-0x000000207fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000002080000000-0x000000407f1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000407f200000-0x000000407fffffff] reserved
[    0.000000] printk: legacy bootconsole [earlyser0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by Dell Inc.
[    0.000000] efi: ACPI=0x6effe000 ACPI 2.0=0x6effe014 MEMATTR=0x63f376a0 SMBIOS=0x6979e000 SMBIOS 3.0=0x6979c000 MOKvar=0x67bcc000 RNG=0x6efb4020 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem56: MMIO range=[0x80000000-0x8fffffff] (256MB) from e820 map
[    0.000000] efi: Remove mem57: MMIO range=[0xaa000000-0xaaffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem58: MMIO range=[0xc5000000-0xc5ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem59: MMIO range=[0xe0000000-0xe0ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem60: MMIO range=[0xfd000000-0xffffffff] (48MB) from e820 map
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[    0.000000] DMI: Memory slots populated: 8/16
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1996.351 MHz processor
[    0.000029] last_pfn = 0x407f200 max_arch_pfn = 0x400000000
[    0.005552] MTRR map: 7 entries (2 fixed + 5 variable; max 19), built from 9 variable MTRRs
[    0.013866] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Memory KASLR using RDRAND RDTSC...
[    0.023936] x2apic: enabled by BIOS, switching to x2apic ops
[    0.029570] last_pfn = 0x70000 max_arch_pfn = 0x400000000
[    0.039555] SEV-SNP: Reserving start/end of RMP table on a 2MB boundary [0x0000000056600000]
[    0.047827] Using GB pages for direct mapping
[    0.052829] Secure boot disabled
[    0.055877] RAMDISK: [mem 0x0bb2c000-0x0e0d4fff]
[    0.060474] ACPI: Early table checksum verification disabled
[    0.066106] ACPI: RSDP 0x000000006EFFE014 000024 (v02 DELL  )
[    0.071824] ACPI: XSDT 0x000000006EFB7188 0000DC (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.080319] ACPI: FACP 0x000000006EFF9000 000114 (v06 DELL   PE_SC3   00000002 DELL 00000001)
[    0.088811] ACPI: DSDT 0x000000006EFDA000 019528 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.097303] ACPI: FACS 0x000000006EDB9000 000040
[    0.101895] ACPI: BERT 0x000000006EFFC000 000030 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.110388] ACPI: ERST 0x000000006EFFB000 000230 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.118880] ACPI: HEST 0x000000006EFFA000 0007F4 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.127372] ACPI: HPET 0x000000006EFF8000 000038 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.135866] ACPI: APIC 0x000000006EFF6000 0018BE (v05 DELL   PE_SC3   00000002 DELL 00000001)
[    0.144358] ACPI: MCFG 0x000000006EFF5000 00003C (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.152885] ACPI: WSMT 0x000000006EFF4000 000028 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.161378] ACPI: SSDT 0x000000006EFD9000 000629 (v02 DELL   xhc_port 00000001 INTL 20210331)
[    0.169871] ACPI: SSDT 0x000000006EFD8000 000D6E (v02 AMD    CPMRAS   00000001 INTL 20210331)
[    0.178364] ACPI: EINJ 0x000000006EFD7000 000170 (v01 AMD    PE_SC3   00000001 AMD  00000001)
[    0.186856] ACPI: PCCT 0x000000006EFD6000 00006E (v02 DELL   AmdTable 00000001 AMD  00000001)
[    0.195349] ACPI: SSDT 0x000000006EFC7000 00E849 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.203842] ACPI: SRAT 0x000000006EFC6000 000CD0 (v03 DELL   PE_SC3   00000001 AMD  00000001)
[    0.212335] ACPI: MSCT 0x000000006EFC5000 00004E (v01 DELL   PE_SC3   00000000 AMD  00000001)
[    0.220828] ACPI: SLIT 0x000000006EFC4000 000030 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.229319] ACPI: CRAT 0x000000006EFBC000 0072F8 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.237813] ACPI: CDIT 0x000000006EFBB000 00002C (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.246305] ACPI: IVRS 0x000000006EFBA000 0001F0 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.254798] ACPI: SPCR 0x000000006EFB9000 000050 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.263291] ACPI: SLIC 0x000000006EFB8000 000176 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.271783] ACPI: SSDT 0x000000006EFFD000 000D66 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.280276] ACPI: SSDT 0x000000006EFB5000 00193C (v02 AMD    CPMCMN   00000001 INTL 20210331)
[    0.288769] ACPI: Reserving FACP table memory at [mem 0x6eff9000-0x6eff9113]
[    0.295787] ACPI: Reserving DSDT table memory at [mem 0x6efda000-0x6eff3527]
[    0.302808] ACPI: Reserving FACS table memory at [mem 0x6edb9000-0x6edb903f]
[    0.309826] ACPI: Reserving BERT table memory at [mem 0x6effc000-0x6effc02f]
[    0.316846] ACPI: Reserving ERST table memory at [mem 0x6effb000-0x6effb22f]
[    0.323865] ACPI: Reserving HEST table memory at [mem 0x6effa000-0x6effa7f3]
[    0.330886] ACPI: Reserving HPET table memory at [mem 0x6eff8000-0x6eff8037]
[    0.337904] ACPI: Reserving APIC table memory at [mem 0x6eff6000-0x6eff78bd]
[    0.344924] ACPI: Reserving MCFG table memory at [mem 0x6eff5000-0x6eff503b]
[    0.351943] ACPI: Reserving WSMT table memory at [mem 0x6eff4000-0x6eff4027]
[    0.358980] ACPI: Reserving SSDT table memory at [mem 0x6efd9000-0x6efd9628]
[    0.366000] ACPI: Reserving SSDT table memory at [mem 0x6efd8000-0x6efd8d6d]
[    0.373018] ACPI: Reserving EINJ table memory at [mem 0x6efd7000-0x6efd716f]
[    0.380039] ACPI: Reserving PCCT table memory at [mem 0x6efd6000-0x6efd606d]
[    0.387057] ACPI: Reserving SSDT table memory at [mem 0x6efc7000-0x6efd5848]
[    0.394078] ACPI: Reserving SRAT table memory at [mem 0x6efc6000-0x6efc6ccf]
[    0.401097] ACPI: Reserving MSCT table memory at [mem 0x6efc5000-0x6efc504d]
[    0.408116] ACPI: Reserving SLIT table memory at [mem 0x6efc4000-0x6efc402f]
[    0.415136] ACPI: Reserving CRAT table memory at [mem 0x6efbc000-0x6efc32f7]
[    0.422156] ACPI: Reserving CDIT table memory at [mem 0x6efbb000-0x6efbb02b]
[    0.429175] ACPI: Reserving IVRS table memory at [mem 0x6efba000-0x6efba1ef]
[    0.436195] ACPI: Reserving SPCR table memory at [mem 0x6efb9000-0x6efb904f]
[    0.443214] ACPI: Reserving SLIC table memory at [mem 0x6efb8000-0x6efb8175]
[    0.450233] ACPI: Reserving SSDT table memory at [mem 0x6effd000-0x6effdd65]
[    0.457253] ACPI: Reserving SSDT table memory at [mem 0x6efb5000-0x6efb693b]
[    0.464375] APIC: Switched APIC routing to: cluster x2apic
[    0.469774] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.475737] ACPI: SRAT: Node 0 PXM 0 [mem 0x000c0000-0x7fffffff]
[    0.481717] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.487956] ACPI: SRAT: Node 1 PXM 1 [mem 0x2080000000-0x407fffffff]
[    0.494289] NUMA: Node 0 [mem 0x00001000-0x0009ffff] + [mem 0x000c0000-0x7fffffff] -> [mem 0x00001000-0x7fffffff]
[    0.504508] NUMA: Node 0 [mem 0x00001000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00001000-0x207fffffff]
[    0.515174] NODE_DATA(0) allocated [mem 0x207fcd59c0-0x207fcfffff]
[    0.521329] NODE_DATA(1) allocated [mem 0x407f1d49c0-0x407f1fefff]
[    0.527612] cannot allocate crashkernel low memory (size:0x10800000).
[    0.534143] Zone ranges:
[    0.536503]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.542656]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.548809]   Normal   [mem 0x0000000100000000-0x000000407f1fffff]
[    0.554961]   Device   empty
[    0.557821] Movable zone start for each node
[    0.562070] Early memory node ranges
[    0.565622]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.571861]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.578100]   node   0: [mem 0x0000000000100000-0x0000000015dfffff]
[    0.584339]   node   0: [mem 0x0000000056700000-0x00000000567fbfff]
[    0.590580]   node   0: [mem 0x00000000567fd000-0x000000005a142fff]
[    0.596819]   node   0: [mem 0x000000005a343000-0x0000000067acefff]
[    0.603058]   node   0: [mem 0x000000006efff000-0x000000006effffff]
[    0.609298]   node   0: [mem 0x000000006f00b000-0x000000006fffffff]
[    0.615538]   node   0: [mem 0x0000000100000000-0x000000207fcfffff]
[    0.621787]   node   1: [mem 0x0000002080000000-0x000000407f1fffff]
[    0.628028] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fcfffff]
[    0.635038] Initmem setup node 1 [mem 0x0000002080000000-0x000000407f1fffff]
[    0.642057] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.647862] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.653679] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.659911] On node 0, zone DMA32: 35072 pages in unavailable ranges
[    0.666120] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.672230] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.678321] On node 0, zone DMA32: 30000 pages in unavailable ranges
[    0.684565] On node 0, zone DMA32: 11 pages in unavailable ranges
[    0.910336] On node 1, zone Normal: 768 pages in unavailable ranges
[    0.916434] On node 1, zone Normal: 3584 pages in unavailable ranges
[    0.922926] ACPI: PM-Timer IO Port: 0x408
[    0.926797] ACPI: X2APIC_NMI (uid[0xffffffff] high edge lint[0x1])
[    0.932924] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.938829] IOAPIC[0]: apic_id 240, version 33, address 0xfec00000, GSI 0-23
[    0.945837] IOAPIC[1]: apic_id 241, version 33, address 0xe0100000, GSI 120-151
[    0.953118] IOAPIC[2]: apic_id 242, version 33, address 0xc5100000, GSI 88-119
[    0.960310] IOAPIC[3]: apic_id 243, version 33, address 0xaa100000, GSI 56-87
[    0.967416] IOAPIC[4]: apic_id 244, version 33, address 0xfd100000, GSI 24-55
[    0.974522] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.980846] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.987351] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.993758] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.998874] ACPI: SPCR: console: uart,io,0x2f8,115200
[    1.003901] CPU topo: Max. logical packages:   1
[    1.008488] CPU topo: Max. logical dies:       1
[    1.013081] CPU topo: Max. dies per package:   1
[    1.017679] CPU topo: Max. threads per core:   2
[    1.022269] CPU topo: Num. cores per package:    64
[    1.027147] CPU topo: Num. threads per package: 128
[    1.032000] CPU topo: Allowing 128 present CPUs plus 0 hotplug CPUs
[    1.038265] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    1.045780] PM: hibernation: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    1.053319] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    1.060859] PM: hibernation: Registered nosave memory: [mem 0x15e00000-0x567fffff]
[    1.068399] PM: hibernation: Registered nosave memory: [mem 0x5a143000-0x5a342fff]
[    1.075938] PM: hibernation: Registered nosave memory: [mem 0x67acf000-0x6effefff]
[    1.083476] PM: hibernation: Registered nosave memory: [mem 0x6f000000-0x6f00afff]
[    1.091016] PM: hibernation: Registered nosave memory: [mem 0x70000000-0xffffffff]
[    1.098555] PM: hibernation: Registered nosave memory: [mem 0x207fd00000-0x207fffffff]
[    1.106443] [mem 0x56800000-0xffffffff] available for PCI devices
[    1.112507] Booting paravirtualized kernel on bare hardware
[    1.118055] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    1.128502] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:128 nr_cpu_ids:128 nr_node_ids:2
[    1.139878] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[    1.146357] Kernel command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    1.175683] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e biosdevname=0 mem_encrypt=off", will be passed to user space.
[    1.192529] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    1.199445] printk: log_buf_len total cpu_extra contributions: 520192 bytes
[    1.206377] printk: log_buf_len min size: 262144 bytes
[    1.211828] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[    1.219212] printk: early log buf free: 246352(93%)
[    1.225573] software IO TLB: area num 128.
[    1.229495] software IO TLB: swiotlb_memblock_alloc: Failed to allocate 268435456 bytes tlb structure
[    1.245116] software IO TLB: SWIOTLB bounce buffer size adjusted 131072 -> 65536 slabs
[    1.251720] Fallback order for Node 0: 0 1 
[    1.251724] Fallback order for Node 1: 1 0 
[    1.251738] Built 2 zonelists, mobility grouping on.  Total pages: 66743906
[    1.274727] Policy zone: Normal
[    1.277854] mem auto-init: stack:off, heap alloc:on, heap free:off
[    1.699713] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=128, Nodes=2
Poking KASLR using RDRAND RDTSC...
[    1.720982] ftrace: allocating 53763 entries in 212 pages
[    1.726200] ftrace: allocated 212 pages with 4 groups
[    1.732139] Dynamic Preempt: voluntary
[    1.736077] rcu: Preemptible hierarchical RCU implementation.
[    1.741642] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=128.
[    1.748576] 	Trampoline variant of Tasks RCU enabled.
[    1.753602] 	Rude variant of Tasks RCU enabled.
[    1.758107] 	Tracing variant of Tasks RCU enabled.
[    1.762875] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.770413] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=128
[    1.777298] RCU Tasks: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.786102] RCU Tasks Rude: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.795394] RCU Tasks Trace: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.808278] NR_IRQS: 524544, nr_irqs: 3624, preallocated irqs: 16
[    1.814468] rcu: srcu_init: Setting srcu_struct sizes to big.
[    1.820219] Console: colour dummy device 80x25
[    1.824499] printk: legacy console [ttyS0] enabled
[    1.824499] printk: legacy console [ttyS0] enabled
[    1.834031] printk: legacy bootconsole [earlyser0] disabled
[    1.834031] printk: legacy bootconsole [earlyser0] disabled
[    1.845218] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    1.856497] ACPI: Core revision 20250404
[    1.860647] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    1.869786] APIC: Switch to symmetric I/O mode setup
[    1.875182] AMD-Vi: Using global IVHD EFR:0x841f77e022094ace, EFR2:0x0
[    1.884123] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    1.909786] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x398d6f1c9be, max_idle_ns: 881590701576 ns
[    1.920297] Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.70 BogoMIPS (lpj=7985404)
[    1.924309] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    1.928409] LVT offset 2 assigned for vector 0xf4
[    1.932326] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    1.936296] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    1.940297] process: using mwait in idle threads
[    1.944300] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    1.948296] Spectre V2 : Mitigation: Retpolines
[    1.952296] Spectre V2 : User space: Mitigation: STIBP always-on protection
[    1.956296] Speculative Return Stack Overflow: Mitigation: Safe RET
[    1.960296] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.964296] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
[    1.968296] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    1.972296] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    1.976300] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.980296] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.984296] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.988296] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    1.992296] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    1.996296] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    2.000296] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    2.004296] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    2.008296] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[    2.046452] Freeing SMP alternatives memory: 48K
[    2.048298] pid_max: default: 131072 minimum: 1024
[    2.060143] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm
[    2.060350] Yama: becoming mindful.
[    2.064423] AppArmor: AppArmor initialized
[    2.077311] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    2.085645] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    2.088448] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.092392] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.205459] smpboot: CPU0: AMD EPYC 7713 64-Core Processor (family: 0x19, model: 0x1, stepping: 0x1)
[    2.208658] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    2.216297] ... version:                0
[    2.220297] ... bit width:              48
[    2.224297] ... generic registers:      6
[    2.228296] ... value mask:             0000ffffffffffff
[    2.232297] ... max period:             00007fffffffffff
[    2.236296] ... fixed-purpose events:   0
[    2.240296] ... event mask:             000000000000003f
[    2.244729] signal: max sigframe size: 3376
[    2.248360] rcu: Hierarchical SRCU implementation.
[    2.252297] rcu: 	Max phase no-delay instances is 1000.
[    2.256355] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
[    2.268741] MCE: In-kernel MCE decoding enabled.
[    2.272349] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    2.277275] smp: Bringing up secondary CPUs ...
[    2.280465] smpboot: x86: Booting SMP configuration:
[    2.284300] .... node  #0, CPUs:          #1   #2   #3   #4   #5   #6   #7   #8   #9  #10  #11  #12  #13  #14  #15  #16  #17  #18  #19  #20  #21  #22  #23  #24  #25  #26  #27  #28  #29  #30  #31
[    2.296298] .... node  #1, CPUs:    #32  #33  #34  #35  #36  #37  #38  #39  #40  #41  #42  #43  #44  #45  #46  #47  #48  #49  #50  #51  #52  #53  #54  #55  #56  #57  #58  #59  #60  #61  #62  #63
[    2.448298] .... node  #0, CPUs:    #64  #65  #66  #67  #68  #69  #70  #71  #72  #73  #74  #75  #76  #77  #78  #79  #80  #81  #82  #83  #84  #85  #86  #87  #88  #89  #90  #91  #92  #93  #94  #95
[    2.456298] .... node  #1, CPUs:    #96  #97  #98  #99 #100 #101 #102 #103 #104 #105 #106 #107 #108 #109 #110 #111 #112 #113 #114 #115 #116 #117 #118 #119 #120 #121 #122 #123 #124 #125 #126 #127
[    2.464602] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[    2.616459] smp: Brought up 2 nodes, 128 CPUs
[    2.620300] smpboot: Total of 128 processors activated (511065.85 BogoMIPS)
[    2.630646] Memory: 262224728K/266975624K available (18401K kernel code, 3299K rwdata, 7944K rodata, 4760K init, 6092K bss, 4428320K reserved, 0K cma-reserved)
[    2.638622] devtmpfs: initialized
[    2.640402] x86/mm: Memory block size: 2048MB
[    2.655267] ACPI: PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    2.656299] ACPI: PM: Registering ACPI NVS region [mem 0x6dfcf000-0x6edfefff] (14876672 bytes)
[    2.664585] ACPI: PM: Registering ACPI NVS region [mem 0x6f000000-0x6f00afff] (45056 bytes)
[    2.668415] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    2.672361] posixtimers hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.676517] futex hash table entries: 16384 (1048576 bytes on 2 NUMA nodes, total 2048 KiB, linear).
[    2.680528] pinctrl core: initialized pinctrl subsystem
[    2.684447] PM: RTC time: 14:38:20, date: 2025-06-17
[    2.689074] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    2.692903] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    2.696479] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    2.700477] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    2.704304] audit: initializing netlink subsys (disabled)
[    2.708326] audit: type=2000 audit(1750171099.824:1): state=initialized audit_enabled=0 res=1
[    2.708504] thermal_sys: Registered thermal governor 'fair_share'
[    2.712298] thermal_sys: Registered thermal governor 'bang_bang'
[    2.716298] thermal_sys: Registered thermal governor 'step_wise'
[    2.720297] thermal_sys: Registered thermal governor 'user_space'
[    2.724322] cpuidle: using governor ladder
[    2.732307] cpuidle: using governor menu
[    2.736344] Detected 1 PCC Subspaces
[    2.740298] Registering PCC driver as Mailbox controller
[    2.744472] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    2.748299] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    2.752479] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    2.756308] PCI: Using configuration type 1 for base access
[    2.760309] PCI: Dell System detected, enabling pci=bfsort.
[    2.764502] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    2.768515] HugeTLB: allocation took 0ms with hugepage_allocation_threads=32
[    2.772340] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    2.776298] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    2.780297] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    2.784296] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    2.792956] ACPI: Added _OSI(Module Device)
[    2.796298] ACPI: Added _OSI(Processor Device)
[    2.800297] ACPI: Added _OSI(Processor Aggregator Device)
[    2.846356] ACPI: 6 ACPI AML tables successfully acquired and loaded
[    2.858281] ACPI: Interpreter enabled
[    2.860309] ACPI: PM: (supports S0 S5)
[    2.864297] ACPI: Using IOAPIC for interrupt routing
[    2.868915] HEST: Table parsing has been initialized.
[    2.872714] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    2.876299] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.880297] PCI: Ignoring E820 reservations for host bridge windows
[    2.889762] ACPI: Enabled 1 GPEs in block 00 to 1F
[    2.931716] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    2.932376] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    2.936376] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    2.940375] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    2.944374] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    2.948374] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    2.952375] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    2.956376] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    2.960799] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-3f])
[    2.964301] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.968463] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER DPC]
[    2.972615] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    2.976297] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.984960] PCI host bridge to bus 0000:00
[    2.988301] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    2.992297] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    2.996298] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000fffff window]
[    3.000297] pci_bus 0000:00: root bus resource [io  0x0d00-0x3fff window]
[    3.004297] pci_bus 0000:00: root bus resource [mem 0xe1000000-0xfebfffff window]
[    3.008297] pci_bus 0000:00: root bus resource [mem 0x63dc0000000-0x7fcffffffff window]
[    3.012297] pci_bus 0000:00: root bus resource [bus 00-3f]
[    3.016313] pci 0000:00:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.020450] pci 0000:00:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.024407] pci 0000:00:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.028390] pci 0000:00:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.032387] pci 0000:00:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.036391] pci 0000:00:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.040313] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.044300] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    3.048298] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    3.052366] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    3.057314] pci 0000:00:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.060392] pci 0000:00:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.064391] pci 0000:00:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.068391] pci 0000:00:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.072312] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.076302] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    3.080308] pci 0000:00:07.1: enabling Extended Tags
[    3.084345] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    3.088454] pci 0000:00:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.092391] pci 0000:00:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.096313] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.100301] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    3.104309] pci 0000:00:08.1: enabling Extended Tags
[    3.108346] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    3.112490] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
[    3.116413] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
[    3.120468] pci 0000:00:18.0: [1022:1650] type 00 class 0x060000 conventional PCI endpoint
[    3.124404] pci 0000:00:18.1: [1022:1651] type 00 class 0x060000 conventional PCI endpoint
[    3.128362] pci 0000:00:18.2: [1022:1652] type 00 class 0x060000 conventional PCI endpoint
[    3.132367] pci 0000:00:18.3: [1022:1653] type 00 class 0x060000 conventional PCI endpoint
[    3.136363] pci 0000:00:18.4: [1022:1654] type 00 class 0x060000 conventional PCI endpoint
[    3.140361] pci 0000:00:18.5: [1022:1655] type 00 class 0x060000 conventional PCI endpoint
[    3.144367] pci 0000:00:18.6: [1022:1656] type 00 class 0x060000 conventional PCI endpoint
[    3.148361] pci 0000:00:18.7: [1022:1657] type 00 class 0x060000 conventional PCI endpoint
[    3.152432] pci 0000:01:00.0: [1000:0097] type 00 class 0x010700 PCIe Endpoint
[    3.156327] pci 0000:01:00.0: BAR 0 [io  0x1000-0x10ff]
[    3.160299] pci 0000:01:00.0: BAR 1 [mem 0xf7400000-0xf740ffff 64bit]
[    3.164299] pci 0000:01:00.0: BAR 3 [mem 0xf7300000-0xf73fffff 64bit]
[    3.168299] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]
[    3.172302] pci 0000:01:00.0: enabling Extended Tags
[    3.176379] pci 0000:01:00.0: supports D1 D2
[    3.180338] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[    3.184297] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x000fffff 64bit]: contains BAR 0 for 16 VFs
[    3.188298] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x000fffff 64bit]
[    3.192297] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x00ffffff 64bit]: contains BAR 2 for 16 VFs
[    3.196449] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.200385] pci 0000:02:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.204330] pci 0000:02:00.0: enabling Extended Tags
[    3.208461] pci 0000:02:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.212324] pci 0000:02:00.2: BAR 2 [mem 0xf7200000-0xf727ffff]
[    3.216299] pci 0000:02:00.2: BAR 5 [mem 0xf7280000-0xf7281fff]
[    3.220302] pci 0000:02:00.2: enabling Extended Tags
[    3.224500] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.228435] pci 0000:03:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.232333] pci 0000:03:00.0: enabling Extended Tags
[    3.236514] pci 0000:03:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.240327] pci 0000:03:00.2: BAR 2 [mem 0xf7100000-0xf717ffff]
[    3.244299] pci 0000:03:00.2: BAR 5 [mem 0xf7180000-0xf7181fff]
[    3.248303] pci 0000:03:00.2: enabling Extended Tags
[    3.252491] pci 0000:03:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.256327] pci 0000:03:00.3: BAR 0 [mem 0xf7000000-0xf70fffff 64bit]
[    3.260305] pci 0000:03:00.3: enabling Extended Tags
[    3.264348] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
[    3.268480] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.277210] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 40-7f])
[    3.280300] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.284461] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.288615] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.292297] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.297241] PCI host bridge to bus 0000:40
[    3.300301] pci_bus 0000:40: root bus resource [io  0x4000-0x6fff window]
[    3.304297] pci_bus 0000:40: root bus resource [mem 0x90000000-0xaaffffff window]
[    3.308297] pci_bus 0000:40: root bus resource [mem 0x47e80000000-0x63dbfffffff window]
[    3.312297] pci_bus 0000:40: root bus resource [bus 40-7f]
[    3.316308] pci 0000:40:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.320396] pci 0000:40:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.324398] pci 0000:40:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.328381] pci 0000:40:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.332382] pci 0000:40:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.336391] pci 0000:40:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.340314] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.344302] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    3.348387] pci 0000:40:03.1: PME# supported from D0 D3hot D3cold
[    3.365168] pci 0000:40:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.368321] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.372303] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    3.380412] pci 0000:40:03.2: PME# supported from D0 D3hot D3cold
[    3.397888] pci 0000:40:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.404316] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.408303] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    3.416389] pci 0000:40:03.3: PME# supported from D0 D3hot D3cold
[    3.435710] pci 0000:40:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.440320] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.448305] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    3.452368] pci 0000:40:03.4: PME# supported from D0 D3hot D3cold
[    3.470779] pci 0000:40:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.472395] pci 0000:40:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.476402] pci 0000:40:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.480391] pci 0000:40:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.484317] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.488303] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    3.492310] pci 0000:40:07.1: enabling Extended Tags
[    3.496338] pci 0000:40:07.1: PME# supported from D0 D3hot D3cold
[    3.504455] pci 0000:40:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.512390] pci 0000:40:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.520314] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.524302] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    3.532309] pci 0000:40:08.1: enabling Extended Tags
[    3.536345] pci 0000:40:08.1: PME# supported from D0 D3hot D3cold
[    3.544558] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.548381] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.552378] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.556379] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.564387] pci 0000:45:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.572330] pci 0000:45:00.0: enabling Extended Tags
[    3.576457] pci 0000:45:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.584325] pci 0000:45:00.2: BAR 2 [mem 0xa5300000-0xa537ffff]
[    3.588299] pci 0000:45:00.2: BAR 5 [mem 0xa5380000-0xa5381fff]
[    3.596302] pci 0000:45:00.2: enabling Extended Tags
[    3.600494] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.604431] pci 0000:46:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.612332] pci 0000:46:00.0: enabling Extended Tags
[    3.616505] pci 0000:46:00.1: [1022:1486] type 00 class 0x108000 PCIe Endpoint
[    3.624326] pci 0000:46:00.1: BAR 2 [mem 0xa5100000-0xa51fffff]
[    3.632299] pci 0000:46:00.1: BAR 5 [mem 0xa5282000-0xa5283fff]
[    3.636302] pci 0000:46:00.1: enabling Extended Tags
[    3.640492] pci 0000:46:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.648327] pci 0000:46:00.2: BAR 2 [mem 0xa5200000-0xa527ffff]
[    3.656299] pci 0000:46:00.2: BAR 5 [mem 0xa5280000-0xa5281fff]
[    3.660302] pci 0000:46:00.2: enabling Extended Tags
[    3.664494] pci 0000:46:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.672325] pci 0000:46:00.3: BAR 0 [mem 0xa5000000-0xa50fffff 64bit]
[    3.680305] pci 0000:46:00.3: enabling Extended Tags
[    3.684347] pci 0000:46:00.3: PME# supported from D0 D3hot D3cold
[    3.692477] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.696961] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 80-bf])
[    3.704300] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.712475] acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.720619] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.728297] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.737214] PCI host bridge to bus 0000:80
[    3.740300] pci_bus 0000:80: root bus resource [io  0x7000-0x9fff window]
[    3.748297] pci_bus 0000:80: root bus resource [mem 0xab000000-0xc5ffffff window]
[    3.756297] pci_bus 0000:80: root bus resource [mem 0x2bf40000000-0x47e7fffffff window]
[    3.764297] pci_bus 0000:80: root bus resource [bus 80-bf]
[    3.768307] pci 0000:80:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.776397] pci 0000:80:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.784399] pci 0000:80:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.792392] pci 0000:80:01.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.800314] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.808304] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    3.812411] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    3.833696] pci 0000:80:01.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.840321] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.844305] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    3.852369] pci 0000:80:01.2: PME# supported from D0 D3hot D3cold
[    3.873173] pci 0000:80:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.876398] pci 0000:80:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.880418] pci 0000:80:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.884384] pci 0000:80:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.888442] pci 0000:80:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.892390] pci 0000:80:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.896312] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.900301] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    3.904308] pci 0000:80:07.1: enabling Extended Tags
[    3.908345] pci 0000:80:07.1: PME# supported from D0 D3hot D3cold
[    3.912454] pci 0000:80:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.916389] pci 0000:80:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.920313] pci 0000:80:08.1: PCI bridge to [bus 84]
[    3.924301] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    3.928308] pci 0000:80:08.1: enabling Extended Tags
[    3.932346] pci 0000:80:08.1: PME# supported from D0 D3hot D3cold
[    3.936466] pci 0000:80:08.2: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.940314] pci 0000:80:08.2: PCI bridge to [bus 85]
[    3.944301] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    3.948308] pci 0000:80:08.2: enabling Extended Tags
[    3.952346] pci 0000:80:08.2: PME# supported from D0 D3hot D3cold
[    3.956542] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.960381] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.964385] pci 0000:83:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.968330] pci 0000:83:00.0: enabling Extended Tags
[    3.972460] pci 0000:83:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.980324] pci 0000:83:00.2: BAR 2 [mem 0xbfa00000-0xbfa7ffff]
[    3.984299] pci 0000:83:00.2: BAR 5 [mem 0xbfa80000-0xbfa81fff]
[    3.988302] pci 0000:83:00.2: enabling Extended Tags
[    3.992497] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.996431] pci 0000:84:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.000334] pci 0000:84:00.0: enabling Extended Tags
[    4.004510] pci 0000:84:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.008326] pci 0000:84:00.2: BAR 2 [mem 0xbf900000-0xbf97ffff]
[    4.012300] pci 0000:84:00.2: BAR 5 [mem 0xbf980000-0xbf981fff]
[    4.016302] pci 0000:84:00.2: enabling Extended Tags
[    4.020511] pci 0000:80:08.1: PCI bridge to [bus 84]
[    4.024435] pci 0000:85:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[    4.028329] pci 0000:85:00.0: BAR 5 [mem 0xbf800000-0xbf8007ff]
[    4.032302] pci 0000:85:00.0: enabling Extended Tags
[    4.036361] pci 0000:85:00.0: PME# supported from D3hot D3cold
[    4.044453] pci 0000:80:08.2: PCI bridge to [bus 85]
[    4.049044] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus c0-ff])
[    4.052300] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    4.056463] acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug AER DPC]
[    4.060616] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    4.064298] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
[    4.069327] PCI host bridge to bus 0000:c0
[    4.072300] pci_bus 0000:c0: root bus resource [io  0xa000-0xffff window]
[    4.076297] pci_bus 0000:c0: root bus resource [mem 0xc6000000-0xe0ffffff window]
[    4.080297] pci_bus 0000:c0: root bus resource [mem 0x10000000000-0x2bf3fffffff window]
[    4.084297] pci_bus 0000:c0: root bus resource [io  0x03b0-0x03df window]
[    4.088297] pci_bus 0000:c0: root bus resource [mem 0x000a0000-0x000bffff window]
[    4.092298] pci_bus 0000:c0: root bus resource [bus c0-ff]
[    4.096310] pci 0000:c0:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    4.100399] pci 0000:c0:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    4.104398] pci 0000:c0:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.108381] pci 0000:c0:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.112384] pci 0000:c0:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.116389] pci 0000:c0:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.120315] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.124306] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    4.128411] pci 0000:c0:03.1: PME# supported from D0 D3hot D3cold
[    4.149880] pci 0000:c0:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.152320] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.156304] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    4.160417] pci 0000:c0:03.2: PME# supported from D0 D3hot D3cold
[    4.180900] pci 0000:c0:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.184315] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.188302] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    4.192388] pci 0000:c0:03.3: PME# supported from D0 D3hot D3cold
[    4.212054] pci 0000:c0:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.212319] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.216303] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    4.220406] pci 0000:c0:03.4: PME# supported from D0 D3hot D3cold
[    4.239497] pci 0000:c0:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.240389] pci 0000:c0:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.244418] pci 0000:c0:05.1: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.248312] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.252312] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    4.260402] pci 0000:c0:05.1: PME# supported from D0 D3hot D3cold
[    4.264456] pci 0000:c0:05.2: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.268312] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.272302] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    4.276302] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.280342] pci 0000:c0:05.2: PME# supported from D0 D3hot D3cold
[    4.284440] pci 0000:c0:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.292378] pci 0000:c0:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.296312] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.300302] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    4.304308] pci 0000:c0:07.1: enabling Extended Tags
[    4.308342] pci 0000:c0:07.1: PME# supported from D0 D3hot D3cold
[    4.312447] pci 0000:c0:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.316389] pci 0000:c0:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.320312] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.324301] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    4.328308] pci 0000:c0:08.1: enabling Extended Tags
[    4.332344] pci 0000:c0:08.1: PME# supported from D0 D3hot D3cold
[    4.336537] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.340381] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.344388] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.348383] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.352399] pci 0000:c1:00.0: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.356342] pci 0000:c1:00.0: BAR 0 [mem 0xc7030000-0xc703ffff 64bit pref]
[    4.360301] pci 0000:c1:00.0: BAR 2 [mem 0xc7040000-0xc704ffff 64bit pref]
[    4.364299] pci 0000:c1:00.0: BAR 4 [mem 0xc7050000-0xc705ffff 64bit pref]
[    4.368298] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.372386] pci 0000:c1:00.0: PME# supported from D0 D3hot D3cold
[    4.376353] pci 0000:c1:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:c0:05.1 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
[    4.381740] pci 0000:c1:00.1: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.384343] pci 0000:c1:00.1: BAR 0 [mem 0xc7000000-0xc700ffff 64bit pref]
[    4.388299] pci 0000:c1:00.1: BAR 2 [mem 0xc7010000-0xc701ffff 64bit pref]
[    4.392299] pci 0000:c1:00.1: BAR 4 [mem 0xc7020000-0xc702ffff 64bit pref]
[    4.396298] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.400385] pci 0000:c1:00.1: PME# supported from D0 D3hot D3cold
[    4.412326] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.416379] pci 0000:c2:00.0: [1556:be00] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    4.420323] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.424304] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    4.428307] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.440313] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.444332] pci_bus 0000:c3: extended config space not accessible
[    4.448326] pci 0000:c3:00.0: [102b:0536] type 00 class 0x030000 conventional PCI endpoint
[    4.452343] pci 0000:c3:00.0: BAR 0 [mem 0xc6000000-0xc6ffffff pref]
[    4.456298] pci 0000:c3:00.0: BAR 1 [mem 0xda808000-0xda80bfff]
[    4.460298] pci 0000:c3:00.0: BAR 2 [mem 0xda000000-0xda7fffff]
[    4.464316] pci 0000:c3:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    4.468423] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.472397] pci 0000:c8:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    4.476329] pci 0000:c8:00.0: enabling Extended Tags
[    4.480457] pci 0000:c8:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.484323] pci 0000:c8:00.2: BAR 2 [mem 0xdbb00000-0xdbb7ffff]
[    4.488299] pci 0000:c8:00.2: BAR 5 [mem 0xdbb80000-0xdbb81fff]
[    4.492301] pci 0000:c8:00.2: enabling Extended Tags
[    4.500392] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.504538] pci 0000:c9:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.508332] pci 0000:c9:00.0: enabling Extended Tags
[    4.512505] pci 0000:c9:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.516326] pci 0000:c9:00.2: BAR 2 [mem 0xdba00000-0xdba7ffff]
[    4.520299] pci 0000:c9:00.2: BAR 5 [mem 0xdba80000-0xdba81fff]
[    4.524302] pci 0000:c9:00.2: enabling Extended Tags
[    4.528500] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.539515] iommu: Default domain type: Translated
[    4.540297] iommu: DMA domain TLB invalidation policy: lazy mode
[    4.548599] SCSI subsystem initialized
[    4.552341] ACPI: bus type USB registered
[    4.556322] usbcore: registered new interface driver usbfs
[    4.560307] usbcore: registered new interface driver hub
[    4.564331] usbcore: registered new device driver usb
[    4.568328] pps_core: LinuxPPS API ver. 1 registered
[    4.572296] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux•it>
[    4.576304] PTP clock support registered
[    4.580379] EDAC MC: Ver: 3.0.0
[    4.584512] efivars: Registered efivars operations
[    4.588748] NetLabel: Initializing
[    4.592299] NetLabel:  domain hash size = 128
[    4.596297] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    4.600319] NetLabel:  unlabeled traffic allowed by default
[    4.604343] PCI: Using ACPI for IRQ routing
[    4.612614] pci 0000:c3:00.0: vgaarb: setting as boot VGA device
[    4.616295] pci 0000:c3:00.0: vgaarb: bridge control possible
[    4.616295] pci 0000:c3:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    4.616298] vgaarb: loaded
[    4.619009] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    4.620297] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    4.628509] clocksource: Switched to clocksource tsc-early
[    4.634115] VFS: Disk quotas dquot_6.6.0
[    4.638063] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.645190] AppArmor: AppArmor Filesystem Enabled
[    4.649912] pnp: PnP ACPI init
[    4.653216] system 00:00: [mem 0x80000000-0x8fffffff] has been reserved
[    4.659917] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[    4.668122] pnp: PnP ACPI: found 5 devices
[    4.679255] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    4.688223] NET: Registered PF_INET protocol family
[    4.693226] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.705006] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.713977] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    4.722008] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.731514] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.739889] TCP: Hash tables configured (established 524288 bind 65536)
[    4.746874] UDP hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.755290] UDP-Lite hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.764117] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    4.769786] NET: Registered PF_XDP protocol family
[    4.774581] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.784401] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.794220] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.804041] pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
[    4.809714] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: can't assign; no space
[    4.817451] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: failed to assign
[    4.824670] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: can't assign; no space
[    4.832930] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: failed to assign
[    4.840669] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: can't assign; no space
[    4.848926] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: failed to assign
[    4.856666] pci 0000:00:03.2: PCI bridge to [bus 01]
[    4.861633] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    4.867726] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    4.874513] pci 0000:00:07.1: PCI bridge to [bus 02]
[    4.879483] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    4.886273] pci 0000:00:08.1: PCI bridge to [bus 03]
[    4.891245] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    4.898032] PCI: No. 2 try to assign unassigned res
[    4.902921] pci 0000:00:03.2: resource 14 [mem 0xf7300000-0xf74fffff] released
[    4.910141] pci 0000:00:03.2: PCI bridge to [bus 01]
[    4.915113] pci 0000:00:03.2: bridge window [mem 0x00100000-0x002fffff] to [bus 01] add_size 1200000 add_align 100000
[    4.925721] pci 0000:00:03.2: bridge window [mem 0xe1000000-0xe23fffff]: assigned
[    4.933206] pci 0000:01:00.0: BAR 3 [mem 0xe1000000-0xe10fffff 64bit]: assigned
[    4.940517] pci 0000:01:00.0: ROM [mem 0xe1100000-0xe11fffff pref]: assigned
[    4.947564] pci 0000:01:00.0: VF BAR 2 [mem 0xe1200000-0xe21fffff 64bit]: assigned
[    4.955131] pci 0000:01:00.0: BAR 1 [mem 0xe2200000-0xe220ffff 64bit]: assigned
[    4.962442] pci 0000:01:00.0: VF BAR 0 [mem 0xe2210000-0xe230ffff 64bit]: assigned
[    4.970013] pci 0000:00:03.2: PCI bridge to [bus 01]
[    4.975012] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    4.981112] pci 0000:00:03.2:   bridge window [mem 0xe1000000-0xe23fffff]
[    4.987912] pci 0000:00:07.1: PCI bridge to [bus 02]
[    4.992881] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    4.999678] pci 0000:00:08.1: PCI bridge to [bus 03]
[    5.004648] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.011437] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    5.017623] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    5.023809] pci_bus 0000:00: resource 6 [mem 0x000c0000-0x000fffff window]
[    5.030679] pci_bus 0000:00: resource 7 [io  0x0d00-0x3fff window]
[    5.036858] pci_bus 0000:00: resource 8 [mem 0xe1000000-0xfebfffff window]
[    5.043733] pci_bus 0000:00: resource 9 [mem 0x63dc0000000-0x7fcffffffff window]
[    5.051132] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[    5.056705] pci_bus 0000:01: resource 1 [mem 0xe1000000-0xe23fffff]
[    5.062969] pci_bus 0000:02: resource 1 [mem 0xf7200000-0xf72fffff]
[    5.069236] pci_bus 0000:03: resource 1 [mem 0xf7000000-0xf71fffff]
[    5.075618] pci 0000:40:03.1: bridge window [io  0x1000-0x0fff] to [bus 41] add_size 1000
[    5.083806] pci 0000:40:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 41] add_size 200000 add_align 100000
[    5.095277] pci 0000:40:03.2: bridge window [io  0x1000-0x0fff] to [bus 42] add_size 1000
[    5.103448] pci 0000:40:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 42] add_size 200000 add_align 100000
[    5.114912] pci 0000:40:03.3: bridge window [io  0x1000-0x0fff] to [bus 43] add_size 1000
[    5.123083] pci 0000:40:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 43] add_size 200000 add_align 100000
[    5.134550] pci 0000:40:03.4: bridge window [io  0x1000-0x0fff] to [bus 44] add_size 1000
[    5.142721] pci 0000:40:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 44] add_size 200000 add_align 100000
[    5.154194] pci 0000:40:03.1: bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]: assigned
[    5.163147] pci 0000:40:03.2: bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]: assigned
[    5.172100] pci 0000:40:03.3: bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]: assigned
[    5.181050] pci 0000:40:03.4: bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]: assigned
[    5.190048] pci 0000:40:03.1: bridge window [io  0x4000-0x4fff]: assigned
[    5.196833] pci 0000:40:03.2: bridge window [io  0x5000-0x5fff]: assigned
[    5.203618] pci 0000:40:03.3: bridge window [io  0x6000-0x6fff]: assigned
[    5.210402] pci 0000:40:03.4: bridge window [io  size 0x1000]: can't assign; no space
[    5.218228] pci 0000:40:03.4: bridge window [io  size 0x1000]: failed to assign
[    5.225535] pci 0000:40:03.4: bridge window [io  0x4000-0x4fff]: assigned
[    5.232320] pci 0000:40:03.3: bridge window [io  0x5000-0x5fff]: assigned
[    5.239106] pci 0000:40:03.2: bridge window [io  0x6000-0x6fff]: assigned
[    5.245890] pci 0000:40:03.1: bridge window [io  size 0x1000]: can't assign; no space
[    5.253715] pci 0000:40:03.1: bridge window [io  size 0x1000]: failed to assign
[    5.261021] pci 0000:40:03.1: PCI bridge to [bus 41]
[    5.265989] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    5.272775] pci 0000:40:03.1:   bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.281033] pci 0000:40:03.2: PCI bridge to [bus 42]
[    5.285997] pci 0000:40:03.2:   bridge window [io  0x6000-0x6fff]
[    5.292090] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    5.298875] pci 0000:40:03.2:   bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.307136] pci 0000:40:03.3: PCI bridge to [bus 43]
[    5.312098] pci 0000:40:03.3:   bridge window [io  0x5000-0x5fff]
[    5.318193] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    5.324978] pci 0000:40:03.3:   bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.333239] pci 0000:40:03.4: PCI bridge to [bus 44]
[    5.338209] pci 0000:40:03.4:   bridge window [io  0x4000-0x4fff]
[    5.344308] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    5.351097] pci 0000:40:03.4:   bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.359358] pci 0000:40:07.1: PCI bridge to [bus 45]
[    5.364323] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    5.371110] pci 0000:40:08.1: PCI bridge to [bus 46]
[    5.376082] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    5.382869] pci_bus 0000:40: Some PCI device resources are unassigned, try booting with pci=realloc
[    5.391906] pci_bus 0000:40: resource 4 [io  0x4000-0x6fff window]
[    5.398101] pci_bus 0000:40: resource 5 [mem 0x90000000-0xaaffffff window]
[    5.404972] pci_bus 0000:40: resource 6 [mem 0x47e80000000-0x63dbfffffff window]
[    5.412365] pci_bus 0000:41: resource 1 [mem 0xa4c00000-0xa4ffffff]
[    5.418629] pci_bus 0000:41: resource 2 [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.426369] pci_bus 0000:42: resource 0 [io  0x6000-0x6fff]
[    5.431941] pci_bus 0000:42: resource 1 [mem 0xa4800000-0xa4bfffff]
[    5.438206] pci_bus 0000:42: resource 2 [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.445946] pci_bus 0000:43: resource 0 [io  0x5000-0x5fff]
[    5.451518] pci_bus 0000:43: resource 1 [mem 0xa4400000-0xa47fffff]
[    5.457782] pci_bus 0000:43: resource 2 [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.465521] pci_bus 0000:44: resource 0 [io  0x4000-0x4fff]
[    5.471092] pci_bus 0000:44: resource 1 [mem 0xa4000000-0xa43fffff]
[    5.477360] pci_bus 0000:44: resource 2 [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.485098] pci_bus 0000:45: resource 1 [mem 0xa5300000-0xa53fffff]
[    5.491365] pci_bus 0000:46: resource 1 [mem 0xa5000000-0xa52fffff]
[    5.497715] pci 0000:80:01.1: bridge window [io  0x1000-0x0fff] to [bus 81] add_size 1000
[    5.505889] pci 0000:80:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 81] add_size 200000 add_align 100000
[    5.517354] pci 0000:80:01.2: bridge window [io  0x1000-0x0fff] to [bus 82] add_size 1000
[    5.525526] pci 0000:80:01.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 82] add_size 200000 add_align 100000
[    5.536996] pci 0000:80:01.1: bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]: assigned
[    5.545953] pci 0000:80:01.2: bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]: assigned
[    5.554903] pci 0000:80:01.1: bridge window [io  0x7000-0x7fff]: assigned
[    5.561689] pci 0000:80:01.2: bridge window [io  0x8000-0x8fff]: assigned
[    5.568475] pci 0000:80:01.1: PCI bridge to [bus 81]
[    5.573440] pci 0000:80:01.1:   bridge window [io  0x7000-0x7fff]
[    5.579534] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    5.586319] pci 0000:80:01.1:   bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.594578] pci 0000:80:01.2: PCI bridge to [bus 82]
[    5.599549] pci 0000:80:01.2:   bridge window [io  0x8000-0x8fff]
[    5.605644] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    5.612430] pci 0000:80:01.2:   bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.620691] pci 0000:80:07.1: PCI bridge to [bus 83]
[    5.625662] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    5.632451] pci 0000:80:08.1: PCI bridge to [bus 84]
[    5.637423] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    5.644210] pci 0000:80:08.2: PCI bridge to [bus 85]
[    5.649173] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    5.655960] pci_bus 0000:80: resource 4 [io  0x7000-0x9fff window]
[    5.662136] pci_bus 0000:80: resource 5 [mem 0xab000000-0xc5ffffff window]
[    5.669008] pci_bus 0000:80: resource 6 [mem 0x2bf40000000-0x47e7fffffff window]
[    5.676400] pci_bus 0000:81: resource 0 [io  0x7000-0x7fff]
[    5.681974] pci_bus 0000:81: resource 1 [mem 0xbf400000-0xbf7fffff]
[    5.688238] pci_bus 0000:81: resource 2 [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.695978] pci_bus 0000:82: resource 0 [io  0x8000-0x8fff]
[    5.701594] pci_bus 0000:82: resource 1 [mem 0xbf000000-0xbf3fffff]
[    5.707857] pci_bus 0000:82: resource 2 [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.715597] pci_bus 0000:83: resource 1 [mem 0xbfa00000-0xbfafffff]
[    5.721861] pci_bus 0000:84: resource 1 [mem 0xbf900000-0xbf9fffff]
[    5.728128] pci_bus 0000:85: resource 1 [mem 0xbf800000-0xbf8fffff]
[    5.734448] pci 0000:c0:03.1: bridge window [io  0x1000-0x0fff] to [bus c4] add_size 1000
[    5.742617] pci 0000:c0:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c4] add_size 200000 add_align 100000
[    5.754084] pci 0000:c0:03.2: bridge window [io  0x1000-0x0fff] to [bus c5] add_size 1000
[    5.762255] pci 0000:c0:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c5] add_size 200000 add_align 100000
[    5.773721] pci 0000:c0:03.3: bridge window [io  0x1000-0x0fff] to [bus c6] add_size 1000
[    5.781893] pci 0000:c0:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c6] add_size 200000 add_align 100000
[    5.793357] pci 0000:c0:03.4: bridge window [io  0x1000-0x0fff] to [bus c7] add_size 1000
[    5.801554] pci 0000:c0:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c7] add_size 200000 add_align 100000
[    5.813022] pci 0000:c0:05.1: bridge window [mem 0x00100000-0x000fffff] to [bus c1] add_size 100000 add_align 100000
[    5.823541] pci 0000:c0:03.1: bridge window [mem 0x10000000000-0x100001fffff 64bit pref]: assigned
[    5.832495] pci 0000:c0:03.2: bridge window [mem 0x10000200000-0x100003fffff 64bit pref]: assigned
[    5.841443] pci 0000:c0:03.3: bridge window [mem 0x10000400000-0x100005fffff 64bit pref]: assigned
[    5.850398] pci 0000:c0:03.4: bridge window [mem 0x10000600000-0x100007fffff 64bit pref]: assigned
[    5.859355] pci 0000:c0:05.1: bridge window [mem 0xc7100000-0xc71fffff]: assigned
[    5.866837] pci 0000:c0:03.1: bridge window [io  0xa000-0xafff]: assigned
[    5.873620] pci 0000:c0:03.2: bridge window [io  0xb000-0xbfff]: assigned
[    5.880409] pci 0000:c0:03.3: bridge window [io  0xc000-0xcfff]: assigned
[    5.887194] pci 0000:c0:03.4: bridge window [io  0xd000-0xdfff]: assigned
[    5.893979] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    5.898944] pci 0000:c0:03.1:   bridge window [io  0xa000-0xafff]
[    5.905072] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    5.911859] pci 0000:c0:03.1:   bridge window [mem 0x10000000000-0x100001fffff 64bit pref]
[    5.920119] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    5.925092] pci 0000:c0:03.2:   bridge window [io  0xb000-0xbfff]
[    5.931183] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    5.937970] pci 0000:c0:03.2:   bridge window [mem 0x10000200000-0x100003fffff 64bit pref]
[    5.946231] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    5.951201] pci 0000:c0:03.3:   bridge window [io  0xc000-0xcfff]
[    5.957293] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    5.964077] pci 0000:c0:03.3:   bridge window [mem 0x10000400000-0x100005fffff 64bit pref]
[    5.972340] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    5.977302] pci 0000:c0:03.4:   bridge window [io  0xd000-0xdfff]
[    5.983397] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    5.990179] pci 0000:c0:03.4:   bridge window [mem 0x10000600000-0x100007fffff 64bit pref]
[    5.998444] pci 0000:c1:00.0: ROM [mem 0xc7100000-0xc713ffff pref]: assigned
[    6.005538] pci 0000:c1:00.1: ROM [mem 0xc7140000-0xc717ffff pref]: assigned
[    6.012581] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    6.017550] pci 0000:c0:05.1:   bridge window [mem 0xc7100000-0xc71fffff]
[    6.024334] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.032076] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    6.037048] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    6.043833] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.051574] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    6.056807] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    6.063590] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.071334] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    6.076305] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    6.083092] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    6.088065] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    6.094851] pci_bus 0000:c0: resource 4 [io  0xa000-0xffff window]
[    6.101025] pci_bus 0000:c0: resource 5 [mem 0xc6000000-0xe0ffffff window]
[    6.107949] pci_bus 0000:c0: resource 6 [mem 0x10000000000-0x2bf3fffffff window]
[    6.115341] pci_bus 0000:c0: resource 7 [io  0x03b0-0x03df window]
[    6.121520] pci_bus 0000:c0: resource 8 [mem 0x000a0000-0x000bffff window]
[    6.128397] pci_bus 0000:c4: resource 0 [io  0xa000-0xafff]
[    6.133966] pci_bus 0000:c4: resource 1 [mem 0xdb600000-0xdb9fffff]
[    6.140231] pci_bus 0000:c4: resource 2 [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.147971] pci_bus 0000:c5: resource 0 [io  0xb000-0xbfff]
[    6.153542] pci_bus 0000:c5: resource 1 [mem 0xdb200000-0xdb5fffff]
[    6.159808] pci_bus 0000:c5: resource 2 [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.167545] pci_bus 0000:c6: resource 0 [io  0xc000-0xcfff]
[    6.173119] pci_bus 0000:c6: resource 1 [mem 0xdae00000-0xdb1fffff]
[    6.179384] pci_bus 0000:c6: resource 2 [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.187123] pci_bus 0000:c7: resource 0 [io  0xd000-0xdfff]
[    6.192697] pci_bus 0000:c7: resource 1 [mem 0xdaa00000-0xdadfffff]
[    6.198962] pci_bus 0000:c7: resource 2 [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.206700] pci_bus 0000:c1: resource 1 [mem 0xc7100000-0xc71fffff]
[    6.212973] pci_bus 0000:c1: resource 2 [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.220194] pci_bus 0000:c2: resource 1 [mem 0xda000000-0xda8fffff]
[    6.226459] pci_bus 0000:c2: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.233678] pci_bus 0000:c3: resource 1 [mem 0xda000000-0xda8fffff]
[    6.239941] pci_bus 0000:c3: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.247159] pci_bus 0000:c8: resource 1 [mem 0xdbb00000-0xdbbfffff]
[    6.253429] pci_bus 0000:c9: resource 1 [mem 0xdba00000-0xdbafffff]
[    6.260394] PCI: CLS 64 bytes, default 64
[    6.264494] Trying to unpack rootfs image as initramfs...
[    6.325245] AMD-Vi: IOMMU SNP support enabled.
[    6.329919] pci 0000:c0:00.2: AMD-Vi: IOMMU performance counters supported
[    6.336968] pci 0000:c0:01.0: Adding to iommu group 0
[    6.342073] pci 0000:c0:02.0: Adding to iommu group 1
[    6.347274] pci 0000:c0:03.0: Adding to iommu group 2
[    6.352371] pci 0000:c0:03.1: Adding to iommu group 2
[    6.357475] pci 0000:c0:03.2: Adding to iommu group 2
[    6.362571] pci 0000:c0:03.3: Adding to iommu group 2
[    6.367668] pci 0000:c0:03.4: Adding to iommu group 2
[    6.372780] pci 0000:c0:04.0: Adding to iommu group 3
[    6.377934] pci 0000:c0:05.0: Adding to iommu group 4
[    6.383031] pci 0000:c0:05.1: Adding to iommu group 4
[    6.388129] pci 0000:c0:05.2: Adding to iommu group 4
[    6.393240] pci 0000:c0:07.0: Adding to iommu group 5
[    6.398331] pci 0000:c0:07.1: Adding to iommu group 6
[    6.403463] pci 0000:c0:08.0: Adding to iommu group 7
[    6.408552] pci 0000:c0:08.1: Adding to iommu group 8
[    6.413611] pci 0000:c1:00.0: Adding to iommu group 4
[    6.418668] pci 0000:c1:00.1: Adding to iommu group 4
[    6.423731] pci 0000:c2:00.0: Adding to iommu group 4
[    6.428802] pci 0000:c3:00.0: Adding to iommu group 4
[    6.433922] pci 0000:c8:00.0: Adding to iommu group 9
[    6.439011] pci 0000:c8:00.2: Adding to iommu group 10
[    6.444183] pci 0000:c9:00.0: Adding to iommu group 11
[    6.449360] pci 0000:c9:00.2: Adding to iommu group 12
[    6.460740] pci 0000:80:00.2: AMD-Vi: IOMMU performance counters supported
[    6.467794] pci 0000:80:01.0: Adding to iommu group 13
[    6.472983] pci 0000:80:01.1: Adding to iommu group 13
[    6.478165] pci 0000:80:01.2: Adding to iommu group 13
[    6.483355] pci 0000:80:02.0: Adding to iommu group 14
[    6.488550] pci 0000:80:03.0: Adding to iommu group 15
[    6.493746] pci 0000:80:04.0: Adding to iommu group 16
[    6.498938] pci 0000:80:05.0: Adding to iommu group 17
[    6.504131] pci 0000:80:07.0: Adding to iommu group 18
[    6.509312] pci 0000:80:07.1: Adding to iommu group 19
[    6.514505] pci 0000:80:08.0: Adding to iommu group 20
[    6.519683] pci 0000:80:08.1: Adding to iommu group 21
[    6.524857] pci 0000:80:08.2: Adding to iommu group 22
[    6.530030] pci 0000:83:00.0: Adding to iommu group 23
[    6.535219] pci 0000:83:00.2: Adding to iommu group 24
[    6.540396] pci 0000:84:00.0: Adding to iommu group 25
[    6.545567] pci 0000:84:00.2: Adding to iommu group 26
[    6.550740] pci 0000:85:00.0: Adding to iommu group 27
[    6.562949] pci 0000:40:00.2: AMD-Vi: IOMMU performance counters supported
[    6.569958] pci 0000:40:01.0: Adding to iommu group 28
[    6.575160] pci 0000:40:02.0: Adding to iommu group 29
[    6.580454] pci 0000:40:03.0: Adding to iommu group 30
[    6.585634] pci 0000:40:03.1: Adding to iommu group 30
[    6.590808] pci 0000:40:03.2: Adding to iommu group 30
[    6.595987] pci 0000:40:03.3: Adding to iommu group 30
[    6.601163] pci 0000:40:03.4: Adding to iommu group 30
[    6.606356] pci 0000:40:04.0: Adding to iommu group 31
[    6.611555] pci 0000:40:05.0: Adding to iommu group 32
[    6.616757] pci 0000:40:07.0: Adding to iommu group 33
[    6.621932] pci 0000:40:07.1: Adding to iommu group 34
[    6.627128] pci 0000:40:08.0: Adding to iommu group 35
[    6.632311] pci 0000:40:08.1: Adding to iommu group 36
[    6.637496] pci 0000:45:00.0: Adding to iommu group 37
[    6.642670] pci 0000:45:00.2: Adding to iommu group 38
[    6.647843] pci 0000:46:00.0: Adding to iommu group 39
[    6.653018] pci 0000:46:00.1: Adding to iommu group 40
[    6.658189] pci 0000:46:00.2: Adding to iommu group 41
[    6.663365] pci 0000:46:00.3: Adding to iommu group 42
[    6.675871] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    6.682912] pci 0000:00:00.0: Adding to iommu group 43
[    6.688114] pci 0000:00:01.0: Adding to iommu group 44
[    6.693312] pci 0000:00:02.0: Adding to iommu group 45
[    6.698511] pci 0000:00:03.0: Adding to iommu group 46
[    6.700812] Freeing initrd memory: 38564K
[    6.703692] pci 0000:00:03.2: Adding to iommu group 47
[    6.712861] pci 0000:00:04.0: Adding to iommu group 48
[    6.718060] pci 0000:00:05.0: Adding to iommu group 49
[    6.723260] pci 0000:00:07.0: Adding to iommu group 50
[    6.728440] pci 0000:00:07.1: Adding to iommu group 51
[    6.733635] pci 0000:00:08.0: Adding to iommu group 52
[    6.738812] pci 0000:00:08.1: Adding to iommu group 53
[    6.744026] pci 0000:00:14.0: Adding to iommu group 54
[    6.749205] pci 0000:00:14.3: Adding to iommu group 54
[    6.754597] pci 0000:00:18.0: Adding to iommu group 55
[    6.759772] pci 0000:00:18.1: Adding to iommu group 55
[    6.764947] pci 0000:00:18.2: Adding to iommu group 55
[    6.770118] pci 0000:00:18.3: Adding to iommu group 55
[    6.775295] pci 0000:00:18.4: Adding to iommu group 55
[    6.780469] pci 0000:00:18.5: Adding to iommu group 55
[    6.785638] pci 0000:00:18.6: Adding to iommu group 55
[    6.790817] pci 0000:00:18.7: Adding to iommu group 55
[    6.795990] pci 0000:01:00.0: Adding to iommu group 56
[    6.801164] pci 0000:02:00.0: Adding to iommu group 57
[    6.806337] pci 0000:02:00.2: Adding to iommu group 58
[    6.811513] pci 0000:03:00.0: Adding to iommu group 59
[    6.816685] pci 0000:03:00.2: Adding to iommu group 60
[    6.821859] pci 0000:03:00.3: Adding to iommu group 61
[    6.835987] AMD-Vi: Extended features (0x841f77e022094ace, 0x0): PPR X2APIC NX IA GA PC SNP
[    6.844348] AMD-Vi: Interrupt remapping enabled
[    6.848879] AMD-Vi: X2APIC enabled
[    6.853341] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    6.859785] software IO TLB: mapped [mem 0x000000005bf37000-0x0000000063f37000] (128MB)
[    6.867935] LVT offset 0 assigned for vector 0x400
[    6.874348] perf: AMD IBS detected (0x000003ff)
[    6.880278] amd_uncore: 4 amd_df counters detected
[    6.885112] amd_uncore: 6 amd_l3 counters detected
[    6.891544] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    6.898703] perf/amd_iommu: Detected AMD IOMMU #1 (2 banks, 4 counters/bank).
[    6.905869] perf/amd_iommu: Detected AMD IOMMU #2 (2 banks, 4 counters/bank).
[    6.913027] perf/amd_iommu: Detected AMD IOMMU #3 (2 banks, 4 counters/bank).
[    6.923454] Initialise system trusted keyrings
[    6.927912] Key type blacklist registered
[    6.932056] workingset: timestamp_bits=36 max_order=26 bucket_order=0
[    6.939026] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    6.945049] fuse: init (API version 7.44)
[    6.949319] integrity: Platform Keyring initialized
[    6.966431] Key type asymmetric registered
[    6.970531] Asymmetric key parser 'x509' registered
[    6.975450] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    6.982949] io scheduler mq-deadline registered
[    6.990113] ledtrig-cpu: registered to indicate activity on CPUs
[    6.996426] pcieport 0000:00:03.2: PME: Signaling with IRQ 38
[    7.002563] pcieport 0000:00:07.1: PME: Signaling with IRQ 40
[    7.008536] pcieport 0000:00:08.1: PME: Signaling with IRQ 41
[    7.014507] pcieport 0000:40:03.1: PME: Signaling with IRQ 42
[    7.020310] pcieport 0000:40:03.1: pciehp: Slot #167 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.034329] pcieport 0000:40:03.2: PME: Signaling with IRQ 43
[    7.040125] pcieport 0000:40:03.2: pciehp: Slot #166 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.054149] pcieport 0000:40:03.3: PME: Signaling with IRQ 44
[    7.059955] pcieport 0000:40:03.3: pciehp: Slot #169 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.073961] pcieport 0000:40:03.4: PME: Signaling with IRQ 45
[    7.079754] pcieport 0000:40:03.4: pciehp: Slot #168 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.093843] pcieport 0000:40:07.1: PME: Signaling with IRQ 47
[    7.099815] pcieport 0000:40:08.1: PME: Signaling with IRQ 48
[    7.105950] pcieport 0000:80:01.1: PME: Signaling with IRQ 49
[    7.111768] pcieport 0000:80:01.1: pciehp: Slot #160 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.125769] pcieport 0000:80:01.2: PME: Signaling with IRQ 50
[    7.131574] pcieport 0000:80:01.2: pciehp: Slot #161 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.145704] pcieport 0000:80:07.1: PME: Signaling with IRQ 52
[    7.151781] pcieport 0000:80:08.1: PME: Signaling with IRQ 54
[    7.157821] pcieport 0000:80:08.2: PME: Signaling with IRQ 55
[    7.163782] pcieport 0000:c0:03.1: PME: Signaling with IRQ 56
[    7.169590] pcieport 0000:c0:03.1: pciehp: Slot #163 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.183580] pcieport 0000:c0:03.2: PME: Signaling with IRQ 57
[    7.189388] pcieport 0000:c0:03.2: pciehp: Slot #162 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.203370] pcieport 0000:c0:03.3: PME: Signaling with IRQ 58
[    7.209169] pcieport 0000:c0:03.3: pciehp: Slot #165 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.223178] pcieport 0000:c0:03.4: PME: Signaling with IRQ 59
[    7.228981] pcieport 0000:c0:03.4: pciehp: Slot #164 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.242980] pcieport 0000:c0:05.1: PME: Signaling with IRQ 60
[    7.248932] pcieport 0000:c0:05.2: PME: Signaling with IRQ 61
[    7.255000] pcieport 0000:c0:07.1: PME: Signaling with IRQ 63
[    7.261046] pcieport 0000:c0:08.1: PME: Signaling with IRQ 65
[    7.267824] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    7.275299] ACPI: button: Power Button [PWRF]
[    7.724976] Estimated ratio of average max frequency by base frequency (times 1024): 1464
[    7.733488] ERST: Error Record Serialization Table (ERST) support is initialized.
[    7.740988] pstore: Using crash dump compression: deflate
[    7.746391] pstore: Registered erst as persistent store backend
[    7.752448] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    7.759011] 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    7.767213] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    7.778327] Linux agpgart interface v0.103
[    7.808089] loop: module loaded
[    7.822605] ahci 0000:85:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[    7.830620] ahci 0000:85:00.0: 8/8 ports implemented (port mask 0xff)
[    7.837072] ahci 0000:85:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part sxs 
[    7.847377] scsi host0: ahci
[    7.850510] scsi host1: ahci
[    7.853615] scsi host2: ahci
[    7.856715] scsi host3: ahci
[    7.859809] scsi host4: ahci
[    7.862922] scsi host5: ahci
[    7.866015] scsi host6: ahci
[    7.869120] scsi host7: ahci
[    7.872071] ata1: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800100 irq 67 lpm-pol 0 ext
[    7.880683] ata2: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800180 irq 68 lpm-pol 0 ext
[    7.889294] ata3: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800200 irq 69 lpm-pol 0 ext
[    7.897899] ata4: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800280 irq 70 lpm-pol 0 ext
[    7.906507] ata5: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800300 irq 71 lpm-pol 0 ext
[    7.915119] ata6: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800380 irq 72 lpm-pol 0 ext
[    7.923725] ata7: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800400 irq 73 lpm-pol 0 ext
[    7.932314] tsc: Refined TSC clocksource calibration: 1996.250 MHz
[    7.932331] ata8: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800480 irq 74 lpm-pol 0 ext
[    7.938562] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398caf77d7a, max_idle_ns: 881590459467 ns
[    7.947503] tun: Universal TUN/TAP device driver, 1.6
[    7.962270] clocksource: Switched to clocksource tsc
[    7.962302] PPP generic driver version 2.4.2
[    7.971686] VFIO - User Level meta-driver version: 0.3
[    7.977210] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    7.982455] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 1
[    7.989953] xhci_hcd 0000:03:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    7.999503] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.004728] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 2
[    8.012118] xhci_hcd 0000:03:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.019211] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.027479] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.034703] usb usb1: Product: xHCI Host Controller
[    8.039585] usb usb1: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.048533] usb usb1: SerialNumber: 0000:03:00.3
[    8.053327] hub 1-0:1.0: USB hub found
[    8.057090] hub 1-0:1.0: 2 ports detected
[    8.061956] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.070077] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.078340] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.085563] usb usb2: Product: xHCI Host Controller
[    8.090448] usb usb2: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.099402] usb usb2: SerialNumber: 0000:03:00.3
[    8.104168] hub 2-0:1.0: USB hub found
[    8.107927] hub 2-0:1.0: 2 ports detected
[    8.112865] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.118097] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 3
[    8.125595] xhci_hcd 0000:46:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.135105] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.140337] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 4
[    8.147795] xhci_hcd 0000:46:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.154877] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.163144] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.170373] usb usb3: Product: xHCI Host Controller
[    8.175258] usb usb3: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.184212] usb usb3: SerialNumber: 0000:46:00.3
[    8.189016] hub 3-0:1.0: USB hub found
[    8.192783] hub 3-0:1.0: 2 ports detected
[    8.197606] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.205725] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.213987] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.221216] usb usb4: Product: xHCI Host Controller
[    8.226096] usb usb4: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.235051] usb usb4: SerialNumber: 0000:46:00.3
[    8.239813] hub 4-0:1.0: USB hub found
[    8.243581] hub 4-0:1.0: 2 ports detected
[    8.248682] usbcore: registered new interface driver uas
[    8.254028] usbcore: registered new interface driver usb-storage
[    8.260061] i8042: PNP: No PS/2 controller found.
[    8.262610] ata8: SATA link down (SStatus 0 SControl 300)
[    8.264844] mousedev: PS/2 mouse device common for all mice
[    8.270196] ata4: SATA link down (SStatus 0 SControl 300)
[    8.275851] rtc_cmos 00:02: RTC can wake from S4
[    8.281166] ata3: SATA link down (SStatus 0 SControl 300)
[    8.286134] rtc_cmos 00:02: registered as rtc0
[    8.291185] ata6: SATA link down (SStatus 0 SControl 300)
[    8.295676] rtc_cmos 00:02: setting system clock to 2025-06-17T14:38:26 UTC (1750171106)
[    8.301029] ata1: SATA link down (SStatus 0 SControl 300)
[    8.308255] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[    8.309130] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram
[    8.314515] ata7: SATA link down (SStatus 0 SControl 300)
[    8.321025] i2c_dev: i2c /dev entries driver
[    8.327743] ata5: SATA link down (SStatus 0 SControl 300)
[    8.333135] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    8.337411] ata2: SATA link down (SStatus 0 SControl 300)
[    8.342813] device-mapper: uevent: version 1.0.3
[    8.365120] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists•linux.dev
[    8.373992] amd_pstate: driver load is disabled, boot with specific mode to enable this
[    8.382040] efifb: probing for efifb
[    8.385632] efifb: No BGRT, not showing boot graphics
[    8.390685] efifb: framebuffer at 0xc6000000, using 3072k, total 3072k
[    8.397212] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    8.403217] efifb: scrolling: redraw
[    8.406797] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    8.412420] fbcon: Deferring console take-over
[    8.416869] fb0: EFI VGA frame buffer device
[    8.421242] drop_monitor: Initializing network drop monitor service
[    8.427686] NET: Registered PF_INET6 protocol family
[    8.440936] Segment Routing with IPv6
[    8.444613] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[    8.444615] In-situ OAM (IOAM) with IPv6
[    8.453935] usb 1-1: New USB device found, idVendor=0424, idProduct=2744, bcdDevice= 1.21
[    8.455135] NET: Registered PF_PACKET protocol family
[    8.463311] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    8.468428] Key type dns_resolver registered
[    8.475475] usb 1-1: Product: USB2734
[    8.483408] usb 1-1: Manufacturer: Microchip Tech
[    8.491097] x86/amd: Previous system reset reason [0x00080800]: software wrote 0x6 to reset control register 0xCF9
[    8.501456] microcode: Current revision: 0x0a0011d5
[    8.506331] microcode: Updated early from: 0x0a0011d5
[    8.514840] resctrl: L3 allocation detected
[    8.519031] resctrl: MB allocation detected
[    8.523213] resctrl: L3 monitoring detected
[    8.527566] IPI shorthand broadcast: enabled
[    8.531638] hub 1-1:1.0: USB hub found
[    8.535537] sched_clock: Marking stable (8468001141, 64232685)->(9547327096, -1015093270)
[    8.535813] hub 1-1:1.0: 4 ports detected
[    8.548337] registered taskstats version 1
[    8.554879] Loading compiled-in X.509 certificates
[    8.560190] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.574864] Demotion targets for Node 0: null
[    8.579228] Demotion targets for Node 1: null
[    8.581288] usb 3-1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    8.584199] Key type .fscrypt registered
[    8.591763] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.595314] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
[    8.595697] Key type fscrypt-provisioning registered
[    8.612641] usb 2-1: New USB device found, idVendor=0424, idProduct=5744, bcdDevice= 1.21
[    8.622492] usb 2-1: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[    8.629631] usb 2-1: Product: USB5734
[    8.630544] Key type encrypted registered
[    8.633296] usb 2-1: Manufacturer: Microchip Tech
[    8.642017] AppArmor: AppArmor sha256 policy hashing enabled
[    8.647800] integrity: Loading X.509 certificate: UEFI:db
[    8.653227] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    8.659549] hub 2-1:1.0: USB hub found
[    8.663999] integrity: Loading X.509 certificate: UEFI:db
[    8.664016] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    8.667254] hub 3-1:1.0: USB hub found
[    8.667410] hub 3-1:1.0: 4 ports detected
[    8.667787] hub 2-1:1.0: 4 ports detected
[    8.673152] integrity: Loading X.509 certificate: UEFI:db
[    8.673265] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    8.710228] integrity: Loading X.509 certificate: UEFI:db
[    8.715760] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    8.727346] ima: No TPM chip found, activating TPM-bypass!
[    8.732833] Loading compiled-in module X.509 certificates
[    8.738655] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.748561] ima: Allocated hash algorithm: sha1
[    8.753096] ima: No architecture policies found
[    8.757649] evm: Initialising EVM extended attributes:
[    8.762825] evm: security.selinux
[    8.766144] evm: security.SMACK64
[    8.769462] evm: security.SMACK64EXEC
[    8.773126] evm: security.SMACK64TRANSMUTE
[    8.777225] evm: security.SMACK64MMAP
[    8.780895] evm: security.apparmor
[    8.784300] evm: security.ima
[    8.787267] evm: security.capability
[    8.790851] evm: HMAC attrs: 0x1
[    8.794499] PM:   Magic number: 13:343:637
[    8.798721] pci_bus 0000:42: hash matches
[    8.803266] RAS: Correctable Errors collector initialized.
[    8.808896] clk: Disabling unused clocks
[    8.812832] PM: genpd: Disabling unused power domains
[    8.819608] Freeing unused decrypted memory: 2028K
[    8.825209] Freeing unused kernel image (initmem) memory: 4760K
[    8.831159] Write protecting the kernel read-only data: 26624k
[    8.837430] Freeing unused kernel image (text/rodata gap) memory: 28K
[    8.844055] Freeing unused kernel image (rodata/data gap) memory: 248K
[    8.937666] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    8.944114] Run /init as init process
[    8.954529] systemd[1]: Inserted module 'autofs4'
[    9.181664] systemd[1]: systemd 252-46.el9_5.3 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)
[    9.214132] systemd[1]: Detected architecture x86-64.
[    9.219188] systemd[1]: Running in initrd.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow) dracut-057-80.git20250411.el9_5 (Initramfs)^[[0m!

[    9.236357] systemd[1]: Hostname set to <sharavati.amd.com>.
[    9.346767] systemd[1]: Queued start job for default target Initrd Default Target.
[    9.354495] systemd[1]: Reached target Initrd /usr File System.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd /usr File System^[[0m.
[    9.372301] systemd[1]: Reached target Local File Systems.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
[    9.388310] systemd[1]: Reached target Slice Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSlic[    9.396254] usb 3-1.1: new high-speed USB device number 3 using xhci_hcd
e Units^[[0m.
[    9.408302] systemd[1]: Reached target Swaps.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwaps^[[0m.
[    9.424294] systemd[1]: Reached target Timer Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[    9.440421] systemd[1]: Listening on D-Bus System Message Bus Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[    9.460464] systemd[1]: Listening on Journal Socket (/dev/log).
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket (/dev/log)^[[0m.
[    9.476454] systemd[1]: Listening on Journal Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket^[[0m.
[    9.492466] systemd[1]: Listening on udev Control Socket.
[    9.493292] usb 3-1.1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    9.506219] usb 3-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[    9.524405] systemd[1]: Listening on udev Kernel Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
[    9.540302] systemd[1]: Reached target Socket Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
[    9.563383] hub 3-1.1:1.0: USB hub found
[    9.567535] hub 3-1.1:1.0: 4 ports detected
[    9.573965] systemd[1]: Starting Create List of Static Device Nodes...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
[    9.594905] systemd[1]: Starting Journal Service...
         Starting ^[[0;1;39mJournal Service^[[0m...
[    9.609744] systemd[1]: Starting Load Kernel Modules...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
[    9.625430] systemd[1]: Starting Create System Users...
         Starting ^[[0;1;39mCreate System Users^[[0m...
[    9.641713] systemd[1]: Starting Setup Virtual Console...
[    9.645321] usb 3-1.4: new high-speed USB device number 4 using xhci_hcd
         Starting ^[[0;1;39mSetup Virtual Console^[[0m...
[    9.665683] systemd[1]: Finished Create List of Static Device Nodes.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[    9.688440] systemd[1]: Started Journal Service.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSetup Virtual Console^[[0m.
[    9.745160] usb 3-1.4: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    9.753515] usb 3-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
         Starting ^[[0;1;39mdracut cmdline hook^[[0m...
         Starting ^[[0;1;39mApply Kernel Variables^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate System Users^[[0m.
[    9.819354] hub 3-1.4:1.0: USB hub found
[    9.823533] hub 3-1.4:1.0: 4 ports detected
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut cmdline hook^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Starting ^[[0;1;39mdracut pre-udev hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-udev hook^[[0m.
         Starting ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[   10.215456] wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQBC data block query control method not found
[^[[0;32m  OK  ^[[0m] Finished ^[[0[   10.226488] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
;1;39mColdplug A[   10.233580] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
ll udev Devices^[[   10.242159] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[0m.
[   10.242841] ccp 0000:46:00.1: no command queues available
[   10.256524] ccp 0000:46:00.1: sev enabled
[   10.260550] ccp 0000:46:00.1: psp enabled
[   10.264202] tg3 0000:c1:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:90
[   10.275087] tg3 0000:c1:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[^[[0;32m  OK  ^[[[   10.284934] tg3 0000:c1:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
0m] Reached targ[   10.294128] tg3 0000:c1:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
et ^[[0;1;39mSyst[   10.303036] mpt3sas version 52.100.00.00 loaded
em Initializatio[   10.308199] ACPI: bus type drm_connector registered
n^[[0m.
[   10.308846] mpt3sas_cm0: 63 BIT PCI BUS DMA ADDRESSING SUPPORTED, total mem (262592944 kB)
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork^[[0m.
[   10.329779] tg3 0000:c1:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:91
[   10.340292] tg3 0000:c1:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.350127] tg3 0000:c1:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.350130] tg3 0000:c1:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[   10.364716] mgag200 0000:c3:00.0: vgaarb: deactivate vga console
[   10.373816] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   10.376924] [drm] Initialized mgag200 1.0.0 for 0000:c3:00.0 on minor 0
[   10.381844] mpt3sas_cm0: MSI-X vectors supported: 96
[   10.393428] 	 no of cores: 128, max_msix_vectors: -1
[   10.393430] mpt3sas_cm0:  0 96 96
[   10.397461] mpt3sas_cm0: High IOPs queues : disabled
         Startin[   10.406678] mpt3sas0-msix0: PCI-MSI-X enabled: IRQ 108
g ^[[0;1;39mdracu[   10.406680] mpt3sas0-msix1: PCI-MSI-X enabled: IRQ 109
[   10.406681] mpt3sas0-msix2: PCI-MSI-X enabled: IRQ 110
t initqueue hook[   10.406683] mpt3sas0-msix3: PCI-MSI-X enabled: IRQ 111
[   10.406682] fbcon: mgag200drmfb (fb0) is primary device
^[[0m...
[   10.406684] mpt3sas0-msix4: PCI-MSI-X enabled: IRQ 112
[   10.406686] fbcon: Deferring console take-over
[   10.406686] mpt3sas0-msix5: PCI-MSI-X enabled: IRQ 113
[   10.406688] mpt3sas0-msix6: PCI-MSI-X enabled: IRQ 114
[   10.413207] mgag200 0000:c3:00.0: [drm] fb0: mgag200drmfb frame buffer device
[   10.419727] mpt3sas0-msix7: PCI-MSI-X enabled: IRQ 115
[   10.469518] mpt3sas0-msix8: PCI-MSI-X enabled: IRQ 116
[   10.469519] mpt3sas0-msix9: PCI-MSI-X enabled: IRQ 117
[   10.469521] mpt3sas0-msix10: PCI-MSI-X enabled: IRQ 118
[   10.469522] mpt3sas0-msix11: PCI-MSI-X enabled: IRQ 119
[   10.469523] mpt3sas0-msix12: PCI-MSI-X enabled: IRQ 120
[   10.469525] mpt3sas0-msix13: PCI-MSI-X enabled: IRQ 121
[   10.500710] mpt3sas0-msix14: PCI-MSI-X enabled: IRQ 122
[   10.500712] mpt3sas0-msix15: PCI-MSI-X enabled: IRQ 123
[   10.500713] mpt3sas0-msix16: PCI-MSI-X enabled: IRQ 124
[   10.500714] mpt3sas0-msix17: PCI-MSI-X enabled: IRQ 125
[   10.500715] mpt3sas0-msix18: PCI-MSI-X enabled: IRQ 126
[   10.500717] mpt3sas0-msix19: PCI-MSI-X enabled: IRQ 127
[   10.500718] mpt3sas0-msix20: PCI-MSI-X enabled: IRQ 128
[   10.500720] mpt3sas0-msix21: PCI-MSI-X enabled: IRQ 129
[   10.500721] mpt3sas0-msix22: PCI-MSI-X enabled: IRQ 130
         Startin[   10.547747] mpt3sas0-msix23: PCI-MSI-X enabled: IRQ 131
g ^[[0;1;39mShow [   10.554366] mpt3sas0-msix24: PCI-MSI-X enabled: IRQ 132
Plymouth Boot Sc[   10.554368] mpt3sas0-msix25: PCI-MSI-X enabled: IRQ 133
reen^[[0m...
[   10.554369] mpt3sas0-msix26: PCI-MSI-X enabled: IRQ 134
[   10.554370] mpt3sas0-msix27: PCI-MSI-X enabled: IRQ 135
[   10.554372] mpt3sas0-msix28: PCI-MSI-X enabled: IRQ 136
[   10.554373] mpt3sas0-msix29: PCI-MSI-X enabled: IRQ 137
[^[[0;32m  OK  ^[[[   10.554375] mpt3sas0-msix30: PCI-MSI-X enabled: IRQ 138
[   10.554376] mpt3sas0-msix31: PCI-MSI-X enabled: IRQ 139
0m] Started ^[[0;[   10.554378] mpt3sas0-msix32: PCI-MSI-X enabled: IRQ 140
1;39mShow Plymou[   10.608129] mpt3sas0-msix33: PCI-MSI-X enabled: IRQ 141
th Boot Screen^[[[   10.608131] mpt3sas0-msix34: PCI-MSI-X enabled: IRQ 142
0m.
[   10.608132] mpt3sas0-msix35: PCI-MSI-X enabled: IRQ 143
[   10.608133] mpt3sas0-msix36: PCI-MSI-X enabled: IRQ 144
[   10.608135] mpt3sas0-msix37: PCI-MSI-X enabled: IRQ 145
[^[[0;32m  OK  ^[[[   10.608136] mpt3sas0-msix38: PCI-MSI-X enabled: IRQ 146
0m] Started ^[[0;[   10.608137] mpt3sas0-msix39: PCI-MSI-X enabled: IRQ 147
1;39mForward Pas[   10.608138] mpt3sas0-msix40: PCI-MSI-X enabled: IRQ 148
[   10.608140] mpt3sas0-msix41: PCI-MSI-X enabled: IRQ 149
sword Requests t[   10.608141] mpt3sas0-msix42: PCI-MSI-X enabled: IRQ 150
o Plymouth Direc[   10.669209] mpt3sas0-msix43: PCI-MSI-X enabled: IRQ 151
tory Watch^[[0m.\r[   10.669210] mpt3sas0-msix44: PCI-MSI-X enabled: IRQ 152

[   10.669212] mpt3sas0-msix45: PCI-MSI-X enabled: IRQ 153
[^[[0;32m  OK  ^[[[   10.669213] mpt3sas0-msix46: PCI-MSI-X enabled: IRQ 154
0m] Reached targ[   10.669215] mpt3sas0-msix47: PCI-MSI-X enabled: IRQ 155
et ^[[0;1;39mPath[   10.669216] mpt3sas0-msix48: PCI-MSI-X enabled: IRQ 156
 Units^[[0m.
[   10.669217] mpt3sas0-msix49: PCI-MSI-X enabled: IRQ 157
[   10.669219] mpt3sas0-msix50: PCI-MSI-X enabled: IRQ 158
[   10.719338] mpt3sas0-msix51: PCI-MSI-X enabled: IRQ 159
[   10.724563] mpt3sas0-msix52: PCI-MSI-X enabled: IRQ 160
[^[[0;32m  OK  ^[[[   10.729798] mpt3sas0-msix53: PCI-MSI-X enabled: IRQ 161
0m] Reached targ[   10.736409] mpt3sas0-msix54: PCI-MSI-X enabled: IRQ 162
et ^[[0;1;39mBasi[   10.743027] mpt3sas0-msix55: PCI-MSI-X enabled: IRQ 163
c System^[[0m.
[   10.749634] mpt3sas0-msix56: PCI-MSI-X enabled: IRQ 164
[   10.756250] mpt3sas0-msix57: PCI-MSI-X enabled: IRQ 165
[   10.761481] mpt3sas0-msix58: PCI-MSI-X enabled: IRQ 166
[   10.766707] mpt3sas0-msix59: PCI-MSI-X enabled: IRQ 167
[   10.771935] mpt3sas0-msix60: PCI-MSI-X enabled: IRQ 168
[   10.777159] mpt3sas0-msix61: PCI-MSI-X enabled: IRQ 169
[   10.782384] mpt3sas0-msix62: PCI-MSI-X enabled: IRQ 170
[   10.787611] mpt3sas0-msix63: PCI-MSI-X enabled: IRQ 171
[   10.792836] mpt3sas0-msix64: PCI-MSI-X enabled: IRQ 172
[   10.798064] mpt3sas0-msix65: PCI-MSI-X enabled: IRQ 173
[   10.803289] mpt3sas0-msix66: PCI-MSI-X enabled: IRQ 174
[   10.808515] mpt3sas0-msix67: PCI-MSI-X enabled: IRQ 175
[   10.813740] mpt3sas0-msix68: PCI-MSI-X enabled: IRQ 176
[   10.818966] mpt3sas0-msix69: PCI-MSI-X enabled: IRQ 177
[   10.824192] mpt3sas0-msix70: PCI-MSI-X enabled: IRQ 178
[   10.829419] mpt3sas0-msix71: PCI-MSI-X enabled: IRQ 179
[   10.834647] mpt3sas0-msix72: PCI-MSI-X enabled: IRQ 180
[   10.839871] mpt3sas0-msix73: PCI-MSI-X enabled: IRQ 181
[   10.845096] mpt3sas0-msix74: PCI-MSI-X enabled: IRQ 182
[   10.850322] mpt3sas0-msix75: PCI-MSI-X enabled: IRQ 183
[   10.855547] mpt3sas0-msix76: PCI-MSI-X enabled: IRQ 184
[   10.860775] mpt3sas0-msix77: PCI-MSI-X enabled: IRQ 185
[   10.866000] mpt3sas0-msix78: PCI-MSI-X enabled: IRQ 186
[   10.871227] mpt3sas0-msix79: PCI-MSI-X enabled: IRQ 187
[   10.876450] mpt3sas0-msix80: PCI-MSI-X enabled: IRQ 188
[   10.881677] mpt3sas0-msix81: PCI-MSI-X enabled: IRQ 189
[   10.886901] mpt3sas0-msix82: PCI-MSI-X enabled: IRQ 190
[   10.892127] mpt3sas0-msix83: PCI-MSI-X enabled: IRQ 191
[   10.897355] mpt3sas0-msix84: PCI-MSI-X enabled: IRQ 192
[   10.902581] mpt3sas0-msix85: PCI-MSI-X enabled: IRQ 193
[   10.907805] mpt3sas0-msix86: PCI-MSI-X enabled: IRQ 194
[   10.913031] mpt3sas0-msix87: PCI-MSI-X enabled: IRQ 195
[   10.918257] mpt3sas0-msix88: PCI-MSI-X enabled: IRQ 196
[   10.923486] mpt3sas0-msix89: PCI-MSI-X enabled: IRQ 197
[   10.928711] mpt3sas0-msix90: PCI-MSI-X enabled: IRQ 198
[   10.933937] mpt3sas0-msix91: PCI-MSI-X enabled: IRQ 199
[   10.939160] mpt3sas0-msix92: PCI-MSI-X enabled: IRQ 200
[   10.944388] mpt3sas0-msix93: PCI-MSI-X enabled: IRQ 201
[   10.949612] mpt3sas0-msix94: PCI-MSI-X enabled: IRQ 202
[   10.954840] mpt3sas0-msix95: PCI-MSI-X enabled: IRQ 203
[   10.960159] mpt3sas_cm0: iomem(0x00000000e2200000), mapped(0x00000000abbc8ed2), size(65536)
[   10.968507] mpt3sas_cm0: ioport(0x0000000000001000), size(256)
[   11.032179] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   11.040188] mpt3sas_cm0: sending message unit reset !!
[   11.046836] mpt3sas_cm0: message unit reset: SUCCESS
[   11.079527] mpt3sas_cm0: scatter gather: sge_in_main_msg(1), sge_per_chain(7), sge_per_io(128), chains_per_io(19)
[   11.091020] mpt3sas_cm0: request pool(0x00000000f1057de8) - dma(0xe0600000): depth(9700), frame_size(128), pool_size(1212 kB)
[   11.127655] mpt3sas_cm0: sense pool(0x00000000ece24afd) - dma(0xdef00000): depth(9463), element_size(96), pool_size (887 kB)
[   11.138963] mpt3sas_cm0: reply pool(0x00000000cfd6898c) - dma(0xdec00000): depth(9764), frame_size(128), pool_size(1220 kB)
[   11.150100] mpt3sas_cm0: config page(0x0000000041712f94) - dma(0xdebee000): size(512)
[   11.157930] mpt3sas_cm0: Allocated physical memory: size(40437 kB)
[   11.164110] mpt3sas_cm0: Current Controller Queue Depth(9460),Max Controller Queue Depth(9584)
[   11.172713] mpt3sas_cm0: Scatter Gather Elements per IO(128)
[   11.224156] mpt3sas_cm0: _base_display_fwpkg_version: complete
[   11.229989] mpt3sas_cm0: FW Package Ver(16.17.01.00)
[   11.235247] mpt3sas_cm0: LSISAS3008: FWVersion(16.00.11.00), ChipRevision(0x02)
[   11.242557] mpt3sas_cm0: Protocol=(Initiator,Target), Capabilities=(TLR,EEDP,Snapshot Buffer,Diag Trace Buffer,Task Set Full,NCQ)
[   11.254279] scsi host8: Fusion MPT SAS Host
[   11.260321] mpt3sas_cm0: sending port enable !!
[   11.265271] mpt3sas_cm0: hba_port entry: 0000000098502890, port: 255 is added to hba_port list
[   11.274995] mpt3sas_cm0: host_add: handle(0x0001), sas_addr(0x52cea7f0be87bf00), phys(8)
[   11.283422] mpt3sas_cm0: handle(0xa) sas_address(0x4433221100000000) port_type(0x1)
[   11.292296] scsi 8:0:0:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.300392] scsi 8:0:0:0: SATA: handle(0x000a), sas_addr(0x4433221100000000), phy(0), device_name(0x500a075131911ad0)
[   11.310991] scsi 8:0:0:0: enclosure logical id (0x52cea7f0be87bf00), slot(1) 
[   11.318125] scsi 8:0:0:0: enclosure level(0x0001), connector name(     )
[   11.324878] scsi 8:0:0:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.333313] scsi 8:0:0:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.348122]  end_device-8:0: add: handle(0x000a), sas_addr(0x4433221100000000)
[   11.355465] mpt3sas_cm0: handle(0xc) sas_address(0x58ce38ee219651a2) port_type(0x1)
[   11.363601] scsi 8:0:1:0: Direct-Access     KIOXIA   KPM6WVUG960G     BD08 PQ: 0 ANSI: 6
[   11.371691] scsi 8:0:1:0: SSP: handle(0x000c), sas_addr(0x58ce38ee219651a2), phy(4), device_name(0x58ce38ee219651a0)
[   11.382206] scsi 8:0:1:0: enclosure logical id (0x52cea7f0be87bf00), slot(0) 
[   11.389336] scsi 8:0:1:0: enclosure level(0x0001), connector name(     )
[   11.396058] scsi 8:0:1:0: qdepth(254), tagged(1), scsi_level(7), cmd_que(1)
[   11.404523]  end_device-8:1: add: handle(0x000c), sas_addr(0x58ce38ee219651a2)
[   11.411860] mpt3sas_cm0: handle(0xb) sas_address(0x4433221106000000) port_type(0x1)
[   11.420653] scsi 8:0:2:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.428739] scsi 8:0:2:0: SATA: handle(0x000b), sas_addr(0x4433221106000000), phy(6), device_name(0x500a075131911a6f)
[   11.439334] scsi 8:0:2:0: enclosure logical id (0x52cea7f0be87bf00), slot(2) 
[   11.446464] scsi 8:0:2:0: enclosure level(0x0001), connector name(     )
[   11.453215] scsi 8:0:2:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.461653] scsi 8:0:2:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.476527]  end_device-8:2: add: handle(0x000b), sas_addr(0x4433221106000000)
[   11.484252] mpt3sas_cm0: port enable: SUCCESS
[   11.488896] sd 8:0:0:0: Attached scsi generic sg0 type 0
[   11.489504] sd 8:0:0:0: [sda] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.494497] sd 8:0:1:0: Attached scsi generic sg1 type 0
[   11.494741] sd 8:0:1:0: [sdb] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.494744] sd 8:0:1:0: [sdb] 4096-byte physical blocks
[   11.494924] sd 8:0:1:0: [sdb] Write Protect is off
[   11.495140] sd 8:0:1:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   11.501790] sd 8:0:0:0: [sda] 4096-byte physical blocks
[   11.507396] sd 8:0:2:0: Attached scsi generic sg2 type 0
[   11.508014] sd 8:0:2:0: [sdc] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.508018] sd 8:0:2:0: [sdc] 4096-byte physical blocks
[   11.510023] sd 8:0:2:0: [sdc] Write Protect is off
[   11.511305] sd 8:0:2:0: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.516687] sd 8:0:0:0: [sda] Write Protect is off
[   11.575993] sd 8:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.617511]  sdb: sdb1 sdb2
[   11.620465] sd 8:0:1:0: [sdb] Attached SCSI disk
[   11.626404]  sdc: sdc1 sdc2
[   11.629345] sd 8:0:2:0: [sdc] Attached SCSI disk
[   11.670174]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7
[   11.675537] sd 8:0:0:0: [sda] Attached SCSI disk
[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39m/dev/mapper/rhel_sharavati-root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut initqueue hook^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m.
         Mounting ^[[0;1;39m/sysroot^[[0m...
[   12.407829] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled
[   12.418247] XFS (dm-1): Mounting V5 Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[   12.441727] XFS (dm-1): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/sysroot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root File System^[[0m.
         Starting ^[[0;1;39mMountpoints Configured in the Real Root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMountpoints Configured in the Real Root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Default Target^[[0m.
         Starting ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
         Starting ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Default Target^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd /usr File System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut initqueue hook^[[0m.
         Starting ^[[0;1;39mPlymouth switch root service^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mColdplug All udev Devices^[[0m.
         [   12.694218] systemd-journald[1092]: Received SIGTERM from PID 1 (systemd).
Stopping ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Kernel Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-udev hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut cmdline hook^[[0m.
         Starting ^[[0;1;39mCleanup udev Database^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate System Users^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleanup udev Database^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwitch Root^[[0m.
         Starting ^[[0;1;39mSwitch Root^[[0m...
[   12.805975] systemd[1]: RTC configured in localtime, applying delta of 330 minutes to system time.
[   12.830428] systemd[1]: systemd 252-46.el9_5.3 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)
[   12.862908] systemd[1]: Detected architecture x86-64.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow)^[[0m!

[   12.951430] systemd-rc-local-generator[1710]: /etc/rc.d/rc.local is not marked executable, skipping.
[   13.200776] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[   13.208089] systemd[1]: Stopped Switch Root.
[^[[0;32m  OK  ^[[[   13.212654] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
0m] Stopped ^[[0;[   13.223381] systemd[1]: Created slice Virtual Machine and Container Slice.
1;39mSwitch Root[   13.231711] systemd[1]: Created slice Slice /system/getty.
^[[0m.
[^[[0;32m[   13.238577] systemd[1]: Created slice Slice /system/modprobe.
  OK  ^[[0m] Crea[   13.245679] systemd[1]: Created slice Slice /system/serial-getty.
ted slice ^[[0;1;[   13.253177] systemd[1]: Created slice Slice /system/sshd-keygen.
39mVirtual Machi[   13.260568] systemd[1]: Created slice Slice /system/systemd-fsck.
ne and Container[   13.267926] systemd[1]: Created slice User and Session Slice.
 Slice^[[0m.
[^[[   13.274518] systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
[0;32m  OK  ^[[0m[   13.290838] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
] Created slice [   13.300245] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
^[[0;1;39mSlice /[   13.310571] systemd[1]: Reached target Local Encrypted Volumes.
system/getty^[[0m[   13.317863] systemd[1]: Stopped target Switch Root.
.
[^[[0;32m  OK[   13.324128] systemd[1]: Stopped target Initrd File Systems.
  ^[[0m] Created [   13.331079] systemd[1]: Stopped target Initrd Root File System.
slice ^[[0;1;39mS[   13.338390] systemd[1]: Reached target Local Integrity Protected Volumes.
lice /system/mod[   13.346574] systemd[1]: Reached target Path Units.
probe^[[0m.
[^[[[   13.352747] systemd[1]: Reached target Slice Units.
0;32m  OK  ^[[0m][   13.359016] systemd[1]: Reached target Local Verity Protected Volumes.
 Created slice ^[[   13.366981] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[0;1;39mSlice /s[   13.375055] systemd[1]: Listening on LVM2 poll daemon socket.
ystem/serial-get[   13.382011] systemd[1]: multipathd control socket was skipped because of an unmet condition check (ConditionPathExists=/etc/multipath.conf).
ty^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/sshd-keygen^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Set up automount ^[[0;1;39mArbitrary Executa…orma[   13.429623] systemd[1]: Listening on RPCbind Server Activation Socket.
ts File System A[   13.437173] systemd[1]: Reached target RPC Port Mapper.
utomount Point^[[[   13.444908] systemd[1]: Listening on Process Core Dump Socket.
0m.
[^[[0;32m  [   13.451031] systemd[1]: Listening on initctl Compatibility Named Pipe.
OK  ^[[0m] Reache[   13.459950] systemd[1]: Listening on udev Control Socket.
d target ^[[0;1;3[   13.465744] systemd[1]: Listening on udev Kernel Socket.
9mLocal Encrypted Volumes^[[0m.\r\r[   13.473775] systemd[1]: Activating swap /dev/mapper/rhel_sharavati-swap...

[^[[0;32m  OK  ^[[   13.478582] Adding 7815164k swap on /dev/mapper/rhel_sharavati-swap.  Priority:-2 extents:1 across:7815164k SS
[0m] Stopped target ^[[0;1;39mSwi[   13.495091] systemd[1]: Mounting Huge Pages File System...
tch Root^[[0m.
[   13.502908] systemd[1]: Mounting POSIX Message Queue File System...
[^[[0;32m  OK  ^[[0m] Stopped targ[   13.510750] systemd[1]: Mounting Kernel Debug File System...
et ^[[0;1;39mInit[   13.518970] systemd[1]: Mounting Kernel Trace File System...
rd File Systems^[[   13.524838] systemd[1]: Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
[0m.
[^[[0;32m [   13.539682] systemd[1]: iscsi-starter.service was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes).
 OK  ^[[0m] Stopped target ^[[0;1;[   13.555079] systemd[1]: Starting Create List of Static Device Nodes...
39mInitrd Root File System^[[0m.\r[   13.564344] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...

[^[[0;32m  OK  [   13.577174] systemd[1]: Starting Load Kernel Module configfs...
^[[0m] Reached ta[   13.584453] systemd[1]: Starting Load Kernel Module drm...
rget ^[[0;1;39mLo[   13.591292] systemd[1]: Starting Load Kernel Module fuse...
cal Integrity Protected Volumes^[[   13.599188] systemd[1]: Starting Read and set NIS domainname from /etc/sysconfig/network...
[0m.
[^[[0;32m [   13.608304] systemd[1]: plymouth-switch-root.service: Deactivated successfully.
 OK  ^[[0m] Reach[   13.616967] systemd[1]: Stopped Plymouth switch root service.
ed target ^[[0;1;[   13.624227] systemd[1]: systemd-fsck-root.service: Deactivated successfully.
39mPath Units^[[0[   13.632523] systemd[1]: Stopped File System Check on Root Device.
m.
[^[[0;32m  O[   13.640065] systemd[1]: Stopped Journal Service.
K  ^[[0m] Reached target ^[[0;1;39[   13.648423] systemd[1]: Starting Journal Service...
mSlice Units^[[0m.
[^[[0;32m  OK[   13.656010] systemd[1]: Starting Load Kernel Modules...
[   13.660306] systemd-journald[1739]: File /run/log/journal/8f37f8055146469d8baec3ad508b0084/system.journal corrupted or uncleanly shut down, renaming and replacing.
  ^[[0m] Reached target ^[[0;1;39m[   13.677903] systemd[1]: Starting Generate network units from Kernel command line...
Local Verity Pro[   13.686704] systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
tected Volumes^[[0m.
[^[[0;32m  [   13.707863] systemd[1]: Starting Remount Root and Kernel File Systems...
OK  ^[[0m] Listen[   13.716063] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
ing on ^[[0;1;39mDevice-mapper ev[   13.728120] systemd[1]: Starting Coldplug All udev Devices...
ent daemon FIFOs^[[0m.
[^[[0;32m  OK  ^[[0m] List[   13.738429] systemd[1]: Activated swap /dev/mapper/rhel_sharavati-swap.
ening on ^[[0;1;3[   13.746642] systemd[1]: Started Journal Service.
9mLVM2 poll daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mRPCbind Server Activation Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRPC Port Mapper^[[0m.
[^[[0;32m  [   13.767740] systemd-journald[1739]: Received client request to flush runtime journal.
OK  ^[[0m] Listening on ^[[0;1;39mProcess Core Dump Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39minitctl Compatibility Named Pipe^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
         Activating swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m...
         Mounting ^[[0;1;39mHuge Pages File System^[[0m...
         Mounting ^[[0;1;39mPOSIX Message Queue File System^[[0m...
         Mounting ^[[0;1;39mKernel Debug File System^[[0m...
         Mounting ^[[0;1;39mKernel Trace File System^[[0m...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
         Starting ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module drm^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mJournal Service^[[0m.
         Starting ^[[0;1;39mJournal Service^[[0m...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
         Starting ^[[0;1;39mGenerate network units from Kernel command line^[[0m...
         Starting ^[[0;1;39mRemount Root and Kernel File Systems^[[0m...
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[^[[0;32m  OK  ^[[0m] Activated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mHuge Pages File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mPOSIX Message Queue File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Debug File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Trace File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module drm^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mGenerate network units [   13.994696] IPMI message handler: version 39.2
from Kernel command line^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0[   14.005379] ipmi device interface
;1;39mRemount Root and Kernel File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSw[   14.016216] ipmi_si: IPMI System Interface driver
aps^[[0m.
     [   14.021978] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
    Mounting ^[[0[   14.022006] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
;1;39mFUSE Contr[   14.029343] pstore: backend 'erst' already in use: ignoring 'efi_pstore'
ol File System^[[[   14.030752] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
0m...
        [   14.032164] input: PC Speaker as /devices/platform/pcspkr/input/input1
 Mounting ^[[0;1;[   14.034102] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
39mKernel Config[   14.034105] RAPL PMU: hw unit of domain package 2^-16 Joules
uration File Sys[   14.034107] RAPL PMU: hw unit of domain core 2^-16 Joules
tem^[[0m...
   [   14.038477] ipmi_platform: ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 10
      Starting ^[[   14.051233] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
[0;1;39mFlush Jo[   14.055511] ipmi_si: Adding SMBIOS-specified kcs state machine
urnal to Persist[   14.055571] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
ent Storage^[[0m.[   14.064080] i2c i2c-3: Successfully instantiated SPD at 0x50
..
         St[   14.072757] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca8] regsize 1 spacing 4 irq 10
[   14.080328] i2c i2c-3: Successfully instantiated SPD at 0x51
arting ^[[0;1;39m[   14.086747] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
[   14.095827] i2c i2c-3: Successfully instantiated SPD at 0x52
Load/Save OS Ran[   14.103853] ipmi_si: Adding ACPI-specified kcs state machine
dom Seed^[[0m...\r[   14.103934] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 10

         Start[   14.111641] i2c i2c-3: Successfully instantiated SPD at 0x53
ing ^[[0;1;39mApp[   14.182053] i2c i2c-3: Successfully instantiated SPD at 0x54
ly Kernel Variab[   14.189105] i2c i2c-3: Successfully instantiated SPD at 0x55
les^[[0m...
   [   14.196148] i2c i2c-3: Successfully instantiated SPD at 0x56
      Starting ^[[   14.203191] i2c i2c-3: Successfully instantiated SPD at 0x57
[0;1;39mCreate Static Device Nodes in /dev^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMonitoring of LVM2 mirror…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mFUSE Control File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Configuration F[   14.233366] ee1004 3-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
ile System^[[0m.
[^[[0;32m  OK  [   14.243274] ee1004 3-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
^[[0m] Finished ^[[0;1;39mLoad/Sav[   14.252822] kvm_amd: TSC scaling supported
e OS Random Seed[   14.252823] ee1004 3-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
^[[0m.
[^[[0;32m[   14.254488] ee1004 3-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
  OK  ^[[0m] Fini[   14.258014] kvm_amd: Nested Virtualization enabled
shed ^[[0;1;39mFl[   14.267937] ee1004 3-0054: 512 byte EE1004-compliant SPD EEPROM, read-only
ush Journal to P[   14.274532] kvm_amd: Nested Paging enabled
ersistent Storag[   14.274534] kvm_amd: LBR virtualization supported
e^[[0m.
[^[[0;32m  OK  ^[[0m] Fin[   14.302270] ee1004 3-0055: 512 byte EE1004-compliant SPD EEPROM, read-only
ished ^[[0;1;39mApply Kernel Vari[   14.312023] ee1004 3-0056: 512 byte EE1004-compliant SPD EEPROM, read-only
ables^[[0m.
[^[[0;32m  OK  ^[[0m][   14.321439] ee1004 3-0057: 512 byte EE1004-compliant SPD EEPROM, read-only
 Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
         Starting ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mColdplug All udev Devices^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mLoad/Save RF Kill Switch Status /dev/rfkill Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39m/usr/sbin/lvm vgchange -aa…utoactivation event rhel_sharavati^[[0m.
[   14.580260] ipmi_si IPI0001:00: The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.
[   14.652354] ipmi_si IPI0001:00: Using irq 10
[   14.696138] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20)
[   14.764881] ipmi_si IPI0001:00: IPMI kcs interface initialized
[   14.773409] ipmi_ssif: IPMI SSIF Interface driver
[   14.794525] power_meter ACPI000D:00: Found ACPI power meter.
[^[[0m^[[0;31m*     ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;1;31m*^[[0m^[[0;31m*    ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*   ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
[   17.838073] ccp 0000:46:00.1: SEV-SNP API:1.55 build:22
[   17.893239] ccp 0000:46:00.1: SEV API:1.55 build:22
[   17.899992] kvm_amd: SEV enabled (ASIDs 101 - 509)
[   17.904792] kvm_amd: SEV-ES enabled (ASIDs 1 - 100)
[   17.909674] kvm_amd: SEV-SNP enabled (ASIDs 1 - 100)
[   17.914814] kvm_amd: Virtual VMLOAD VMSAVE supported
[   17.919782] kvm_amd: Virtual GIF supported
[   17.946355] EDAC MC0: Giving out device to module amd64_edac controller F19h: DEV 0000:00:18.3 (INTERRUPT)
[   17.956010] EDAC amd64: F19h detected (node 0).
[   17.960566] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.965280] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.970002] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.974719] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.979440] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.984157] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.988887] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.993602] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.998328] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.003050] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.007773] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.012486] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.017209] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.021923] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.026648] EDAC amd64: MC: 0:     0MB 1:     0MB
^[M\r^[[K[ ^[[0;31m*[   18.031372] EDAC amd64: MC: 2: 16384MB 3: 16384MB
^[[0;1;31m*^[[0m^[[0;31m*  ^[[0m] A start job is running for Wait for…ice Initialization (4s / no [   18.044454] intel_rapl_common: Found RAPL domain package
limit)
[   18.045558] amd_atl: AMD Address Translation Library initialized
[   18.051097] intel_rapl_common: Found RAPL domain core
^[M\r^[[K[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Wait for…ice Initialization (5s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Local File Systems^[[0m.
         Mounting ^[[0;1;39m/boot^[[0m...
      [   18.399865] XFS (sda6): Mounting V5 Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
   Mounting ^[[0;[   18.401927] XFS (dm-0): Mounting V5 Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
1;39m/home^[[0m...
         Starting ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m...
[   18.426436] XFS (sda6): Ending clean mount
[^[[0;32m  OK  ^[[[   18.434802] XFS (dm-0): Ending clean mount
0m] Mounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
         Mounting ^[[0;1;39m/boot/efi^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
         Starting ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Mounting ^[[0;1;39mRPC Pipe File System^[[0m...
         Starting ^[[0;1;39mSecurity Auditing Service^[[0m...
         Starting ^[[0;1;39mRPC Bind^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRPC Bind^[[0m.
[   18.542970] RPC: Registered named UNIX socket transport module.
[   18.548896] RPC: Registered udp transport module.
[   18.553598] RPC: Registered tcp transport module.
[   18.558307] RPC: Registered tcp-with-tls transport module.
[   18.563794] RPC: Registered tcp NFSv4.1 backchannel transport module.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mRPC Pipe File System^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mrpc_pipefs.target^[[0m.
         Starting ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdnf makecache --timer^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily rotation of log files^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUpdates mlocate database every day^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily Cleanup of Temporary Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdaily update of the root trust anchor for DNSSEC^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt interface daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt network daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nodedev daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nwfilter daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt proxy daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt secret daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt storage daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
         Starting ^[[0;1;39mD-Bus System Message Bus^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mBasic System^[[0m.
         Starting ^[[0;1;39mNTP client/server^[[0m...
         Starting ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m...
         Starting ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mirqbalance daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mlibstoragemgmt plug-in server daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mMachine Check Exception Logging Daemon^[[0m.
         Starting ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msshd-keygen.target^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUser and Group Name Lookups^[[0m.
         Starting ^[[0;1;39mUser Login Management^[[0m...
         Starting ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNTP client/server^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Network^[[0m.
         Starting ^[[0;1;39mNetwork Manager^[[0m...
         Starting ^[[0;1;39mHostname Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mHostname Service^[[0m.
         Starting ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork^[[0m.
         Starting ^[[0;1;39mNetwork Manager Wait Online^[[0m...
         Starting ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
         Starting ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m...
         Starting ^[[0;1;39mOpenSSH server daemon^[[0m...
         Starting ^[[0;1;39mDynamic System Tuning Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNFS client services^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mOpenSSH server daemon^[[0m.
         Starting ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
[   22.818446] tg3 0000:c1:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   22.825068] tg3 0000:c1:00.0 eth0: Flow control is off for TX and off for RX
[   22.832117] tg3 0000:c1:00.0 eth0: EEE is disabled
^[M\r^[[K[     ^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[ ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*  ^[[0m] A start job is running for Network …nager Wait Online (12s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mNetwork Manager Wait Online^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork is Online^[[0m.
         Starting ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m...
         Starting ^[[0;1;39mNotify NFS peers of a restart^[[0m...
         Starting ^[[0;1;39mSystem Logging Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNotify NFS peers of a restart^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mCrash recovery kernel arming^[[0m...
         Starting ^[[0;1;39mPermit User Sessions^[[0m...
         Starting ^[[0;1;39mlibvirt QEMU daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDeferred execution scheduler^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mCommand Scheduler^[[0m.
         Starting ^[[0;1;39mHold until boot process finishes up^[[0m...
         Starting ^[[0;1;39mTerminate Plymouth Boot Screen^[[0m...
[^[[0;1;31mFAILED^[[0m] Failed to start ^[[0;1;39mCrash recovery kernel arming^[[0m.
See 'systemctl status kdump.service' for details.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSystem Logging Service^[[0m.
[   25.535161] fbcon: Taking over console
[   25.557754] Console: switching to colour frame buffer device 128x48

Red Hat Enterprise Linux 9.5 (Plow)
Kernel 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e on an x86_64

Activate the web console with: systemctl enable --now cockpit.socket

sharavati login: [  128.196868] /proc/cgroups lists only v1 controllers, use cgroup.controllers of root cgroup for v2 info
[  317.923027] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[  317.995157] systemd-rc-local-generator[3174]: /etc/rc.d/rc.local is not marked executable, skipping.
[  339.643736] virbr0: port 1(t0-XffdeL) entered blocking state
[  339.649418] virbr0: port 1(t0-XffdeL) entered disabled state
[  339.655142] t0-XffdeL: entered allmulticast mode
[  339.659845] t0-XffdeL: entered promiscuous mode
[  339.668708] virbr0: port 1(t0-XffdeL) entered blocking state
[  339.674374] virbr0: port 1(t0-XffdeL) entered listening state
[  341.690839] virbr0: port 1(t0-XffdeL) entered learning state
[  343.706788] virbr0: port 1(t0-XffdeL) entered forwarding state
[  343.712630] virbr0: topology change detected, propagating
[  358.891910] virbr0: port 1(t0-XffdeL) entered disabled state
[  358.898497] t0-XffdeL (unregistering): left allmulticast mode
[  358.904248] t0-XffdeL (unregistering): left promiscuous mode
[  358.909923] virbr0: port 1(t0-XffdeL) entered disabled state
[  363.315427] virbr0: port 1(t0-4Chdm1) entered blocking state
[  363.321106] virbr0: port 1(t0-4Chdm1) entered disabled state
[  363.326822] t0-4Chdm1: entered allmulticast mode
[  363.331525] t0-4Chdm1: entered promiscuous mode
[  363.340189] virbr0: port 1(t0-4Chdm1) entered blocking state
[  363.345853] virbr0: port 1(t0-4Chdm1) entered listening state
[  365.370263] virbr0: port 1(t0-4Chdm1) entered learning state
[  367.386226] virbr0: port 1(t0-4Chdm1) entered forwarding state
[  367.392070] virbr0: topology change detected, propagating
[  382.691544] virbr0: port 1(t0-4Chdm1) entered disabled state
[  382.698265] t0-4Chdm1 (unregistering): left allmulticast mode
[  382.704020] t0-4Chdm1 (unregistering): left promiscuous mode
[  382.709692] virbr0: port 1(t0-4Chdm1) entered disabled state
[  386.942262] virbr0: port 1(t0-Jl17DG) entered blocking state
[  386.947934] virbr0: port 1(t0-Jl17DG) entered disabled state
[  386.953642] t0-Jl17DG: entered allmulticast mode
[  386.958338] t0-Jl17DG: entered promiscuous mode
[  386.967015] virbr0: port 1(t0-Jl17DG) entered blocking state
[  386.972676] virbr0: port 1(t0-Jl17DG) entered listening state
[  388.985732] virbr0: port 1(t0-Jl17DG) entered learning state
[  391.001686] virbr0: port 1(t0-Jl17DG) entered forwarding state
[  391.007524] virbr0: topology change detected, propagating
[  404.762892] virbr0: port 1(t0-Jl17DG) entered disabled state
[  404.769780] t0-Jl17DG (unregistering): left allmulticast mode
[  404.775531] t0-Jl17DG (unregistering): left promiscuous mode
[  404.781212] virbr0: port 1(t0-Jl17DG) entered disabled state
[  409.165634] virbr0: port 1(t0-hH1Lsm) entered blocking state
[  409.171305] virbr0: port 1(t0-hH1Lsm) entered disabled state
[  409.176994] t0-hH1Lsm: entered allmulticast mode
[  409.181697] t0-hH1Lsm: entered promiscuous mode
[  409.190367] virbr0: port 1(t0-hH1Lsm) entered blocking state
[  409.196029] virbr0: port 1(t0-hH1Lsm) entered listening state
[  411.229224] virbr0: port 1(t0-hH1Lsm) entered learning state
[  413.241182] virbr0: port 1(t0-hH1Lsm) entered forwarding state
[  413.247031] virbr0: topology change detected, propagating
[  427.482237] virbr0: port 1(t0-hH1Lsm) entered disabled state
[  427.489107] t0-hH1Lsm (unregistering): left allmulticast mode
[  427.494867] t0-hH1Lsm (unregistering): left promiscuous mode
[  427.500538] virbr0: port 1(t0-hH1Lsm) entered disabled state
[  431.931424] virbr0: port 1(t0-wR5uhJ) entered blocking state
[  431.937106] virbr0: port 1(t0-wR5uhJ) entered disabled state
[  431.942809] t0-wR5uhJ: entered allmulticast mode
[  431.947511] t0-wR5uhJ: entered promiscuous mode
[  431.956792] virbr0: port 1(t0-wR5uhJ) entered blocking state
[  431.962461] virbr0: port 1(t0-wR5uhJ) entered listening state
[  433.976702] virbr0: port 1(t0-wR5uhJ) entered learning state
[  435.992660] virbr0: port 1(t0-wR5uhJ) entered forwarding state
[  435.998539] virbr0: topology change detected, propagating
[  451.193557] virbr0: port 1(t0-wR5uhJ) entered disabled state
[  451.200378] t0-wR5uhJ (unregistering): left allmulticast mode
[  451.206144] t0-wR5uhJ (unregistering): left promiscuous mode
[  451.211820] virbr0: port 1(t0-wR5uhJ) entered disabled state
[  455.597751] virbr0: port 1(t0-mrFWPA) entered blocking state
[  455.603419] virbr0: port 1(t0-mrFWPA) entered disabled state
[  455.609114] t0-mrFWPA: entered allmulticast mode
[  455.613813] t0-mrFWPA: entered promiscuous mode
[  455.622526] virbr0: port 1(t0-mrFWPA) entered blocking state
[  455.628196] virbr0: port 1(t0-mrFWPA) entered listening state
[  457.656163] virbr0: port 1(t0-mrFWPA) entered learning state
[  459.672120] virbr0: port 1(t0-mrFWPA) entered forwarding state
[  459.677966] virbr0: topology change detected, propagating
[  474.993566] virbr0: port 1(t0-mrFWPA) entered disabled state
[  475.000898] t0-mrFWPA (unregistering): left allmulticast mode
[  475.006653] t0-mrFWPA (unregistering): left promiscuous mode
[  475.012334] virbr0: port 1(t0-mrFWPA) entered disabled state
[  479.242364] virbr0: port 1(t0-cOaVom) entered blocking state
[  479.248041] virbr0: port 1(t0-cOaVom) entered disabled state
[  479.253784] t0-cOaVom: entered allmulticast mode
[  479.258504] t0-cOaVom: entered promiscuous mode
[  479.267294] virbr0: port 1(t0-cOaVom) entered blocking state
[  479.272962] virbr0: port 1(t0-cOaVom) entered listening state
[  481.303627] virbr0: port 1(t0-cOaVom) entered learning state
[  483.319564] virbr0: port 1(t0-cOaVom) entered forwarding state
[  483.325402] virbr0: topology change detected, propagating
[  497.516913] virbr0: port 1(t0-cOaVom) entered disabled state
[  497.523759] t0-cOaVom (unregistering): left allmulticast mode
[  497.529516] t0-cOaVom (unregistering): left promiscuous mode
[  497.535191] virbr0: port 1(t0-cOaVom) entered disabled state
[  501.954297] virbr0: port 1(t0-wkkgFM) entered blocking state
[  501.959975] virbr0: port 1(t0-wkkgFM) entered disabled state
[  501.965675] t0-wkkgFM: entered allmulticast mode
[  501.970391] t0-wkkgFM: entered promiscuous mode
[  501.979088] virbr0: port 1(t0-wkkgFM) entered blocking state
[  501.984754] virbr0: port 1(t0-wkkgFM) entered listening state
[  503.991109] virbr0: port 1(t0-wkkgFM) entered learning state
[  506.007065] virbr0: port 1(t0-wkkgFM) entered forwarding state
[  506.012911] virbr0: topology change detected, propagating
[  520.148065] virbr0: port 1(t0-wkkgFM) entered disabled state
[  520.154929] t0-wkkgFM (unregistering): left allmulticast mode
[  520.160680] t0-wkkgFM (unregistering): left promiscuous mode
[  520.166347] virbr0: port 1(t0-wkkgFM) entered disabled state
[  562.090286] JFS: nTxBlock = 8192, nTxLock = 65536
[  562.129505] QNX4 filesystem 0.2.3 registered.
[  562.209778] raid6: avx2x4   gen() 29252 MB/s
[  562.281776] raid6: avx2x2   gen() 29525 MB/s
[  562.353777] raid6: avx2x1   gen() 20548 MB/s
[  562.358050] raid6: using algorithm avx2x2 gen() 29525 MB/s
[  562.429773] raid6: .... xor() 27389 MB/s, rmw enabled
[  562.434828] raid6: using avx2x2 recovery algorithm
[  562.441849] xor: automatically using best checksumming function   avx       
[  562.539781] Btrfs loaded, zoned=yes, fsverity=yes
[  566.963447] sda6: Can't mount, would change RO state
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Runtime Directory /run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser Slice of UID 0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNFS client services^[[0m.
         Stopping ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mShow Plymouth Reboot Screen^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mUser and Group Name Lookups^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSystem Logging Service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork is Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager Wait Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
         Stopping ^[[0;1;39mNetwork Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Network^[[0m.
         Stopping ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGenerate network units from Kernel command line^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
         Stopping ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Plymouth Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mVirtual Machine and Container Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m[  568.426638] audit: type=1305 audit(1750151866.667:313): op=set audit_pid=0 old=2288 auid=4294967295 ses=4294967295 subj=unconfined res=1
  OK  ^[[0m] Clos[  568.439936] audit: type=1131 audit(1750151866.679:314): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=auditd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
ed ^[[0;1;39mlibv[  568.460122] audit: type=1131 audit(1750151866.699:315): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
irt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon socket^[[0m.
         Stopping ^[[0;1;39mD-Bus System Message Bus^[[0m...
         Starting ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;[  568.524708] audit: type=1131 audit(1750151866.763:316): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-fsck@dev-disk-by\x2duuid-FBE5\x2d86EF comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  568.546112] XFS (dm-0): Unmounting Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
1;39mD-Bus Syste[  568.549012] XFS (sda6): Unmounting Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
m Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Unset automount ^[[0;1;39mArbitrary Executab…ormats File System Automount Point^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Encrypted Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Integrity Protected Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Verity Protected Volumes^[[0m.
         Deactivating swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
         Stopping ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-sysctl.service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
         Stopping ^[[0;1;39mSecurity Audi[  568.674265] audit: type=1131 audit(1750151866.915:317): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
ting Service^[[0m[  568.696060] audit: type=1131 audit(1750151866.935:318): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
         Unmounting ^[[0;1;39m/boot/efi^[[0m...
         Unmounting ^[[0;1;39m/home^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m...
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/d…kEo36yeb12DWUnp5czhD1hrKFNCXkJMetK^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-uuid…8d2e1f-0fb1-4c94-97ac-38505613fcbf^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/rhel_sharavati/swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/dm-2^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setu[  568.818941] audit: type=1131 audit(1750151867.059:319): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
p.service^[[0m.\r\r[  568.840017] audit: type=1130 audit(1750151867.079:320): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'

[^[[0;32m  OK  ^[[  568.861250] audit: type=1131 audit(1750151867.079:321): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[0m] Unmounted ^[[0;1;39m/run/cre[  568.884580] audit: type=1334 audit(1750151867.123:322): prog-id=34 op=UNLOAD
dentials/systemd-tmpfiles-setup-dev.service^[[0m.
         Unmounting ^[[0;1;39m/boot^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m[  568.918127] watchdog: watchdog0: watchdog did not stop!
/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/home^[[0m.\r\r[  568.929270] systemd-shutdown[1]: Using hardware watchdog 'SP5100 TCO timer', version 0, device /dev/watchdog0

[^[[0;32m  OK  ^[[  568.940183] systemd-shutdown[1]: Watchdog running with a timeout of 10min.
[0m] Stopped target ^[[0;1;39mPreparation for Local File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;[  568.956504] systemd-shutdown[1]: Syncing filesystems and block devices.
39mUnmount All F[  568.964251] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
ilesystems^[[0m.
         Stopping ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRemount Root and Kernel File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped [  568.991487] systemd-journald[1739]: Received SIGTERM from PID 1 (systemd-shutdow).
^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mMonitoring of LVM2 mirrors…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLate Shutdown Services^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSystem Reboot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Reboot^[[0m.
[  569.046146] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
[  569.070742] systemd-shutdown[1]: Unmounting file systems.
[  569.076906] [10816]: Remounting '/' read-only with options 'attr2,inode64,logbufs=8,logbsize=32k,noquota'.
[  569.095977] systemd-shutdown[1]: All filesystems unmounted.
[  569.101555] systemd-shutdown[1]: Deactivating swaps.
[  569.106573] systemd-shutdown[1]: All swaps deactivated.
[  569.111798] systemd-shutdown[1]: Detaching loop devices.
[  569.117615] systemd-shutdown[1]: All loop devices detached.
[  569.123672] systemd-shutdown[1]: Stopping MD devices.
[  569.128796] systemd-shutdown[1]: All MD devices stopped.
[  569.134115] systemd-shutdown[1]: Detaching DM devices.
[  569.139622] systemd-shutdown[1]: Detaching DM /dev/dm-2 (253:2).
[  569.177755] systemd-shutdown[1]: Detaching DM /dev/dm-0 (253:0).
[  569.233841] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  569.240374] systemd-shutdown[1]: Detaching DM devices.
[  569.245778] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  569.252223] systemd-shutdown[1]: Cannot finalize remaining DM devices, continuing.
[  569.259798] watchdog: watchdog0: watchdog did not stop!
[  569.355099] systemd-shutdown[1]: Successfully changed into root pivot.
[  569.361644] systemd-shutdown[1]: Returning to initrd...
[  569.413679] dracut Warning: Killing all remaining processes
dracut Warning: Killing all remaining processes
[  569.495611] XFS (dm-1): Unmounting Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[  569.512614] dracut Warning: Unmounted /oldroot.
dracut Warning: Unmounted /oldroot.
[  569.529135] dracut: Disassembling device-mapper devices
Rebooting.
[  569.736024] sd 8:0:2:0: [sdc] Synchronizing SCSI cache
[  569.741295] sd 8:0:0:0: [sda] Synchronizing SCSI cache
[  571.211037] mpt3sas_cm0: sending message unit reset !!
[  571.217587] mpt3sas_cm0: message unit reset: SUCCESS
[  571.225365] ACPI: PM: Preparing to enter system sleep state S5
[  571.231331] kvm: exiting hardware virtualization
[  571.235997] reboot: Restarting system
[  571.239663] reboot: machine restart
^[[c^[[2J^[[01;01H^[[=3h^[[2J^[[01;01HKEY MAPPING FOR CONSOLE REDIRECTION:

Use the <ESC><1> key sequence for <F1>
Use the <ESC><2> key sequence for <F2>
Use the <ESC><3> key sequence for <F3>
Use the <ESC><0> key sequence for <F10>
Use the <ESC><!> key sequence for <F11>
Use the <ESC><@> key sequence for <F12>

Use the <ESC><Ctrl><M> key sequence for <Ctrl><M>
Use the <ESC><Ctrl><H> key sequence for <Ctrl><H>
Use the <ESC><Ctrl><I> key sequence for <Ctrl><I>
Use the <ESC><Ctrl><J> key sequence for <Ctrl><J>

Use the <ESC><X><X> key sequence for <Alt><x>, where x is any letter
key, and X is the upper case of that key

Use the <ESC><R><ESC><r><ESC><R> key sequence for <Ctrl><Alt><Del>

Press the spacebar to pause...
Initializing PCIe, USB, and Video... Done
PowerEdge R6515
BIOS Version: 2.17.0
Console Redirection Enabled Requested by iDRAC

F2	 = System Setup
F10	 = Lifecycle Controller (Config
	   iDRAC, Update FW, Install OS)
F11	 = Boot Manager
F12	 = PXE Boot
iDRAC IPV4:  10.86.18.202 [Dedicated]
                                
Initializing Firmware Interfaces...
 





Enumerating Boot options...
Enumerating Boot options... Done
Loading Lifecycle Controller Drivers...
Loading Lifecycle Controller Drivers...Done
Lifecycle Controller: Collecting System Inventory...

iDRAC IPV4:  10.86.18.202 [Dedicated]

^[[2J^[[01;01HLifecycle Controller: Done
Booting...
^[[2J^[[01;01HBooting from Integrated Storage Controller 1: Red Hat Enterprise Linux
^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[02;32HGRUB version 2.06

\r^[[04;02H/----------------------------------------------------------------------------\^[[05;02H|^[[05;79H|^[[06;02H|^[[06;79H|^[[07;02H|^[[07;79H|^[[08;02H|^[[08;79H|^[[09;02H|^[[09;79H|^[[10;02H|^[[10;79H|^[[11;02H|^[[11;79H|^[[12;02H|^[[12;79H|^[[13;02H|^[[13;79H|^[[14;02H|^[[14;79H|^[[15;02H|^[[15;79H|^[[16;02H|^[[16;79H|^[[17;02H\----------------------------------------------------------------------------/^[[18;02H^[[19;02H     Use the ^ and v keys to select which entry is highlighted.          
\r      Press enter to boot the selected OS, `e' to edit the commands       
\r      before booting or `c' for a command-line. ESC to return previous    
\r      menu.                                                               ^[[05;80H ^[[0m^[[30m^[[47m^[[05;03H*Red Hat Enterprise Linux (6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e)>
\r^[[06;01H^[[0m^[[37m^[[40m^[[05;78H^[[06;03H Red Hat Enterprise Linux (6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997)>
\r^[[07;01H^[[06;78H^[[07;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250613-bc6e0ba6c9-dc42f4ece61)>
\r^[[08;01H^[[07;78H^[[08;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250612-0bb71d3018-d909e6968a1)>
\r^[[09;01H^[[08;78H^[[09;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250611-19a60293b9-72d7c68e20e)>
\r^[[10;01H^[[09;78H^[[10;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250610-b27cc623e0-9a3b1b1b837)>
\r^[[11;01H^[[10;78H^[[11;03H Red Hat Enterprise Linux (6.15.0-rc7-next-20250526-3be1a7a31f-22d449bcd69)>
\r^[[12;01H^[[11;78H^[[12;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250514-bdd609656f-ccb396cc166)>
\r^[[13;01H^[[12;78H^[[13;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250513-aa94665adc-e0bf3d3816b)>
\r^[[14;01H^[[13;78H^[[14;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250512-edef457004-450c56522a8)>
\r^[[15;01H^[[14;78H^[[15;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250508-f48887a98b-19c541fe872)>
\r^[[16;01H^[[15;78H^[[16;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250507-08710e6960-81586bd2ca8)>
\r^[[17;01H^[[16;78H^[[16;80Hv^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 5s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 4s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 3s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 2s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 1s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 0s.                 ^[[05;78H^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m  Booting `Red Hat Enterprise Linux
\r(6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e) 9.5 (Plow)'

\r[    0.000000] Linux version 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e (root@sharavati•amd.com) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-5), GNU ld version 2.35.2-63.el9) #1 SMP PREEMPT_DYNAMIC Tue Jun 17 12:09:52 IST 2025
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] SEV-SNP: RMP table physical range [0x0000000015e00000 - 0x00000000566fffff]
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000015dfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000015e00000-0x00000000566fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000056700000-0x00000000567fbfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000567fc000-0x00000000567fcfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000567fd000-0x000000005a142fff] usable
[    0.000000] BIOS-e820: [mem 0x000000005a143000-0x000000005a342fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005a343000-0x0000000067acefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000067acf000-0x000000006dfcefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006dfcf000-0x000000006edfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006edff000-0x000000006effefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000006efff000-0x000000006effffff] usable
[    0.000000] BIOS-e820: [mem 0x000000006f000000-0x000000006f00afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006f00b000-0x000000006fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000070000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa000000-0x00000000aaffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c5000000-0x00000000c5ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e0ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000207fcfffff] usable
[    0.000000] BIOS-e820: [mem 0x000000207fd00000-0x000000207fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000002080000000-0x000000407f1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000407f200000-0x000000407fffffff] reserved
[    0.000000] printk: legacy bootconsole [earlyser0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by Dell Inc.
[    0.000000] efi: ACPI=0x6effe000 ACPI 2.0=0x6effe014 MEMATTR=0x63f376a0 SMBIOS=0x6979e000 SMBIOS 3.0=0x6979c000 MOKvar=0x67bcc000 RNG=0x6efb4020 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem56: MMIO range=[0x80000000-0x8fffffff] (256MB) from e820 map
[    0.000000] efi: Remove mem57: MMIO range=[0xaa000000-0xaaffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem58: MMIO range=[0xc5000000-0xc5ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem59: MMIO range=[0xe0000000-0xe0ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem60: MMIO range=[0xfd000000-0xffffffff] (48MB) from e820 map
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[    0.000000] DMI: Memory slots populated: 8/16
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1996.253 MHz processor
[    0.000028] last_pfn = 0x407f200 max_arch_pfn = 0x400000000
[    0.005551] MTRR map: 7 entries (2 fixed + 5 variable; max 19), built from 9 variable MTRRs
[    0.013867] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Memory KASLR using RDRAND RDTSC...
[    0.023945] x2apic: enabled by BIOS, switching to x2apic ops
[    0.029579] last_pfn = 0x70000 max_arch_pfn = 0x400000000
[    0.039489] SEV-SNP: Reserving start/end of RMP table on a 2MB boundary [0x0000000056600000]
[    0.047759] Using GB pages for direct mapping
[    0.052742] Secure boot disabled
[    0.055794] RAMDISK: [mem 0x0bb2c000-0x0e0d4fff]
[    0.060391] ACPI: Early table checksum verification disabled
[    0.066023] ACPI: RSDP 0x000000006EFFE014 000024 (v02 DELL  )
[    0.071740] ACPI: XSDT 0x000000006EFB7188 0000DC (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.080235] ACPI: FACP 0x000000006EFF9000 000114 (v06 DELL   PE_SC3   00000002 DELL 00000001)
[    0.088729] ACPI: DSDT 0x000000006EFDA000 019528 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.097220] ACPI: FACS 0x000000006EDB9000 000040
[    0.101813] ACPI: BERT 0x000000006EFFC000 000030 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.110307] ACPI: ERST 0x000000006EFFB000 000230 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.118800] ACPI: HEST 0x000000006EFFA000 0007F4 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.127293] ACPI: HPET 0x000000006EFF8000 000038 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.135786] ACPI: APIC 0x000000006EFF6000 0018BE (v05 DELL   PE_SC3   00000002 DELL 00000001)
[    0.144279] ACPI: MCFG 0x000000006EFF5000 00003C (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.152771] ACPI: WSMT 0x000000006EFF4000 000028 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.161265] ACPI: SSDT 0x000000006EFD9000 000629 (v02 DELL   xhc_port 00000001 INTL 20210331)
[    0.169758] ACPI: SSDT 0x000000006EFD8000 000D6E (v02 AMD    CPMRAS   00000001 INTL 20210331)
[    0.178252] ACPI: EINJ 0x000000006EFD7000 000170 (v01 AMD    PE_SC3   00000001 AMD  00000001)
[    0.186745] ACPI: PCCT 0x000000006EFD6000 00006E (v02 DELL   AmdTable 00000001 AMD  00000001)
[    0.195238] ACPI: SSDT 0x000000006EFC7000 00E849 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.203731] ACPI: SRAT 0x000000006EFC6000 000CD0 (v03 DELL   PE_SC3   00000001 AMD  00000001)
[    0.212223] ACPI: MSCT 0x000000006EFC5000 00004E (v01 DELL   PE_SC3   00000000 AMD  00000001)
[    0.220716] ACPI: SLIT 0x000000006EFC4000 000030 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.229210] ACPI: CRAT 0x000000006EFBC000 0072F8 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.237703] ACPI: CDIT 0x000000006EFBB000 00002C (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.246196] ACPI: IVRS 0x000000006EFBA000 0001F0 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.254699] ACPI: SPCR 0x000000006EFB9000 000050 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.263217] ACPI: SLIC 0x000000006EFB8000 000176 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.271710] ACPI: SSDT 0x000000006EFFD000 000D66 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.280203] ACPI: SSDT 0x000000006EFB5000 00193C (v02 AMD    CPMCMN   00000001 INTL 20210331)
[    0.288695] ACPI: Reserving FACP table memory at [mem 0x6eff9000-0x6eff9113]
[    0.295716] ACPI: Reserving DSDT table memory at [mem 0x6efda000-0x6eff3527]
[    0.302736] ACPI: Reserving FACS table memory at [mem 0x6edb9000-0x6edb903f]
[    0.309755] ACPI: Reserving BERT table memory at [mem 0x6effc000-0x6effc02f]
[    0.316776] ACPI: Reserving ERST table memory at [mem 0x6effb000-0x6effb22f]
[    0.323795] ACPI: Reserving HEST table memory at [mem 0x6effa000-0x6effa7f3]
[    0.330815] ACPI: Reserving HPET table memory at [mem 0x6eff8000-0x6eff8037]
[    0.337834] ACPI: Reserving APIC table memory at [mem 0x6eff6000-0x6eff78bd]
[    0.344855] ACPI: Reserving MCFG table memory at [mem 0x6eff5000-0x6eff503b]
[    0.351874] ACPI: Reserving WSMT table memory at [mem 0x6eff4000-0x6eff4027]
[    0.358895] ACPI: Reserving SSDT table memory at [mem 0x6efd9000-0x6efd9628]
[    0.365914] ACPI: Reserving SSDT table memory at [mem 0x6efd8000-0x6efd8d6d]
[    0.372933] ACPI: Reserving EINJ table memory at [mem 0x6efd7000-0x6efd716f]
[    0.379952] ACPI: Reserving PCCT table memory at [mem 0x6efd6000-0x6efd606d]
[    0.386973] ACPI: Reserving SSDT table memory at [mem 0x6efc7000-0x6efd5848]
[    0.393992] ACPI: Reserving SRAT table memory at [mem 0x6efc6000-0x6efc6ccf]
[    0.401012] ACPI: Reserving MSCT table memory at [mem 0x6efc5000-0x6efc504d]
[    0.408033] ACPI: Reserving SLIT table memory at [mem 0x6efc4000-0x6efc402f]
[    0.415053] ACPI: Reserving CRAT table memory at [mem 0x6efbc000-0x6efc32f7]
[    0.422073] ACPI: Reserving CDIT table memory at [mem 0x6efbb000-0x6efbb02b]
[    0.429092] ACPI: Reserving IVRS table memory at [mem 0x6efba000-0x6efba1ef]
[    0.436112] ACPI: Reserving SPCR table memory at [mem 0x6efb9000-0x6efb904f]
[    0.443131] ACPI: Reserving SLIC table memory at [mem 0x6efb8000-0x6efb8175]
[    0.450151] ACPI: Reserving SSDT table memory at [mem 0x6effd000-0x6effdd65]
[    0.457206] ACPI: Reserving SSDT table memory at [mem 0x6efb5000-0x6efb693b]
[    0.464301] APIC: Switched APIC routing to: cluster x2apic
[    0.469703] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.475665] ACPI: SRAT: Node 0 PXM 0 [mem 0x000c0000-0x7fffffff]
[    0.481646] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.487884] ACPI: SRAT: Node 1 PXM 1 [mem 0x2080000000-0x407fffffff]
[    0.494218] NUMA: Node 0 [mem 0x00001000-0x0009ffff] + [mem 0x000c0000-0x7fffffff] -> [mem 0x00001000-0x7fffffff]
[    0.504440] NUMA: Node 0 [mem 0x00001000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00001000-0x207fffffff]
[    0.515104] NODE_DATA(0) allocated [mem 0x207fcd59c0-0x207fcfffff]
[    0.521259] NODE_DATA(1) allocated [mem 0x407f1d49c0-0x407f1fefff]
[    0.527543] cannot allocate crashkernel low memory (size:0x10800000).
[    0.534075] Zone ranges:
[    0.536435]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.542587]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.548740]   Normal   [mem 0x0000000100000000-0x000000407f1fffff]
[    0.554894]   Device   empty
[    0.557754] Movable zone start for each node
[    0.562001] Early memory node ranges
[    0.565553]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.571793]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.578034]   node   0: [mem 0x0000000000100000-0x0000000015dfffff]
[    0.584274]   node   0: [mem 0x0000000056700000-0x00000000567fbfff]
[    0.590514]   node   0: [mem 0x00000000567fd000-0x000000005a142fff]
[    0.596752]   node   0: [mem 0x000000005a343000-0x0000000067acefff]
[    0.602993]   node   0: [mem 0x000000006efff000-0x000000006effffff]
[    0.609232]   node   0: [mem 0x000000006f00b000-0x000000006fffffff]
[    0.615472]   node   0: [mem 0x0000000100000000-0x000000207fcfffff]
[    0.621722]   node   1: [mem 0x0000002080000000-0x000000407f1fffff]
[    0.627963] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fcfffff]
[    0.634974] Initmem setup node 1 [mem 0x0000002080000000-0x000000407f1fffff]
[    0.641995] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.647798] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.653617] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.659848] On node 0, zone DMA32: 35072 pages in unavailable ranges
[    0.666056] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.672184] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.678302] On node 0, zone DMA32: 30000 pages in unavailable ranges
[    0.684546] On node 0, zone DMA32: 11 pages in unavailable ranges
[    0.910203] On node 1, zone Normal: 768 pages in unavailable ranges
[    0.916308] On node 1, zone Normal: 3584 pages in unavailable ranges
[    0.922798] ACPI: PM-Timer IO Port: 0x408
[    0.926668] ACPI: X2APIC_NMI (uid[0xffffffff] high edge lint[0x1])
[    0.932796] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.938701] IOAPIC[0]: apic_id 240, version 33, address 0xfec00000, GSI 0-23
[    0.945710] IOAPIC[1]: apic_id 241, version 33, address 0xe0100000, GSI 120-151
[    0.952991] IOAPIC[2]: apic_id 242, version 33, address 0xc5100000, GSI 88-119
[    0.960184] IOAPIC[3]: apic_id 243, version 33, address 0xaa100000, GSI 56-87
[    0.967290] IOAPIC[4]: apic_id 244, version 33, address 0xfd100000, GSI 24-55
[    0.974396] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.980720] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.987226] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.993632] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.998748] ACPI: SPCR: console: uart,io,0x2f8,115200
[    1.003778] CPU topo: Max. logical packages:   1
[    1.008365] CPU topo: Max. logical dies:       1
[    1.012958] CPU topo: Max. dies per package:   1
[    1.017556] CPU topo: Max. threads per core:   2
[    1.022163] CPU topo: Num. cores per package:    64
[    1.027015] CPU topo: Num. threads per package: 128
[    1.031868] CPU topo: Allowing 128 present CPUs plus 0 hotplug CPUs
[    1.038134] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    1.045650] PM: hibernation: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    1.053188] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    1.060728] PM: hibernation: Registered nosave memory: [mem 0x15e00000-0x567fffff]
[    1.068268] PM: hibernation: Registered nosave memory: [mem 0x5a143000-0x5a342fff]
[    1.075809] PM: hibernation: Registered nosave memory: [mem 0x67acf000-0x6effefff]
[    1.083349] PM: hibernation: Registered nosave memory: [mem 0x6f000000-0x6f00afff]
[    1.090889] PM: hibernation: Registered nosave memory: [mem 0x70000000-0xffffffff]
[    1.098428] PM: hibernation: Registered nosave memory: [mem 0x207fd00000-0x207fffffff]
[    1.106314] [mem 0x56800000-0xffffffff] available for PCI devices
[    1.112380] Booting paravirtualized kernel on bare hardware
[    1.117927] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    1.128338] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:128 nr_cpu_ids:128 nr_node_ids:2
[    1.139232] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[    1.145710] Kernel command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    1.175039] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e biosdevname=0 mem_encrypt=off", will be passed to user space.
[    1.191887] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    1.198802] printk: log_buf_len total cpu_extra contributions: 520192 bytes
[    1.205734] printk: log_buf_len min size: 262144 bytes
[    1.211179] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[    1.218561] printk: early log buf free: 246352(93%)
[    1.225007] software IO TLB: area num 128.
[    1.228932] software IO TLB: swiotlb_memblock_alloc: Failed to allocate 268435456 bytes tlb structure
[    1.244002] software IO TLB: SWIOTLB bounce buffer size adjusted 131072 -> 65536 slabs
[    1.250099] Fallback order for Node 0: 0 1 
[    1.250103] Fallback order for Node 1: 1 0 
[    1.250117] Built 2 zonelists, mobility grouping on.  Total pages: 66743906
[    1.273099] Policy zone: Normal
[    1.276227] mem auto-init: stack:off, heap alloc:on, heap free:off
[    1.694529] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=128, Nodes=2
Poking KASLR using RDRAND RDTSC...
[    1.715766] ftrace: allocating 53763 entries in 212 pages
[    1.720981] ftrace: allocated 212 pages with 4 groups
[    1.726923] Dynamic Preempt: voluntary
[    1.730858] rcu: Preemptible hierarchical RCU implementation.
[    1.736424] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=128.
[    1.743375] 	Trampoline variant of Tasks RCU enabled.
[    1.748401] 	Rude variant of Tasks RCU enabled.
[    1.752907] 	Tracing variant of Tasks RCU enabled.
[    1.757674] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.765214] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=128
[    1.772100] RCU Tasks: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.780903] RCU Tasks Rude: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.790178] RCU Tasks Trace: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.803059] NR_IRQS: 524544, nr_irqs: 3624, preallocated irqs: 16
[    1.809249] rcu: srcu_init: Setting srcu_struct sizes to big.
[    1.814991] Console: colour dummy device 80x25
[    1.819277] printk: legacy console [ttyS0] enabled
[    1.819277] printk: legacy console [ttyS0] enabled
[    1.828808] printk: legacy bootconsole [earlyser0] disabled
[    1.828808] printk: legacy bootconsole [earlyser0] disabled
[    1.840026] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    1.851300] ACPI: Core revision 20250404
[    1.855452] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    1.864590] APIC: Switch to symmetric I/O mode setup
[    1.870020] AMD-Vi: Using global IVHD EFR:0x841f77e022094ace, EFR2:0x0
[    1.878960] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    1.904592] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x398cb520d2b, max_idle_ns: 881590603874 ns
[    1.915104] Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.50 BogoMIPS (lpj=7985012)
[    1.919116] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    1.923214] LVT offset 2 assigned for vector 0xf4
[    1.927133] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    1.931103] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    1.935104] process: using mwait in idle threads
[    1.939107] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    1.943103] Spectre V2 : Mitigation: Retpolines
[    1.947103] Spectre V2 : User space: Mitigation: STIBP always-on protection
[    1.951103] Speculative Return Stack Overflow: Mitigation: Safe RET
[    1.955103] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.959103] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
[    1.963103] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    1.967103] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    1.971107] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.975103] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.979103] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.983103] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    1.987103] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    1.991103] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    1.995103] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    1.999103] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    2.003103] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[    2.040873] Freeing SMP alternatives memory: 48K
[    2.043105] pid_max: default: 131072 minimum: 1024
[    2.054438] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm
[    2.055156] Yama: becoming mindful.
[    2.059230] AppArmor: AppArmor initialized
[    2.071593] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    2.079876] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    2.083253] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.087199] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.203719] smpboot: CPU0: AMD EPYC 7713 64-Core Processor (family: 0x19, model: 0x1, stepping: 0x1)
[    2.207458] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    2.211105] ... version:                0
[    2.215104] ... bit width:              48
[    2.219104] ... generic registers:      6
[    2.223104] ... value mask:             0000ffffffffffff
[    2.227104] ... max period:             00007fffffffffff
[    2.231104] ... fixed-purpose events:   0
[    2.235104] ... event mask:             000000000000003f
[    2.239533] signal: max sigframe size: 3376
[    2.243165] rcu: Hierarchical SRCU implementation.
[    2.247104] rcu: 	Max phase no-delay instances is 1000.
[    2.251161] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
[    2.263504] MCE: In-kernel MCE decoding enabled.
[    2.267152] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    2.272074] smp: Bringing up secondary CPUs ...
[    2.275264] smpboot: x86: Booting SMP configuration:
[    2.279107] .... node  #0, CPUs:          #1   #2   #3   #4   #5   #6   #7   #8   #9  #10  #11  #12  #13  #14  #15  #16  #17  #18  #19  #20  #21  #22  #23  #24  #25  #26  #27  #28  #29  #30  #31
[    2.291106] .... node  #1, CPUs:    #32  #33  #34  #35  #36  #37  #38  #39  #40  #41  #42  #43  #44  #45  #46  #47  #48  #49  #50  #51  #52  #53  #54  #55  #56  #57  #58  #59  #60  #61  #62  #63
[    2.443106] .... node  #0, CPUs:    #64  #65  #66  #67  #68  #69  #70  #71  #72  #73  #74  #75  #76  #77  #78  #79  #80  #81  #82  #83  #84  #85  #86  #87  #88  #89  #90  #91  #92  #93  #94  #95
[    2.451107] .... node  #1, CPUs:    #96  #97  #98  #99 #100 #101 #102 #103 #104 #105 #106 #107 #108 #109 #110 #111 #112 #113 #114 #115 #116 #117 #118 #119 #120 #121 #122 #123 #124 #125 #126 #127
[    2.459410] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[    2.611277] smp: Brought up 2 nodes, 128 CPUs
[    2.615107] smpboot: Total of 128 processors activated (511040.76 BogoMIPS)
[    2.625443] Memory: 262224764K/266975624K available (18401K kernel code, 3299K rwdata, 7944K rodata, 4760K init, 6092K bss, 4428284K reserved, 0K cma-reserved)
[    2.633673] devtmpfs: initialized
[    2.635214] x86/mm: Memory block size: 2048MB
[    2.650413] ACPI: PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    2.651106] ACPI: PM: Registering ACPI NVS region [mem 0x6dfcf000-0x6edfefff] (14876672 bytes)
[    2.655394] ACPI: PM: Registering ACPI NVS region [mem 0x6f000000-0x6f00afff] (45056 bytes)
[    2.659227] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    2.663170] posixtimers hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.667328] futex hash table entries: 16384 (1048576 bytes on 2 NUMA nodes, total 2048 KiB, linear).
[    2.671339] pinctrl core: initialized pinctrl subsystem
[    2.675255] PM: RTC time: 14:50:01, date: 2025-06-17
[    2.679885] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    2.683689] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    2.687288] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    2.691288] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    2.695113] audit: initializing netlink subsys (disabled)
[    2.699134] audit: type=2000 audit(1750171800.820:1): state=initialized audit_enabled=0 res=1
[    2.699310] thermal_sys: Registered thermal governor 'fair_share'
[    2.703105] thermal_sys: Registered thermal governor 'bang_bang'
[    2.707104] thermal_sys: Registered thermal governor 'step_wise'
[    2.711105] thermal_sys: Registered thermal governor 'user_space'
[    2.715130] cpuidle: using governor ladder
[    2.723114] cpuidle: using governor menu
[    2.727152] Detected 1 PCC Subspaces
[    2.731105] Registering PCC driver as Mailbox controller
[    2.735280] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    2.739107] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    2.743291] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    2.747115] PCI: Using configuration type 1 for base access
[    2.751115] PCI: Dell System detected, enabling pci=bfsort.
[    2.755312] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    2.759322] HugeTLB: allocation took 0ms with hugepage_allocation_threads=32
[    2.763148] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    2.767104] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    2.771105] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    2.775104] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    2.783748] ACPI: Added _OSI(Module Device)
[    2.787105] ACPI: Added _OSI(Processor Device)
[    2.791104] ACPI: Added _OSI(Processor Aggregator Device)
[    2.837078] ACPI: 6 ACPI AML tables successfully acquired and loaded
[    2.849087] ACPI: Interpreter enabled
[    2.851117] ACPI: PM: (supports S0 S5)
[    2.855104] ACPI: Using IOAPIC for interrupt routing
[    2.859722] HEST: Table parsing has been initialized.
[    2.863514] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    2.867107] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.871104] PCI: Ignoring E820 reservations for host bridge windows
[    2.880578] ACPI: Enabled 1 GPEs in block 00 to 1F
[    2.922540] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    2.923184] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    2.927182] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    2.931182] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    2.935183] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    2.939182] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    2.943182] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    2.947182] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    2.951608] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-3f])
[    2.955108] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.959269] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER DPC]
[    2.963420] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    2.967104] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.975764] PCI host bridge to bus 0000:00
[    2.979108] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    2.983104] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    2.987106] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000fffff window]
[    2.991104] pci_bus 0000:00: root bus resource [io  0x0d00-0x3fff window]
[    2.995104] pci_bus 0000:00: root bus resource [mem 0xe1000000-0xfebfffff window]
[    2.999104] pci_bus 0000:00: root bus resource [mem 0x63dc0000000-0x7fcffffffff window]
[    3.003104] pci_bus 0000:00: root bus resource [bus 00-3f]
[    3.007118] pci 0000:00:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.011262] pci 0000:00:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.015214] pci 0000:00:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.019198] pci 0000:00:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.023195] pci 0000:00:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.027198] pci 0000:00:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.031120] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.035107] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    3.039106] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    3.043173] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    3.048114] pci 0000:00:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.051199] pci 0000:00:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.055200] pci 0000:00:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.059198] pci 0000:00:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.063119] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.067108] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    3.071116] pci 0000:00:07.1: enabling Extended Tags
[    3.075153] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    3.079261] pci 0000:00:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.083197] pci 0000:00:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.087120] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.091109] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    3.095116] pci 0000:00:08.1: enabling Extended Tags
[    3.099154] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    3.103294] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
[    3.107219] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
[    3.111276] pci 0000:00:18.0: [1022:1650] type 00 class 0x060000 conventional PCI endpoint
[    3.115211] pci 0000:00:18.1: [1022:1651] type 00 class 0x060000 conventional PCI endpoint
[    3.119169] pci 0000:00:18.2: [1022:1652] type 00 class 0x060000 conventional PCI endpoint
[    3.123172] pci 0000:00:18.3: [1022:1653] type 00 class 0x060000 conventional PCI endpoint
[    3.127168] pci 0000:00:18.4: [1022:1654] type 00 class 0x060000 conventional PCI endpoint
[    3.131169] pci 0000:00:18.5: [1022:1655] type 00 class 0x060000 conventional PCI endpoint
[    3.135173] pci 0000:00:18.6: [1022:1656] type 00 class 0x060000 conventional PCI endpoint
[    3.139169] pci 0000:00:18.7: [1022:1657] type 00 class 0x060000 conventional PCI endpoint
[    3.143240] pci 0000:01:00.0: [1000:0097] type 00 class 0x010700 PCIe Endpoint
[    3.147134] pci 0000:01:00.0: BAR 0 [io  0x1000-0x10ff]
[    3.151106] pci 0000:01:00.0: BAR 1 [mem 0xf7400000-0xf740ffff 64bit]
[    3.155106] pci 0000:01:00.0: BAR 3 [mem 0xf7300000-0xf73fffff 64bit]
[    3.159106] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]
[    3.163109] pci 0000:01:00.0: enabling Extended Tags
[    3.167191] pci 0000:01:00.0: supports D1 D2
[    3.171146] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[    3.175104] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x000fffff 64bit]: contains BAR 0 for 16 VFs
[    3.179105] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x000fffff 64bit]
[    3.183104] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x00ffffff 64bit]: contains BAR 2 for 16 VFs
[    3.187254] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.191194] pci 0000:02:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.195138] pci 0000:02:00.0: enabling Extended Tags
[    3.199267] pci 0000:02:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.203132] pci 0000:02:00.2: BAR 2 [mem 0xf7200000-0xf727ffff]
[    3.207106] pci 0000:02:00.2: BAR 5 [mem 0xf7280000-0xf7281fff]
[    3.211109] pci 0000:02:00.2: enabling Extended Tags
[    3.215306] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.219240] pci 0000:03:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.223140] pci 0000:03:00.0: enabling Extended Tags
[    3.227316] pci 0000:03:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.231134] pci 0000:03:00.2: BAR 2 [mem 0xf7100000-0xf717ffff]
[    3.235106] pci 0000:03:00.2: BAR 5 [mem 0xf7180000-0xf7181fff]
[    3.239109] pci 0000:03:00.2: enabling Extended Tags
[    3.243297] pci 0000:03:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.247134] pci 0000:03:00.3: BAR 0 [mem 0xf7000000-0xf70fffff 64bit]
[    3.251113] pci 0000:03:00.3: enabling Extended Tags
[    3.255155] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
[    3.259287] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.268068] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 40-7f])
[    3.271107] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.275267] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.279421] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.283104] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.288037] PCI host bridge to bus 0000:40
[    3.291108] pci_bus 0000:40: root bus resource [io  0x4000-0x6fff window]
[    3.295104] pci_bus 0000:40: root bus resource [mem 0x90000000-0xaaffffff window]
[    3.299104] pci_bus 0000:40: root bus resource [mem 0x47e80000000-0x63dbfffffff window]
[    3.303104] pci_bus 0000:40: root bus resource [bus 40-7f]
[    3.307114] pci 0000:40:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.311204] pci 0000:40:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.315205] pci 0000:40:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.319188] pci 0000:40:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.323188] pci 0000:40:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.327197] pci 0000:40:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.331121] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.335109] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    3.339196] pci 0000:40:03.1: PME# supported from D0 D3hot D3cold
[    3.355920] pci 0000:40:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.359128] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.363110] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    3.371140] pci 0000:40:03.2: PME# supported from D0 D3hot D3cold
[    3.389511] pci 0000:40:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.391126] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.395109] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    3.399211] pci 0000:40:03.3: PME# supported from D0 D3hot D3cold
[    3.419328] pci 0000:40:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.423126] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.427111] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    3.431227] pci 0000:40:03.4: PME# supported from D0 D3hot D3cold
[    3.448831] pci 0000:40:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.455205] pci 0000:40:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.463194] pci 0000:40:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.471198] pci 0000:40:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.479120] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.483108] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    3.491115] pci 0000:40:07.1: enabling Extended Tags
[    3.495151] pci 0000:40:07.1: PME# supported from D0 D3hot D3cold
[    3.503258] pci 0000:40:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.511198] pci 0000:40:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.519120] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.523109] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    3.531117] pci 0000:40:08.1: enabling Extended Tags
[    3.535153] pci 0000:40:08.1: PME# supported from D0 D3hot D3cold
[    3.543356] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.547186] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.551186] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.555187] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.563192] pci 0000:45:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.567139] pci 0000:45:00.0: enabling Extended Tags
[    3.575278] pci 0000:45:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.583134] pci 0000:45:00.2: BAR 2 [mem 0xa5300000-0xa537ffff]
[    3.587111] pci 0000:45:00.2: BAR 5 [mem 0xa5380000-0xa5381fff]
[    3.595112] pci 0000:45:00.2: enabling Extended Tags
[    3.599306] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.603239] pci 0000:46:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.607140] pci 0000:46:00.0: enabling Extended Tags
[    3.611314] pci 0000:46:00.1: [1022:1486] type 00 class 0x108000 PCIe Endpoint
[    3.615133] pci 0000:46:00.1: BAR 2 [mem 0xa5100000-0xa51fffff]
[    3.619107] pci 0000:46:00.1: BAR 5 [mem 0xa5282000-0xa5283fff]
[    3.623109] pci 0000:46:00.1: enabling Extended Tags
[    3.627298] pci 0000:46:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.631133] pci 0000:46:00.2: BAR 2 [mem 0xa5200000-0xa527ffff]
[    3.635106] pci 0000:46:00.2: BAR 5 [mem 0xa5280000-0xa5281fff]
[    3.639109] pci 0000:46:00.2: enabling Extended Tags
[    3.643297] pci 0000:46:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.647132] pci 0000:46:00.3: BAR 0 [mem 0xa5000000-0xa50fffff 64bit]
[    3.651112] pci 0000:46:00.3: enabling Extended Tags
[    3.655154] pci 0000:46:00.3: PME# supported from D0 D3hot D3cold
[    3.659287] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.663770] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 80-bf])
[    3.667107] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.671269] acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.675419] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.679104] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.684013] PCI host bridge to bus 0000:80
[    3.687109] pci_bus 0000:80: root bus resource [io  0x7000-0x9fff window]
[    3.691104] pci_bus 0000:80: root bus resource [mem 0xab000000-0xc5ffffff window]
[    3.695104] pci_bus 0000:80: root bus resource [mem 0x2bf40000000-0x47e7fffffff window]
[    3.699104] pci_bus 0000:80: root bus resource [bus 80-bf]
[    3.703117] pci 0000:80:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.707307] pci 0000:80:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.711207] pci 0000:80:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.715199] pci 0000:80:01.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.719122] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.723110] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    3.727200] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    3.745150] pci 0000:80:01.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.747129] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.751110] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    3.755218] pci 0000:80:01.2: PME# supported from D0 D3hot D3cold
[    3.775585] pci 0000:80:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.779238] pci 0000:80:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.783192] pci 0000:80:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.787249] pci 0000:80:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.791193] pci 0000:80:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.795193] pci 0000:80:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.799119] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.803108] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    3.807117] pci 0000:80:07.1: enabling Extended Tags
[    3.811152] pci 0000:80:07.1: PME# supported from D0 D3hot D3cold
[    3.815262] pci 0000:80:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.819196] pci 0000:80:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.823120] pci 0000:80:08.1: PCI bridge to [bus 84]
[    3.827109] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    3.831116] pci 0000:80:08.1: enabling Extended Tags
[    3.835153] pci 0000:80:08.1: PME# supported from D0 D3hot D3cold
[    3.839274] pci 0000:80:08.2: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.843120] pci 0000:80:08.2: PCI bridge to [bus 85]
[    3.847108] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    3.851116] pci 0000:80:08.2: enabling Extended Tags
[    3.855153] pci 0000:80:08.2: PME# supported from D0 D3hot D3cold
[    3.859345] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.863186] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.867191] pci 0000:83:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.871137] pci 0000:83:00.0: enabling Extended Tags
[    3.875266] pci 0000:83:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.879131] pci 0000:83:00.2: BAR 2 [mem 0xbfa00000-0xbfa7ffff]
[    3.883106] pci 0000:83:00.2: BAR 5 [mem 0xbfa80000-0xbfa81fff]
[    3.887109] pci 0000:83:00.2: enabling Extended Tags
[    3.891307] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.895239] pci 0000:84:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.899140] pci 0000:84:00.0: enabling Extended Tags
[    3.903314] pci 0000:84:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.907134] pci 0000:84:00.2: BAR 2 [mem 0xbf900000-0xbf97ffff]
[    3.911106] pci 0000:84:00.2: BAR 5 [mem 0xbf980000-0xbf981fff]
[    3.915109] pci 0000:84:00.2: enabling Extended Tags
[    3.919308] pci 0000:80:08.1: PCI bridge to [bus 84]
[    3.923237] pci 0000:85:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[    3.927137] pci 0000:85:00.0: BAR 5 [mem 0xbf800000-0xbf8007ff]
[    3.931110] pci 0000:85:00.0: enabling Extended Tags
[    3.935170] pci 0000:85:00.0: PME# supported from D3hot D3cold
[    3.939285] pci 0000:80:08.2: PCI bridge to [bus 85]
[    3.943832] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus c0-ff])
[    3.947107] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.951268] acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.955419] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.959104] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.964130] PCI host bridge to bus 0000:c0
[    3.967108] pci_bus 0000:c0: root bus resource [io  0xa000-0xffff window]
[    3.971104] pci_bus 0000:c0: root bus resource [mem 0xc6000000-0xe0ffffff window]
[    3.975104] pci_bus 0000:c0: root bus resource [mem 0x10000000000-0x2bf3fffffff window]
[    3.979104] pci_bus 0000:c0: root bus resource [io  0x03b0-0x03df window]
[    3.983105] pci_bus 0000:c0: root bus resource [mem 0x000a0000-0x000bffff window]
[    3.987105] pci_bus 0000:c0: root bus resource [bus c0-ff]
[    3.991114] pci 0000:c0:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.995199] pci 0000:c0:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.999205] pci 0000:c0:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.003189] pci 0000:c0:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.007187] pci 0000:c0:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.011197] pci 0000:c0:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.015121] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.019109] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    4.023194] pci 0000:c0:03.1: PME# supported from D0 D3hot D3cold
[    4.043993] pci 0000:c0:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.047129] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.051111] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    4.059211] pci 0000:c0:03.2: PME# supported from D0 D3hot D3cold
[    4.078471] pci 0000:c0:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.083122] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.091111] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    4.095196] pci 0000:c0:03.3: PME# supported from D0 D3hot D3cold
[    4.117462] pci 0000:c0:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.123135] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.127109] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    4.135267] pci 0000:c0:03.4: PME# supported from D0 D3hot D3cold
[    4.156794] pci 0000:c0:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.163236] pci 0000:c0:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.171255] pci 0000:c0:05.1: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.179119] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.183114] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    4.191150] pci 0000:c0:05.1: PME# supported from D0 D3hot D3cold
[    4.199258] pci 0000:c0:05.2: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.207119] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.211109] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    4.219110] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.227149] pci 0000:c0:05.2: PME# supported from D0 D3hot D3cold
[    4.231248] pci 0000:c0:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.239194] pci 0000:c0:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.247119] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.251109] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    4.259115] pci 0000:c0:07.1: enabling Extended Tags
[    4.263150] pci 0000:c0:07.1: PME# supported from D0 D3hot D3cold
[    4.271258] pci 0000:c0:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.279198] pci 0000:c0:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.287119] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.291109] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    4.299116] pci 0000:c0:08.1: enabling Extended Tags
[    4.303152] pci 0000:c0:08.1: PME# supported from D0 D3hot D3cold
[    4.307345] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.315191] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.319185] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.323185] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.331206] pci 0000:c1:00.0: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.335149] pci 0000:c1:00.0: BAR 0 [mem 0xc7030000-0xc703ffff 64bit pref]
[    4.343106] pci 0000:c1:00.0: BAR 2 [mem 0xc7040000-0xc704ffff 64bit pref]
[    4.351107] pci 0000:c1:00.0: BAR 4 [mem 0xc7050000-0xc705ffff 64bit pref]
[    4.359106] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.363191] pci 0000:c1:00.0: PME# supported from D0 D3hot D3cold
[    4.371159] pci 0000:c1:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:c0:05.1 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
[    4.387574] pci 0000:c1:00.1: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.395151] pci 0000:c1:00.1: BAR 0 [mem 0xc7000000-0xc700ffff 64bit pref]
[    4.399106] pci 0000:c1:00.1: BAR 2 [mem 0xc7010000-0xc701ffff 64bit pref]
[    4.407106] pci 0000:c1:00.1: BAR 4 [mem 0xc7020000-0xc702ffff 64bit pref]
[    4.415106] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.419192] pci 0000:c1:00.1: PME# supported from D0 D3hot D3cold
[    4.435142] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.439187] pci 0000:c2:00.0: [1556:be00] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    4.447130] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.451111] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    4.459113] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.475118] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.479139] pci_bus 0000:c3: extended config space not accessible
[    4.483132] pci 0000:c3:00.0: [102b:0536] type 00 class 0x030000 conventional PCI endpoint
[    4.495150] pci 0000:c3:00.0: BAR 0 [mem 0xc6000000-0xc6ffffff pref]
[    4.499105] pci 0000:c3:00.0: BAR 1 [mem 0xda808000-0xda80bfff]
[    4.507105] pci 0000:c3:00.0: BAR 2 [mem 0xda000000-0xda7fffff]
[    4.511123] pci 0000:c3:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    4.519231] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.523203] pci 0000:c8:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    4.531136] pci 0000:c8:00.0: enabling Extended Tags
[    4.539263] pci 0000:c8:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.543131] pci 0000:c8:00.2: BAR 2 [mem 0xdbb00000-0xdbb7ffff]
[    4.551106] pci 0000:c8:00.2: BAR 5 [mem 0xdbb80000-0xdbb81fff]
[    4.555109] pci 0000:c8:00.2: enabling Extended Tags
[    4.563180] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.567239] pci 0000:c9:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.575140] pci 0000:c9:00.0: enabling Extended Tags
[    4.579313] pci 0000:c9:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.587133] pci 0000:c9:00.2: BAR 2 [mem 0xdba00000-0xdba7ffff]
[    4.591106] pci 0000:c9:00.2: BAR 5 [mem 0xdba80000-0xdba81fff]
[    4.599110] pci 0000:c9:00.2: enabling Extended Tags
[    4.603306] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.614266] iommu: Default domain type: Translated
[    4.619105] iommu: DMA domain TLB invalidation policy: lazy mode
[    4.627409] SCSI subsystem initialized
[    4.631149] ACPI: bus type USB registered
[    4.635130] usbcore: registered new interface driver usbfs
[    4.639115] usbcore: registered new interface driver hub
[    4.647141] usbcore: registered new device driver usb
[    4.651137] pps_core: LinuxPPS API ver. 1 registered
[    4.655105] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux•it>
[    4.667106] PTP clock support registered
[    4.671187] EDAC MC: Ver: 3.0.0
[    4.671322] efivars: Registered efivars operations
[    4.679572] NetLabel: Initializing
[    4.683107] NetLabel:  domain hash size = 128
[    4.687105] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    4.691127] NetLabel:  unlabeled traffic allowed by default
[    4.699152] PCI: Using ACPI for IRQ routing
[    4.707326] pci 0000:c3:00.0: vgaarb: setting as boot VGA device
[    4.711102] pci 0000:c3:00.0: vgaarb: bridge control possible
[    4.711102] pci 0000:c3:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    4.727106] vgaarb: loaded
[    4.729821] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    4.735105] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    4.743322] clocksource: Switched to clocksource tsc-early
[    4.748934] VFS: Disk quotas dquot_6.6.0
[    4.752890] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.760011] AppArmor: AppArmor Filesystem Enabled
[    4.764745] pnp: PnP ACPI init
[    4.768049] system 00:00: [mem 0x80000000-0x8fffffff] has been reserved
[    4.774760] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[    4.782980] pnp: PnP ACPI: found 5 devices
[    4.794139] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    4.803112] NET: Registered PF_INET protocol family
[    4.808126] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.819984] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.828940] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    4.836970] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.846462] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.854859] TCP: Hash tables configured (established 524288 bind 65536)
[    4.861832] UDP hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.870255] UDP-Lite hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.879085] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    4.884750] NET: Registered PF_XDP protocol family
[    4.889545] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.899371] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.909189] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.919010] pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
[    4.924698] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: can't assign; no space
[    4.932441] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: failed to assign
[    4.939661] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: can't assign; no space
[    4.947918] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: failed to assign
[    4.955666] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: can't assign; no space
[    4.963926] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: failed to assign
[    4.971667] pci 0000:00:03.2: PCI bridge to [bus 01]
[    4.976632] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    4.982726] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    4.989513] pci 0000:00:07.1: PCI bridge to [bus 02]
[    4.994479] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    5.001268] pci 0000:00:08.1: PCI bridge to [bus 03]
[    5.006237] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.013025] PCI: No. 2 try to assign unassigned res
[    5.017904] pci 0000:00:03.2: resource 14 [mem 0xf7300000-0xf74fffff] released
[    5.025161] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.030135] pci 0000:00:03.2: bridge window [mem 0x00100000-0x002fffff] to [bus 01] add_size 1200000 add_align 100000
[    5.040743] pci 0000:00:03.2: bridge window [mem 0xe1000000-0xe23fffff]: assigned
[    5.048229] pci 0000:01:00.0: BAR 3 [mem 0xe1000000-0xe10fffff 64bit]: assigned
[    5.055544] pci 0000:01:00.0: ROM [mem 0xe1100000-0xe11fffff pref]: assigned
[    5.062593] pci 0000:01:00.0: VF BAR 2 [mem 0xe1200000-0xe21fffff 64bit]: assigned
[    5.070162] pci 0000:01:00.0: BAR 1 [mem 0xe2200000-0xe220ffff 64bit]: assigned
[    5.077471] pci 0000:01:00.0: VF BAR 0 [mem 0xe2210000-0xe230ffff 64bit]: assigned
[    5.085043] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.090006] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    5.096099] pci 0000:00:03.2:   bridge window [mem 0xe1000000-0xe23fffff]
[    5.102891] pci 0000:00:07.1: PCI bridge to [bus 02]
[    5.107861] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    5.114648] pci 0000:00:08.1: PCI bridge to [bus 03]
[    5.119622] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.126408] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    5.132613] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    5.138788] pci_bus 0000:00: resource 6 [mem 0x000c0000-0x000fffff window]
[    5.145661] pci_bus 0000:00: resource 7 [io  0x0d00-0x3fff window]
[    5.151842] pci_bus 0000:00: resource 8 [mem 0xe1000000-0xfebfffff window]
[    5.158714] pci_bus 0000:00: resource 9 [mem 0x63dc0000000-0x7fcffffffff window]
[    5.166107] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[    5.171679] pci_bus 0000:01: resource 1 [mem 0xe1000000-0xe23fffff]
[    5.177945] pci_bus 0000:02: resource 1 [mem 0xf7200000-0xf72fffff]
[    5.184209] pci_bus 0000:03: resource 1 [mem 0xf7000000-0xf71fffff]
[    5.190561] pci 0000:40:03.1: bridge window [io  0x1000-0x0fff] to [bus 41] add_size 1000
[    5.198736] pci 0000:40:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 41] add_size 200000 add_align 100000
[    5.210201] pci 0000:40:03.2: bridge window [io  0x1000-0x0fff] to [bus 42] add_size 1000
[    5.218372] pci 0000:40:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 42] add_size 200000 add_align 100000
[    5.229841] pci 0000:40:03.3: bridge window [io  0x1000-0x0fff] to [bus 43] add_size 1000
[    5.238032] pci 0000:40:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 43] add_size 200000 add_align 100000
[    5.249501] pci 0000:40:03.4: bridge window [io  0x1000-0x0fff] to [bus 44] add_size 1000
[    5.257676] pci 0000:40:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 44] add_size 200000 add_align 100000
[    5.269151] pci 0000:40:03.1: bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]: assigned
[    5.278103] pci 0000:40:03.2: bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]: assigned
[    5.287055] pci 0000:40:03.3: bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]: assigned
[    5.296008] pci 0000:40:03.4: bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]: assigned
[    5.304960] pci 0000:40:03.1: bridge window [io  0x4000-0x4fff]: assigned
[    5.311747] pci 0000:40:03.2: bridge window [io  0x5000-0x5fff]: assigned
[    5.318531] pci 0000:40:03.3: bridge window [io  0x6000-0x6fff]: assigned
[    5.325317] pci 0000:40:03.4: bridge window [io  size 0x1000]: can't assign; no space
[    5.333146] pci 0000:40:03.4: bridge window [io  size 0x1000]: failed to assign
[    5.340455] pci 0000:40:03.4: bridge window [io  0x4000-0x4fff]: assigned
[    5.347245] pci 0000:40:03.3: bridge window [io  0x5000-0x5fff]: assigned
[    5.354029] pci 0000:40:03.2: bridge window [io  0x6000-0x6fff]: assigned
[    5.360814] pci 0000:40:03.1: bridge window [io  size 0x1000]: can't assign; no space
[    5.368638] pci 0000:40:03.1: bridge window [io  size 0x1000]: failed to assign
[    5.375946] pci 0000:40:03.1: PCI bridge to [bus 41]
[    5.380913] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    5.387701] pci 0000:40:03.1:   bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.395958] pci 0000:40:03.2: PCI bridge to [bus 42]
[    5.400924] pci 0000:40:03.2:   bridge window [io  0x6000-0x6fff]
[    5.407017] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    5.413802] pci 0000:40:03.2:   bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.422063] pci 0000:40:03.3: PCI bridge to [bus 43]
[    5.427027] pci 0000:40:03.3:   bridge window [io  0x5000-0x5fff]
[    5.433121] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    5.439906] pci 0000:40:03.3:   bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.448185] pci 0000:40:03.4: PCI bridge to [bus 44]
[    5.453155] pci 0000:40:03.4:   bridge window [io  0x4000-0x4fff]
[    5.459250] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    5.466037] pci 0000:40:03.4:   bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.474296] pci 0000:40:07.1: PCI bridge to [bus 45]
[    5.479259] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    5.486050] pci 0000:40:08.1: PCI bridge to [bus 46]
[    5.491022] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    5.497811] pci_bus 0000:40: Some PCI device resources are unassigned, try booting with pci=realloc
[    5.506853] pci_bus 0000:40: resource 4 [io  0x4000-0x6fff window]
[    5.513033] pci_bus 0000:40: resource 5 [mem 0x90000000-0xaaffffff window]
[    5.519905] pci_bus 0000:40: resource 6 [mem 0x47e80000000-0x63dbfffffff window]
[    5.527295] pci_bus 0000:41: resource 1 [mem 0xa4c00000-0xa4ffffff]
[    5.533566] pci_bus 0000:41: resource 2 [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.541301] pci_bus 0000:42: resource 0 [io  0x6000-0x6fff]
[    5.546891] pci_bus 0000:42: resource 1 [mem 0xa4800000-0xa4bfffff]
[    5.553160] pci_bus 0000:42: resource 2 [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.560895] pci_bus 0000:43: resource 0 [io  0x5000-0x5fff]
[    5.566469] pci_bus 0000:43: resource 1 [mem 0xa4400000-0xa47fffff]
[    5.572735] pci_bus 0000:43: resource 2 [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.580473] pci_bus 0000:44: resource 0 [io  0x4000-0x4fff]
[    5.586047] pci_bus 0000:44: resource 1 [mem 0xa4000000-0xa43fffff]
[    5.592314] pci_bus 0000:44: resource 2 [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.600051] pci_bus 0000:45: resource 1 [mem 0xa5300000-0xa53fffff]
[    5.606315] pci_bus 0000:46: resource 1 [mem 0xa5000000-0xa52fffff]
[    5.612653] pci 0000:80:01.1: bridge window [io  0x1000-0x0fff] to [bus 81] add_size 1000
[    5.620825] pci 0000:80:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 81] add_size 200000 add_align 100000
[    5.632291] pci 0000:80:01.2: bridge window [io  0x1000-0x0fff] to [bus 82] add_size 1000
[    5.640463] pci 0000:80:01.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 82] add_size 200000 add_align 100000
[    5.651936] pci 0000:80:01.1: bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]: assigned
[    5.660919] pci 0000:80:01.2: bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]: assigned
[    5.669868] pci 0000:80:01.1: bridge window [io  0x7000-0x7fff]: assigned
[    5.676654] pci 0000:80:01.2: bridge window [io  0x8000-0x8fff]: assigned
[    5.683441] pci 0000:80:01.1: PCI bridge to [bus 81]
[    5.688408] pci 0000:80:01.1:   bridge window [io  0x7000-0x7fff]
[    5.694500] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    5.701286] pci 0000:80:01.1:   bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.709547] pci 0000:80:01.2: PCI bridge to [bus 82]
[    5.714509] pci 0000:80:01.2:   bridge window [io  0x8000-0x8fff]
[    5.720603] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    5.727390] pci 0000:80:01.2:   bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.735651] pci 0000:80:07.1: PCI bridge to [bus 83]
[    5.740622] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    5.747412] pci 0000:80:08.1: PCI bridge to [bus 84]
[    5.752383] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    5.759206] pci 0000:80:08.2: PCI bridge to [bus 85]
[    5.764180] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    5.770976] pci_bus 0000:80: resource 4 [io  0x7000-0x9fff window]
[    5.777158] pci_bus 0000:80: resource 5 [mem 0xab000000-0xc5ffffff window]
[    5.784030] pci_bus 0000:80: resource 6 [mem 0x2bf40000000-0x47e7fffffff window]
[    5.791423] pci_bus 0000:81: resource 0 [io  0x7000-0x7fff]
[    5.796995] pci_bus 0000:81: resource 1 [mem 0xbf400000-0xbf7fffff]
[    5.803264] pci_bus 0000:81: resource 2 [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.811001] pci_bus 0000:82: resource 0 [io  0x8000-0x8fff]
[    5.816575] pci_bus 0000:82: resource 1 [mem 0xbf000000-0xbf3fffff]
[    5.822838] pci_bus 0000:82: resource 2 [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.830577] pci_bus 0000:83: resource 1 [mem 0xbfa00000-0xbfafffff]
[    5.836846] pci_bus 0000:84: resource 1 [mem 0xbf900000-0xbf9fffff]
[    5.843113] pci_bus 0000:85: resource 1 [mem 0xbf800000-0xbf8fffff]
[    5.849435] pci 0000:c0:03.1: bridge window [io  0x1000-0x0fff] to [bus c4] add_size 1000
[    5.857610] pci 0000:c0:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c4] add_size 200000 add_align 100000
[    5.869073] pci 0000:c0:03.2: bridge window [io  0x1000-0x0fff] to [bus c5] add_size 1000
[    5.877249] pci 0000:c0:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c5] add_size 200000 add_align 100000
[    5.888714] pci 0000:c0:03.3: bridge window [io  0x1000-0x0fff] to [bus c6] add_size 1000
[    5.896885] pci 0000:c0:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c6] add_size 200000 add_align 100000
[    5.908354] pci 0000:c0:03.4: bridge window [io  0x1000-0x0fff] to [bus c7] add_size 1000
[    5.916525] pci 0000:c0:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c7] add_size 200000 add_align 100000
[    5.927991] pci 0000:c0:05.1: bridge window [mem 0x00100000-0x000fffff] to [bus c1] add_size 100000 add_align 100000
[    5.938509] pci 0000:c0:03.1: bridge window [mem 0x10000000000-0x100001fffff 64bit pref]: assigned
[    5.947466] pci 0000:c0:03.2: bridge window [mem 0x10000200000-0x100003fffff 64bit pref]: assigned
[    5.956417] pci 0000:c0:03.3: bridge window [mem 0x10000400000-0x100005fffff 64bit pref]: assigned
[    5.965371] pci 0000:c0:03.4: bridge window [mem 0x10000600000-0x100007fffff 64bit pref]: assigned
[    5.974368] pci 0000:c0:05.1: bridge window [mem 0xc7100000-0xc71fffff]: assigned
[    5.981856] pci 0000:c0:03.1: bridge window [io  0xa000-0xafff]: assigned
[    5.988649] pci 0000:c0:03.2: bridge window [io  0xb000-0xbfff]: assigned
[    5.995441] pci 0000:c0:03.3: bridge window [io  0xc000-0xcfff]: assigned
[    6.002227] pci 0000:c0:03.4: bridge window [io  0xd000-0xdfff]: assigned
[    6.009014] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    6.013979] pci 0000:c0:03.1:   bridge window [io  0xa000-0xafff]
[    6.020074] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    6.026868] pci 0000:c0:03.1:   bridge window [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.035138] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    6.040109] pci 0000:c0:03.2:   bridge window [io  0xb000-0xbfff]
[    6.046202] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    6.052998] pci 0000:c0:03.2:   bridge window [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.061265] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    6.066238] pci 0000:c0:03.3:   bridge window [io  0xc000-0xcfff]
[    6.072343] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    6.079136] pci 0000:c0:03.3:   bridge window [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.087407] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    6.092378] pci 0000:c0:03.4:   bridge window [io  0xd000-0xdfff]
[    6.098480] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    6.105274] pci 0000:c0:03.4:   bridge window [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.113554] pci 0000:c1:00.0: ROM [mem 0xc7100000-0xc713ffff pref]: assigned
[    6.120608] pci 0000:c1:00.1: ROM [mem 0xc7140000-0xc717ffff pref]: assigned
[    6.127658] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    6.132625] pci 0000:c0:05.1:   bridge window [mem 0xc7100000-0xc71fffff]
[    6.139418] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.147161] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    6.152134] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    6.158927] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.166669] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    6.171901] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    6.178738] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.186478] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    6.191444] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    6.198232] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    6.203204] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    6.209991] pci_bus 0000:c0: resource 4 [io  0xa000-0xffff window]
[    6.216174] pci_bus 0000:c0: resource 5 [mem 0xc6000000-0xe0ffffff window]
[    6.223048] pci_bus 0000:c0: resource 6 [mem 0x10000000000-0x2bf3fffffff window]
[    6.230440] pci_bus 0000:c0: resource 7 [io  0x03b0-0x03df window]
[    6.236619] pci_bus 0000:c0: resource 8 [mem 0x000a0000-0x000bffff window]
[    6.243492] pci_bus 0000:c4: resource 0 [io  0xa000-0xafff]
[    6.249065] pci_bus 0000:c4: resource 1 [mem 0xdb600000-0xdb9fffff]
[    6.255330] pci_bus 0000:c4: resource 2 [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.263069] pci_bus 0000:c5: resource 0 [io  0xb000-0xbfff]
[    6.268640] pci_bus 0000:c5: resource 1 [mem 0xdb200000-0xdb5fffff]
[    6.274906] pci_bus 0000:c5: resource 2 [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.282646] pci_bus 0000:c6: resource 0 [io  0xc000-0xcfff]
[    6.288220] pci_bus 0000:c6: resource 1 [mem 0xdae00000-0xdb1fffff]
[    6.294483] pci_bus 0000:c6: resource 2 [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.302225] pci_bus 0000:c7: resource 0 [io  0xd000-0xdfff]
[    6.307796] pci_bus 0000:c7: resource 1 [mem 0xdaa00000-0xdadfffff]
[    6.314060] pci_bus 0000:c7: resource 2 [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.321803] pci_bus 0000:c1: resource 1 [mem 0xc7100000-0xc71fffff]
[    6.328067] pci_bus 0000:c1: resource 2 [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.335286] pci_bus 0000:c2: resource 1 [mem 0xda000000-0xda8fffff]
[    6.341552] pci_bus 0000:c2: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.348772] pci_bus 0000:c3: resource 1 [mem 0xda000000-0xda8fffff]
[    6.355037] pci_bus 0000:c3: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.362258] pci_bus 0000:c8: resource 1 [mem 0xdbb00000-0xdbbfffff]
[    6.368524] pci_bus 0000:c9: resource 1 [mem 0xdba00000-0xdbafffff]
[    6.375672] PCI: CLS 64 bytes, default 64
[    6.379782] Trying to unpack rootfs image as initramfs...
[    6.445167] AMD-Vi: IOMMU SNP support enabled.
[    6.449805] pci 0000:c0:00.2: AMD-Vi: IOMMU performance counters supported
[    6.456884] pci 0000:c0:01.0: Adding to iommu group 0
[    6.461994] pci 0000:c0:02.0: Adding to iommu group 1
[    6.467200] pci 0000:c0:03.0: Adding to iommu group 2
[    6.472299] pci 0000:c0:03.1: Adding to iommu group 2
[    6.477402] pci 0000:c0:03.2: Adding to iommu group 2
[    6.482591] pci 0000:c0:03.3: Adding to iommu group 2
[    6.487733] pci 0000:c0:03.4: Adding to iommu group 2
[    6.492857] pci 0000:c0:04.0: Adding to iommu group 3
[    6.498013] pci 0000:c0:05.0: Adding to iommu group 4
[    6.503115] pci 0000:c0:05.1: Adding to iommu group 4
[    6.508211] pci 0000:c0:05.2: Adding to iommu group 4
[    6.513315] pci 0000:c0:07.0: Adding to iommu group 5
[    6.518396] pci 0000:c0:07.1: Adding to iommu group 6
[    6.523510] pci 0000:c0:08.0: Adding to iommu group 7
[    6.528603] pci 0000:c0:08.1: Adding to iommu group 8
[    6.533660] pci 0000:c1:00.0: Adding to iommu group 4
[    6.538719] pci 0000:c1:00.1: Adding to iommu group 4
[    6.543782] pci 0000:c2:00.0: Adding to iommu group 4
[    6.548844] pci 0000:c3:00.0: Adding to iommu group 4
[    6.553932] pci 0000:c8:00.0: Adding to iommu group 9
[    6.559018] pci 0000:c8:00.2: Adding to iommu group 10
[    6.564192] pci 0000:c9:00.0: Adding to iommu group 11
[    6.569366] pci 0000:c9:00.2: Adding to iommu group 12
[    6.580760] pci 0000:80:00.2: AMD-Vi: IOMMU performance counters supported
[    6.587823] pci 0000:80:01.0: Adding to iommu group 13
[    6.593044] pci 0000:80:01.1: Adding to iommu group 13
[    6.598224] pci 0000:80:01.2: Adding to iommu group 13
[    6.603423] pci 0000:80:02.0: Adding to iommu group 14
[    6.608619] pci 0000:80:03.0: Adding to iommu group 15
[    6.613812] pci 0000:80:04.0: Adding to iommu group 16
[    6.619001] pci 0000:80:05.0: Adding to iommu group 17
[    6.624194] pci 0000:80:07.0: Adding to iommu group 18
[    6.629362] pci 0000:80:07.1: Adding to iommu group 19
[    6.634559] pci 0000:80:08.0: Adding to iommu group 20
[    6.639727] pci 0000:80:08.1: Adding to iommu group 21
[    6.644904] pci 0000:80:08.2: Adding to iommu group 22
[    6.650078] pci 0000:83:00.0: Adding to iommu group 23
[    6.655251] pci 0000:83:00.2: Adding to iommu group 24
[    6.660429] pci 0000:84:00.0: Adding to iommu group 25
[    6.665606] pci 0000:84:00.2: Adding to iommu group 26
[    6.670781] pci 0000:85:00.0: Adding to iommu group 27
[    6.683007] pci 0000:40:00.2: AMD-Vi: IOMMU performance counters supported
[    6.690011] pci 0000:40:01.0: Adding to iommu group 28
[    6.695216] pci 0000:40:02.0: Adding to iommu group 29
[    6.700506] pci 0000:40:03.0: Adding to iommu group 30
[    6.705684] pci 0000:40:03.1: Adding to iommu group 30
[    6.710860] pci 0000:40:03.2: Adding to iommu group 30
[    6.716039] pci 0000:40:03.3: Adding to iommu group 30
[    6.721220] pci 0000:40:03.4: Adding to iommu group 30
[    6.726414] pci 0000:40:04.0: Adding to iommu group 31
[    6.731605] pci 0000:40:05.0: Adding to iommu group 32
[    6.736799] pci 0000:40:07.0: Adding to iommu group 33
[    6.741976] pci 0000:40:07.1: Adding to iommu group 34
[    6.747174] pci 0000:40:08.0: Adding to iommu group 35
[    6.752352] pci 0000:40:08.1: Adding to iommu group 36
[    6.757523] pci 0000:45:00.0: Adding to iommu group 37
[    6.762697] pci 0000:45:00.2: Adding to iommu group 38
[    6.767874] pci 0000:46:00.0: Adding to iommu group 39
[    6.773046] pci 0000:46:00.1: Adding to iommu group 40
[    6.778217] pci 0000:46:00.2: Adding to iommu group 41
[    6.783394] pci 0000:46:00.3: Adding to iommu group 42
[    6.795926] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    6.802949] pci 0000:00:00.0: Adding to iommu group 43
[    6.808146] pci 0000:00:01.0: Adding to iommu group 44
[    6.813342] pci 0000:00:02.0: Adding to iommu group 45
[    6.816036] Freeing initrd memory: 38564K
[    6.818538] pci 0000:00:03.0: Adding to iommu group 46
[    6.827671] pci 0000:00:03.2: Adding to iommu group 47
[    6.832867] pci 0000:00:04.0: Adding to iommu group 48
[    6.838064] pci 0000:00:05.0: Adding to iommu group 49
[    6.843262] pci 0000:00:07.0: Adding to iommu group 50
[    6.848436] pci 0000:00:07.1: Adding to iommu group 51
[    6.853628] pci 0000:00:08.0: Adding to iommu group 52
[    6.858800] pci 0000:00:08.1: Adding to iommu group 53
[    6.864015] pci 0000:00:14.0: Adding to iommu group 54
[    6.869225] pci 0000:00:14.3: Adding to iommu group 54
[    6.874582] pci 0000:00:18.0: Adding to iommu group 55
[    6.879754] pci 0000:00:18.1: Adding to iommu group 55
[    6.884930] pci 0000:00:18.2: Adding to iommu group 55
[    6.890102] pci 0000:00:18.3: Adding to iommu group 55
[    6.895301] pci 0000:00:18.4: Adding to iommu group 55
[    6.900505] pci 0000:00:18.5: Adding to iommu group 55
[    6.905674] pci 0000:00:18.6: Adding to iommu group 55
[    6.910851] pci 0000:00:18.7: Adding to iommu group 55
[    6.916022] pci 0000:01:00.0: Adding to iommu group 56
[    6.921202] pci 0000:02:00.0: Adding to iommu group 57
[    6.926382] pci 0000:02:00.2: Adding to iommu group 58
[    6.931557] pci 0000:03:00.0: Adding to iommu group 59
[    6.936730] pci 0000:03:00.2: Adding to iommu group 60
[    6.941903] pci 0000:03:00.3: Adding to iommu group 61
[    6.956169] AMD-Vi: Extended features (0x841f77e022094ace, 0x0): PPR X2APIC NX IA GA PC SNP
[    6.964541] AMD-Vi: Interrupt remapping enabled
[    6.969075] AMD-Vi: X2APIC enabled
[    6.973564] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    6.980012] software IO TLB: mapped [mem 0x000000005bf37000-0x0000000063f37000] (128MB)
[    6.988164] LVT offset 0 assigned for vector 0x400
[    6.994545] perf: AMD IBS detected (0x000003ff)
[    7.000679] amd_uncore: 4 amd_df counters detected
[    7.005502] amd_uncore: 6 amd_l3 counters detected
[    7.012056] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    7.019214] perf/amd_iommu: Detected AMD IOMMU #1 (2 banks, 4 counters/bank).
[    7.026376] perf/amd_iommu: Detected AMD IOMMU #2 (2 banks, 4 counters/bank).
[    7.033526] perf/amd_iommu: Detected AMD IOMMU #3 (2 banks, 4 counters/bank).
[    7.043932] Initialise system trusted keyrings
[    7.048387] Key type blacklist registered
[    7.052546] workingset: timestamp_bits=36 max_order=26 bucket_order=0
[    7.059517] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    7.065514] fuse: init (API version 7.44)
[    7.069784] integrity: Platform Keyring initialized
[    7.086471] Key type asymmetric registered
[    7.090565] Asymmetric key parser 'x509' registered
[    7.095482] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    7.102973] io scheduler mq-deadline registered
[    7.110059] ledtrig-cpu: registered to indicate activity on CPUs
[    7.116379] pcieport 0000:00:03.2: PME: Signaling with IRQ 38
[    7.122530] pcieport 0000:00:07.1: PME: Signaling with IRQ 40
[    7.128523] pcieport 0000:00:08.1: PME: Signaling with IRQ 41
[    7.134506] pcieport 0000:40:03.1: PME: Signaling with IRQ 42
[    7.140305] pcieport 0000:40:03.1: pciehp: Slot #167 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.154322] pcieport 0000:40:03.2: PME: Signaling with IRQ 43
[    7.160126] pcieport 0000:40:03.2: pciehp: Slot #166 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.174126] pcieport 0000:40:03.3: PME: Signaling with IRQ 44
[    7.179926] pcieport 0000:40:03.3: pciehp: Slot #169 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.193920] pcieport 0000:40:03.4: PME: Signaling with IRQ 45
[    7.199724] pcieport 0000:40:03.4: pciehp: Slot #168 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.213800] pcieport 0000:40:07.1: PME: Signaling with IRQ 47
[    7.219771] pcieport 0000:40:08.1: PME: Signaling with IRQ 48
[    7.225916] pcieport 0000:80:01.1: PME: Signaling with IRQ 49
[    7.231730] pcieport 0000:80:01.1: pciehp: Slot #160 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.245736] pcieport 0000:80:01.2: PME: Signaling with IRQ 50
[    7.251538] pcieport 0000:80:01.2: pciehp: Slot #161 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.265658] pcieport 0000:80:07.1: PME: Signaling with IRQ 52
[    7.271722] pcieport 0000:80:08.1: PME: Signaling with IRQ 54
[    7.277755] pcieport 0000:80:08.2: PME: Signaling with IRQ 55
[    7.283716] pcieport 0000:c0:03.1: PME: Signaling with IRQ 56
[    7.289512] pcieport 0000:c0:03.1: pciehp: Slot #163 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.303497] pcieport 0000:c0:03.2: PME: Signaling with IRQ 57
[    7.309301] pcieport 0000:c0:03.2: pciehp: Slot #162 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.323274] pcieport 0000:c0:03.3: PME: Signaling with IRQ 58
[    7.329075] pcieport 0000:c0:03.3: pciehp: Slot #165 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.343066] pcieport 0000:c0:03.4: PME: Signaling with IRQ 59
[    7.348870] pcieport 0000:c0:03.4: pciehp: Slot #164 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.362843] pcieport 0000:c0:05.1: PME: Signaling with IRQ 60
[    7.368797] pcieport 0000:c0:05.2: PME: Signaling with IRQ 61
[    7.374864] pcieport 0000:c0:07.1: PME: Signaling with IRQ 63
[    7.380917] pcieport 0000:c0:08.1: PME: Signaling with IRQ 65
[    7.387685] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    7.395169] ACPI: button: Power Button [PWRF]
[    7.838385] Estimated ratio of average max frequency by base frequency (times 1024): 1464
[    7.846885] ERST: Error Record Serialization Table (ERST) support is initialized.
[    7.854392] pstore: Using crash dump compression: deflate
[    7.859792] pstore: Registered erst as persistent store backend
[    7.865851] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    7.872417] 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    7.880595] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    7.891695] Linux agpgart interface v0.103
[    7.923126] loop: module loaded
[    7.937629] ahci 0000:85:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[    7.945636] ahci 0000:85:00.0: 8/8 ports implemented (port mask 0xff)
[    7.952079] ahci 0000:85:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part sxs 
[    7.962386] scsi host0: ahci
[    7.965527] scsi host1: ahci
[    7.968636] scsi host2: ahci
[    7.971736] scsi host3: ahci
[    7.974836] scsi host4: ahci
[    7.977939] scsi host5: ahci
[    7.981036] scsi host6: ahci
[    7.984127] scsi host7: ahci
[    7.987082] ata1: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800100 irq 67 lpm-pol 0 ext
[    7.995691] ata2: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800180 irq 68 lpm-pol 0 ext
[    8.004296] ata3: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800200 irq 69 lpm-pol 0 ext
[    8.012900] ata4: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800280 irq 70 lpm-pol 0 ext
[    8.021507] ata5: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800300 irq 71 lpm-pol 0 ext
[    8.030111] ata6: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800380 irq 72 lpm-pol 0 ext
[    8.038718] ata7: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800400 irq 73 lpm-pol 0 ext
[    8.047323] ata8: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800480 irq 74 lpm-pol 0 ext
[    8.055951] tsc: Refined TSC clocksource calibration: 1996.248 MHz
[    8.062188] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398cac3bdaf, max_idle_ns: 881590646346 ns
[    8.072352] clocksource: Switched to clocksource tsc
[    8.072822] tun: Universal TUN/TAP device driver, 1.6
[    8.082447] PPP generic driver version 2.4.2
[    8.086907] VFIO - User Level meta-driver version: 0.3
[    8.092430] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.097664] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 1
[    8.105169] xhci_hcd 0000:03:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.114720] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.119953] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 2
[    8.127352] xhci_hcd 0000:03:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.134444] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.142710] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.149927] usb usb1: Product: xHCI Host Controller
[    8.154824] usb usb1: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.163776] usb usb1: SerialNumber: 0000:03:00.3
[    8.168571] hub 1-0:1.0: USB hub found
[    8.172339] hub 1-0:1.0: 2 ports detected
[    8.177198] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.185323] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.193590] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.200812] usb usb2: Product: xHCI Host Controller
[    8.205697] usb usb2: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.214649] usb usb2: SerialNumber: 0000:03:00.3
[    8.219410] hub 2-0:1.0: USB hub found
[    8.223177] hub 2-0:1.0: 2 ports detected
[    8.228110] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.233354] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 3
[    8.240847] xhci_hcd 0000:46:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.250355] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.255617] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 4
[    8.263006] xhci_hcd 0000:46:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.270091] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.278358] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.285584] usb usb3: Product: xHCI Host Controller
[    8.290460] usb usb3: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.299418] usb usb3: SerialNumber: 0000:46:00.3
[    8.304191] hub 3-0:1.0: USB hub found
[    8.307954] hub 3-0:1.0: 2 ports detected
[    8.312787] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.320905] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.329171] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.336402] usb usb4: Product: xHCI Host Controller
[    8.341286] usb usb4: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.350245] usb usb4: SerialNumber: 0000:46:00.3
[    8.355021] hub 4-0:1.0: USB hub found
[    8.358795] hub 4-0:1.0: 2 ports detected
[    8.363887] usbcore: registered new interface driver uas
[    8.369231] ata4: SATA link down (SStatus 0 SControl 300)
[    8.369239] usbcore: registered new interface driver usb-storage
[    8.374666] ata6: SATA link down (SStatus 0 SControl 300)
[    8.380677] i8042: PNP: No PS/2 controller found.
[    8.386068] ata8: SATA link down (SStatus 0 SControl 300)
[    8.390846] mousedev: PS/2 mouse device common for all mice
[    8.396172] ata5: SATA link down (SStatus 0 SControl 300)
[    8.401831] rtc_cmos 00:02: RTC can wake from S4
[    8.407143] ata2: SATA link down (SStatus 0 SControl 300)
[    8.412120] rtc_cmos 00:02: registered as rtc0
[    8.417162] ata1: SATA link down (SStatus 0 SControl 300)
[    8.421658] rtc_cmos 00:02: setting system clock to 2025-06-17T14:50:08 UTC (1750171808)
[    8.424283] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[    8.427007] ata7: SATA link down (SStatus 0 SControl 300)
[    8.435111] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram
[    8.441621] ata3: SATA link down (SStatus 0 SControl 300)
[    8.447003] i2c_dev: i2c /dev entries driver
[    8.463401] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    8.475588] device-mapper: uevent: version 1.0.3
[    8.480326] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists•linux.dev
[    8.489198] amd_pstate: driver load is disabled, boot with specific mode to enable this
[    8.497242] efifb: probing for efifb
[    8.500842] efifb: No BGRT, not showing boot graphics
[    8.505891] efifb: framebuffer at 0xc6000000, using 3072k, total 3072k
[    8.512418] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    8.518423] efifb: scrolling: redraw
[    8.522001] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    8.527631] fbcon: Deferring console take-over
[    8.532074] fb0: EFI VGA frame buffer device
[    8.536452] drop_monitor: Initializing network drop monitor service
[    8.542889] NET: Registered PF_INET6 protocol family
[    8.555051] Segment Routing with IPv6
[    8.558725] In-situ OAM (IOAM) with IPv6
[    8.560284] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[    8.562784] NET: Registered PF_PACKET protocol family
[    8.563171] usb 1-1: New USB device found, idVendor=0424, idProduct=2744, bcdDevice= 1.21
[    8.563175] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    8.563177] usb 1-1: Product: USB2734
[    8.563180] usb 1-1: Manufacturer: Microchip Tech
[    8.598086] Key type dns_resolver registered
[    8.614864] x86/amd: Previous system reset reason [0x00080800]: software wrote 0x6 to reset control register 0xCF9
[    8.614891] hub 1-1:1.0: USB hub found
[    8.625224] microcode: Current revision: 0x0a0011d5
[    8.629170] hub 1-1:1.0: 4 ports detected
[    8.633843] microcode: Updated early from: 0x0a0011d5
[    8.645070] resctrl: L3 allocation detected
[    8.649263] resctrl: MB allocation detected
[    8.653448] resctrl: L3 monitoring detected
[    8.657796] IPI shorthand broadcast: enabled
[    8.665892] sched_clock: Marking stable (8600001740, 64264907)->(9559297973, -895031326)
[    8.674570] registered taskstats version 1
[    8.681791] Loading compiled-in X.509 certificates
[    8.684422] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
[    8.687102] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.707617] Demotion targets for Node 0: null
[    8.708672] usb 2-1: New USB device found, idVendor=0424, idProduct=5744, bcdDevice= 1.21
[    8.709234] usb 3-1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    8.709237] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.711983] Demotion targets for Node 1: null
[    8.720156] usb 2-1: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[    8.728952] Key type .fscrypt registered
[    8.735501] usb 2-1: Product: USB5734
[    8.739860] Key type fscrypt-provisioning registered
[    8.746991] usb 2-1: Manufacturer: Microchip Tech
[    8.750425] hub 3-1:1.0: USB hub found
[    8.750611] hub 3-1:1.0: 4 ports detected
[    8.767417] Key type encrypted registered
[    8.776070] AppArmor: AppArmor sha256 policy hashing enabled
[    8.781845] integrity: Loading X.509 certificate: UEFI:db
[    8.787273] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    8.790666] hub 2-1:1.0: USB hub found
[    8.798047] integrity: Loading X.509 certificate: UEFI:db
[    8.801831] hub 2-1:1.0: 4 ports detected
[    8.807211] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    8.822245] integrity: Loading X.509 certificate: UEFI:db
[    8.827767] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    8.836631] integrity: Loading X.509 certificate: UEFI:db
[    8.842164] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    8.853754] ima: No TPM chip found, activating TPM-bypass!
[    8.859243] Loading compiled-in module X.509 certificates
[    8.865053] Loaded X.509 cert 'Build time autogenerated kernel key: 19d3ca2349a0902ab8415c790e3a85bbe74ef6ba'
[    8.874963] ima: Allocated hash algorithm: sha1
[    8.879501] ima: No architecture policies found
[    8.884049] evm: Initialising EVM extended attributes:
[    8.889194] evm: security.selinux
[    8.892512] evm: security.SMACK64
[    8.895827] evm: security.SMACK64EXEC
[    8.899497] evm: security.SMACK64TRANSMUTE
[    8.903595] evm: security.SMACK64MMAP
[    8.907259] evm: security.apparmor
[    8.910667] evm: security.ima
[    8.913639] evm: security.capability
[    8.917219] evm: HMAC attrs: 0x1
[    8.920835] PM:   Magic number: 13:549:839
[    8.925103] acpi device:c0: hash matches
[    8.929508] RAS: Correctable Errors collector initialized.
[    8.935136] clk: Disabling unused clocks
[    8.939062] PM: genpd: Disabling unused power domains
[    8.945841] Freeing unused decrypted memory: 2028K
[    8.951424] Freeing unused kernel image (initmem) memory: 4760K
[    8.957362] Write protecting the kernel read-only data: 26624k
[    8.963636] Freeing unused kernel image (text/rodata gap) memory: 28K
[    8.970253] Freeing unused kernel image (rodata/data gap) memory: 248K
[    9.063720] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    9.070163] Run /init as init process
[    9.080569] systemd[1]: Inserted module 'autofs4'
[    9.308709] systemd[1]: systemd 252-46.el9_5.3 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)
[    9.341162] systemd[1]: Detected architecture x86-64.
[    9.346221] systemd[1]: Running in initrd.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow) dracut-057-80.git20250411.el9_5 (Initramfs)^[[0m!

[    9.364363] systemd[1]: Hostname set to <sharavati.amd.com>.
[    9.476282] usb 3-1.1: new high-speed USB device number 3 using xhci_hcd
[    9.480990] systemd[1]: Queued start job for default target Initrd Default Target.
[    9.490668] systemd[1]: Reached target Initrd /usr File System.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd /usr File System^[[0m.
[    9.508488] systemd[1]: Reached target Local File Systems.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
[    9.528360] systemd[1]: Reached target Slice Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSlice Units^[[0m.
[    9.544332] systemd[1]: Reached target Swaps.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwaps^[[0m.
[    9.560324] systemd[1]: Reached target Timer Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTime[    9.569244] usb 3-1.1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
r Units^[[0m.
[    9.577746] usb 3-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    9.586423] systemd[1]: Listening on D-Bus System Message Bus Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[    9.604488] systemd[1]: Listening on Journal Socket (/dev/log).
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket (/dev/log)^[[0m.
[    9.620485] systemd[1]: Listening on Journal Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket^[[0m.
[    9.636486] systemd[1]: Listening on udev Control Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0[    9.646495] hub 3-1.1:1.0: USB hub found
m.
[    9.651613] hub 3-1.1:1.0: 4 ports detected
[    9.656435] systemd[1]: Listening on udev Kernel Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
[    9.672333] systemd[1]: Reached target Socket Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
[    9.714373] systemd[1]: Starting Create List of Static Device Nodes...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
[    9.728280] usb 3-1.4: new high-speed USB device number 4 using xhci_hcd
[    9.737098] systemd[1]: Starting Journal Service...
         Starting ^[[0;1;39mJournal Service^[[0m...
[    9.753866] systemd[1]: Starting Load Kernel Modules...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
[    9.769850] systemd[1]: Starting Create System Users...
         Starting ^[[0;1;39mCreate System Users^[[0m...
[    9.785476] systemd[1]: Starting Setup Virtual Console...
         Starting ^[[0;1;39mSetup Virtual Console^[[0m...
[    9.805593] systemd[1]: Finished Create List of Static Device Nodes.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[    9.824801] systemd[1]: Finished Load Kernel Modules.
[    9.825238] usb 3-1.4: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    9.838206] usb 3-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[    9.860654] systemd[1]: Started Journal Service.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSetup Virtual Console^[[0m.
[    9.902557] hub 3-1.4:1.0: USB hub found
[    9.906738] hub 3-1.4:1.0: 4 ports detected
         Starting ^[[0;1;39mdracut cmdline hook^[[0m...
         Starting ^[[0;1;39mApply Kernel Variables^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate System Users^[[0m.
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut cmdline hook^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Starting ^[[0;1;39mdracut pre-udev hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-udev hook^[[0m.
         Starting ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[   10.379478] wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQBC data block query control method not found
[^[[0;32m  OK  ^[[0m] Finished ^[[0[   10.390499] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
;1;39mColdplug A[   10.390822] ccp 0000:46:00.1: no command queues available
ll udev Devices^[[   10.397644] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[0m.
[   10.404528] ccp 0000:46:00.1: sev enabled
[   10.412936] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[   10.417307] ccp 0000:46:00.1: psp enabled
[   10.420481] tg3 0000:c1:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:90
[   10.438988] tg3 0000:c1:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.438993] tg3 0000:c1:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.438996] tg3 0000:c1:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[^[[0;32m  OK  ^[[[   10.464206] ACPI: bus type drm_connector registered
0m] Reached targ[   10.464249] mpt3sas version 52.100.00.00 loaded
et ^[[0;1;39mSyst[   10.476111] mpt3sas_cm0: 63 BIT PCI BUS DMA ADDRESSING SUPPORTED, total mem (262592980 kB)
em Initializatio[   10.485221] mgag200 0000:c3:00.0: vgaarb: deactivate vga console
n^[[0m.
[   10.493128] tg3 0000:c1:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:91
[   10.503784] tg3 0000:c1:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.513621] tg3 0000:c1:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.513624] tg3 0000:c1:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[   10.519950] [drm] Initialized mgag200 1.0.0 for 0000:c3:00.0 on minor 0
[   10.531885] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   10.542785] mpt3sas_cm0: MSI-X vectors supported: 96
[   10.542788] 	 no of cores: 128, max_msix_vectors: -1
[   10.542787] fbcon: mgag200drmfb (fb0) is primary device
[^[[0;32m  OK  ^[[[   10.542790] mpt3sas_cm0:  0 96 96
[   10.542792] fbcon: Deferring console take-over
0m] Reached targ[   10.546785] mpt3sas_cm0: High IOPs queues : disabled
[   10.547764] mgag200 0000:c3:00.0: [drm] fb0: mgag200drmfb frame buffer device
et ^[[0;1;39mNetw[   10.552730] mpt3sas0-msix0: PCI-MSI-X enabled: IRQ 108
ork^[[0m.
[   10.587097] mpt3sas0-msix1: PCI-MSI-X enabled: IRQ 109
[   10.587099] mpt3sas0-msix2: PCI-MSI-X enabled: IRQ 110
[   10.587101] mpt3sas0-msix3: PCI-MSI-X enabled: IRQ 111
[   10.587102] mpt3sas0-msix4: PCI-MSI-X enabled: IRQ 112
[   10.587103] mpt3sas0-msix5: PCI-MSI-X enabled: IRQ 113
[   10.587105] mpt3sas0-msix6: PCI-MSI-X enabled: IRQ 114
[   10.587106] mpt3sas0-msix7: PCI-MSI-X enabled: IRQ 115
[   10.623938] mpt3sas0-msix8: PCI-MSI-X enabled: IRQ 116
[   10.629078] mpt3sas0-msix9: PCI-MSI-X enabled: IRQ 117
[   10.634216] mpt3sas0-msix10: PCI-MSI-X enabled: IRQ 118
[   10.639444] mpt3sas0-msix11: PCI-MSI-X enabled: IRQ 119
[   10.644669] mpt3sas0-msix12: PCI-MSI-X enabled: IRQ 120
[   10.649897] mpt3sas0-msix13: PCI-MSI-X enabled: IRQ 121
[   10.655125] mpt3sas0-msix14: PCI-MSI-X enabled: IRQ 122
[   10.660351] mpt3sas0-msix15: PCI-MSI-X enabled: IRQ 123
[   10.665575] mpt3sas0-msix16: PCI-MSI-X enabled: IRQ 124
[   10.670801] mpt3sas0-msix17: PCI-MSI-X enabled: IRQ 125
[   10.676025] mpt3sas0-msix18: PCI-MSI-X enabled: IRQ 126
[   10.681252] mpt3sas0-msix19: PCI-MSI-X enabled: IRQ 127
[   10.686476] mpt3sas0-msix20: PCI-MSI-X enabled: IRQ 128
[   10.691704] mpt3sas0-msix21: PCI-MSI-X enabled: IRQ 129
[   10.696931] mpt3sas0-msix22: PCI-MSI-X enabled: IRQ 130
[   10.702155] mpt3sas0-msix23: PCI-MSI-X enabled: IRQ 131
[   10.707379] mpt3sas0-msix24: PCI-MSI-X enabled: IRQ 132
[   10.712608] mpt3sas0-msix25: PCI-MSI-X enabled: IRQ 133
[   10.717831] mpt3sas0-msix26: PCI-MSI-X enabled: IRQ 134
[   10.723060] mpt3sas0-msix27: PCI-MSI-X enabled: IRQ 135
[   10.728285] mpt3sas0-msix28: PCI-MSI-X enabled: IRQ 136
[   10.733509] mpt3sas0-msix29: PCI-MSI-X enabled: IRQ 137
[   10.738735] mpt3sas0-msix30: PCI-MSI-X enabled: IRQ 138
[   10.743962] mpt3sas0-msix31: PCI-MSI-X enabled: IRQ 139
[   10.749189] mpt3sas0-msix32: PCI-MSI-X enabled: IRQ 140
[   10.754412] mpt3sas0-msix33: PCI-MSI-X enabled: IRQ 141
[   10.759640] mpt3sas0-msix34: PCI-MSI-X enabled: IRQ 142
[   10.764867] mpt3sas0-msix35: PCI-MSI-X enabled: IRQ 143
[   10.770092] mpt3sas0-msix36: PCI-MSI-X enabled: IRQ 144
[   10.775318] mpt3sas0-msix37: PCI-MSI-X enabled: IRQ 145
[   10.780560] mpt3sas0-msix38: PCI-MSI-X enabled: IRQ 146
[   10.785787] mpt3sas0-msix39: PCI-MSI-X enabled: IRQ 147
[   10.791013] mpt3sas0-msix40: PCI-MSI-X enabled: IRQ 148
[   10.796238] mpt3sas0-msix41: PCI-MSI-X enabled: IRQ 149
[   10.801470] mpt3sas0-msix42: PCI-MSI-X enabled: IRQ 150
[   10.801472] mpt3sas0-msix43: PCI-MSI-X enabled: IRQ 151
[   10.801473] mpt3sas0-msix44: PCI-MSI-X enabled: IRQ 152
[   10.801474] mpt3sas0-msix45: PCI-MSI-X enabled: IRQ 153
         Startin[   10.801476] mpt3sas0-msix46: PCI-MSI-X enabled: IRQ 154
[   10.801477] mpt3sas0-msix47: PCI-MSI-X enabled: IRQ 155
g ^[[0;1;39mdracu[   10.801479] mpt3sas0-msix48: PCI-MSI-X enabled: IRQ 156
[   10.801481] mpt3sas0-msix49: PCI-MSI-X enabled: IRQ 157
t initqueue hook[   10.801482] mpt3sas0-msix50: PCI-MSI-X enabled: IRQ 158
^[[0m...
[   10.852656] mpt3sas0-msix51: PCI-MSI-X enabled: IRQ 159
[   10.858665] mpt3sas0-msix52: PCI-MSI-X enabled: IRQ 160
[   10.863892] mpt3sas0-msix53: PCI-MSI-X enabled: IRQ 161
[   10.863894] mpt3sas0-msix54: PCI-MSI-X enabled: IRQ 162
[   10.863895] mpt3sas0-msix55: PCI-MSI-X enabled: IRQ 163
[   10.863897] mpt3sas0-msix56: PCI-MSI-X enabled: IRQ 164
[   10.863898] mpt3sas0-msix57: PCI-MSI-X enabled: IRQ 165
[   10.863899] mpt3sas0-msix58: PCI-MSI-X enabled: IRQ 166
[   10.863901] mpt3sas0-msix59: PCI-MSI-X enabled: IRQ 167
[   10.863903] mpt3sas0-msix60: PCI-MSI-X enabled: IRQ 168
[   10.905755] mpt3sas0-msix61: PCI-MSI-X enabled: IRQ 169
[   10.910985] mpt3sas0-msix62: PCI-MSI-X enabled: IRQ 170
[   10.916211] mpt3sas0-msix63: PCI-MSI-X enabled: IRQ 171
[   10.921435] mpt3sas0-msix64: PCI-MSI-X enabled: IRQ 172
[   10.926661] mpt3sas0-msix65: PCI-MSI-X enabled: IRQ 173
         Startin[   10.931894] mpt3sas0-msix66: PCI-MSI-X enabled: IRQ 174
g ^[[0;1;39mShow [   10.938499] mpt3sas0-msix67: PCI-MSI-X enabled: IRQ 175
Plymouth Boot Sc[   10.945111] mpt3sas0-msix68: PCI-MSI-X enabled: IRQ 176
reen^[[0m...
[   10.945113] mpt3sas0-msix69: PCI-MSI-X enabled: IRQ 177
[   10.945114] mpt3sas0-msix70: PCI-MSI-X enabled: IRQ 178
[   10.945116] mpt3sas0-msix71: PCI-MSI-X enabled: IRQ 179
[   10.945118] mpt3sas0-msix72: PCI-MSI-X enabled: IRQ 180
[^[[0;32m  OK  ^[[[   10.973840] mpt3sas0-msix73: PCI-MSI-X enabled: IRQ 181
0m] Started ^[[0;[   10.973842] mpt3sas0-msix74: PCI-MSI-X enabled: IRQ 182
1;39mShow Plymou[   10.973843] mpt3sas0-msix75: PCI-MSI-X enabled: IRQ 183
th Boot Screen^[[[   10.973844] mpt3sas0-msix76: PCI-MSI-X enabled: IRQ 184
0m.
[^[[0;32m  [   10.973845] mpt3sas0-msix77: PCI-MSI-X enabled: IRQ 185
OK  ^[[0m] Starte[   10.973847] mpt3sas0-msix78: PCI-MSI-X enabled: IRQ 186
d ^[[0;1;39mForwa[   11.013498] mpt3sas0-msix79: PCI-MSI-X enabled: IRQ 187
rd Password Requ[   11.013499] mpt3sas0-msix80: PCI-MSI-X enabled: IRQ 188
ests to Plymouth[   11.013501] mpt3sas0-msix81: PCI-MSI-X enabled: IRQ 189
 Directory Watch[   11.013502] mpt3sas0-msix82: PCI-MSI-X enabled: IRQ 190
^[[0m.
[^[[0;32m[   11.040034] mpt3sas0-msix83: PCI-MSI-X enabled: IRQ 191
  OK  ^[[0m] Reac[   11.040035] mpt3sas0-msix84: PCI-MSI-X enabled: IRQ 192
hed target ^[[0;1[   11.040036] mpt3sas0-msix85: PCI-MSI-X enabled: IRQ 193
;39mPath Units^[[[   11.040038] mpt3sas0-msix86: PCI-MSI-X enabled: IRQ 194
0m.
[^[[0;32m  [   11.040039] mpt3sas0-msix87: PCI-MSI-X enabled: IRQ 195
OK  ^[[0m] Reache[   11.040040] mpt3sas0-msix88: PCI-MSI-X enabled: IRQ 196
d target ^[[0;1;3[   11.040041] mpt3sas0-msix89: PCI-MSI-X enabled: IRQ 197
[   11.040043] mpt3sas0-msix90: PCI-MSI-X enabled: IRQ 198
9mBasic System^[[[   11.091538] mpt3sas0-msix91: PCI-MSI-X enabled: IRQ 199
0m.
[   11.098143] mpt3sas0-msix92: PCI-MSI-X enabled: IRQ 200
[   11.103887] mpt3sas0-msix93: PCI-MSI-X enabled: IRQ 201
[   11.109115] mpt3sas0-msix94: PCI-MSI-X enabled: IRQ 202
[   11.114341] mpt3sas0-msix95: PCI-MSI-X enabled: IRQ 203
[   11.119567] mpt3sas_cm0: iomem(0x00000000e2200000), mapped(0x0000000053afbc1a), size(65536)
[   11.127914] mpt3sas_cm0: ioport(0x0000000000001000), size(256)
[   11.191778] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   11.199793] mpt3sas_cm0: sending message unit reset !!
[   11.206446] mpt3sas_cm0: message unit reset: SUCCESS
[   11.239136] mpt3sas_cm0: scatter gather: sge_in_main_msg(1), sge_per_chain(7), sge_per_io(128), chains_per_io(19)
[   11.250640] mpt3sas_cm0: request pool(0x00000000173cf2af) - dma(0xe0600000): depth(9700), frame_size(128), pool_size(1212 kB)
[   11.287344] mpt3sas_cm0: sense pool(0x000000003f5cfa89) - dma(0xdef00000): depth(9463), element_size(96), pool_size (887 kB)
[   11.298653] mpt3sas_cm0: reply pool(0x000000006536acab) - dma(0xdec00000): depth(9764), frame_size(128), pool_size(1220 kB)
[   11.309791] mpt3sas_cm0: config page(0x0000000026c9c972) - dma(0xdebee000): size(512)
[   11.317627] mpt3sas_cm0: Allocated physical memory: size(40437 kB)
[   11.323808] mpt3sas_cm0: Current Controller Queue Depth(9460),Max Controller Queue Depth(9584)
[   11.332417] mpt3sas_cm0: Scatter Gather Elements per IO(128)
[   11.383916] mpt3sas_cm0: _base_display_fwpkg_version: complete
[   11.389751] mpt3sas_cm0: FW Package Ver(16.17.01.00)
[   11.395005] mpt3sas_cm0: LSISAS3008: FWVersion(16.00.11.00), ChipRevision(0x02)
[   11.402311] mpt3sas_cm0: Protocol=(Initiator,Target), Capabilities=(TLR,EEDP,Snapshot Buffer,Diag Trace Buffer,Task Set Full,NCQ)
[   11.414035] scsi host8: Fusion MPT SAS Host
[   11.420071] mpt3sas_cm0: sending port enable !!
[   11.425031] mpt3sas_cm0: hba_port entry: 0000000098e64405, port: 255 is added to hba_port list
[   11.434780] mpt3sas_cm0: host_add: handle(0x0001), sas_addr(0x52cea7f0be87bf00), phys(8)
[   11.443213] mpt3sas_cm0: handle(0xa) sas_address(0x4433221100000000) port_type(0x1)
[   11.452115] scsi 8:0:0:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.460210] scsi 8:0:0:0: SATA: handle(0x000a), sas_addr(0x4433221100000000), phy(0), device_name(0x500a075131911ad0)
[   11.470808] scsi 8:0:0:0: enclosure logical id (0x52cea7f0be87bf00), slot(1) 
[   11.477938] scsi 8:0:0:0: enclosure level(0x0001), connector name(     )
[   11.484716] scsi 8:0:0:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.493153] scsi 8:0:0:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.507973]  end_device-8:0: add: handle(0x000a), sas_addr(0x4433221100000000)
[   11.515323] mpt3sas_cm0: handle(0xc) sas_address(0x58ce38ee219651a2) port_type(0x1)
[   11.523993] scsi 8:0:1:0: Direct-Access     KIOXIA   KPM6WVUG960G     BD08 PQ: 0 ANSI: 6
[   11.532085] scsi 8:0:1:0: SSP: handle(0x000c), sas_addr(0x58ce38ee219651a2), phy(4), device_name(0x58ce38ee219651a0)
[   11.542598] scsi 8:0:1:0: enclosure logical id (0x52cea7f0be87bf00), slot(0) 
[   11.549732] scsi 8:0:1:0: enclosure level(0x0001), connector name(     )
[   11.556452] scsi 8:0:1:0: qdepth(254), tagged(1), scsi_level(7), cmd_que(1)
[   11.565145]  end_device-8:1: add: handle(0x000c), sas_addr(0x58ce38ee219651a2)
[   11.572494] mpt3sas_cm0: handle(0xb) sas_address(0x4433221106000000) port_type(0x1)
[   11.581277] scsi 8:0:2:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.589371] scsi 8:0:2:0: SATA: handle(0x000b), sas_addr(0x4433221106000000), phy(6), device_name(0x500a075131911a6f)
[   11.599971] scsi 8:0:2:0: enclosure logical id (0x52cea7f0be87bf00), slot(2) 
[   11.607103] scsi 8:0:2:0: enclosure level(0x0001), connector name(     )
[   11.613871] scsi 8:0:2:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.622308] scsi 8:0:2:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.637125]  end_device-8:2: add: handle(0x000b), sas_addr(0x4433221106000000)
[   11.644368] mpt3sas_cm0: port enable: SUCCESS
[   11.649000] scsi 8:0:0:0: Attached scsi generic sg0 type 0
[   11.649623] sd 8:0:0:0: [sda] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.654724] scsi 8:0:1:0: Attached scsi generic sg1 type 0
[   11.655024] sd 8:0:1:0: [sdb] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.655028] sd 8:0:1:0: [sdb] 4096-byte physical blocks
[   11.655210] sd 8:0:1:0: [sdb] Write Protect is off
[   11.655423] sd 8:0:1:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   11.662053] sd 8:0:0:0: [sda] 4096-byte physical blocks
[   11.664065] sd 8:0:0:0: [sda] Write Protect is off
[   11.667815] sd 8:0:2:0: Attached scsi generic sg2 type 0
[   11.668529] sd 8:0:2:0: [sdc] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.668532] sd 8:0:2:0: [sdc] 4096-byte physical blocks
[   11.670536] sd 8:0:2:0: [sdc] Write Protect is off
[   11.671825] sd 8:0:2:0: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.675829] sd 8:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.765560]  sdb: sdb1 sdb2
[   11.768516] sd 8:0:1:0: [sdb] Attached SCSI disk
[   11.802480]  sdc: sdc1 sdc2
[   11.805422] sd 8:0:2:0: [sdc] Attached SCSI disk
[   11.822205]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7
[   11.827587] sd 8:0:0:0: [sda] Attached SCSI disk
[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39m/dev/mapper/rhel_sharavati-root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut initqueue hook^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m.
         Mounting ^[[0;1;39m/sysroot^[[0m...
[   12.543886] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled
[   12.554326] XFS (dm-1): Mounting V5 Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[   12.577849] XFS (dm-1): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/sysroot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root File System^[[0m.
         Starting ^[[0;1;39mMountpoints Configured in the Real Root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMountpoints Configured in the Real Root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Default Target^[[0m.
         Starting ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
         Starting ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Default Target^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd /usr File System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut initqueue hook^[[0m.
         Starting ^[[0;1;39mPlymouth switch root service^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stoppe[   12.858185] systemd-journald[1091]: Received SIGTERM from PID 1 (systemd).
d ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mColdplug All udev Devices^[[0m.
         Stopping ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Kernel Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-udev hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut cmdline hook^[[0m.
         Starting ^[[0;1;39mCleanup udev Database^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate System Users^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleanup udev Database^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwitch Root^[[0m.
         Starting ^[[0;1;39mSwitch Root^[[0m...\r\r[   12.970760] systemd[1]: RTC configured in localtime, applying delta of 330 minutes to system time.

[   12.996824] systemd[1]: systemd 252-46.el9_5.3 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)
[   13.029300] systemd[1]: Detected architecture x86-64.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow)^[[0m!

[   13.111696] systemd-rc-local-generator[1711]: /etc/rc.d/rc.local is not marked executable, skipping.
[   13.368779] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[   13.376095] systemd[1]: Stopped Switch Root.
[^[[0;32m  OK  ^[[[   13.380656] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
0m] Stopped ^[[0;[   13.391358] systemd[1]: Created slice Virtual Machine and Container Slice.
1;39mSwitch Root[   13.399737] systemd[1]: Created slice Slice /system/getty.
^[[0m.
[^[[0;32m[   13.406614] systemd[1]: Created slice Slice /system/modprobe.
  OK  ^[[0m] Crea[   13.413911] systemd[1]: Created slice Slice /system/serial-getty.
ted slice ^[[0;1;[   13.421211] systemd[1]: Created slice Slice /system/sshd-keygen.
39mVirtual Machi[   13.428574] systemd[1]: Created slice Slice /system/systemd-fsck.
ne and Container[   13.436234] systemd[1]: Created slice User and Session Slice.
 Slice^[[0m.
[^[[   13.442536] systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
[0;32m  OK  ^[[0m[   13.458859] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
] Created slice [   13.467954] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
^[[0;1;39mSlice /[   13.478593] systemd[1]: Reached target Local Encrypted Volumes.
system/getty^[[0m[   13.485886] systemd[1]: Stopped target Switch Root.
.
[^[[0;32m  OK[   13.492146] systemd[1]: Stopped target Initrd File Systems.
  ^[[0m] Created [   13.499102] systemd[1]: Stopped target Initrd Root File System.
slice ^[[0;1;39mS[   13.506413] systemd[1]: Reached target Local Integrity Protected Volumes.
lice /system/mod[   13.514596] systemd[1]: Reached target Path Units.
probe^[[0m.
[^[[[   13.520769] systemd[1]: Reached target Slice Units.
0;32m  OK  ^[[0m][   13.527034] systemd[1]: Reached target Local Verity Protected Volumes.
 Created slice ^[[   13.535003] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[0;1;39mSlice /s[   13.543085] systemd[1]: Listening on LVM2 poll daemon socket.
ystem/serial-get[   13.550034] systemd[1]: multipathd control socket was skipped because of an unmet condition check (ConditionPathExists=/etc/multipath.conf).
ty^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/sshd-keygen^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Se[   13.593071] systemd[1]: Listening on RPCbind Server Activation Socket.
t up automount ^[[   13.601045] systemd[1]: Reached target RPC Port Mapper.
[0;1;39mArbitrar[   13.608829] systemd[1]: Listening on Process Core Dump Socket.
y Executa…orma[   13.614891] systemd[1]: Listening on initctl Compatibility Named Pipe.
ts File System A[   13.623800] systemd[1]: Listening on udev Control Socket.
utomount Point^[[[   13.629606] systemd[1]: Listening on udev Kernel Socket.
0m.
[^[[0;32m  OK  ^[[0m] Reache[   13.637619] systemd[1]: Activating swap /dev/mapper/rhel_sharavati-swap...
d target ^[[0;1;3[   13.642619] Adding 7815164k swap on /dev/mapper/rhel_sharavati-swap.  Priority:-2 extents:1 across:7815164k SS
9mLocal Encrypted Volumes^[[0m.\r\r[   13.658537] systemd[1]: Mounting Huge Pages File System...

[^[[0;32m  OK  ^[[0m] Stopped tar[   13.666767] systemd[1]: Mounting POSIX Message Queue File System...
get ^[[0;1;39mSwi[   13.675758] systemd[1]: Mounting Kernel Debug File System...
tch Root^[[0m.
[^[[0;32m  OK  ^[[[   13.682934] systemd[1]: Mounting Kernel Trace File System...
0m] Stopped targ[   13.690058] systemd[1]: Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
et ^[[0;1;39mInit[   13.704898] systemd[1]: iscsi-starter.service was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes).
rd File Systems^[[0m.
[^[[0;32m [   13.720277] systemd[1]: Starting Create List of Static Device Nodes...
 OK  ^[[0m] Stopped target ^[[0;1;[   13.729513] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
39mInitrd Root F[   13.742368] systemd[1]: Starting Load Kernel Module configfs...
ile System^[[0m.\r[   13.749742] systemd[1]: Starting Load Kernel Module drm...

[^[[0;32m  OK  ^[[0m] Reached ta[   13.756744] systemd[1]: Starting Load Kernel Module fuse...
rget ^[[0;1;39mLocal Integrity Pr[   13.765434] systemd[1]: Starting Read and set NIS domainname from /etc/sysconfig/network...
otected Volumes^[[   13.774880] systemd[1]: plymouth-switch-root.service: Deactivated successfully.
[0m.
[^[[0;32m [   13.783558] systemd[1]: Stopped Plymouth switch root service.
 OK  ^[[0m] Reach[   13.790805] systemd[1]: systemd-fsck-root.service: Deactivated successfully.
ed target ^[[0;1;[   13.799111] systemd[1]: Stopped File System Check on Root Device.
39mPath Units^[[0[   13.806647] systemd[1]: Stopped Journal Service.
m.
[^[[0;32m  OK  ^[[0m] Reached[   13.814915] systemd[1]: Starting Journal Service...
 target ^[[0;1;39mSlice Units^[[0m[   13.822276] systemd[1]: Starting Load Kernel Modules...
[   13.826797] systemd-journald[1741]: File /run/log/journal/8f37f8055146469d8baec3ad508b0084/system.journal corrupted or uncleanly shut down, renaming and replacing.
.
[^[[0;32m  OK  ^[[0m] Reached [   13.844240] systemd[1]: Starting Generate network units from Kernel command line...
target ^[[0;1;39m[   13.853381] systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Local Verity Protected Volumes^[[[   13.874424] systemd[1]: Starting Remount Root and Kernel File Systems...
0m.
[^[[0;32m  [   13.882628] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
OK  ^[[0m] Listening on ^[[0;1;39m[   13.894689] systemd[1]: Starting Coldplug All udev Devices...
Device-mapper event daemon FIFOs^[[0m.
[^[[0;32m[   13.905023] systemd[1]: Activated swap /dev/mapper/rhel_sharavati-swap.
  OK  ^[[0m] List[   13.913241] systemd[1]: Started Journal Service.
ening on ^[[0;1;39mLVM2 poll daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mRPCbind Server Activation Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRPC Port Mapper^[[[   13.934462] systemd-journald[1741]: Received client request to flush runtime journal.
0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mProcess Core Dump Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39minitctl Compatibility Named Pipe^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
         Activating swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m...
         Mounting ^[[0;1;39mHuge Pages File System^[[0m...
         Mounting ^[[0;1;39mPOSIX Message Queue File System^[[0m...
         Mounting ^[[0;1;39mKernel Debug File System^[[0m...
         Mounting ^[[0;1;39mKernel Trace File System^[[0m...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
         Starting ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module drm^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mJournal Service^[[0m.
         Starting ^[[0;1;39mJournal Service^[[0m...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
         Starting ^[[0;1;39mGenerate network units from Kernel command line^[[0m...
         Starting ^[[0;1;39mRemount Root and Kernel File Systems^[[0m...
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[^[[0;32m  OK  ^[[0m] Activated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mHuge Pages File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mPOSIX Message Queue File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Debug File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Trace File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMonitoring of LVM2 mirror…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module drm^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m[   14.163339] IPMI message handler: version 39.2
] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[[   14.171343] ipmi device interface
^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mGenerate network units from Kernel command line^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRemount Root and Kernel File Systems^[[0m.
[^[[0;32m  OK  ^[[0m[   14.191835] ipmi_si: IPMI System Interface driver
] Reached target[   14.192802] pstore: backend 'erst' already in use: ignoring 'efi_pstore'
 ^[[0;1;39mSwaps^[[   14.196833] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
[0m.
         [   14.197521] input: PC Speaker as /devices/platform/pcspkr/input/input1
Mounting ^[[0;1;3[   14.197562] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
9mFUSE Control F[   14.197566] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
ile System^[[0m..[   14.198246] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
.
         Mou[   14.198248] RAPL PMU: hw unit of domain package 2^-16 Joules
nting ^[[0;1;39mK[   14.198249] RAPL PMU: hw unit of domain core 2^-16 Joules
ernel Configurat[   14.202470] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
ion File System^[[   14.203135] i2c i2c-3: Successfully instantiated SPD at 0x50
[0m...
       [   14.203696] i2c i2c-3: Successfully instantiated SPD at 0x51
  Starting ^[[0;1[   14.204257] i2c i2c-3: Successfully instantiated SPD at 0x52
;39mFlush Journa[   14.204860] i2c i2c-3: Successfully instantiated SPD at 0x53
l to Persistent [   14.205423] i2c i2c-3: Successfully instantiated SPD at 0x54
Storage^[[0m...\r\r[   14.212636] ipmi_platform: ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 10

         Starti[   14.221123] i2c i2c-3: Successfully instantiated SPD at 0x55
ng ^[[0;1;39mLoad[   14.229325] ipmi_si: Adding SMBIOS-specified kcs state machine
/Save OS Random [   14.229452] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
Seed^[[0m...
  [   14.238952] i2c i2c-3: Successfully instantiated SPD at 0x56
       Starting [   14.247604] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca8] regsize 1 spacing 4 irq 10
^[[0;1;39mApply K[   14.255210] i2c i2c-3: Successfully instantiated SPD at 0x57
ernel Variables^[[   14.261593] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
[0m...
       [   14.368952] ipmi_si: Adding ACPI-specified kcs state machine
  Starting ^[[0;1[   14.369036] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 10
;39mCreate Static Device Nodes in /dev^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mFUSE Control File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Configuration File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad/Save OS Random Seed^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFlush Journal to Persistent Storag[   14.415694] ee1004 3-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
e^[[0m.
[^[[0;32m  OK  ^[[0m] Fin[   14.424857] ee1004 3-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
ished ^[[0;1;39mA[   14.434051] kvm_amd: TSC scaling supported
pply Kernel Vari[   14.434558] ee1004 3-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
ables^[[0m.
[^[[[   14.438393] kvm_amd: Nested Virtualization enabled
0;32m  OK  ^[[0m][   14.438394] kvm_amd: Nested Paging enabled
 Finished ^[[0;1;[   14.448312] ee1004 3-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
39mCreate Static[   14.452825] kvm_amd: LBR virtualization supported
 Device Nodes in[   14.459962] ee1004 3-0054: 512 byte EE1004-compliant SPD EEPROM, read-only
 /dev^[[0m.
         Starting ^[[   14.482602] ee1004 3-0055: 512 byte EE1004-compliant SPD EEPROM, read-only
[0;1;39mRule-based Manager for D[   14.492258] ee1004 3-0056: 512 byte EE1004-compliant SPD EEPROM, read-only
evice Events and Files^[[0m...
[   14.501824] ee1004 3-0057: 512 byte EE1004-compliant SPD EEPROM, read-only
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mColdplug All udev Devices^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mLoad/Save RF Kill Switch Status /dev/rfkill Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39m/usr/sbin/lvm vgchange -aa…utoactivation event rhel_sharavati^[[0m.
[   14.800293] ipmi_si IPI0001:00: The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.
[   14.872354] ipmi_si IPI0001:00: Using irq 10
[   14.896372] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20)
[   14.962512] ipmi_si IPI0001:00: IPMI kcs interface initialized
[   14.970889] ipmi_ssif: IPMI SSIF Interface driver
[   14.987576] power_meter ACPI000D:00: Found ACPI power meter.
[^[[0m^[[0;31m*     ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;1;31m*^[[0m^[[0;31m*    ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
^[M\r^[[K[^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*   ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
[   18.028386] ccp 0000:46:00.1: SEV-SNP API:1.55 build:22
[   18.082545] ccp 0000:46:00.1: SEV API:1.55 build:22
[   18.089753] kvm_amd: SEV enabled (ASIDs 101 - 509)
[   18.094549] kvm_amd: SEV-ES enabled (ASIDs 1 - 100)
[   18.099429] kvm_amd: SEV-SNP enabled (ASIDs 1 - 100)
[   18.104553] kvm_amd: Virtual VMLOAD VMSAVE supported
[   18.109524] kvm_amd: Virtual GIF supported
[   18.134670] EDAC MC0: Giving out device to module amd64_edac controller F19h: DEV 0000:00:18.3 (INTERRUPT)
[   18.144325] EDAC amd64: F19h detected (node 0).
[   18.148884] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.153606] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.158334] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.163051] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.167773] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.172491] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.177221] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.181937] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.186667] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.191382] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.196105] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.200819] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.205542] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.210259] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.214985] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.219706] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.232148] intel_rapl_common: Found RAPL domain package
[   18.233316] amd_atl: AMD Address Translation Library initialized
[   18.237468] intel_rapl_common: Found RAPL domain core
^[M\r^[[K[ ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*  ^[[0m] A start job is running for Wait for…ice Initialization (5s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Local File Systems^[[0m.
         Mounting ^[[0;1;39m/boot^[[0m...
      [   18.636079] XFS (sda6): Mounting V5 Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
   Mounting ^[[0;[   18.638154] XFS (dm-0): Mounting V5 Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
1;39m/home^[[0m...
         Starting ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m...
[   18.662621] XFS (sda6): Ending clean mount
[   18.670021] XFS (dm-0): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
         Mounting ^[[0;1;39m/boot/efi^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
         Starting ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Mounting ^[[0;1;39mRPC Pipe File System^[[0m...
         Starting ^[[0;1;39mSecurity Auditing Service^[[0m...
         Starting ^[[0;1;39mRPC Bind^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRPC Bind^[[0m.
[   18.780728] RPC: Registered named UNIX socket transport module.
[   18.786654] RPC: Registered udp transport module.
[   18.791362] RPC: Registered tcp transport module.
[   18.796074] RPC: Registered tcp-with-tls transport module.
[   18.801561] RPC: Registered tcp NFSv4.1 backchannel transport module.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mRPC Pipe File System^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mrpc_pipefs.target^[[0m.
         Starting ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdnf makecache --timer^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily rotation of log files^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUpdates mlocate database every day^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily Cleanup of Temporary Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdaily update of the root trust anchor for DNSSEC^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt interface daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt network daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nodedev daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nwfilter daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt proxy daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt secret daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt storage daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
         Starting ^[[0;1;39mD-Bus System Message Bus^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mBasic System^[[0m.
         Starting ^[[0;1;39mNTP client/server^[[0m...
         Starting ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m...
         Starting ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mirqbalance daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mlibstoragemgmt plug-in server daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mMachine Check Exception Logging Daemon^[[0m.
         Starting ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msshd-keygen.target^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUser and Group Name Lookups^[[0m.
         Starting ^[[0;1;39mUser Login Management^[[0m...
         Starting ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNTP client/server^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Network^[[0m.
         Starting ^[[0;1;39mNetwork Manager^[[0m...
         Starting ^[[0;1;39mHostname Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mHostname Service^[[0m.
         Starting ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork^[[0m.
         Starting ^[[0;1;39mNetwork Manager Wait Online^[[0m...
         Starting ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
         Starting ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m...
         Starting ^[[0;1;39mOpenSSH server daemon^[[0m...
         Starting ^[[0;1;39mDynamic System Tuning Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNFS client services^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mOpenSSH server daemon^[[0m.
         Starting ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
[   23.282085] tg3 0000:c1:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   23.288706] tg3 0000:c1:00.0 eth0: Flow control is off for TX and off for RX
[   23.295757] tg3 0000:c1:00.0 eth0: EEE is disabled
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[     ^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (12s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mNetwork Manager Wait Online^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork is Online^[[0m.
         Starting ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m...
         Starting ^[[0;1;39mNotify NFS peers of a restart^[[0m...
         Starting ^[[0;1;39mSystem Logging Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNotify NFS peers of a restart^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mCrash recovery kernel arming^[[0m...
         Starting ^[[0;1;39mPermit User Sessions^[[0m...
         Starting ^[[0;1;39mlibvirt QEMU daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDeferred execution scheduler^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mCommand Scheduler^[[0m.
         Starting ^[[0;1;39mHold until boot process finishes up^[[0m...
         Starting ^[[0;1;39mTerminate Plymouth Boot Screen^[[0m...
[^[[0;1;31mFAILED^[[0m] Failed to start ^[[0;1;39mCrash recovery kernel arming^[[0m.
See 'systemctl status kdump.service' for details.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSystem Logging Service^[[0m.
[   25.726941] fbcon: Taking over console
[   25.747039] Console: switching to colour frame buffer device 128x48

Red Hat Enterprise Linux 9.5 (Plow)
Kernel 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e on an x86_64

Activate the web console with: systemctl enable --now cockpit.socket

sharavati login: [   86.147178] /proc/cgroups lists only v1 controllers, use cgroup.controllers of root cgroup for v2 info
[  289.807082] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[  289.864694] systemd-rc-local-generator[3163]: /etc/rc.d/rc.local is not marked executable, skipping.
[  453.841671] kvm: emulating exchange as write
[  587.316255] kvm: vcpu 0: requested 1000 ns lapic timer period limited to 200000 ns
[  812.727876] systemd-rc-local-generator[32247]: /etc/rc.d/rc.local is not marked executable, skipping.
[  881.627884] kvm: kvm [37719]: vcpu0, guest rIP: 0x0 Unhandled WRMSR(0xc0010015) = 0x1
[  881.635728] kvm: kvm [37719]: vcpu0, guest rIP: 0x0 Unhandled WRMSR(0xc0010015) = 0x2
[  881.643562] kvm: kvm [37719]: vcpu0, guest rIP: 0x0 Unhandled WRMSR(0xc0010015) = 0x4
[  881.651396] kvm: kvm [37719]: vcpu0, guest rIP: 0x0 Unhandled WRMSR(0xc0010015) = 0x10
[  881.659314] kvm: kvm [37719]: vcpu0, guest rIP: 0x0 Unhandled WRMSR(0xc0010015) = 0x20
[  881.667239] kvm: kvm [37719]: vcpu0, guest rIP: 0x0 Unhandled WRMSR(0xc0010015) = 0x80
[  881.675157] kvm: kvm [37719]: vcpu0, guest rIP: 0x0 Unhandled WRMSR(0xc0010015) = 0x200
[  881.683164] kvm: kvm [37719]: vcpu0, guest rIP: 0x0 Unhandled WRMSR(0xc0010015) = 0x400
[  881.691173] kvm: kvm [37719]: vcpu0, guest rIP: 0x0 Unhandled WRMSR(0xc0010015) = 0x800
[  881.699178] kvm: kvm [37719]: vcpu0, guest rIP: 0x0 Unhandled WRMSR(0xc0010015) = 0x1000
[  886.623300] kvm: MONITOR instruction emulated as NOP!
[  887.376836] kvm_pr_unimpl_wrmsr: 49 callbacks suppressed
[  887.376839] kvm: kvm [38280]: vcpu0, guest rIP: 0x403054 Unhandled WRMSR(0xc0010000) = 0xffff
[  916.230158] kvm_amd: SEV-ES guest requested termination: 0x0:0x0
[  916.377565] kvm_amd: SEV-ES guest requested termination: 0x0:0x0
[  916.676104] kvm_amd: SEV-ES guest requested termination: 0x0:0x0
[  916.815414] kvm_amd: SEV-ES guest requested termination: 0x0:0x0
[  916.958372] kvm_amd: SEV-ES guest requested termination: 0x0:0x0
[  917.101472] kvm_amd: SEV-ES guest requested termination: 0x0:0x0
[  917.381725] kvm_amd: SEV-ES guest requested termination: 0x0:0x0
[  917.511414] kvm_amd: SEV-ES guest requested termination: 0x0:0x0
[ 1466.089730] systemd-rc-local-generator[77800]: /etc/rc.d/rc.local is not marked executable, skipping.
[ 1919.937620] block dm-1: the capability attribute has been deprecated.
[ 2475.787629] sda6: Can't mount, would change RO state
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNFS client services^[[0m.
         Stopping ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mShow Plymouth Reboot Screen^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Manager for UID 0^[[0m.
         Stopping ^[[0;1;39mUser Runtime Directory /run/user/0^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Runtime Directory /run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser Slice of UID 0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSystem Logging Service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork is Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager Wait Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mUser and Group Name Lookups^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
         Stopping ^[[0;1;39mNetwork Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Network^[[0m.
         Stopping ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGenerate network units from Kernel command line^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
         Stopping ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Plymouth Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mVirtual Machine and Container Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  [ 2477.233734] audit: type=1305 audit(1750154477.022:443): op=set audit_pid=0 old=2288 auid=4294967295 ses=4294967295 subj=unconfined res=1
OK  ^[[0m] Closed ^[[0;1;39mlibvir[ 2477.249354] audit: type=1131 audit(1750154477.038:444): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=auditd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
t logging daemon socket^[[0m.
 [ 2477.270995] audit: type=1131 audit(1750154477.058:445): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
        Stopping ^[[0;1;39mD-Bus System Message Bus^[[0m...
         Starting ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Unset automount ^[[0;1;39mArbitrary Executab…ormats File System Automount Point^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Encrypted Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Integrity Protected Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Verity Protected Volumes^[[0m.
         Deactivating swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
         Stopping ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-sysctl.service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
         Stopping ^[[0;1;39mSecurity Auditing Service^[[0m...
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/rhel_sharavati/swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-uuid…8d2e1f-0fb1-4c94-97ac-38505613fcbf^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/d…kEo36yeb12DWUnp5czhD1hrKFNCXkJMetK^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/dm-2^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
         Unmounting ^[[0;1;39m/boot/efi^[[0m...
         Unmounting ^[[0;1;39m/home^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m.
[^[[0;32m  OK  ^[[[ 2477.639298] audit: type=1131 audit(1750154477.426:446): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-fsck@dev-disk-by\x2duuid-FBE5\x2d86EF comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
0m] Unmounted ^[[0;1;39m/boot/efi^[[0m.
         Unmounting ^[[0;1;39m/boot^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[ 2477.898837] XFS (sda6): Unmounting Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot^[[0m.
[ 2479.149821] XFS (dm-0): Unmounting Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Local File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUnmount All Filesystems^[[0m.
         Stoppin[ 2479.317768] audit: type=1131 audit(1750154479.106:447): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
g ^[[0;1;39mMonit[ 2479.339389] audit: type=1131 audit(1750154479.126:448): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRemount Root and Kernel File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[[ 2479.414959] audit: type=1131 audit(1750154479.202:449): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
0m] Stopped ^[[0;[ 2479.436681] audit: type=1130 audit(1750154479.222:450): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
1;39mMonitoring [ 2479.457832] audit: type=1131 audit(1750154479.222:451): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
of LVM2 mirrors…using dmeventd or progress pol[ 2479.482494] audit: type=1334 audit(1750154479.270:452): prog-id=63 op=UNLOAD
ling^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLate Shutdown Services^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSystem Reboot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Reboot^[[0m.
[ 2479.517526] watchdog: watchdog0: watchdog did not stop!
[ 2479.528404] systemd-shutdown[1]: Using hardware watchdog 'SP5100 TCO timer', version 0, device /dev/watchdog0
[ 2479.538329] systemd-shutdown[1]: Watchdog running with a timeout of 10min.
[ 2479.551168] systemd-shutdown[1]: Syncing filesystems and block devices.
[ 2479.557830] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
[ 2479.583830] systemd-journald[1741]: Received SIGTERM from PID 1 (systemd-shutdow).
[ 2479.594374] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
[ 2479.618319] systemd-shutdown[1]: Unmounting file systems.
[ 2479.624635] [404865]: Remounting '/' read-only with options 'attr2,inode64,logbufs=8,logbsize=32k,noquota'.
[ 2479.708527] systemd-shutdown[1]: All filesystems unmounted.
[ 2479.714169] systemd-shutdown[1]: Deactivating swaps.
[ 2479.719161] systemd-shutdown[1]: All swaps deactivated.
[ 2479.724404] systemd-shutdown[1]: Detaching loop devices.
[ 2479.730222] systemd-shutdown[1]: All loop devices detached.
[ 2479.735796] systemd-shutdown[1]: Stopping MD devices.
[ 2479.740902] systemd-shutdown[1]: All MD devices stopped.
[ 2479.746211] systemd-shutdown[1]: Detaching DM devices.
[ 2479.751707] systemd-shutdown[1]: Detaching DM /dev/dm-2 (253:2).
[ 2479.789164] systemd-shutdown[1]: Detaching DM /dev/dm-0 (253:0).
[ 2479.845177] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[ 2479.851683] systemd-shutdown[1]: Detaching DM devices.
[ 2479.857006] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[ 2479.863465] systemd-shutdown[1]: Cannot finalize remaining DM devices, continuing.
[ 2479.871037] watchdog: watchdog0: watchdog did not stop!
[ 2479.947273] systemd-shutdown[1]: Successfully changed into root pivot.
[ 2479.953819] systemd-shutdown[1]: Returning to initrd...
[ 2480.006053] dracut Warning: Killing all remaining processes
dracut Warning: Killing all remaining processes
[ 2480.279255] XFS (dm-1): Unmounting Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[ 2480.296040] dracut Warning: Unmounted /oldroot.
dracut Warning: Unmounted /oldroot.
[ 2480.312479] dracut: Disassembling device-mapper devices
Rebooting.
[ 2480.515822] sd 8:0:2:0: [sdc] Synchronizing SCSI cache
[ 2480.521093] sd 8:0:0:0: [sda] Synchronizing SCSI cache
[ 2481.982672] mpt3sas_cm0: sending message unit reset !!
[ 2481.990537] mpt3sas_cm0: message unit reset: SUCCESS
[ 2481.998073] ACPI: PM: Preparing to enter system sleep state S5
[ 2482.004045] kvm: exiting hardware virtualization
[ 2482.008707] reboot: Restarting system
[ 2482.012377] reboot: machine restart
^[[c^[[2J^[[01;01H^[[=3h^[[2J^[[01;01HKEY MAPPING FOR CONSOLE REDIRECTION:

Use the <ESC><1> key sequence for <F1>
Use the <ESC><2> key sequence for <F2>
Use the <ESC><3> key sequence for <F3>
Use the <ESC><0> key sequence for <F10>
Use the <ESC><!> key sequence for <F11>
Use the <ESC><@> key sequence for <F12>

Use the <ESC><Ctrl><M> key sequence for <Ctrl><M>
Use the <ESC><Ctrl><H> key sequence for <Ctrl><H>
Use the <ESC><Ctrl><I> key sequence for <Ctrl><I>
Use the <ESC><Ctrl><J> key sequence for <Ctrl><J>

Use the <ESC><X><X> key sequence for <Alt><x>, where x is any letter
key, and X is the upper case of that key

Use the <ESC><R><ESC><r><ESC><R> key sequence for <Ctrl><Alt><Del>

Press the spacebar to pause...
Initializing PCIe, USB, and Video... Done
PowerEdge R6515
BIOS Version: 2.17.0
Console Redirection Enabled Requested by iDRAC

F2	 = System Setup
F10	 = Lifecycle Controller (Config
	   iDRAC, Update FW, Install OS)
F11	 = Boot Manager
F12	 = PXE Boot
iDRAC IPV4:  10.86.18.202 [Dedicated]
                                
Initializing Firmware Interfaces...
 





Enumerating Boot options...
Enumerating Boot options... Done
Loading Lifecycle Controller Drivers...
Loading Lifecycle Controller Drivers...Done
Lifecycle Controller: Collecting System Inventory...

iDRAC IPV4:  10.86.18.202 [Dedicated]

^[[2J^[[01;01HLifecycle Controller: Done
Booting...
^[[2J^[[01;01HBooting from Integrated Storage Controller 1: Red Hat Enterprise Linux
^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[02;32HGRUB version 2.06

\r^[[04;02H/----------------------------------------------------------------------------\^[[05;02H|^[[05;79H|^[[06;02H|^[[06;79H|^[[07;02H|^[[07;79H|^[[08;02H|^[[08;79H|^[[09;02H|^[[09;79H|^[[10;02H|^[[10;79H|^[[11;02H|^[[11;79H|^[[12;02H|^[[12;79H|^[[13;02H|^[[13;79H|^[[14;02H|^[[14;79H|^[[15;02H|^[[15;79H|^[[16;02H|^[[16;79H|^[[17;02H\----------------------------------------------------------------------------/^[[18;02H^[[19;02H     Use the ^ and v keys to select which entry is highlighted.          
\r      Press enter to boot the selected OS, `e' to edit the commands       
\r      before booting or `c' for a command-line. ESC to return previous    
\r      menu.                                                               ^[[05;80H ^[[0m^[[30m^[[47m^[[05;03H*Red Hat Enterprise Linux (6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e)>
\r^[[06;01H^[[0m^[[37m^[[40m^[[05;78H^[[06;03H Red Hat Enterprise Linux (6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997)>
\r^[[07;01H^[[06;78H^[[07;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250613-bc6e0ba6c9-dc42f4ece61)>
\r^[[08;01H^[[07;78H^[[08;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250612-0bb71d3018-d909e6968a1)>
\r^[[09;01H^[[08;78H^[[09;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250611-19a60293b9-72d7c68e20e)>
\r^[[10;01H^[[09;78H^[[10;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250610-b27cc623e0-9a3b1b1b837)>
\r^[[11;01H^[[10;78H^[[11;03H Red Hat Enterprise Linux (6.15.0-rc7-next-20250526-3be1a7a31f-22d449bcd69)>
\r^[[12;01H^[[11;78H^[[12;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250514-bdd609656f-ccb396cc166)>
\r^[[13;01H^[[12;78H^[[13;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250513-aa94665adc-e0bf3d3816b)>
\r^[[14;01H^[[13;78H^[[14;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250512-edef457004-450c56522a8)>
\r^[[15;01H^[[14;78H^[[15;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250508-f48887a98b-19c541fe872)>
\r^[[16;01H^[[15;78H^[[16;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250507-08710e6960-81586bd2ca8)>
\r^[[17;01H^[[16;78H^[[16;80Hv^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 5s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 4s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 3s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 2s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 1s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 0s.                 ^[[05;78H^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m  Booting `Red Hat Enterprise Linux
\r(6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e) 9.5 (Plow)'

\r[    0.000000] Linux version 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e (root@sharavati•amd.com) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-5), GNU ld version 2.35.2-63.el9) #1 SMP PREEMPT_DYNAMIC Tue Jun 17 15:21:04 IST 2025
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] SEV-SNP: RMP table physical range [0x0000000015e00000 - 0x00000000566fffff]
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000015dfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000015e00000-0x00000000566fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000056700000-0x00000000567fbfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000567fc000-0x00000000567fcfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000567fd000-0x000000005a142fff] usable
[    0.000000] BIOS-e820: [mem 0x000000005a143000-0x000000005a342fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005a343000-0x0000000067acefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000067acf000-0x000000006dfcefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006dfcf000-0x000000006edfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006edff000-0x000000006effefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000006efff000-0x000000006effffff] usable
[    0.000000] BIOS-e820: [mem 0x000000006f000000-0x000000006f00afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006f00b000-0x000000006fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000070000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa000000-0x00000000aaffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c5000000-0x00000000c5ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e0ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000207fcfffff] usable
[    0.000000] BIOS-e820: [mem 0x000000207fd00000-0x000000207fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000002080000000-0x000000407f1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000407f200000-0x000000407fffffff] reserved
[    0.000000] printk: legacy bootconsole [earlyser0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by Dell Inc.
[    0.000000] efi: ACPI=0x6effe000 ACPI 2.0=0x6effe014 MEMATTR=0x63f376a0 SMBIOS=0x6979e000 SMBIOS 3.0=0x6979c000 MOKvar=0x67bcc000 RNG=0x6efb4020 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem56: MMIO range=[0x80000000-0x8fffffff] (256MB) from e820 map
[    0.000000] efi: Remove mem57: MMIO range=[0xaa000000-0xaaffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem58: MMIO range=[0xc5000000-0xc5ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem59: MMIO range=[0xe0000000-0xe0ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem60: MMIO range=[0xfd000000-0xffffffff] (48MB) from e820 map
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[    0.000000] DMI: Memory slots populated: 8/16
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1996.137 MHz processor
[    0.000028] last_pfn = 0x407f200 max_arch_pfn = 0x400000000
[    0.005552] MTRR map: 7 entries (2 fixed + 5 variable; max 19), built from 9 variable MTRRs
[    0.013867] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Memory KASLR using RDRAND RDTSC...
[    0.023981] x2apic: enabled by BIOS, switching to x2apic ops
[    0.029617] last_pfn = 0x70000 max_arch_pfn = 0x400000000
[    0.039447] SEV-SNP: Reserving start/end of RMP table on a 2MB boundary [0x0000000056600000]
[    0.047718] Using GB pages for direct mapping
[    0.052787] Secure boot disabled
[    0.055840] RAMDISK: [mem 0x0bb2c000-0x0e0d4fff]
[    0.060438] ACPI: Early table checksum verification disabled
[    0.066071] ACPI: RSDP 0x000000006EFFE014 000024 (v02 DELL  )
[    0.071789] ACPI: XSDT 0x000000006EFB7188 0000DC (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.080283] ACPI: FACP 0x000000006EFF9000 000114 (v06 DELL   PE_SC3   00000002 DELL 00000001)
[    0.088776] ACPI: DSDT 0x000000006EFDA000 019528 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.097268] ACPI: FACS 0x000000006EDB9000 000040
[    0.101862] ACPI: BERT 0x000000006EFFC000 000030 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.110355] ACPI: ERST 0x000000006EFFB000 000230 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.118850] ACPI: HEST 0x000000006EFFA000 0007F4 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.127342] ACPI: HPET 0x000000006EFF8000 000038 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.135854] ACPI: APIC 0x000000006EFF6000 0018BE (v05 DELL   PE_SC3   00000002 DELL 00000001)
[    0.144347] ACPI: MCFG 0x000000006EFF5000 00003C (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.152840] ACPI: WSMT 0x000000006EFF4000 000028 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.161334] ACPI: SSDT 0x000000006EFD9000 000629 (v02 DELL   xhc_port 00000001 INTL 20210331)
[    0.169828] ACPI: SSDT 0x000000006EFD8000 000D6E (v02 AMD    CPMRAS   00000001 INTL 20210331)
[    0.178322] ACPI: EINJ 0x000000006EFD7000 000170 (v01 AMD    PE_SC3   00000001 AMD  00000001)
[    0.186815] ACPI: PCCT 0x000000006EFD6000 00006E (v02 DELL   AmdTable 00000001 AMD  00000001)
[    0.195309] ACPI: SSDT 0x000000006EFC7000 00E849 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.203802] ACPI: SRAT 0x000000006EFC6000 000CD0 (v03 DELL   PE_SC3   00000001 AMD  00000001)
[    0.212295] ACPI: MSCT 0x000000006EFC5000 00004E (v01 DELL   PE_SC3   00000000 AMD  00000001)
[    0.220790] ACPI: SLIT 0x000000006EFC4000 000030 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.229283] ACPI: CRAT 0x000000006EFBC000 0072F8 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.237777] ACPI: CDIT 0x000000006EFBB000 00002C (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.246297] ACPI: IVRS 0x000000006EFBA000 0001F0 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.254790] ACPI: SPCR 0x000000006EFB9000 000050 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.263284] ACPI: SLIC 0x000000006EFB8000 000176 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.271778] ACPI: SSDT 0x000000006EFFD000 000D66 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.280271] ACPI: SSDT 0x000000006EFB5000 00193C (v02 AMD    CPMCMN   00000001 INTL 20210331)
[    0.288765] ACPI: Reserving FACP table memory at [mem 0x6eff9000-0x6eff9113]
[    0.295784] ACPI: Reserving DSDT table memory at [mem 0x6efda000-0x6eff3527]
[    0.302805] ACPI: Reserving FACS table memory at [mem 0x6edb9000-0x6edb903f]
[    0.309825] ACPI: Reserving BERT table memory at [mem 0x6effc000-0x6effc02f]
[    0.316845] ACPI: Reserving ERST table memory at [mem 0x6effb000-0x6effb22f]
[    0.323866] ACPI: Reserving HEST table memory at [mem 0x6effa000-0x6effa7f3]
[    0.330886] ACPI: Reserving HPET table memory at [mem 0x6eff8000-0x6eff8037]
[    0.337906] ACPI: Reserving APIC table memory at [mem 0x6eff6000-0x6eff78bd]
[    0.344925] ACPI: Reserving MCFG table memory at [mem 0x6eff5000-0x6eff503b]
[    0.351972] ACPI: Reserving WSMT table memory at [mem 0x6eff4000-0x6eff4027]
[    0.358993] ACPI: Reserving SSDT table memory at [mem 0x6efd9000-0x6efd9628]
[    0.366012] ACPI: Reserving SSDT table memory at [mem 0x6efd8000-0x6efd8d6d]
[    0.373032] ACPI: Reserving EINJ table memory at [mem 0x6efd7000-0x6efd716f]
[    0.380053] ACPI: Reserving PCCT table memory at [mem 0x6efd6000-0x6efd606d]
[    0.387073] ACPI: Reserving SSDT table memory at [mem 0x6efc7000-0x6efd5848]
[    0.394093] ACPI: Reserving SRAT table memory at [mem 0x6efc6000-0x6efc6ccf]
[    0.401113] ACPI: Reserving MSCT table memory at [mem 0x6efc5000-0x6efc504d]
[    0.408134] ACPI: Reserving SLIT table memory at [mem 0x6efc4000-0x6efc402f]
[    0.415154] ACPI: Reserving CRAT table memory at [mem 0x6efbc000-0x6efc32f7]
[    0.422173] ACPI: Reserving CDIT table memory at [mem 0x6efbb000-0x6efbb02b]
[    0.429195] ACPI: Reserving IVRS table memory at [mem 0x6efba000-0x6efba1ef]
[    0.436215] ACPI: Reserving SPCR table memory at [mem 0x6efb9000-0x6efb904f]
[    0.443234] ACPI: Reserving SLIC table memory at [mem 0x6efb8000-0x6efb8175]
[    0.450255] ACPI: Reserving SSDT table memory at [mem 0x6effd000-0x6effdd65]
[    0.457310] ACPI: Reserving SSDT table memory at [mem 0x6efb5000-0x6efb693b]
[    0.464406] APIC: Switched APIC routing to: cluster x2apic
[    0.469808] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.475771] ACPI: SRAT: Node 0 PXM 0 [mem 0x000c0000-0x7fffffff]
[    0.481750] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.487991] ACPI: SRAT: Node 1 PXM 1 [mem 0x2080000000-0x407fffffff]
[    0.494325] NUMA: Node 0 [mem 0x00001000-0x0009ffff] + [mem 0x000c0000-0x7fffffff] -> [mem 0x00001000-0x7fffffff]
[    0.504545] NUMA: Node 0 [mem 0x00001000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00001000-0x207fffffff]
[    0.515212] NODE_DATA(0) allocated [mem 0x207fcd59c0-0x207fcfffff]
[    0.521367] NODE_DATA(1) allocated [mem 0x407f1d49c0-0x407f1fefff]
[    0.527652] cannot allocate crashkernel low memory (size:0x10800000).
[    0.534171] Zone ranges:
[    0.536525]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.542680]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.548833]   Normal   [mem 0x0000000100000000-0x000000407f1fffff]
[    0.554987]   Device   empty
[    0.557846] Movable zone start for each node
[    0.562095] Early memory node ranges
[    0.565646]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.571886]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.578127]   node   0: [mem 0x0000000000100000-0x0000000015dfffff]
[    0.584368]   node   0: [mem 0x0000000056700000-0x00000000567fbfff]
[    0.590607]   node   0: [mem 0x00000000567fd000-0x000000005a142fff]
[    0.596847]   node   0: [mem 0x000000005a343000-0x0000000067acefff]
[    0.603088]   node   0: [mem 0x000000006efff000-0x000000006effffff]
[    0.609327]   node   0: [mem 0x000000006f00b000-0x000000006fffffff]
[    0.615568]   node   0: [mem 0x0000000100000000-0x000000207fcfffff]
[    0.621819]   node   1: [mem 0x0000002080000000-0x000000407f1fffff]
[    0.628059] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fcfffff]
[    0.635070] Initmem setup node 1 [mem 0x0000002080000000-0x000000407f1fffff]
[    0.642092] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.647896] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.653715] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.659990] On node 0, zone DMA32: 35072 pages in unavailable ranges
[    0.666207] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.672302] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.678393] On node 0, zone DMA32: 30000 pages in unavailable ranges
[    0.684637] On node 0, zone DMA32: 11 pages in unavailable ranges
[    0.909998] On node 1, zone Normal: 768 pages in unavailable ranges
[    0.916100] On node 1, zone Normal: 3584 pages in unavailable ranges
[    0.922589] ACPI: PM-Timer IO Port: 0x408
[    0.926453] ACPI: X2APIC_NMI (uid[0xffffffff] high edge lint[0x1])
[    0.932598] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.938503] IOAPIC[0]: apic_id 240, version 33, address 0xfec00000, GSI 0-23
[    0.945514] IOAPIC[1]: apic_id 241, version 33, address 0xe0100000, GSI 120-151
[    0.952793] IOAPIC[2]: apic_id 242, version 33, address 0xc5100000, GSI 88-119
[    0.959988] IOAPIC[3]: apic_id 243, version 33, address 0xaa100000, GSI 56-87
[    0.967095] IOAPIC[4]: apic_id 244, version 33, address 0xfd100000, GSI 24-55
[    0.974199] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.980524] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.987032] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.993438] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.998554] ACPI: SPCR: console: uart,io,0x2f8,115200
[    1.003583] CPU topo: Max. logical packages:   1
[    1.008171] CPU topo: Max. logical dies:       1
[    1.012765] CPU topo: Max. dies per package:   1
[    1.017363] CPU topo: Max. threads per core:   2
[    1.021953] CPU topo: Num. cores per package:    64
[    1.026806] CPU topo: Num. threads per package: 128
[    1.031685] CPU topo: Allowing 128 present CPUs plus 0 hotplug CPUs
[    1.037968] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    1.045484] PM: hibernation: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    1.053024] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    1.060565] PM: hibernation: Registered nosave memory: [mem 0x15e00000-0x567fffff]
[    1.068105] PM: hibernation: Registered nosave memory: [mem 0x5a143000-0x5a342fff]
[    1.075645] PM: hibernation: Registered nosave memory: [mem 0x67acf000-0x6effefff]
[    1.083185] PM: hibernation: Registered nosave memory: [mem 0x6f000000-0x6f00afff]
[    1.090726] PM: hibernation: Registered nosave memory: [mem 0x70000000-0xffffffff]
[    1.098265] PM: hibernation: Registered nosave memory: [mem 0x207fd00000-0x207fffffff]
[    1.106151] [mem 0x56800000-0xffffffff] available for PCI devices
[    1.112219] Booting paravirtualized kernel on bare hardware
[    1.117766] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    1.128178] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:128 nr_cpu_ids:128 nr_node_ids:2
[    1.139295] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[    1.145785] Kernel command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    1.175115] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e biosdevname=0 mem_encrypt=off", will be passed to user space.
[    1.191963] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    1.198879] printk: log_buf_len total cpu_extra contributions: 520192 bytes
[    1.205813] printk: log_buf_len min size: 262144 bytes
[    1.211255] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[    1.218639] printk: early log buf free: 246352(93%)
[    1.224995] software IO TLB: area num 128.
[    1.228915] software IO TLB: swiotlb_memblock_alloc: Failed to allocate 268435456 bytes tlb structure
[    1.244000] software IO TLB: SWIOTLB bounce buffer size adjusted 131072 -> 65536 slabs
[    1.250037] Fallback order for Node 0: 0 1 
[    1.250041] Fallback order for Node 1: 1 0 
[    1.250055] Built 2 zonelists, mobility grouping on.  Total pages: 66743906
[    1.273050] Policy zone: Normal
[    1.276179] mem auto-init: stack:off, heap alloc:on, heap free:off
[    1.697511] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=128, Nodes=2
Poking KASLR using RDRAND RDTSC...
[    1.718756] ftrace: allocating 53763 entries in 212 pages
[    1.723973] ftrace: allocated 212 pages with 4 groups
[    1.729914] Dynamic Preempt: voluntary
[    1.733856] rcu: Preemptible hierarchical RCU implementation.
[    1.739418] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=128.
[    1.746353] 	Trampoline variant of Tasks RCU enabled.
[    1.751379] 	Rude variant of Tasks RCU enabled.
[    1.755886] 	Tracing variant of Tasks RCU enabled.
[    1.760652] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.768192] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=128
[    1.775080] RCU Tasks: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.783882] RCU Tasks Rude: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.793158] RCU Tasks Trace: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.806065] NR_IRQS: 524544, nr_irqs: 3624, preallocated irqs: 16
[    1.812254] rcu: srcu_init: Setting srcu_struct sizes to big.
[    1.818001] Console: colour dummy device 80x25
[    1.822284] printk: legacy console [ttyS0] enabled
[    1.822284] printk: legacy console [ttyS0] enabled
[    1.831817] printk: legacy bootconsole [earlyser0] disabled
[    1.831817] printk: legacy bootconsole [earlyser0] disabled
[    1.843006] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    1.854284] ACPI: Core revision 20250404
[    1.858434] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    1.867573] APIC: Switch to symmetric I/O mode setup
[    1.872974] AMD-Vi: Using global IVHD EFR:0x841f77e022094ace, EFR2:0x0
[    1.881910] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    1.907578] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x398bda03be6, max_idle_ns: 881590535910 ns
[    1.918091] Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.27 BogoMIPS (lpj=7984548)
[    1.922103] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    1.926200] LVT offset 2 assigned for vector 0xf4
[    1.930123] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    1.934089] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    1.938091] process: using mwait in idle threads
[    1.942094] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    1.946089] Spectre V2 : Mitigation: Retpolines
[    1.950089] Spectre V2 : User space: Mitigation: STIBP always-on protection
[    1.954089] Speculative Return Stack Overflow: Mitigation: Safe RET
[    1.958089] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.962089] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
[    1.966089] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    1.970090] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    1.974093] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.978089] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.982089] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.986089] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    1.990089] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    1.994090] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    1.998089] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    2.002089] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    2.006089] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[    2.043998] Freeing SMP alternatives memory: 48K
[    2.046091] pid_max: default: 131072 minimum: 1024
[    2.057683] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm
[    2.058143] Yama: becoming mindful.
[    2.062217] AppArmor: AppArmor initialized
[    2.074874] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    2.083174] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    2.086242] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.090186] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.206945] smpboot: CPU0: AMD EPYC 7713 64-Core Processor (family: 0x19, model: 0x1, stepping: 0x1)
[    2.210443] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    2.214091] ... version:                0
[    2.218090] ... bit width:              48
[    2.222091] ... generic registers:      6
[    2.226090] ... value mask:             0000ffffffffffff
[    2.230090] ... max period:             00007fffffffffff
[    2.234090] ... fixed-purpose events:   0
[    2.238090] ... event mask:             000000000000003f
[    2.242522] signal: max sigframe size: 3376
[    2.246150] rcu: Hierarchical SRCU implementation.
[    2.250090] rcu: 	Max phase no-delay instances is 1000.
[    2.254148] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
[    2.266537] MCE: In-kernel MCE decoding enabled.
[    2.270138] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    2.275043] smp: Bringing up secondary CPUs ...
[    2.278255] smpboot: x86: Booting SMP configuration:
[    2.282093] .... node  #0, CPUs:          #1   #2   #3   #4   #5   #6   #7   #8   #9  #10  #11  #12  #13  #14  #15  #16  #17  #18  #19  #20  #21  #22  #23  #24  #25  #26  #27  #28  #29  #30  #31
[    2.294092] .... node  #1, CPUs:    #32  #33  #34  #35  #36  #37  #38  #39  #40  #41  #42  #43  #44  #45  #46  #47  #48  #49  #50  #51  #52  #53  #54  #55  #56  #57  #58  #59  #60  #61  #62  #63
[    2.446091] .... node  #0, CPUs:    #64  #65  #66  #67  #68  #69  #70  #71  #72  #73  #74  #75  #76  #77  #78  #79  #80  #81  #82  #83  #84  #85  #86  #87  #88  #89  #90  #91  #92  #93  #94  #95
[    2.454091] .... node  #1, CPUs:    #96  #97  #98  #99 #100 #101 #102 #103 #104 #105 #106 #107 #108 #109 #110 #111 #112 #113 #114 #115 #116 #117 #118 #119 #120 #121 #122 #123 #124 #125 #126 #127
[    2.462396] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[    2.614265] smp: Brought up 2 nodes, 128 CPUs
[    2.618093] smpboot: Total of 128 processors activated (511011.07 BogoMIPS)
[    2.628552] Memory: 262224960K/266975624K available (18401K kernel code, 3299K rwdata, 7944K rodata, 4760K init, 6092K bss, 4428316K reserved, 0K cma-reserved)
[    2.636793] devtmpfs: initialized
[    2.638197] x86/mm: Memory block size: 2048MB
[    2.653441] ACPI: PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    2.654093] ACPI: PM: Registering ACPI NVS region [mem 0x6dfcf000-0x6edfefff] (14876672 bytes)
[    2.658377] ACPI: PM: Registering ACPI NVS region [mem 0x6f000000-0x6f00afff] (45056 bytes)
[    2.662209] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    2.666154] posixtimers hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.670315] futex hash table entries: 16384 (1048576 bytes on 2 NUMA nodes, total 2048 KiB, linear).
[    2.674320] pinctrl core: initialized pinctrl subsystem
[    2.678241] PM: RTC time: 15:33:34, date: 2025-06-17
[    2.682868] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    2.686696] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    2.690272] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    2.694274] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    2.698097] audit: initializing netlink subsys (disabled)
[    2.702119] audit: type=2000 audit(1750174413.820:1): state=initialized audit_enabled=0 res=1
[    2.702294] thermal_sys: Registered thermal governor 'fair_share'
[    2.706091] thermal_sys: Registered thermal governor 'bang_bang'
[    2.710090] thermal_sys: Registered thermal governor 'step_wise'
[    2.714091] thermal_sys: Registered thermal governor 'user_space'
[    2.718113] cpuidle: using governor ladder
[    2.726100] cpuidle: using governor menu
[    2.730139] Detected 1 PCC Subspaces
[    2.734091] Registering PCC driver as Mailbox controller
[    2.738267] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    2.742092] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    2.746271] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    2.750101] PCI: Using configuration type 1 for base access
[    2.754099] PCI: Dell System detected, enabling pci=bfsort.
[    2.758296] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    2.762309] HugeTLB: allocation took 0ms with hugepage_allocation_threads=32
[    2.766133] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    2.770091] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    2.774092] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    2.778090] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    2.786718] ACPI: Added _OSI(Module Device)
[    2.790092] ACPI: Added _OSI(Processor Device)
[    2.794091] ACPI: Added _OSI(Processor Aggregator Device)
[    2.839968] ACPI: 6 ACPI AML tables successfully acquired and loaded
[    2.851886] ACPI: Interpreter enabled
[    2.854103] ACPI: PM: (supports S0 S5)
[    2.858090] ACPI: Using IOAPIC for interrupt routing
[    2.862706] HEST: Table parsing has been initialized.
[    2.870393] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    2.874093] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.878091] PCI: Ignoring E820 reservations for host bridge windows
[    2.887396] ACPI: Enabled 1 GPEs in block 00 to 1F
[    2.929351] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    2.930170] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    2.934169] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    2.938169] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    2.942168] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    2.946168] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    2.950168] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    2.954170] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    2.958590] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-3f])
[    2.962095] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.966255] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER DPC]
[    2.970406] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    2.974090] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.982550] PCI host bridge to bus 0000:00
[    2.986094] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    2.990091] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    2.994091] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000fffff window]
[    2.998090] pci_bus 0000:00: root bus resource [io  0x0d00-0x3fff window]
[    3.002090] pci_bus 0000:00: root bus resource [mem 0xe1000000-0xfebfffff window]
[    3.006090] pci_bus 0000:00: root bus resource [mem 0x63dc0000000-0x7fcffffffff window]
[    3.010091] pci_bus 0000:00: root bus resource [bus 00-3f]
[    3.014106] pci 0000:00:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.018244] pci 0000:00:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.022202] pci 0000:00:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.026184] pci 0000:00:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.030181] pci 0000:00:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.034184] pci 0000:00:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.038106] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.042095] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    3.046092] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    3.050160] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    3.055101] pci 0000:00:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.058185] pci 0000:00:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.062184] pci 0000:00:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.066185] pci 0000:00:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.070106] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.074096] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    3.078102] pci 0000:00:07.1: enabling Extended Tags
[    3.082138] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    3.086246] pci 0000:00:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.090184] pci 0000:00:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.094107] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.098095] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    3.102102] pci 0000:00:08.1: enabling Extended Tags
[    3.106140] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    3.110282] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
[    3.114206] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
[    3.118261] pci 0000:00:18.0: [1022:1650] type 00 class 0x060000 conventional PCI endpoint
[    3.122196] pci 0000:00:18.1: [1022:1651] type 00 class 0x060000 conventional PCI endpoint
[    3.126159] pci 0000:00:18.2: [1022:1652] type 00 class 0x060000 conventional PCI endpoint
[    3.130156] pci 0000:00:18.3: [1022:1653] type 00 class 0x060000 conventional PCI endpoint
[    3.134156] pci 0000:00:18.4: [1022:1654] type 00 class 0x060000 conventional PCI endpoint
[    3.138154] pci 0000:00:18.5: [1022:1655] type 00 class 0x060000 conventional PCI endpoint
[    3.142159] pci 0000:00:18.6: [1022:1656] type 00 class 0x060000 conventional PCI endpoint
[    3.146155] pci 0000:00:18.7: [1022:1657] type 00 class 0x060000 conventional PCI endpoint
[    3.150225] pci 0000:01:00.0: [1000:0097] type 00 class 0x010700 PCIe Endpoint
[    3.154121] pci 0000:01:00.0: BAR 0 [io  0x1000-0x10ff]
[    3.158092] pci 0000:01:00.0: BAR 1 [mem 0xf7400000-0xf740ffff 64bit]
[    3.162092] pci 0000:01:00.0: BAR 3 [mem 0xf7300000-0xf73fffff 64bit]
[    3.166092] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]
[    3.170096] pci 0000:01:00.0: enabling Extended Tags
[    3.174176] pci 0000:01:00.0: supports D1 D2
[    3.178133] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[    3.182090] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x000fffff 64bit]: contains BAR 0 for 16 VFs
[    3.186092] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x000fffff 64bit]
[    3.190090] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x00ffffff 64bit]: contains BAR 2 for 16 VFs
[    3.194242] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.198179] pci 0000:02:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.202124] pci 0000:02:00.0: enabling Extended Tags
[    3.206253] pci 0000:02:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.210118] pci 0000:02:00.2: BAR 2 [mem 0xf7200000-0xf727ffff]
[    3.214092] pci 0000:02:00.2: BAR 5 [mem 0xf7280000-0xf7281fff]
[    3.218095] pci 0000:02:00.2: enabling Extended Tags
[    3.222291] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.226227] pci 0000:03:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.230127] pci 0000:03:00.0: enabling Extended Tags
[    3.234301] pci 0000:03:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.238120] pci 0000:03:00.2: BAR 2 [mem 0xf7100000-0xf717ffff]
[    3.242093] pci 0000:03:00.2: BAR 5 [mem 0xf7180000-0xf7181fff]
[    3.246095] pci 0000:03:00.2: enabling Extended Tags
[    3.250284] pci 0000:03:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.254120] pci 0000:03:00.3: BAR 0 [mem 0xf7000000-0xf70fffff 64bit]
[    3.258099] pci 0000:03:00.3: enabling Extended Tags
[    3.262141] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
[    3.266272] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.274820] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 40-7f])
[    3.278093] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.282254] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.286405] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.290090] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.295027] PCI host bridge to bus 0000:40
[    3.298094] pci_bus 0000:40: root bus resource [io  0x4000-0x6fff window]
[    3.302091] pci_bus 0000:40: root bus resource [mem 0x90000000-0xaaffffff window]
[    3.306090] pci_bus 0000:40: root bus resource [mem 0x47e80000000-0x63dbfffffff window]
[    3.310090] pci_bus 0000:40: root bus resource [bus 40-7f]
[    3.314101] pci 0000:40:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.318189] pci 0000:40:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.322193] pci 0000:40:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.326177] pci 0000:40:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.330175] pci 0000:40:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.334184] pci 0000:40:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.338108] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.342095] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    3.346181] pci 0000:40:03.1: PME# supported from D0 D3hot D3cold
[    3.362621] pci 0000:40:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.366115] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.370097] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    3.374212] pci 0000:40:03.2: PME# supported from D0 D3hot D3cold
[    3.392200] pci 0000:40:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.394114] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.398097] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    3.402213] pci 0000:40:03.3: PME# supported from D0 D3hot D3cold
[    3.421967] pci 0000:40:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.422108] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.426095] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    3.430182] pci 0000:40:03.4: PME# supported from D0 D3hot D3cold
[    3.447901] pci 0000:40:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.450252] pci 0000:40:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.454180] pci 0000:40:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.458225] pci 0000:40:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.462106] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.466099] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    3.470104] pci 0000:40:07.1: enabling Extended Tags
[    3.474167] pci 0000:40:07.1: PME# supported from D0 D3hot D3cold
[    3.478250] pci 0000:40:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.482183] pci 0000:40:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.486106] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.490095] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    3.494103] pci 0000:40:08.1: enabling Extended Tags
[    3.498139] pci 0000:40:08.1: PME# supported from D0 D3hot D3cold
[    3.506324] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.510175] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.514172] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.518185] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.522177] pci 0000:45:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.526124] pci 0000:45:00.0: enabling Extended Tags
[    3.530251] pci 0000:45:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.534117] pci 0000:45:00.2: BAR 2 [mem 0xa5300000-0xa537ffff]
[    3.538094] pci 0000:45:00.2: BAR 5 [mem 0xa5380000-0xa5381fff]
[    3.542095] pci 0000:45:00.2: enabling Extended Tags
[    3.546293] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.550224] pci 0000:46:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.554127] pci 0000:46:00.0: enabling Extended Tags
[    3.558306] pci 0000:46:00.1: [1022:1486] type 00 class 0x108000 PCIe Endpoint
[    3.562121] pci 0000:46:00.1: BAR 2 [mem 0xa5100000-0xa51fffff]
[    3.566093] pci 0000:46:00.1: BAR 5 [mem 0xa5282000-0xa5283fff]
[    3.570095] pci 0000:46:00.1: enabling Extended Tags
[    3.574283] pci 0000:46:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.578120] pci 0000:46:00.2: BAR 2 [mem 0xa5200000-0xa527ffff]
[    3.582093] pci 0000:46:00.2: BAR 5 [mem 0xa5280000-0xa5281fff]
[    3.586095] pci 0000:46:00.2: enabling Extended Tags
[    3.590283] pci 0000:46:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.594119] pci 0000:46:00.3: BAR 0 [mem 0xa5000000-0xa50fffff 64bit]
[    3.598098] pci 0000:46:00.3: enabling Extended Tags
[    3.602140] pci 0000:46:00.3: PME# supported from D0 D3hot D3cold
[    3.606274] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.610777] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 80-bf])
[    3.614096] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.618255] acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.622405] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.626090] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.631001] PCI host bridge to bus 0000:80
[    3.634094] pci_bus 0000:80: root bus resource [io  0x7000-0x9fff window]
[    3.638090] pci_bus 0000:80: root bus resource [mem 0xab000000-0xc5ffffff window]
[    3.642090] pci_bus 0000:80: root bus resource [mem 0x2bf40000000-0x47e7fffffff window]
[    3.646092] pci_bus 0000:80: root bus resource [bus 80-bf]
[    3.650100] pci 0000:80:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.654192] pci 0000:80:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.658194] pci 0000:80:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.662182] pci 0000:80:01.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.666108] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.670095] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    3.674183] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    3.692002] pci 0000:80:01.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.694114] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.698097] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    3.702208] pci 0000:80:01.2: PME# supported from D0 D3hot D3cold
[    3.722561] pci 0000:80:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.726223] pci 0000:80:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.730180] pci 0000:80:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.734232] pci 0000:80:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.738178] pci 0000:80:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.742181] pci 0000:80:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.746106] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.750094] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    3.754102] pci 0000:80:07.1: enabling Extended Tags
[    3.758138] pci 0000:80:07.1: PME# supported from D0 D3hot D3cold
[    3.762244] pci 0000:80:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.766182] pci 0000:80:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.770107] pci 0000:80:08.1: PCI bridge to [bus 84]
[    3.774095] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    3.778102] pci 0000:80:08.1: enabling Extended Tags
[    3.782141] pci 0000:80:08.1: PME# supported from D0 D3hot D3cold
[    3.786255] pci 0000:80:08.2: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.790106] pci 0000:80:08.2: PCI bridge to [bus 85]
[    3.794096] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    3.798102] pci 0000:80:08.2: enabling Extended Tags
[    3.802139] pci 0000:80:08.2: PME# supported from D0 D3hot D3cold
[    3.806337] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.810173] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.818096] pci 0000:83:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.822124] pci 0000:83:00.0: enabling Extended Tags
[    3.826252] pci 0000:83:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.830117] pci 0000:83:00.2: BAR 2 [mem 0xbfa00000-0xbfa7ffff]
[    3.834092] pci 0000:83:00.2: BAR 5 [mem 0xbfa80000-0xbfa81fff]
[    3.838095] pci 0000:83:00.2: enabling Extended Tags
[    3.842291] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.846224] pci 0000:84:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.850126] pci 0000:84:00.0: enabling Extended Tags
[    3.854303] pci 0000:84:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.858120] pci 0000:84:00.2: BAR 2 [mem 0xbf900000-0xbf97ffff]
[    3.862093] pci 0000:84:00.2: BAR 5 [mem 0xbf980000-0xbf981fff]
[    3.866095] pci 0000:84:00.2: enabling Extended Tags
[    3.870298] pci 0000:80:08.1: PCI bridge to [bus 84]
[    3.874224] pci 0000:85:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[    3.878122] pci 0000:85:00.0: BAR 5 [mem 0xbf800000-0xbf8007ff]
[    3.882095] pci 0000:85:00.0: enabling Extended Tags
[    3.886154] pci 0000:85:00.0: PME# supported from D3hot D3cold
[    3.890266] pci 0000:80:08.2: PCI bridge to [bus 85]
[    3.894806] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus c0-ff])
[    3.898094] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.902256] acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.906406] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.910090] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.915115] PCI host bridge to bus 0000:c0
[    3.918094] pci_bus 0000:c0: root bus resource [io  0xa000-0xffff window]
[    3.922090] pci_bus 0000:c0: root bus resource [mem 0xc6000000-0xe0ffffff window]
[    3.926091] pci_bus 0000:c0: root bus resource [mem 0x10000000000-0x2bf3fffffff window]
[    3.930090] pci_bus 0000:c0: root bus resource [io  0x03b0-0x03df window]
[    3.934090] pci_bus 0000:c0: root bus resource [mem 0x000a0000-0x000bffff window]
[    3.938090] pci_bus 0000:c0: root bus resource [bus c0-ff]
[    3.942100] pci 0000:c0:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.946189] pci 0000:c0:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.950192] pci 0000:c0:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.954181] pci 0000:c0:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.958175] pci 0000:c0:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.962185] pci 0000:c0:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.966108] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    3.970095] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    3.974182] pci 0000:c0:03.1: PME# supported from D0 D3hot D3cold
[    3.995022] pci 0000:c0:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.998113] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.002097] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    4.006212] pci 0000:c0:03.2: PME# supported from D0 D3hot D3cold
[    4.025873] pci 0000:c0:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.026113] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.030097] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    4.034199] pci 0000:c0:03.3: PME# supported from D0 D3hot D3cold
[    4.052929] pci 0000:c0:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.054114] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.058097] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    4.062201] pci 0000:c0:03.4: PME# supported from D0 D3hot D3cold
[    4.080187] pci 0000:c0:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.082218] pci 0000:c0:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.086184] pci 0000:c0:05.1: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.090105] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.094106] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    4.098186] pci 0000:c0:05.1: PME# supported from D0 D3hot D3cold
[    4.102246] pci 0000:c0:05.2: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.106106] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.110095] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    4.114096] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.118135] pci 0000:c0:05.2: PME# supported from D0 D3hot D3cold
[    4.122264] pci 0000:c0:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.126183] pci 0000:c0:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.130105] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.134095] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    4.138101] pci 0000:c0:07.1: enabling Extended Tags
[    4.142136] pci 0000:c0:07.1: PME# supported from D0 D3hot D3cold
[    4.146244] pci 0000:c0:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.150181] pci 0000:c0:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.154107] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.158094] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    4.162102] pci 0000:c0:08.1: enabling Extended Tags
[    4.166138] pci 0000:c0:08.1: PME# supported from D0 D3hot D3cold
[    4.174279] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.178172] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.182172] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.186172] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.190191] pci 0000:c1:00.0: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.194136] pci 0000:c1:00.0: BAR 0 [mem 0xc7030000-0xc703ffff 64bit pref]
[    4.198093] pci 0000:c1:00.0: BAR 2 [mem 0xc7040000-0xc704ffff 64bit pref]
[    4.202093] pci 0000:c1:00.0: BAR 4 [mem 0xc7050000-0xc705ffff 64bit pref]
[    4.206092] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.210178] pci 0000:c1:00.0: PME# supported from D0 D3hot D3cold
[    4.214146] pci 0000:c1:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:c0:05.1 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
[    4.223070] pci 0000:c1:00.1: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.226136] pci 0000:c1:00.1: BAR 0 [mem 0xc7000000-0xc700ffff 64bit pref]
[    4.230093] pci 0000:c1:00.1: BAR 2 [mem 0xc7010000-0xc701ffff 64bit pref]
[    4.234093] pci 0000:c1:00.1: BAR 4 [mem 0xc7020000-0xc702ffff 64bit pref]
[    4.238092] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.242179] pci 0000:c1:00.1: PME# supported from D0 D3hot D3cold
[    4.254124] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.258171] pci 0000:c2:00.0: [1556:be00] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    4.262117] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.266098] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    4.270100] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.282112] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.286127] pci_bus 0000:c3: extended config space not accessible
[    4.290119] pci 0000:c3:00.0: [102b:0536] type 00 class 0x030000 conventional PCI endpoint
[    4.294137] pci 0000:c3:00.0: BAR 0 [mem 0xc6000000-0xc6ffffff pref]
[    4.298092] pci 0000:c3:00.0: BAR 1 [mem 0xda808000-0xda80bfff]
[    4.302092] pci 0000:c3:00.0: BAR 2 [mem 0xda000000-0xda7fffff]
[    4.306110] pci 0000:c3:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    4.310218] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.314190] pci 0000:c8:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    4.318123] pci 0000:c8:00.0: enabling Extended Tags
[    4.322250] pci 0000:c8:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.326117] pci 0000:c8:00.2: BAR 2 [mem 0xdbb00000-0xdbb7ffff]
[    4.330092] pci 0000:c8:00.2: BAR 5 [mem 0xdbb80000-0xdbb81fff]
[    4.334095] pci 0000:c8:00.2: enabling Extended Tags
[    4.342229] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.346227] pci 0000:c9:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.350126] pci 0000:c9:00.0: enabling Extended Tags
[    4.354299] pci 0000:c9:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.358120] pci 0000:c9:00.2: BAR 2 [mem 0xdba00000-0xdba7ffff]
[    4.362093] pci 0000:c9:00.2: BAR 5 [mem 0xdba80000-0xdba81fff]
[    4.366095] pci 0000:c9:00.2: enabling Extended Tags
[    4.370295] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.381204] iommu: Default domain type: Translated
[    4.382091] iommu: DMA domain TLB invalidation policy: lazy mode
[    4.390390] SCSI subsystem initialized
[    4.394134] ACPI: bus type USB registered
[    4.398116] usbcore: registered new interface driver usbfs
[    4.402100] usbcore: registered new interface driver hub
[    4.406125] usbcore: registered new device driver usb
[    4.410121] pps_core: LinuxPPS API ver. 1 registered
[    4.414090] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux•it>
[    4.418096] PTP clock support registered
[    4.422173] EDAC MC: Ver: 3.0.0
[    4.426305] efivars: Registered efivars operations
[    4.434543] NetLabel: Initializing
[    4.437948] NetLabel:  domain hash size = 128
[    4.438092] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    4.442116] NetLabel:  unlabeled traffic allowed by default
[    4.446219] PCI: Using ACPI for IRQ routing
[    4.458216] pci 0000:c3:00.0: vgaarb: setting as boot VGA device
[    4.462089] pci 0000:c3:00.0: vgaarb: bridge control possible
[    4.462089] pci 0000:c3:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    4.462091] vgaarb: loaded
[    4.464807] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    4.466091] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    4.474283] clocksource: Switched to clocksource tsc-early
[    4.479893] VFS: Disk quotas dquot_6.6.0
[    4.483845] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.490969] AppArmor: AppArmor Filesystem Enabled
[    4.495697] pnp: PnP ACPI init
[    4.499001] system 00:00: [mem 0x80000000-0x8fffffff] has been reserved
[    4.505716] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[    4.513919] pnp: PnP ACPI: found 5 devices
[    4.525097] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    4.534104] NET: Registered PF_INET protocol family
[    4.539110] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.550878] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.559830] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    4.567860] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.577355] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.585736] TCP: Hash tables configured (established 524288 bind 65536)
[    4.592714] UDP hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.601134] UDP-Lite hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.609971] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    4.615635] NET: Registered PF_XDP protocol family
[    4.620433] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.630259] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.640119] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.649945] pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
[    4.655618] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: can't assign; no space
[    4.663356] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: failed to assign
[    4.670577] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: can't assign; no space
[    4.678837] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: failed to assign
[    4.686575] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: can't assign; no space
[    4.694834] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: failed to assign
[    4.702574] pci 0000:00:03.2: PCI bridge to [bus 01]
[    4.707544] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    4.713637] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    4.720425] pci 0000:00:07.1: PCI bridge to [bus 02]
[    4.725397] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    4.732189] pci 0000:00:08.1: PCI bridge to [bus 03]
[    4.737159] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    4.743945] PCI: No. 2 try to assign unassigned res
[    4.748827] pci 0000:00:03.2: resource 14 [mem 0xf7300000-0xf74fffff] released
[    4.756050] pci 0000:00:03.2: PCI bridge to [bus 01]
[    4.761032] pci 0000:00:03.2: bridge window [mem 0x00100000-0x002fffff] to [bus 01] add_size 1200000 add_align 100000
[    4.771643] pci 0000:00:03.2: bridge window [mem 0xe1000000-0xe23fffff]: assigned
[    4.779126] pci 0000:01:00.0: BAR 3 [mem 0xe1000000-0xe10fffff 64bit]: assigned
[    4.786444] pci 0000:01:00.0: ROM [mem 0xe1100000-0xe11fffff pref]: assigned
[    4.793491] pci 0000:01:00.0: VF BAR 2 [mem 0xe1200000-0xe21fffff 64bit]: assigned
[    4.801060] pci 0000:01:00.0: BAR 1 [mem 0xe2200000-0xe220ffff 64bit]: assigned
[    4.808372] pci 0000:01:00.0: VF BAR 0 [mem 0xe2210000-0xe230ffff 64bit]: assigned
[    4.815942] pci 0000:00:03.2: PCI bridge to [bus 01]
[    4.820914] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    4.827012] pci 0000:00:03.2:   bridge window [mem 0xe1000000-0xe23fffff]
[    4.833806] pci 0000:00:07.1: PCI bridge to [bus 02]
[    4.838777] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    4.845593] pci 0000:00:08.1: PCI bridge to [bus 03]
[    4.850565] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    4.857353] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    4.863537] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    4.869717] pci_bus 0000:00: resource 6 [mem 0x000c0000-0x000fffff window]
[    4.876590] pci_bus 0000:00: resource 7 [io  0x0d00-0x3fff window]
[    4.882770] pci_bus 0000:00: resource 8 [mem 0xe1000000-0xfebfffff window]
[    4.889641] pci_bus 0000:00: resource 9 [mem 0x63dc0000000-0x7fcffffffff window]
[    4.897036] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[    4.902608] pci_bus 0000:01: resource 1 [mem 0xe1000000-0xe23fffff]
[    4.908873] pci_bus 0000:02: resource 1 [mem 0xf7200000-0xf72fffff]
[    4.915140] pci_bus 0000:03: resource 1 [mem 0xf7000000-0xf71fffff]
[    4.921492] pci 0000:40:03.1: bridge window [io  0x1000-0x0fff] to [bus 41] add_size 1000
[    4.929666] pci 0000:40:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 41] add_size 200000 add_align 100000
[    4.941133] pci 0000:40:03.2: bridge window [io  0x1000-0x0fff] to [bus 42] add_size 1000
[    4.949358] pci 0000:40:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 42] add_size 200000 add_align 100000
[    4.960832] pci 0000:40:03.3: bridge window [io  0x1000-0x0fff] to [bus 43] add_size 1000
[    4.969008] pci 0000:40:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 43] add_size 200000 add_align 100000
[    4.980480] pci 0000:40:03.4: bridge window [io  0x1000-0x0fff] to [bus 44] add_size 1000
[    4.988653] pci 0000:40:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 44] add_size 200000 add_align 100000
[    5.000126] pci 0000:40:03.1: bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]: assigned
[    5.009081] pci 0000:40:03.2: bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]: assigned
[    5.018036] pci 0000:40:03.3: bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]: assigned
[    5.026988] pci 0000:40:03.4: bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]: assigned
[    5.035943] pci 0000:40:03.1: bridge window [io  0x4000-0x4fff]: assigned
[    5.042725] pci 0000:40:03.2: bridge window [io  0x5000-0x5fff]: assigned
[    5.049512] pci 0000:40:03.3: bridge window [io  0x6000-0x6fff]: assigned
[    5.056300] pci 0000:40:03.4: bridge window [io  size 0x1000]: can't assign; no space
[    5.064124] pci 0000:40:03.4: bridge window [io  size 0x1000]: failed to assign
[    5.071431] pci 0000:40:03.4: bridge window [io  0x4000-0x4fff]: assigned
[    5.078217] pci 0000:40:03.3: bridge window [io  0x5000-0x5fff]: assigned
[    5.085003] pci 0000:40:03.2: bridge window [io  0x6000-0x6fff]: assigned
[    5.091792] pci 0000:40:03.1: bridge window [io  size 0x1000]: can't assign; no space
[    5.099615] pci 0000:40:03.1: bridge window [io  size 0x1000]: failed to assign
[    5.106922] pci 0000:40:03.1: PCI bridge to [bus 41]
[    5.111891] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    5.118676] pci 0000:40:03.1:   bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.126939] pci 0000:40:03.2: PCI bridge to [bus 42]
[    5.131909] pci 0000:40:03.2:   bridge window [io  0x6000-0x6fff]
[    5.138002] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    5.144790] pci 0000:40:03.2:   bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.153050] pci 0000:40:03.3: PCI bridge to [bus 43]
[    5.158043] pci 0000:40:03.3:   bridge window [io  0x5000-0x5fff]
[    5.164135] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    5.170921] pci 0000:40:03.3:   bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.179181] pci 0000:40:03.4: PCI bridge to [bus 44]
[    5.184145] pci 0000:40:03.4:   bridge window [io  0x4000-0x4fff]
[    5.190238] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    5.197026] pci 0000:40:03.4:   bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.205288] pci 0000:40:07.1: PCI bridge to [bus 45]
[    5.210260] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    5.217048] pci 0000:40:08.1: PCI bridge to [bus 46]
[    5.222019] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    5.228808] pci_bus 0000:40: Some PCI device resources are unassigned, try booting with pci=realloc
[    5.237844] pci_bus 0000:40: resource 4 [io  0x4000-0x6fff window]
[    5.244025] pci_bus 0000:40: resource 5 [mem 0x90000000-0xaaffffff window]
[    5.250896] pci_bus 0000:40: resource 6 [mem 0x47e80000000-0x63dbfffffff window]
[    5.258289] pci_bus 0000:41: resource 1 [mem 0xa4c00000-0xa4ffffff]
[    5.264556] pci_bus 0000:41: resource 2 [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.272332] pci_bus 0000:42: resource 0 [io  0x6000-0x6fff]
[    5.277903] pci_bus 0000:42: resource 1 [mem 0xa4800000-0xa4bfffff]
[    5.284168] pci_bus 0000:42: resource 2 [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.291910] pci_bus 0000:43: resource 0 [io  0x5000-0x5fff]
[    5.297481] pci_bus 0000:43: resource 1 [mem 0xa4400000-0xa47fffff]
[    5.303748] pci_bus 0000:43: resource 2 [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.311489] pci_bus 0000:44: resource 0 [io  0x4000-0x4fff]
[    5.317061] pci_bus 0000:44: resource 1 [mem 0xa4000000-0xa43fffff]
[    5.323327] pci_bus 0000:44: resource 2 [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.331065] pci_bus 0000:45: resource 1 [mem 0xa5300000-0xa53fffff]
[    5.337338] pci_bus 0000:46: resource 1 [mem 0xa5000000-0xa52fffff]
[    5.343672] pci 0000:80:01.1: bridge window [io  0x1000-0x0fff] to [bus 81] add_size 1000
[    5.351850] pci 0000:80:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 81] add_size 200000 add_align 100000
[    5.363317] pci 0000:80:01.2: bridge window [io  0x1000-0x0fff] to [bus 82] add_size 1000
[    5.371489] pci 0000:80:01.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 82] add_size 200000 add_align 100000
[    5.382976] pci 0000:80:01.1: bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]: assigned
[    5.391934] pci 0000:80:01.2: bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]: assigned
[    5.400889] pci 0000:80:01.1: bridge window [io  0x7000-0x7fff]: assigned
[    5.407674] pci 0000:80:01.2: bridge window [io  0x8000-0x8fff]: assigned
[    5.414459] pci 0000:80:01.1: PCI bridge to [bus 81]
[    5.419426] pci 0000:80:01.1:   bridge window [io  0x7000-0x7fff]
[    5.425521] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    5.432305] pci 0000:80:01.1:   bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.440566] pci 0000:80:01.2: PCI bridge to [bus 82]
[    5.445530] pci 0000:80:01.2:   bridge window [io  0x8000-0x8fff]
[    5.451624] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    5.458411] pci 0000:80:01.2:   bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.466675] pci 0000:80:07.1: PCI bridge to [bus 83]
[    5.471647] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    5.478461] pci 0000:80:08.1: PCI bridge to [bus 84]
[    5.483431] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    5.490219] pci 0000:80:08.2: PCI bridge to [bus 85]
[    5.495184] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    5.501974] pci_bus 0000:80: resource 4 [io  0x7000-0x9fff window]
[    5.508157] pci_bus 0000:80: resource 5 [mem 0xab000000-0xc5ffffff window]
[    5.515029] pci_bus 0000:80: resource 6 [mem 0x2bf40000000-0x47e7fffffff window]
[    5.522424] pci_bus 0000:81: resource 0 [io  0x7000-0x7fff]
[    5.527996] pci_bus 0000:81: resource 1 [mem 0xbf400000-0xbf7fffff]
[    5.534261] pci_bus 0000:81: resource 2 [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.542004] pci_bus 0000:82: resource 0 [io  0x8000-0x8fff]
[    5.547574] pci_bus 0000:82: resource 1 [mem 0xbf000000-0xbf3fffff]
[    5.553840] pci_bus 0000:82: resource 2 [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.561582] pci_bus 0000:83: resource 1 [mem 0xbfa00000-0xbfafffff]
[    5.567847] pci_bus 0000:84: resource 1 [mem 0xbf900000-0xbf9fffff]
[    5.574113] pci_bus 0000:85: resource 1 [mem 0xbf800000-0xbf8fffff]
[    5.580462] pci 0000:c0:03.1: bridge window [io  0x1000-0x0fff] to [bus c4] add_size 1000
[    5.588641] pci 0000:c0:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c4] add_size 200000 add_align 100000
[    5.600105] pci 0000:c0:03.2: bridge window [io  0x1000-0x0fff] to [bus c5] add_size 1000
[    5.608279] pci 0000:c0:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c5] add_size 200000 add_align 100000
[    5.619745] pci 0000:c0:03.3: bridge window [io  0x1000-0x0fff] to [bus c6] add_size 1000
[    5.627918] pci 0000:c0:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c6] add_size 200000 add_align 100000
[    5.639383] pci 0000:c0:03.4: bridge window [io  0x1000-0x0fff] to [bus c7] add_size 1000
[    5.647556] pci 0000:c0:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c7] add_size 200000 add_align 100000
[    5.659028] pci 0000:c0:05.1: bridge window [mem 0x00100000-0x000fffff] to [bus c1] add_size 100000 add_align 100000
[    5.669554] pci 0000:c0:03.1: bridge window [mem 0x10000000000-0x100001fffff 64bit pref]: assigned
[    5.678506] pci 0000:c0:03.2: bridge window [mem 0x10000200000-0x100003fffff 64bit pref]: assigned
[    5.687485] pci 0000:c0:03.3: bridge window [mem 0x10000400000-0x100005fffff 64bit pref]: assigned
[    5.696440] pci 0000:c0:03.4: bridge window [mem 0x10000600000-0x100007fffff 64bit pref]: assigned
[    5.705392] pci 0000:c0:05.1: bridge window [mem 0xc7100000-0xc71fffff]: assigned
[    5.712869] pci 0000:c0:03.1: bridge window [io  0xa000-0xafff]: assigned
[    5.719656] pci 0000:c0:03.2: bridge window [io  0xb000-0xbfff]: assigned
[    5.726443] pci 0000:c0:03.3: bridge window [io  0xc000-0xcfff]: assigned
[    5.733230] pci 0000:c0:03.4: bridge window [io  0xd000-0xdfff]: assigned
[    5.740017] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    5.744983] pci 0000:c0:03.1:   bridge window [io  0xa000-0xafff]
[    5.751076] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    5.757861] pci 0000:c0:03.1:   bridge window [mem 0x10000000000-0x100001fffff 64bit pref]
[    5.766123] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    5.771088] pci 0000:c0:03.2:   bridge window [io  0xb000-0xbfff]
[    5.777182] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    5.784009] pci 0000:c0:03.2:   bridge window [mem 0x10000200000-0x100003fffff 64bit pref]
[    5.792271] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    5.797234] pci 0000:c0:03.3:   bridge window [io  0xc000-0xcfff]
[    5.803328] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    5.810117] pci 0000:c0:03.3:   bridge window [mem 0x10000400000-0x100005fffff 64bit pref]
[    5.818387] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    5.823357] pci 0000:c0:03.4:   bridge window [io  0xd000-0xdfff]
[    5.829451] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    5.836237] pci 0000:c0:03.4:   bridge window [mem 0x10000600000-0x100007fffff 64bit pref]
[    5.844502] pci 0000:c1:00.0: ROM [mem 0xc7100000-0xc713ffff pref]: assigned
[    5.851550] pci 0000:c1:00.1: ROM [mem 0xc7140000-0xc717ffff pref]: assigned
[    5.858599] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    5.863564] pci 0000:c0:05.1:   bridge window [mem 0xc7100000-0xc71fffff]
[    5.870350] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    5.878093] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    5.883069] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    5.889888] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    5.897635] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    5.902859] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    5.909646] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    5.917388] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    5.922361] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    5.929149] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    5.934114] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    5.940903] pci_bus 0000:c0: resource 4 [io  0xa000-0xffff window]
[    5.947087] pci_bus 0000:c0: resource 5 [mem 0xc6000000-0xe0ffffff window]
[    5.953960] pci_bus 0000:c0: resource 6 [mem 0x10000000000-0x2bf3fffffff window]
[    5.961355] pci_bus 0000:c0: resource 7 [io  0x03b0-0x03df window]
[    5.967542] pci_bus 0000:c0: resource 8 [mem 0x000a0000-0x000bffff window]
[    5.974417] pci_bus 0000:c4: resource 0 [io  0xa000-0xafff]
[    5.979996] pci_bus 0000:c4: resource 1 [mem 0xdb600000-0xdb9fffff]
[    5.986261] pci_bus 0000:c4: resource 2 [mem 0x10000000000-0x100001fffff 64bit pref]
[    5.994011] pci_bus 0000:c5: resource 0 [io  0xb000-0xbfff]
[    5.999593] pci_bus 0000:c5: resource 1 [mem 0xdb200000-0xdb5fffff]
[    6.005865] pci_bus 0000:c5: resource 2 [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.013606] pci_bus 0000:c6: resource 0 [io  0xc000-0xcfff]
[    6.019180] pci_bus 0000:c6: resource 1 [mem 0xdae00000-0xdb1fffff]
[    6.025445] pci_bus 0000:c6: resource 2 [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.033186] pci_bus 0000:c7: resource 0 [io  0xd000-0xdfff]
[    6.038767] pci_bus 0000:c7: resource 1 [mem 0xdaa00000-0xdadfffff]
[    6.045033] pci_bus 0000:c7: resource 2 [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.052770] pci_bus 0000:c1: resource 1 [mem 0xc7100000-0xc71fffff]
[    6.059037] pci_bus 0000:c1: resource 2 [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.066257] pci_bus 0000:c2: resource 1 [mem 0xda000000-0xda8fffff]
[    6.072523] pci_bus 0000:c2: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.079743] pci_bus 0000:c3: resource 1 [mem 0xda000000-0xda8fffff]
[    6.086011] pci_bus 0000:c3: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.093274] pci_bus 0000:c8: resource 1 [mem 0xdbb00000-0xdbbfffff]
[    6.099547] pci_bus 0000:c9: resource 1 [mem 0xdba00000-0xdbafffff]
[    6.106485] PCI: CLS 64 bytes, default 64
[    6.110592] Trying to unpack rootfs image as initramfs...
[    6.173054] AMD-Vi: IOMMU SNP support enabled.
[    6.177695] pci 0000:c0:00.2: AMD-Vi: IOMMU performance counters supported
[    6.184766] pci 0000:c0:01.0: Adding to iommu group 0
[    6.189876] pci 0000:c0:02.0: Adding to iommu group 1
[    6.195083] pci 0000:c0:03.0: Adding to iommu group 2
[    6.200182] pci 0000:c0:03.1: Adding to iommu group 2
[    6.205277] pci 0000:c0:03.2: Adding to iommu group 2
[    6.210375] pci 0000:c0:03.3: Adding to iommu group 2
[    6.215479] pci 0000:c0:03.4: Adding to iommu group 2
[    6.220592] pci 0000:c0:04.0: Adding to iommu group 3
[    6.225742] pci 0000:c0:05.0: Adding to iommu group 4
[    6.230846] pci 0000:c0:05.1: Adding to iommu group 4
[    6.235949] pci 0000:c0:05.2: Adding to iommu group 4
[    6.241055] pci 0000:c0:07.0: Adding to iommu group 5
[    6.246139] pci 0000:c0:07.1: Adding to iommu group 6
[    6.251248] pci 0000:c0:08.0: Adding to iommu group 7
[    6.256338] pci 0000:c0:08.1: Adding to iommu group 8
[    6.261401] pci 0000:c1:00.0: Adding to iommu group 4
[    6.266460] pci 0000:c1:00.1: Adding to iommu group 4
[    6.271520] pci 0000:c2:00.0: Adding to iommu group 4
[    6.276586] pci 0000:c3:00.0: Adding to iommu group 4
[    6.281672] pci 0000:c8:00.0: Adding to iommu group 9
[    6.286760] pci 0000:c8:00.2: Adding to iommu group 10
[    6.291935] pci 0000:c9:00.0: Adding to iommu group 11
[    6.297108] pci 0000:c9:00.2: Adding to iommu group 12
[    6.308558] pci 0000:80:00.2: AMD-Vi: IOMMU performance counters supported
[    6.315629] pci 0000:80:01.0: Adding to iommu group 13
[    6.320817] pci 0000:80:01.1: Adding to iommu group 13
[    6.325996] pci 0000:80:01.2: Adding to iommu group 13
[    6.331190] pci 0000:80:02.0: Adding to iommu group 14
[    6.336386] pci 0000:80:03.0: Adding to iommu group 15
[    6.341582] pci 0000:80:04.0: Adding to iommu group 16
[    6.346775] pci 0000:80:05.0: Adding to iommu group 17
[    6.351973] pci 0000:80:07.0: Adding to iommu group 18
[    6.357145] pci 0000:80:07.1: Adding to iommu group 19
[    6.362341] pci 0000:80:08.0: Adding to iommu group 20
[    6.367519] pci 0000:80:08.1: Adding to iommu group 21
[    6.372694] pci 0000:80:08.2: Adding to iommu group 22
[    6.377867] pci 0000:83:00.0: Adding to iommu group 23
[    6.383045] pci 0000:83:00.2: Adding to iommu group 24
[    6.388217] pci 0000:84:00.0: Adding to iommu group 25
[    6.393392] pci 0000:84:00.2: Adding to iommu group 26
[    6.398564] pci 0000:85:00.0: Adding to iommu group 27
[    6.410706] pci 0000:40:00.2: AMD-Vi: IOMMU performance counters supported
[    6.417916] pci 0000:40:01.0: Adding to iommu group 28
[    6.423118] pci 0000:40:02.0: Adding to iommu group 29
[    6.428407] pci 0000:40:03.0: Adding to iommu group 30
[    6.433583] pci 0000:40:03.1: Adding to iommu group 30
[    6.438767] pci 0000:40:03.2: Adding to iommu group 30
[    6.443948] pci 0000:40:03.3: Adding to iommu group 30
[    6.449128] pci 0000:40:03.4: Adding to iommu group 30
[    6.454320] pci 0000:40:04.0: Adding to iommu group 31
[    6.459511] pci 0000:40:05.0: Adding to iommu group 32
[    6.464705] pci 0000:40:07.0: Adding to iommu group 33
[    6.469877] pci 0000:40:07.1: Adding to iommu group 34
[    6.475080] pci 0000:40:08.0: Adding to iommu group 35
[    6.480264] pci 0000:40:08.1: Adding to iommu group 36
[    6.485441] pci 0000:45:00.0: Adding to iommu group 37
[    6.490614] pci 0000:45:00.2: Adding to iommu group 38
[    6.495789] pci 0000:46:00.0: Adding to iommu group 39
[    6.500964] pci 0000:46:00.1: Adding to iommu group 40
[    6.506182] pci 0000:46:00.2: Adding to iommu group 41
[    6.511357] pci 0000:46:00.3: Adding to iommu group 42
[    6.523790] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    6.530810] pci 0000:00:00.0: Adding to iommu group 43
[    6.536011] pci 0000:00:01.0: Adding to iommu group 44
[    6.541208] pci 0000:00:02.0: Adding to iommu group 45
[    6.546409] pci 0000:00:03.0: Adding to iommu group 46
[    6.546557] Freeing initrd memory: 38564K
[    6.551590] pci 0000:00:03.2: Adding to iommu group 47
[    6.560762] pci 0000:00:04.0: Adding to iommu group 48
[    6.565963] pci 0000:00:05.0: Adding to iommu group 49
[    6.571162] pci 0000:00:07.0: Adding to iommu group 50
[    6.576340] pci 0000:00:07.1: Adding to iommu group 51
[    6.581535] pci 0000:00:08.0: Adding to iommu group 52
[    6.586704] pci 0000:00:08.1: Adding to iommu group 53
[    6.591922] pci 0000:00:14.0: Adding to iommu group 54
[    6.597099] pci 0000:00:14.3: Adding to iommu group 54
[    6.602450] pci 0000:00:18.0: Adding to iommu group 55
[    6.607627] pci 0000:00:18.1: Adding to iommu group 55
[    6.612804] pci 0000:00:18.2: Adding to iommu group 55
[    6.617973] pci 0000:00:18.3: Adding to iommu group 55
[    6.623154] pci 0000:00:18.4: Adding to iommu group 55
[    6.628325] pci 0000:00:18.5: Adding to iommu group 55
[    6.633495] pci 0000:00:18.6: Adding to iommu group 55
[    6.638673] pci 0000:00:18.7: Adding to iommu group 55
[    6.643847] pci 0000:01:00.0: Adding to iommu group 56
[    6.649024] pci 0000:02:00.0: Adding to iommu group 57
[    6.654194] pci 0000:02:00.2: Adding to iommu group 58
[    6.659371] pci 0000:03:00.0: Adding to iommu group 59
[    6.664548] pci 0000:03:00.2: Adding to iommu group 60
[    6.669729] pci 0000:03:00.3: Adding to iommu group 61
[    6.684042] AMD-Vi: Extended features (0x841f77e022094ace, 0x0): PPR X2APIC NX IA GA PC SNP
[    6.692400] AMD-Vi: Interrupt remapping enabled
[    6.696934] AMD-Vi: X2APIC enabled
[    6.701331] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    6.707779] software IO TLB: mapped [mem 0x000000005bf37000-0x0000000063f37000] (128MB)
[    6.715928] LVT offset 0 assigned for vector 0x400
[    6.722258] perf: AMD IBS detected (0x000003ff)
[    6.728077] amd_uncore: 4 amd_df counters detected
[    6.732922] amd_uncore: 6 amd_l3 counters detected
[    6.739344] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    6.746505] perf/amd_iommu: Detected AMD IOMMU #1 (2 banks, 4 counters/bank).
[    6.753668] perf/amd_iommu: Detected AMD IOMMU #2 (2 banks, 4 counters/bank).
[    6.760819] perf/amd_iommu: Detected AMD IOMMU #3 (2 banks, 4 counters/bank).
[    6.771246] Initialise system trusted keyrings
[    6.775710] Key type blacklist registered
[    6.779849] workingset: timestamp_bits=36 max_order=26 bucket_order=0
[    6.786817] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    6.792803] fuse: init (API version 7.44)
[    6.797074] integrity: Platform Keyring initialized
[    6.813799] Key type asymmetric registered
[    6.817896] Asymmetric key parser 'x509' registered
[    6.822814] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    6.830323] io scheduler mq-deadline registered
[    6.837442] ledtrig-cpu: registered to indicate activity on CPUs
[    6.843742] pcieport 0000:00:03.2: PME: Signaling with IRQ 38
[    6.849888] pcieport 0000:00:07.1: PME: Signaling with IRQ 40
[    6.855860] pcieport 0000:00:08.1: PME: Signaling with IRQ 41
[    6.861838] pcieport 0000:40:03.1: PME: Signaling with IRQ 42
[    6.867642] pcieport 0000:40:03.1: pciehp: Slot #167 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.881662] pcieport 0000:40:03.2: PME: Signaling with IRQ 43
[    6.887463] pcieport 0000:40:03.2: pciehp: Slot #166 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.901470] pcieport 0000:40:03.3: PME: Signaling with IRQ 44
[    6.907273] pcieport 0000:40:03.3: pciehp: Slot #169 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.921291] pcieport 0000:40:03.4: PME: Signaling with IRQ 45
[    6.927089] pcieport 0000:40:03.4: pciehp: Slot #168 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.941202] pcieport 0000:40:07.1: PME: Signaling with IRQ 47
[    6.947164] pcieport 0000:40:08.1: PME: Signaling with IRQ 48
[    6.953262] pcieport 0000:80:01.1: PME: Signaling with IRQ 49
[    6.959081] pcieport 0000:80:01.1: pciehp: Slot #160 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.973082] pcieport 0000:80:01.2: PME: Signaling with IRQ 50
[    6.978884] pcieport 0000:80:01.2: pciehp: Slot #161 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    6.993011] pcieport 0000:80:07.1: PME: Signaling with IRQ 52
[    6.999045] pcieport 0000:80:08.1: PME: Signaling with IRQ 54
[    7.005062] pcieport 0000:80:08.2: PME: Signaling with IRQ 55
[    7.011011] pcieport 0000:c0:03.1: PME: Signaling with IRQ 56
[    7.016811] pcieport 0000:c0:03.1: pciehp: Slot #163 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.030793] pcieport 0000:c0:03.2: PME: Signaling with IRQ 57
[    7.036610] pcieport 0000:c0:03.2: pciehp: Slot #162 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.050590] pcieport 0000:c0:03.3: PME: Signaling with IRQ 58
[    7.056390] pcieport 0000:c0:03.3: pciehp: Slot #165 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.070367] pcieport 0000:c0:03.4: PME: Signaling with IRQ 59
[    7.076162] pcieport 0000:c0:03.4: pciehp: Slot #164 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.090133] pcieport 0000:c0:05.1: PME: Signaling with IRQ 60
[    7.096055] pcieport 0000:c0:05.2: PME: Signaling with IRQ 61
[    7.102089] pcieport 0000:c0:07.1: PME: Signaling with IRQ 63
[    7.108116] pcieport 0000:c0:08.1: PME: Signaling with IRQ 65
[    7.114604] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    7.122078] ACPI: button: Power Button [PWRF]
[    7.569439] Estimated ratio of average max frequency by base frequency (times 1024): 1464
[    7.577937] ERST: Error Record Serialization Table (ERST) support is initialized.
[    7.585440] pstore: Using crash dump compression: deflate
[    7.590842] pstore: Registered erst as persistent store backend
[    7.596902] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    7.603467] 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    7.611614] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    7.622715] Linux agpgart interface v0.103
[    7.652683] loop: module loaded
[    7.667145] ahci 0000:85:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[    7.675154] ahci 0000:85:00.0: 8/8 ports implemented (port mask 0xff)
[    7.681627] ahci 0000:85:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part sxs 
[    7.691925] scsi host0: ahci
[    7.695056] scsi host1: ahci
[    7.698170] scsi host2: ahci
[    7.701269] scsi host3: ahci
[    7.704377] scsi host4: ahci
[    7.707476] scsi host5: ahci
[    7.710671] scsi host6: ahci
[    7.713773] scsi host7: ahci
[    7.716728] ata1: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800100 irq 67 lpm-pol 0 ext
[    7.725334] ata2: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800180 irq 68 lpm-pol 0 ext
[    7.733941] ata3: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800200 irq 69 lpm-pol 0 ext
[    7.742546] ata4: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800280 irq 70 lpm-pol 0 ext
[    7.751151] ata5: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800300 irq 71 lpm-pol 0 ext
[    7.759759] ata6: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800380 irq 72 lpm-pol 0 ext
[    7.768371] ata7: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800400 irq 73 lpm-pol 0 ext
[    7.776980] ata8: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800480 irq 74 lpm-pol 0 ext
[    7.785607] tsc: Refined TSC clocksource calibration: 1996.250 MHz
[    7.791842] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398caf77d7a, max_idle_ns: 881590459467 ns
[    7.801996] clocksource: Switched to clocksource tsc
[    7.807302] tun: Universal TUN/TAP device driver, 1.6
[    7.812434] PPP generic driver version 2.4.2
[    7.816861] VFIO - User Level meta-driver version: 0.3
[    7.822366] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    7.827603] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 1
[    7.835104] xhci_hcd 0000:03:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    7.844661] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    7.849898] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 2
[    7.857298] xhci_hcd 0000:03:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    7.864399] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    7.872660] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    7.879879] usb usb1: Product: xHCI Host Controller
[    7.884756] usb usb1: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    7.893708] usb usb1: SerialNumber: 0000:03:00.3
[    7.898510] hub 1-0:1.0: USB hub found
[    7.902273] hub 1-0:1.0: 2 ports detected
[    7.907132] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    7.915248] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    7.923508] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    7.930732] usb usb2: Product: xHCI Host Controller
[    7.935613] usb usb2: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    7.944568] usb usb2: SerialNumber: 0000:03:00.3
[    7.949332] hub 2-0:1.0: USB hub found
[    7.953091] hub 2-0:1.0: 2 ports detected
[    7.958020] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    7.963261] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 3
[    7.970745] xhci_hcd 0000:46:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    7.980267] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    7.985498] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 4
[    7.992898] xhci_hcd 0000:46:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    7.999981] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.008247] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.015467] usb usb3: Product: xHCI Host Controller
[    8.020344] usb usb3: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.029300] usb usb3: SerialNumber: 0000:46:00.3
[    8.034100] hub 3-0:1.0: USB hub found
[    8.037868] hub 3-0:1.0: 2 ports detected
[    8.042672] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.050795] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.059062] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.066291] usb usb4: Product: xHCI Host Controller
[    8.071174] usb usb4: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.080124] usb usb4: SerialNumber: 0000:46:00.3
[    8.084883] hub 4-0:1.0: USB hub found
[    8.088647] hub 4-0:1.0: 2 ports detected
[    8.093703] usbcore: registered new interface driver uas
[    8.099047] usbcore: registered new interface driver usb-storage
[    8.102538] ata3: SATA link down (SStatus 0 SControl 300)
[    8.105089] i8042: PNP: No PS/2 controller found.
[    8.110482] ata5: SATA link down (SStatus 0 SControl 300)
[    8.115271] mousedev: PS/2 mouse device common for all mice
[    8.120587] ata1: SATA link down (SStatus 0 SControl 300)
[    8.126234] rtc_cmos 00:02: RTC can wake from S4
[    8.131558] ata8: SATA link down (SStatus 0 SControl 300)
[    8.136519] rtc_cmos 00:02: registered as rtc0
[    8.141578] ata6: SATA link down (SStatus 0 SControl 300)
[    8.146071] rtc_cmos 00:02: setting system clock to 2025-06-17T15:33:40 UTC (1750174420)
[    8.151421] ata7: SATA link down (SStatus 0 SControl 300)
[    8.152259] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[    8.159522] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram
[    8.164909] ata4: SATA link down (SStatus 0 SControl 300)
[    8.171419] i2c_dev: i2c /dev entries driver
[    8.178130] ata2: SATA link down (SStatus 0 SControl 300)
[    8.183524] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    8.205359] device-mapper: uevent: version 1.0.3
[    8.210082] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists•linux.dev
[    8.218958] amd_pstate: driver load is disabled, boot with specific mode to enable this
[    8.227006] efifb: probing for efifb
[    8.230598] efifb: No BGRT, not showing boot graphics
[    8.235655] efifb: framebuffer at 0xc6000000, using 3072k, total 3072k
[    8.242178] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    8.248184] efifb: scrolling: redraw
[    8.251762] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    8.257387] fbcon: Deferring console take-over
[    8.261834] fb0: EFI VGA frame buffer device
[    8.266202] drop_monitor: Initializing network drop monitor service
[    8.272627] NET: Registered PF_INET6 protocol family
[    8.285666] Segment Routing with IPv6
[    8.289345] In-situ OAM (IOAM) with IPv6
[    8.292261] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[    8.293298] NET: Registered PF_PACKET protocol family
[    8.295123] usb 1-1: New USB device found, idVendor=0424, idProduct=2744, bcdDevice= 1.21
[    8.295127] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    8.295129] usb 1-1: Product: USB2734
[    8.295131] usb 1-1: Manufacturer: Microchip Tech
[    8.328615] Key type dns_resolver registered
[    8.344785] hub 1-1:1.0: USB hub found
[    8.344851] x86/amd: Previous system reset reason [0x00080800]: software wrote 0x6 to reset control register 0xCF9
[    8.348752] hub 1-1:1.0: 4 ports detected
[    8.358888] microcode: Current revision: 0x0a0011d5
[    8.367772] microcode: Updated early from: 0x0a0011d5
[    8.376213] resctrl: L3 allocation detected
[    8.380400] resctrl: MB allocation detected
[    8.384584] resctrl: L3 monitoring detected
[    8.388938] IPI shorthand broadcast: enabled
[    8.396911] sched_clock: Marking stable (8332002844, 64242107)->(9562834955, -1166590004)
[    8.405777] registered taskstats version 1
[    8.412147] Loading compiled-in X.509 certificates
[    8.417450] Loaded X.509 cert 'Build time autogenerated kernel key: 08bfd1fd39cd432a2b2f01158b4d473611f86fe0'
[    8.420387] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
[    8.433269] usb 3-1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    8.433898] Demotion targets for Node 0: null
[    8.442054] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.448648] usb 2-1: New USB device found, idVendor=0424, idProduct=5744, bcdDevice= 1.21
[    8.453567] Demotion targets for Node 1: null
[    8.461735] usb 2-1: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[    8.466650] Key type .fscrypt registered
[    8.473228] usb 2-1: Product: USB5734
[    8.477151] Key type fscrypt-provisioning registered
[    8.480371] hub 3-1:1.0: USB hub found
[    8.480817] usb 2-1: Manufacturer: Microchip Tech
[    8.486022] hub 3-1:1.0: 4 ports detected
[    8.493802] Key type encrypted registered
[    8.502268] AppArmor: AppArmor sha256 policy hashing enabled
[    8.508005] integrity: Loading X.509 certificate: UEFI:db
[    8.513425] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    8.520815] hub 2-1:1.0: USB hub found
[    8.524199] integrity: Loading X.509 certificate: UEFI:db
[    8.527984] hub 2-1:1.0: 4 ports detected
[    8.533360] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    8.548392] integrity: Loading X.509 certificate: UEFI:db
[    8.553909] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    8.562776] integrity: Loading X.509 certificate: UEFI:db
[    8.568314] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    8.579880] ima: No TPM chip found, activating TPM-bypass!
[    8.585373] Loading compiled-in module X.509 certificates
[    8.591194] Loaded X.509 cert 'Build time autogenerated kernel key: 08bfd1fd39cd432a2b2f01158b4d473611f86fe0'
[    8.601100] ima: Allocated hash algorithm: sha1
[    8.605636] ima: No architecture policies found
[    8.610190] evm: Initialising EVM extended attributes:
[    8.615328] evm: security.selinux
[    8.618647] evm: security.SMACK64
[    8.621966] evm: security.SMACK64EXEC
[    8.625632] evm: security.SMACK64TRANSMUTE
[    8.629732] evm: security.SMACK64MMAP
[    8.633396] evm: security.apparmor
[    8.636805] evm: security.ima
[    8.639775] evm: security.capability
[    8.643356] evm: HMAC attrs: 0x1
[    8.646993] PM:   Magic number: 13:896:588
[    8.651733] RAS: Correctable Errors collector initialized.
[    8.657382] clk: Disabling unused clocks
[    8.661305] PM: genpd: Disabling unused power domains
[    8.668080] Freeing unused decrypted memory: 2028K
[    8.673623] Freeing unused kernel image (initmem) memory: 4760K
[    8.679561] Write protecting the kernel read-only data: 26624k
[    8.685829] Freeing unused kernel image (text/rodata gap) memory: 28K
[    8.692449] Freeing unused kernel image (rodata/data gap) memory: 248K
[    8.785908] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    8.792353] Run /init as init process
[    8.802817] systemd[1]: Inserted module 'autofs4'
[    9.028552] systemd[1]: systemd 252-46.el9_5.3 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)
[    9.061020] systemd[1]: Detected architecture x86-64.
[    9.066073] systemd[1]: Running in initrd.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow) dracut-057-80.git20250411.el9_5 (Initramfs)^[[0m!

[    9.084345] systemd[1]: Hostname set to <sharavati.amd.com>.
[    9.194661] systemd[1]: Queued start job for default target Initrd Default Target.
[    9.202240] usb 3-1.1: new high-speed USB device number 3 using xhci_hcd
[    9.202346] systemd[1]: Reached target Initrd /usr File System.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd /usr File System^[[0m.
[    9.228308] systemd[1]: Reached target Local File Systems.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
[    9.244317] systemd[1]: Reached target Slice Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSlice Units^[[0m.
[    9.260312] systemd[1]: Reached target Swaps.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwaps^[[0m.
[    9.276298] systemd[1]: Reached target Timer Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[    9.292447] systemd[1]: Listening on D-Bus System Message Bus Socket.
[    9.297272] usb 3-1.1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    9.307224] usb 3-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[    9.324458] systemd[1]: Listening on Journal Socket (/dev/log).
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket (/dev/log)^[[0m.
[    9.340452] systemd[1]: Listening on Journal Socket.
[    9.344385] hub 3-1.1:1.0: USB hub found
[^[[0;32m  OK  ^[[[    9.349521] hub 3-1.1:1.0: 4 ports detected
0m] Listening on ^[[0;1;39mJournal Socket^[[0m.
[    9.364450] systemd[1]: Listening on udev Control Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[    9.384407] systemd[1]: Listening on udev Kernel Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
[    9.400304] systemd[1]: Reached target Socket Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
[    9.428256] usb 3-1.4: new high-speed USB device number 4 using xhci_hcd
[    9.441978] systemd[1]: Starting Create List of Static Device Nodes...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
[    9.462649] systemd[1]: Starting Journal Service...
         Starting ^[[0;1;39mJournal Service^[[0m...
[    9.477535] systemd[1]: Starting Load Kernel Modules...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
[    9.493356] systemd[1]: Starting Create System Users...
         Starting ^[[0;1;39mCreate System Users^[[0m...
[    9.509509] systemd[1]: Starting Setup Virtual Console...
         Starting ^[[0;1;39mSetup Virtual Console^[[0m...
[    9.521270] usb 3-1.4: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    9.529622] usb 3-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    9.530707] systemd[1]: Finished Create List of Static Device Nodes.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[    9.560690] systemd[1]: Started Journal Service.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSetup Virtual Console^[[0m.
[    9.600473] hub 3-1.4:1.0: USB hub found
[    9.604646] hub 3-1.4:1.0: 4 ports detected
         Starting ^[[0;1;39mdracut cmdline hook^[[0m...
         Starting ^[[0;1;39mApply Kernel Variables^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate System Users^[[0m.
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut cmdline hook^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Starting ^[[0;1;39mdracut pre-udev hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-udev hook^[[0m.
         Starting ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[   10.066097] wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQBC data block query control method not found
[^[[0;32m  OK  ^[[0m] Finished ^[[0[   10.077632] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
;1;39mColdplug A[   10.078033] ccp 0000:46:00.1: no command queues available
ll udev Devices^[[   10.084211] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[0m.
[   10.091051] ccp 0000:46:00.1: sev enabled
[   10.099556] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[   10.103940] ccp 0000:46:00.1: psp enabled
[   10.108382] tg3 0000:c1:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:90
[   10.125648] tg3 0000:c1:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.125651] tg3 0000:c1:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.125655] tg3 0000:c1:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[^[[0;32m  OK  ^[[[   10.150955] mpt3sas version 52.100.00.00 loaded
0m] Reached targ[   10.155979] ACPI: bus type drm_connector registered
et ^[[0;1;39mSyst[   10.156752] mpt3sas_cm0: 63 BIT PCI BUS DMA ADDRESSING SUPPORTED, total mem (262592948 kB)
em Initialization^[[0m.
[   10.173538] tg3 0000:c1:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:91
[   10.184429] tg3 0000:c1:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.194264] tg3 0000:c1:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.194266] tg3 0000:c1:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[^[[0;32m  OK  ^[[[   10.208844] mgag200 0000:c3:00.0: vgaarb: deactivate vga console
0m] Reached target ^[[0;1;39mNetwork^[[0m.
[   10.222420] [drm] Initialized mgag200 1.0.0 for 0000:c3:00.0 on minor 0
[   10.229783] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   10.237789] fbcon: mgag200drmfb (fb0) is primary device
[   10.237792] fbcon: Deferring console take-over
[   10.237801] mpt3sas_cm0: MSI-X vectors supported: 96
[   10.243030] mgag200 0000:c3:00.0: [drm] fb0: mgag200drmfb frame buffer device
[   10.259597] 	 no of cores: 128, max_msix_vectors: -1
[   10.264566] mpt3sas_cm0:  0 96 96
         Starting ^[[0;1;39mdracut initqueue hook[   10.271811] mpt3sas_cm0: High IOPs queues : disabled
^[[0m...
[   10.277591] mpt3sas0-msix0: PCI-MSI-X enabled: IRQ 108
[   10.283510] mpt3sas0-msix1: PCI-MSI-X enabled: IRQ 109
[   10.288651] mpt3sas0-msix2: PCI-MSI-X enabled: IRQ 110
[   10.288653] mpt3sas0-msix3: PCI-MSI-X enabled: IRQ 111
[   10.288655] mpt3sas0-msix4: PCI-MSI-X enabled: IRQ 112
[   10.288656] mpt3sas0-msix5: PCI-MSI-X enabled: IRQ 113
[   10.288658] mpt3sas0-msix6: PCI-MSI-X enabled: IRQ 114
[   10.288659] mpt3sas0-msix7: PCI-MSI-X enabled: IRQ 115
[   10.319491] mpt3sas0-msix8: PCI-MSI-X enabled: IRQ 116
[   10.319493] mpt3sas0-msix9: PCI-MSI-X enabled: IRQ 117
[   10.319495] mpt3sas0-msix10: PCI-MSI-X enabled: IRQ 118
[   10.319496] mpt3sas0-msix11: PCI-MSI-X enabled: IRQ 119
[   10.319497] mpt3sas0-msix12: PCI-MSI-X enabled: IRQ 120
[   10.319499] mpt3sas0-msix13: PCI-MSI-X enabled: IRQ 121
[   10.319500] mpt3sas0-msix14: PCI-MSI-X enabled: IRQ 122
[   10.319501] mpt3sas0-msix15: PCI-MSI-X enabled: IRQ 123
         Startin[   10.319503] mpt3sas0-msix16: PCI-MSI-X enabled: IRQ 124
g ^[[0;1;39mShow [   10.367745] mpt3sas0-msix17: PCI-MSI-X enabled: IRQ 125
Plymouth Boot Sc[   10.367746] mpt3sas0-msix18: PCI-MSI-X enabled: IRQ 126
reen^[[0m...
[   10.367748] mpt3sas0-msix19: PCI-MSI-X enabled: IRQ 127
[   10.367749] mpt3sas0-msix20: PCI-MSI-X enabled: IRQ 128
[   10.367751] mpt3sas0-msix21: PCI-MSI-X enabled: IRQ 129
[^[[0;32m  OK  ^[[[   10.367752] mpt3sas0-msix22: PCI-MSI-X enabled: IRQ 130
0m] Started ^[[0;[   10.367753] mpt3sas0-msix23: PCI-MSI-X enabled: IRQ 131
1;39mShow Plymou[   10.367754] mpt3sas0-msix24: PCI-MSI-X enabled: IRQ 132
th Boot Screen^[[[   10.367756] mpt3sas0-msix25: PCI-MSI-X enabled: IRQ 133
0m.
[   10.367757] mpt3sas0-msix26: PCI-MSI-X enabled: IRQ 134
[   10.367758] mpt3sas0-msix27: PCI-MSI-X enabled: IRQ 135
[   10.367759] mpt3sas0-msix28: PCI-MSI-X enabled: IRQ 136
[   10.367761] mpt3sas0-msix29: PCI-MSI-X enabled: IRQ 137
[   10.367762] mpt3sas0-msix30: PCI-MSI-X enabled: IRQ 138
[   10.367763] mpt3sas0-msix31: PCI-MSI-X enabled: IRQ 139
[   10.367764] mpt3sas0-msix32: PCI-MSI-X enabled: IRQ 140
[   10.367765] mpt3sas0-msix33: PCI-MSI-X enabled: IRQ 141
[   10.367767] mpt3sas0-msix34: PCI-MSI-X enabled: IRQ 142
[   10.367768] mpt3sas0-msix35: PCI-MSI-X enabled: IRQ 143
[   10.367769] mpt3sas0-msix36: PCI-MSI-X enabled: IRQ 144
[   10.367770] mpt3sas0-msix37: PCI-MSI-X enabled: IRQ 145
[   10.367771] mpt3sas0-msix38: PCI-MSI-X enabled: IRQ 146
[   10.367773] mpt3sas0-msix39: PCI-MSI-X enabled: IRQ 147
[   10.367774] mpt3sas0-msix40: PCI-MSI-X enabled: IRQ 148
[   10.367775] mpt3sas0-msix41: PCI-MSI-X enabled: IRQ 149
[   10.367776] mpt3sas0-msix42: PCI-MSI-X enabled: IRQ 150
[   10.367778] mpt3sas0-msix43: PCI-MSI-X enabled: IRQ 151
[   10.367779] mpt3sas0-msix44: PCI-MSI-X enabled: IRQ 152
[   10.367780] mpt3sas0-msix45: PCI-MSI-X enabled: IRQ 153
[   10.367781] mpt3sas0-msix46: PCI-MSI-X enabled: IRQ 154
[   10.367782] mpt3sas0-msix47: PCI-MSI-X enabled: IRQ 155
[   10.367784] mpt3sas0-msix48: PCI-MSI-X enabled: IRQ 156
[   10.367785] mpt3sas0-msix49: PCI-MSI-X enabled: IRQ 157
[   10.367786] mpt3sas0-msix50: PCI-MSI-X enabled: IRQ 158
[   10.367788] mpt3sas0-msix51: PCI-MSI-X enabled: IRQ 159
[   10.560698] mpt3sas0-msix52: PCI-MSI-X enabled: IRQ 160
[   10.560700] mpt3sas0-msix53: PCI-MSI-X enabled: IRQ 161
[   10.560701] mpt3sas0-msix54: PCI-MSI-X enabled: IRQ 162
[   10.560703] mpt3sas0-msix55: PCI-MSI-X enabled: IRQ 163
[^[[0;32m  OK  ^[[[   10.560704] mpt3sas0-msix56: PCI-MSI-X enabled: IRQ 164
[   10.560706] mpt3sas0-msix57: PCI-MSI-X enabled: IRQ 165
0m] Started ^[[0;[   10.593439] mpt3sas0-msix58: PCI-MSI-X enabled: IRQ 166
1;39mForward Pas[   10.593440] mpt3sas0-msix59: PCI-MSI-X enabled: IRQ 167
sword Requests t[   10.593442] mpt3sas0-msix60: PCI-MSI-X enabled: IRQ 168
o Plymouth Direc[   10.593443] mpt3sas0-msix61: PCI-MSI-X enabled: IRQ 169
tory Watch^[[0m.\r[   10.593444] mpt3sas0-msix62: PCI-MSI-X enabled: IRQ 170

[^[[0;32m  OK  [   10.593446] mpt3sas0-msix63: PCI-MSI-X enabled: IRQ 171
^[[0m] Reached ta[   10.593447] mpt3sas0-msix64: PCI-MSI-X enabled: IRQ 172
rget ^[[0;1;39mPa[   10.593448] mpt3sas0-msix65: PCI-MSI-X enabled: IRQ 173
[   10.593450] mpt3sas0-msix66: PCI-MSI-X enabled: IRQ 174
th Units^[[0m.
[   10.593451] mpt3sas0-msix67: PCI-MSI-X enabled: IRQ 175
[   10.593452] mpt3sas0-msix68: PCI-MSI-X enabled: IRQ 176
[   10.593454] mpt3sas0-msix69: PCI-MSI-X enabled: IRQ 177
[   10.593455] mpt3sas0-msix70: PCI-MSI-X enabled: IRQ 178
[   10.593456] mpt3sas0-msix71: PCI-MSI-X enabled: IRQ 179
[   10.593457] mpt3sas0-msix72: PCI-MSI-X enabled: IRQ 180
[   10.593459] mpt3sas0-msix73: PCI-MSI-X enabled: IRQ 181
[   10.593460] mpt3sas0-msix74: PCI-MSI-X enabled: IRQ 182
[   10.593461] mpt3sas0-msix75: PCI-MSI-X enabled: IRQ 183
[   10.593462] mpt3sas0-msix76: PCI-MSI-X enabled: IRQ 184
[   10.593463] mpt3sas0-msix77: PCI-MSI-X enabled: IRQ 185
[   10.593465] mpt3sas0-msix78: PCI-MSI-X enabled: IRQ 186
[   10.593466] mpt3sas0-msix79: PCI-MSI-X enabled: IRQ 187
[   10.593467] mpt3sas0-msix80: PCI-MSI-X enabled: IRQ 188
[   10.593468] mpt3sas0-msix81: PCI-MSI-X enabled: IRQ 189
[   10.593470] mpt3sas0-msix82: PCI-MSI-X enabled: IRQ 190
[   10.593471] mpt3sas0-msix83: PCI-MSI-X enabled: IRQ 191
[   10.593472] mpt3sas0-msix84: PCI-MSI-X enabled: IRQ 192
[   10.593474] mpt3sas0-msix85: PCI-MSI-X enabled: IRQ 193
[   10.752280] mpt3sas0-msix86: PCI-MSI-X enabled: IRQ 194
[   10.752281] mpt3sas0-msix87: PCI-MSI-X enabled: IRQ 195
[   10.752283] mpt3sas0-msix88: PCI-MSI-X enabled: IRQ 196
[   10.752284] mpt3sas0-msix89: PCI-MSI-X enabled: IRQ 197
[^[[0;32m  OK  ^[[[   10.752285] mpt3sas0-msix90: PCI-MSI-X enabled: IRQ 198
0m] Reached targ[   10.752287] mpt3sas0-msix91: PCI-MSI-X enabled: IRQ 199
et ^[[0;1;39mBasi[   10.786406] mpt3sas0-msix92: PCI-MSI-X enabled: IRQ 200
c System^[[0m.
[   10.793019] mpt3sas0-msix93: PCI-MSI-X enabled: IRQ 201
[   10.799629] mpt3sas0-msix94: PCI-MSI-X enabled: IRQ 202
[   10.804856] mpt3sas0-msix95: PCI-MSI-X enabled: IRQ 203
[   10.810081] mpt3sas_cm0: iomem(0x00000000e2200000), mapped(0x00000000684c852a), size(65536)
[   10.818427] mpt3sas_cm0: ioport(0x0000000000001000), size(256)
[   10.882278] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   10.890283] mpt3sas_cm0: sending message unit reset !!
[   10.896931] mpt3sas_cm0: message unit reset: SUCCESS
[   10.929591] mpt3sas_cm0: scatter gather: sge_in_main_msg(1), sge_per_chain(7), sge_per_io(128), chains_per_io(19)
[   10.941057] mpt3sas_cm0: request pool(0x00000000100bf947) - dma(0xe0600000): depth(9700), frame_size(128), pool_size(1212 kB)
[   10.977828] mpt3sas_cm0: sense pool(0x000000007a31a7c0) - dma(0xdef00000): depth(9463), element_size(96), pool_size (887 kB)
[   10.989141] mpt3sas_cm0: reply pool(0x00000000f9edc89c) - dma(0xdec00000): depth(9764), frame_size(128), pool_size(1220 kB)
[   11.000278] mpt3sas_cm0: config page(0x00000000e218864c) - dma(0xdebee000): size(512)
[   11.008108] mpt3sas_cm0: Allocated physical memory: size(40437 kB)
[   11.014287] mpt3sas_cm0: Current Controller Queue Depth(9460),Max Controller Queue Depth(9584)
[   11.022893] mpt3sas_cm0: Scatter Gather Elements per IO(128)
[   11.074347] mpt3sas_cm0: _base_display_fwpkg_version: complete
[   11.080177] mpt3sas_cm0: FW Package Ver(16.17.01.00)
[   11.085433] mpt3sas_cm0: LSISAS3008: FWVersion(16.00.11.00), ChipRevision(0x02)
[   11.092740] mpt3sas_cm0: Protocol=(Initiator,Target), Capabilities=(TLR,EEDP,Snapshot Buffer,Diag Trace Buffer,Task Set Full,NCQ)
[   11.104460] scsi host8: Fusion MPT SAS Host
[   11.110507] mpt3sas_cm0: sending port enable !!
[   11.115465] mpt3sas_cm0: hba_port entry: 000000003397b811, port: 255 is added to hba_port list
[   11.125434] mpt3sas_cm0: host_add: handle(0x0001), sas_addr(0x52cea7f0be87bf00), phys(8)
[   11.133930] mpt3sas_cm0: handle(0xa) sas_address(0x4433221100000000) port_type(0x1)
[   11.142816] scsi 8:0:0:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.150914] scsi 8:0:0:0: SATA: handle(0x000a), sas_addr(0x4433221100000000), phy(0), device_name(0x500a075131911ad0)
[   11.161511] scsi 8:0:0:0: enclosure logical id (0x52cea7f0be87bf00), slot(1) 
[   11.168642] scsi 8:0:0:0: enclosure level(0x0001), connector name(     )
[   11.175418] scsi 8:0:0:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.183860] scsi 8:0:0:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.198865]  end_device-8:0: add: handle(0x000a), sas_addr(0x4433221100000000)
[   11.206249] mpt3sas_cm0: handle(0xc) sas_address(0x58ce38ee219651a2) port_type(0x1)
[   11.214443] scsi 8:0:1:0: Direct-Access     KIOXIA   KPM6WVUG960G     BD08 PQ: 0 ANSI: 6
[   11.222540] scsi 8:0:1:0: SSP: handle(0x000c), sas_addr(0x58ce38ee219651a2), phy(4), device_name(0x58ce38ee219651a0)
[   11.233051] scsi 8:0:1:0: enclosure logical id (0x52cea7f0be87bf00), slot(0) 
[   11.240184] scsi 8:0:1:0: enclosure level(0x0001), connector name(     )
[   11.246905] scsi 8:0:1:0: qdepth(254), tagged(1), scsi_level(7), cmd_que(1)
[   11.255436]  end_device-8:1: add: handle(0x000c), sas_addr(0x58ce38ee219651a2)
[   11.262805] mpt3sas_cm0: handle(0xb) sas_address(0x4433221106000000) port_type(0x1)
[   11.271643] scsi 8:0:2:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.279740] scsi 8:0:2:0: SATA: handle(0x000b), sas_addr(0x4433221106000000), phy(6), device_name(0x500a075131911a6f)
[   11.290339] scsi 8:0:2:0: enclosure logical id (0x52cea7f0be87bf00), slot(2) 
[   11.297468] scsi 8:0:2:0: enclosure level(0x0001), connector name(     )
[   11.304240] scsi 8:0:2:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.312684] scsi 8:0:2:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.327574]  end_device-8:2: add: handle(0x000b), sas_addr(0x4433221106000000)
[   11.334835] mpt3sas_cm0: port enable: SUCCESS
[   11.339486] sd 8:0:0:0: Attached scsi generic sg0 type 0
[   11.340075] sd 8:0:0:0: [sda] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.345071] scsi 8:0:1:0: Attached scsi generic sg1 type 0
[   11.345327] sd 8:0:1:0: [sdb] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.345330] sd 8:0:1:0: [sdb] 4096-byte physical blocks
[   11.345511] sd 8:0:1:0: [sdb] Write Protect is off
[   11.345727] sd 8:0:1:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   11.352376] sd 8:0:0:0: [sda] 4096-byte physical blocks
[   11.358060] scsi 8:0:2:0: Attached scsi generic sg2 type 0
[   11.358698] sd 8:0:2:0: [sdc] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.358701] sd 8:0:2:0: [sdc] 4096-byte physical blocks
[   11.360711] sd 8:0:2:0: [sdc] Write Protect is off
[   11.361993] sd 8:0:2:0: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.367465] sd 8:0:0:0: [sda] Write Protect is off
[   11.426951] sd 8:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.461499]  sdb: sdb1 sdb2
[   11.464457] sd 8:0:1:0: [sdb] Attached SCSI disk
[   11.494451]  sdc: sdc1 sdc2
[   11.497397] sd 8:0:2:0: [sdc] Attached SCSI disk
[   11.510175]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7
[   11.515577] sd 8:0:0:0: [sda] Attached SCSI disk
[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39m/dev/mapper/rhel_sharavati-root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut initqueue hook^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m.
         Mounting ^[[0;1;39m/sysroot^[[0m...
[   12.206463] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled
[   12.216735] XFS (dm-1): Mounting V5 Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[   12.240182] XFS (dm-1): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/sysroot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root File System^[[0m.
         Starting ^[[0;1;39mMountpoints Configured in the Real Root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMountpoints Configured in the Real Root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Default Target^[[0m.
         Starting ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
         Starting ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Default Target^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd /usr File System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut initqueue hook^[[0m.
         Starting ^[[0;1;39mPlymouth switch root service^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1[   12.454147] systemd-journald[1090]: Received SIGTERM from PID 1 (systemd).
;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mColdplug All udev Devices^[[0m.
         Stopping ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Kernel Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-udev hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut cmdline hook^[[0m.
         Starting ^[[0;1;39mCleanup udev Database^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate System Users^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleanup udev Database^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwitch Root^[[0m.
         Starting ^[[0;[   12.565581] systemd[1]: RTC configured in localtime, applying delta of 330 minutes to system time.
1;39mSwitch Root^[[0m...
[   12.590976] systemd[1]: systemd 252-46.el9_5.3 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)
[   12.623450] systemd[1]: Detected architecture x86-64.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow)^[[0m!

[   12.690449] systemd-rc-local-generator[1698]: /etc/rc.d/rc.local is not marked executable, skipping.
[   12.932721] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[   12.940044] systemd[1]: Stopped Switch Root.
[^[[0;32m  OK  ^[[[   12.944610] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
0m] Stopped ^[[0;[   12.955315] systemd[1]: Created slice Virtual Machine and Container Slice.
1;39mSwitch Root[   12.963679] systemd[1]: Created slice Slice /system/getty.
^[[0m.
[^[[0;32m[   12.970511] systemd[1]: Created slice Slice /system/modprobe.
  OK  ^[[0m] Crea[   12.977647] systemd[1]: Created slice Slice /system/serial-getty.
ted slice ^[[0;1;[   12.985121] systemd[1]: Created slice Slice /system/sshd-keygen.
39mVirtual Machi[   12.992532] systemd[1]: Created slice Slice /system/systemd-fsck.
ne and Container[   12.999887] systemd[1]: Created slice User and Session Slice.
 Slice^[[0m.
[^[[   13.006635] systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
[0;32m  OK  ^[[0m[   13.022819] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
] Created slice [   13.031918] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
^[[0;1;39mSlice /[   13.042533] systemd[1]: Reached target Local Encrypted Volumes.
system/getty^[[0m[   13.049833] systemd[1]: Stopped target Switch Root.
.
[^[[0;32m  OK[   13.056091] systemd[1]: Stopped target Initrd File Systems.
  ^[[0m] Created [   13.063049] systemd[1]: Stopped target Initrd Root File System.
slice ^[[0;1;39mS[   13.070354] systemd[1]: Reached target Local Integrity Protected Volumes.
lice /system/mod[   13.078537] systemd[1]: Reached target Path Units.
probe^[[0m.
[^[[[   13.084708] systemd[1]: Reached target Slice Units.
0;32m  OK  ^[[0m][   13.090976] systemd[1]: Reached target Local Verity Protected Volumes.
 Created slice ^[[   13.098944] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[0;1;39mSlice /s[   13.107032] systemd[1]: Listening on LVM2 poll daemon socket.
ystem/serial-get[   13.113971] systemd[1]: multipathd control socket was skipped because of an unmet condition check (ConditionPathExists=/etc/multipath.conf).
ty^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/sshd-keygen^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Set up automount ^[[0;1;39mArbitrary Executa…ormats File System Automount Point^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;3[   13.169018] systemd[1]: Listening on RPCbind Server Activation Socket.
9mLocal Encrypte[   13.176104] systemd[1]: Reached target RPC Port Mapper.
d Volumes^[[0m.\r\r[   13.183820] systemd[1]: Listening on Process Core Dump Socket.

[^[[0;32m  OK  ^[[   13.189924] systemd[1]: Listening on initctl Compatibility Named Pipe.
[0m] Stopped tar[   13.198873] systemd[1]: Listening on udev Control Socket.
get ^[[0;1;39mSwi[   13.204637] systemd[1]: Listening on udev Kernel Socket.
tch Root^[[0m.
[^[[0;32m  OK  ^[[[   13.212746] systemd[1]: Activating swap /dev/mapper/rhel_sharavati-swap...
0m] Stopped targ[   13.217575] Adding 7815164k swap on /dev/mapper/rhel_sharavati-swap.  Priority:-2 extents:1 across:7815164k SS
et ^[[0;1;39mInitrd File Systems^[[   13.233845] systemd[1]: Mounting Huge Pages File System...
[0m.
[^[[0;32m [   13.241772] systemd[1]: Mounting POSIX Message Queue File System...
 OK  ^[[0m] Stopped target ^[[0;1;[   13.249613] systemd[1]: Mounting Kernel Debug File System...
39mInitrd Root F[   13.257821] systemd[1]: Mounting Kernel Trace File System...
ile System^[[0m.\r[   13.263730] systemd[1]: Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).

[^[[0;32m  OK  [   13.278562] systemd[1]: iscsi-starter.service was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes).
^[[0m] Reached target ^[[0;1;39mLo[   13.293945] systemd[1]: Starting Create List of Static Device Nodes...
cal Integrity Protected Volumes^[[   13.303196] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[0m.
[^[[0;32m [   13.316023] systemd[1]: Starting Load Kernel Module configfs...
 OK  ^[[0m] Reached target ^[[0;1;[   13.323525] systemd[1]: Starting Load Kernel Module drm...
39mPath Units^[[0[   13.331565] systemd[1]: Starting Load Kernel Module fuse...
m.
[^[[0;32m  OK  ^[[0m] Reached[   13.339115] systemd[1]: Starting Read and set NIS domainname from /etc/sysconfig/network...
 target ^[[0;1;39[   13.348581] systemd[1]: plymouth-switch-root.service: Deactivated successfully.
mSlice Units^[[0m[   13.357251] systemd[1]: Stopped Plymouth switch root service.
.
[^[[0;32m  OK[   13.364506] systemd[1]: systemd-fsck-root.service: Deactivated successfully.
  ^[[0m] Reached [   13.372802] systemd[1]: Stopped File System Check on Root Device.
target ^[[0;1;39m[   13.380344] systemd[1]: Stopped Journal Service.
Local Verity Protected Volumes^[[[   13.388665] systemd[1]: Starting Journal Service...
0m.
[^[[0;32m  OK  ^[[0m] Listen[   13.396256] systemd[1]: Starting Load Kernel Modules...
[   13.400769] systemd-journald[1728]: File /run/log/journal/8f37f8055146469d8baec3ad508b0084/system.journal corrupted or uncleanly shut down, renaming and replacing.
ing on ^[[0;1;39mDevice-mapper ev[   13.418154] systemd[1]: Starting Generate network units from Kernel command line...
ent daemon FIFOs[   13.426992] systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
^[[0m.
[^[[0;32m  OK  ^[[0m] List[   13.448174] systemd[1]: Starting Remount Root and Kernel File Systems...
ening on ^[[0;1;3[   13.456370] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
9mLVM2 poll daemon socket^[[0m.\r\r[   13.468409] systemd[1]: Starting Coldplug All udev Devices...

[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mRPCbi[   13.478706] systemd[1]: Activated swap /dev/mapper/rhel_sharavati-swap.
nd Server Activa[   13.486955] systemd[1]: Started Journal Service.
tion Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRPC Port Mapper^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mProcess Core Dump Socket^[[0m.
[^[[0;32m  OK  ^[[[   13.507266] systemd-journald[1728]: Received client request to flush runtime journal.
0m] Listening on ^[[0;1;39minitctl Compatibility Named Pipe^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
         Activating swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m...
         Mounting ^[[0;1;39mHuge Pages File System^[[0m...
         Mounting ^[[0;1;39mPOSIX Message Queue File System^[[0m...
         Mounting ^[[0;1;39mKernel Debug File System^[[0m...
         Mounting ^[[0;1;39mKernel Trace File System^[[0m...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
         Starting ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module drm^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mJournal Service^[[0m.
         Starting ^[[0;1;39mJournal Service^[[0m...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
         Starting ^[[0;1;39mGenerate network units from Kernel command line^[[0m...
         Starting ^[[0;1;39mRemount Root and Kernel File Systems^[[0m...
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[^[[0;32m  OK  ^[[0m] Activated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mHuge Pages File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mPOSIX Message Queue File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Debug File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Trace File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMonitoring of LVM2 mirror…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module drm^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;[   13.734015] IPMI message handler: version 39.2
1;39mGenerate network units from Kernel command [   13.741972] ipmi device interface
line^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRemount Root and Kernel File S[   13.753136] ipmi_si: IPMI System Interface driver
ystems^[[0m.
[^[[   13.758157] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
[0;32m  OK  ^[[0m[   13.765799] ipmi_platform: ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 10
] Reached target[   13.770539] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
 ^[[0;1;39mSwaps^[[   13.771187] pstore: backend 'erst' already in use: ignoring 'efi_pstore'
[0m.
         [   13.771747] input: PC Speaker as /devices/platform/pcspkr/input/input1
Mounting ^[[0;1;3[   13.774233] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
9mFUSE Control F[   13.774236] RAPL PMU: hw unit of domain package 2^-16 Joules
ile System^[[0m..[   13.774238] RAPL PMU: hw unit of domain core 2^-16 Joules
.
         Mou[   13.774517] ipmi_si: Adding SMBIOS-specified kcs state machine
nting ^[[0;1;39mK[   13.783262] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
ernel Configurat[   13.791410] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
ion File System^[[   13.805225] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
[0m...
       [   13.808578] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca8] regsize 1 spacing 4 irq 10
[   13.816290] i2c i2c-3: Successfully instantiated SPD at 0x50
  Starting ^[[0;1[   13.822607] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
[   13.830231] i2c i2c-3: Successfully instantiated SPD at 0x51
;39mFlush Journa[   13.838555] ipmi_si: Adding ACPI-specified kcs state machine
l to Persistent [   13.838646] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 10
[   13.846537] i2c i2c-3: Successfully instantiated SPD at 0x52
Storage^[[0m...\r\r[   13.909682] i2c i2c-3: Successfully instantiated SPD at 0x53

         Starti[   13.916756] i2c i2c-3: Successfully instantiated SPD at 0x54
ng ^[[0;1;39mLoad[   13.923793] i2c i2c-3: Successfully instantiated SPD at 0x55
/Save OS Random [   13.930842] i2c i2c-3: Successfully instantiated SPD at 0x56
Seed^[[0m...
  [   13.937890] i2c i2c-3: Successfully instantiated SPD at 0x57
       Starting ^[[0;1;39mApply Kernel Variables^[[0m...
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mFUSE Control File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Configuration File System^[[0m.
[^[[0;32m  OK  [   13.968845] ee1004 3-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
^[[0m] Finished ^[[0;1;39mLoad/Sav[   13.977851] ee1004 3-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
e OS Random Seed[   13.986862] kvm_amd: TSC scaling supported
^[[0m.
[^[[0;32m[   13.987504] ee1004 3-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
  OK  ^[[0m] Fini[   13.991326] kvm_amd: Nested Virtualization enabled
shed ^[[0;1;39mFl[   13.991328] kvm_amd: Nested Paging enabled
ush Journal to P[   14.001257] ee1004 3-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
ersistent Storag[   14.005763] kvm_amd: LBR virtualization supported
e^[[0m.
[^[[0;32m  OK  ^[[0m] Fin[   14.027434] ee1004 3-0054: 512 byte EE1004-compliant SPD EEPROM, read-only
ished ^[[0;1;39mApply Kernel Vari[   14.036821] ee1004 3-0055: 512 byte EE1004-compliant SPD EEPROM, read-only
ables^[[0m.
[^[[0;32m  OK  ^[[0m][   14.046698] ee1004 3-0056: 512 byte EE1004-compliant SPD EEPROM, read-only
 Finished ^[[0;1;39mCreate Static[   14.056295] ee1004 3-0057: 512 byte EE1004-compliant SPD EEPROM, read-only
 Device Nodes in /dev^[[0m.
         Starting ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mColdplug All udev Devices^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mLoad/Save RF Kill Switch Status /dev/rfkill Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39m/usr/sbin/lvm vgchange -aa…utoactivation event rhel_sharavati^[[0m.
[   14.300268] ipmi_si IPI0001:00: The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.
[   14.372344] ipmi_si IPI0001:00: Using irq 10
[   14.417434] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20)
[   14.483932] ipmi_si IPI0001:00: IPMI kcs interface initialized
[   14.492255] ipmi_ssif: IPMI SSIF Interface driver
[   14.494140] power_meter ACPI000D:00: Found ACPI power meter.
[^[[0m^[[0;31m*     ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;1;31m*^[[0m^[[0;31m*    ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*   ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
[   17.565266] ccp 0000:46:00.1: SEV-SNP API:1.55 build:22
[   17.621425] ccp 0000:46:00.1: SEV API:1.55 build:22
[   17.629125] kvm_amd: SEV enabled (ASIDs 101 - 509)
[   17.633928] kvm_amd: SEV-ES enabled (ASIDs 1 - 100)
[   17.638806] kvm_amd: SEV-SNP enabled (ASIDs 1 - 100)
[   17.643934] kvm_amd: Virtual VMLOAD VMSAVE supported
[   17.648905] kvm_amd: Virtual GIF supported
[   17.673857] EDAC MC0: Giving out device to module amd64_edac controller F19h: DEV 0000:00:18.3 (INTERRUPT)
[   17.683510] EDAC amd64: F19h detected (node 0).
[   17.688062] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.692783] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.697509] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.702230] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.706951] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.711667] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.716390] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.721107] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.725835] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.730553] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.735284] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.739996] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.744723] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.749449] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.754176] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.758891] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.770520] intel_rapl_common: Found RAPL domain package
[   17.771754] amd_atl: AMD Address Translation Library initialized
[   17.775841] intel_rapl_common: Found RAPL domain core
^[M\r^[[K[ ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*  ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
^[M\r^[[K[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Wait for…ice Initialization (5s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Local File Systems^[[0m.
         Mounting ^[[0;1;39m/boot^[[0m...
      [   18.179861] XFS (sda6): Mounting V5 Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
   Mounting ^[[0;[   18.181961] XFS (dm-0): Mounting V5 Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
1;39m/home^[[0m...
         Starting ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m...
[   18.207001] XFS (sda6): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;[   18.216185] XFS (dm-0): Ending clean mount
1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
         Mounting ^[[0;1;39m/boot/efi^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
         Starting ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Mounting ^[[0;1;39mRPC Pipe File System^[[0m...
         Starting ^[[0;1;39mSecurity Auditing Service^[[0m...
         Starting ^[[0;1;39mRPC Bind^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRPC Bind^[[0m.
[   18.324983] RPC: Registered named UNIX socket transport module.
[   18.330912] RPC: Registered udp transport module.
[   18.335623] RPC: Registered tcp transport module.
[   18.340330] RPC: Registered tcp-with-tls transport module.
[   18.345819] RPC: Registered tcp NFSv4.1 backchannel transport module.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mRPC Pipe File System^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mrpc_pipefs.target^[[0m.
         Starting ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdnf makecache --timer^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily rotation of log files^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUpdates mlocate database every day^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily Cleanup of Temporary Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdaily update of the root trust anchor for DNSSEC^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt interface daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt network daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nodedev daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nwfilter daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt proxy daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt secret daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt storage daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
         Starting ^[[0;1;39mD-Bus System Message Bus^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mBasic System^[[0m.
         Starting ^[[0;1;39mNTP client/server^[[0m...
         Starting ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m...
         Starting ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mirqbalance daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mlibstoragemgmt plug-in server daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mMachine Check Exception Logging Daemon^[[0m.
         Starting ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msshd-keygen.target^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUser and Group Name Lookups^[[0m.
         Starting ^[[0;1;39mUser Login Management^[[0m...
         Starting ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNTP client/server^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Network^[[0m.
         Starting ^[[0;1;39mNetwork Manager^[[0m...
         Starting ^[[0;1;39mHostname Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mHostname Service^[[0m.
         Starting ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork^[[0m.
         Starting ^[[0;1;39mNetwork Manager Wait Online^[[0m...
         Starting ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
         Starting ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m...
         Starting ^[[0;1;39mOpenSSH server daemon^[[0m...
         Starting ^[[0;1;39mDynamic System Tuning Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNFS client services^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mOpenSSH server daemon^[[0m.
         Starting ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
[   22.515253] tg3 0000:c1:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   22.521882] tg3 0000:c1:00.0 eth0: Flow control is off for TX and off for RX
[   22.528931] tg3 0000:c1:00.0 eth0: EEE is disabled
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
^[M\r^[[K[     ^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[ ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*  ^[[0m] A start job is running for Network …nager Wait Online (12s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mNetwork Manager Wait Online^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork is Online^[[0m.
         Starting ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m...
         Starting ^[[0;1;39mNotify NFS peers of a restart^[[0m...
         Starting ^[[0;1;39mSystem Logging Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNotify NFS peers of a restart^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mCrash recovery kernel arming^[[0m...
         Starting ^[[0;1;39mPermit User Sessions^[[0m...
         Starting ^[[0;1;39mlibvirt QEMU daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDeferred execution scheduler^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mCommand Scheduler^[[0m.
         Starting ^[[0;1;39mHold until boot process finishes up^[[0m...
         Starting ^[[0;1;39mTerminate Plymouth Boot Screen^[[0m...
[^[[0;1;31mFAILED^[[0m] Failed to start ^[[0;1;39mCrash recovery kernel arming^[[0m.
See 'systemctl status kdump.service' for details.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSystem Logging Service^[[0m.
[   25.278872] fbcon: Taking over console
[   25.298715] Console: switching to colour frame buffer device 128x48

Red Hat Enterprise Linux 9.5 (Plow)
Kernel 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e on an x86_64

Activate the web console with: systemctl enable --now cockpit.socket

sharavati login: [   47.016638] /proc/cgroups lists only v1 controllers, use cgroup.controllers of root cgroup for v2 info
[  314.837024] JFS: nTxBlock = 8192, nTxLock = 65536
[  314.876472] QNX4 filesystem 0.2.3 registered.
[  314.959569] raid6: avx2x4   gen() 28864 MB/s
[  315.031567] raid6: avx2x2   gen() 28861 MB/s
[  315.103566] raid6: avx2x1   gen() 20972 MB/s
[  315.107835] raid6: using algorithm avx2x4 gen() 28864 MB/s
[  315.179564] raid6: .... xor() 4511 MB/s, rmw enabled
[  315.184527] raid6: using avx2x2 recovery algorithm
[  315.191583] xor: automatically using best checksumming function   avx       
[  315.285278] Btrfs loaded, zoned=yes, fsverity=yes
[  319.636680] sda6: Can't mount, would change RO state
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNFS client services^[[0m.
         Stopping ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Runtime Directory /run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser Slice of UID 0^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mShow Plymouth Reboot Screen^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mUser and Group Name Lookups^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSystem Logging Service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork is Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager Wait Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
         Stopping ^[[0;1;39mNetwork Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Network^[[0m.
         Stopping ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGenerate network units from Kernel command line^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
         Stopping ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Plymouth Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mVirtual Machine and Container Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt interface daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Cl[  321.084160] audit: type=1305 audit(1750154933.643:197): op=set audit_pid=0 old=2291 auid=4294967295 ses=4294967295 subj=unconfined res=1
osed ^[[0;1;39mli[  321.098393] audit: type=1131 audit(1750154933.655:198): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=auditd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
bvirt locking da[  321.118534] audit: type=1131 audit(1750154933.675:199): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
emon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt network daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt nodedev daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt nwfilter daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvir[  321.184221] XFS (dm-0): Unmounting Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
t proxy daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt QEMU da[  321.198352] audit: type=1131 audit(1750154933.755:200): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-fsck@dev-disk-by\x2duuid-FBE5\x2d86EF comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
emon admin socke[  321.223306] XFS (sda6): Unmounting Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
t^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlib[  321.235398] audit: type=1131 audit(1750154933.791:201): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
virt QEMU daemon[  321.256033] audit: type=1131 audit(1750154933.815:202): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
 read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt QEMU daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt secret daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt storage daemon socket^[[0m.
         Stopping ^[[0;1;39mD-Bus System Message Bus^[[0m...
         Starting ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Unset automount ^[[0;1;39mArbitrary Executab…ormats File System Automount Poin[  321.337084] audit: type=1131 audit(1750154933.895:203): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
t^[[0m.
[^[[0;32[  321.358367] audit: type=1130 audit(1750154933.915:204): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
m  OK  ^[[0m] Sto[  321.379617] audit: type=1131 audit(1750154933.915:205): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
pped target ^[[0;1;39mLocal Encry[  321.402735] audit: type=1334 audit(1750154933.959:206): prog-id=24 op=UNLOAD
pted Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Integrity Protected Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Verity Protected Volumes^[[0m.
         Deactivating swap ^[[0;1;39m/dev/disk/[  321.443862] watchdog: watchdog0: watchdog did not stop!
by-id/dm-name-rhel_sharavati-swap^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39m[  321.454971] systemd-shutdown[1]: Using hardware watchdog 'SP5100 TCO timer', version 0, device /dev/watchdog0
Read and set NIS[  321.466350] systemd-shutdown[1]: Watchdog running with a timeout of 10min.
 domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  [  321.484187] systemd-shutdown[1]: Syncing filesystems and block devices.
^[[0m] Stopped ^[[[  321.492292] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
0;1;39mLoad Kernel Modules^[[0m.
         Stopping ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-sysctl.service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0[  321.518934] systemd-journald[1728]: Received SIGTERM from PID 1 (systemd-shutdow).
;1;39mTell Plymouth To Jump To initramfs^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
         Stopping ^[[0;1;39mSecurity Auditing Service^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
         Unmounting ^[[0;1;39m/boot/efi^[[0m...
         Unmounting ^[[0;1;39m/home^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m...
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/rhel_sharavati/swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-uuid…8d2e1f-0fb1-4c94-97ac-38505613fcbf^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/d…kEo36yeb12DWUnp5czhD1hrKFNCXkJMetK^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/dm-2^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m.
         Unmounting ^[[0;1;39m/boot^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Local File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUnmount All Filesystems^[[0m.
         Stopping ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRemount Root and Kernel File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mMonitoring of LVM2 mirrors…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLate Shutdown Services^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSystem Reboot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Reboot^[[0m.
[  321.756055] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
[  321.779904] systemd-shutdown[1]: Unmounting file systems.
[  321.786056] [6459]: Remounting '/' read-only with options 'attr2,inode64,logbufs=8,logbsize=32k,noquota'.
[  321.802936] systemd-shutdown[1]: All filesystems unmounted.
[  321.808523] systemd-shutdown[1]: Deactivating swaps.
[  321.813935] systemd-shutdown[1]: All swaps deactivated.
[  321.819182] systemd-shutdown[1]: Detaching loop devices.
[  321.824996] systemd-shutdown[1]: All loop devices detached.
[  321.830579] systemd-shutdown[1]: Stopping MD devices.
[  321.835688] systemd-shutdown[1]: All MD devices stopped.
[  321.841002] systemd-shutdown[1]: Detaching DM devices.
[  321.846495] systemd-shutdown[1]: Detaching DM /dev/dm-2 (253:2).
[  321.875599] systemd-shutdown[1]: Detaching DM /dev/dm-0 (253:0).
[  321.911504] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  321.918011] systemd-shutdown[1]: Detaching DM devices.
[  321.923333] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[  321.929773] systemd-shutdown[1]: Cannot finalize remaining DM devices, continuing.
[  321.937336] watchdog: watchdog0: watchdog did not stop!
[  322.032610] systemd-shutdown[1]: Successfully changed into root pivot.
[  322.039148] systemd-shutdown[1]: Returning to initrd...
[  322.092251] dracut Warning: Killing all remaining processes
dracut Warning: Killing all remaining processes
[  322.162166] XFS (dm-1): Unmounting Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[  322.175622] dracut Warning: Unmounted /oldroot.
dracut Warning: Unmounted /oldroot.
[  322.191544] dracut: Disassembling device-mapper devices
Rebooting.
[  322.385587] sd 8:0:2:0: [sdc] Synchronizing SCSI cache
[  322.390881] sd 8:0:0:0: [sda] Synchronizing SCSI cache
[  323.861031] mpt3sas_cm0: sending message unit reset !!
[  323.868889] mpt3sas_cm0: message unit reset: SUCCESS
[  323.876425] ACPI: PM: Preparing to enter system sleep state S5
[  323.882381] kvm: exiting hardware virtualization
[  323.887071] reboot: Restarting system
[  323.890737] reboot: machine restart
^[[c^[[2J^[[01;01H^[[=3h^[[2J^[[01;01HKEY MAPPING FOR CONSOLE REDIRECTION:

Use the <ESC><1> key sequence for <F1>
Use the <ESC><2> key sequence for <F2>
Use the <ESC><3> key sequence for <F3>
Use the <ESC><0> key sequence for <F10>
Use the <ESC><!> key sequence for <F11>
Use the <ESC><@> key sequence for <F12>

Use the <ESC><Ctrl><M> key sequence for <Ctrl><M>
Use the <ESC><Ctrl><H> key sequence for <Ctrl><H>
Use the <ESC><Ctrl><I> key sequence for <Ctrl><I>
Use the <ESC><Ctrl><J> key sequence for <Ctrl><J>

Use the <ESC><X><X> key sequence for <Alt><x>, where x is any letter
key, and X is the upper case of that key

Use the <ESC><R><ESC><r><ESC><R> key sequence for <Ctrl><Alt><Del>

Press the spacebar to pause...
Initializing PCIe, USB, and Video... Done
PowerEdge R6515
BIOS Version: 2.17.0
Console Redirection Enabled Requested by iDRAC

F2	 = System Setup
F10	 = Lifecycle Controller (Config
	   iDRAC, Update FW, Install OS)
F11	 = Boot Manager
F12	 = PXE Boot
iDRAC IPV4:  10.86.18.202 [Dedicated]
                                
Initializing Firmware Interfaces...
 





Enumerating Boot options...
Enumerating Boot options... Done
Loading Lifecycle Controller Drivers...
Loading Lifecycle Controller Drivers...Done
Lifecycle Controller: Collecting System Inventory...

iDRAC IPV4:  10.86.18.202 [Dedicated]

^[[2J^[[01;01HLifecycle Controller: Done
Booting...
^[[2J^[[01;01HBooting from Integrated Storage Controller 1: Red Hat Enterprise Linux
^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[02;32HGRUB version 2.06

\r^[[04;02H/----------------------------------------------------------------------------\^[[05;02H|^[[05;79H|^[[06;02H|^[[06;79H|^[[07;02H|^[[07;79H|^[[08;02H|^[[08;79H|^[[09;02H|^[[09;79H|^[[10;02H|^[[10;79H|^[[11;02H|^[[11;79H|^[[12;02H|^[[12;79H|^[[13;02H|^[[13;79H|^[[14;02H|^[[14;79H|^[[15;02H|^[[15;79H|^[[16;02H|^[[16;79H|^[[17;02H\----------------------------------------------------------------------------/^[[18;02H^[[19;02H     Use the ^ and v keys to select which entry is highlighted.          
\r      Press enter to boot the selected OS, `e' to edit the commands       
\r      before booting or `c' for a command-line. ESC to return previous    
\r      menu.                                                               ^[[05;80H ^[[0m^[[30m^[[47m^[[05;03H*Red Hat Enterprise Linux (6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e)>
\r^[[06;01H^[[0m^[[37m^[[40m^[[05;78H^[[06;03H Red Hat Enterprise Linux (6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997)>
\r^[[07;01H^[[06;78H^[[07;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250613-bc6e0ba6c9-dc42f4ece61)>
\r^[[08;01H^[[07;78H^[[08;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250612-0bb71d3018-d909e6968a1)>
\r^[[09;01H^[[08;78H^[[09;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250611-19a60293b9-72d7c68e20e)>
\r^[[10;01H^[[09;78H^[[10;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250610-b27cc623e0-9a3b1b1b837)>
\r^[[11;01H^[[10;78H^[[11;03H Red Hat Enterprise Linux (6.15.0-rc7-next-20250526-3be1a7a31f-22d449bcd69)>
\r^[[12;01H^[[11;78H^[[12;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250514-bdd609656f-ccb396cc166)>
\r^[[13;01H^[[12;78H^[[13;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250513-aa94665adc-e0bf3d3816b)>
\r^[[14;01H^[[13;78H^[[14;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250512-edef457004-450c56522a8)>
\r^[[15;01H^[[14;78H^[[15;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250508-f48887a98b-19c541fe872)>
\r^[[16;01H^[[15;78H^[[16;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250507-08710e6960-81586bd2ca8)>
\r^[[17;01H^[[16;78H^[[16;80Hv^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 5s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 4s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 3s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 2s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 1s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 0s.                 ^[[05;78H^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m  Booting `Red Hat Enterprise Linux
\r(6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e) 9.5 (Plow)'

\r[    0.000000] Linux version 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e (root@sharavati•amd.com) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-5), GNU ld version 2.35.2-63.el9) #1 SMP PREEMPT_DYNAMIC Tue Jun 17 15:21:04 IST 2025
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] SEV-SNP: RMP table physical range [0x0000000015e00000 - 0x00000000566fffff]
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000015dfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000015e00000-0x00000000566fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000056700000-0x00000000567fbfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000567fc000-0x00000000567fcfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000567fd000-0x000000005a142fff] usable
[    0.000000] BIOS-e820: [mem 0x000000005a143000-0x000000005a342fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005a343000-0x0000000067acefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000067acf000-0x000000006dfcefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006dfcf000-0x000000006edfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006edff000-0x000000006effefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000006efff000-0x000000006effffff] usable
[    0.000000] BIOS-e820: [mem 0x000000006f000000-0x000000006f00afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006f00b000-0x000000006fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000070000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa000000-0x00000000aaffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c5000000-0x00000000c5ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e0ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000207fcfffff] usable
[    0.000000] BIOS-e820: [mem 0x000000207fd00000-0x000000207fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000002080000000-0x000000407f1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000407f200000-0x000000407fffffff] reserved
[    0.000000] printk: legacy bootconsole [earlyser0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by Dell Inc.
[    0.000000] efi: ACPI=0x6effe000 ACPI 2.0=0x6effe014 MEMATTR=0x63f376a0 SMBIOS=0x6979e000 SMBIOS 3.0=0x6979c000 MOKvar=0x67bcc000 RNG=0x6efb4020 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem56: MMIO range=[0x80000000-0x8fffffff] (256MB) from e820 map
[    0.000000] efi: Remove mem57: MMIO range=[0xaa000000-0xaaffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem58: MMIO range=[0xc5000000-0xc5ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem59: MMIO range=[0xe0000000-0xe0ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem60: MMIO range=[0xfd000000-0xffffffff] (48MB) from e820 map
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[    0.000000] DMI: Memory slots populated: 8/16
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1996.181 MHz processor
[    0.000028] last_pfn = 0x407f200 max_arch_pfn = 0x400000000
[    0.005552] MTRR map: 7 entries (2 fixed + 5 variable; max 19), built from 9 variable MTRRs
[    0.013867] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Memory KASLR using RDRAND RDTSC...
[    0.023947] x2apic: enabled by BIOS, switching to x2apic ops
[    0.029581] last_pfn = 0x70000 max_arch_pfn = 0x400000000
[    0.039413] SEV-SNP: Reserving start/end of RMP table on a 2MB boundary [0x0000000056600000]
[    0.047682] Using GB pages for direct mapping
[    0.052562] Secure boot disabled
[    0.055614] RAMDISK: [mem 0x0bb2c000-0x0e0d4fff]
[    0.060211] ACPI: Early table checksum verification disabled
[    0.065843] ACPI: RSDP 0x000000006EFFE014 000024 (v02 DELL  )
[    0.071562] ACPI: XSDT 0x000000006EFB7188 0000DC (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.080058] ACPI: FACP 0x000000006EFF9000 000114 (v06 DELL   PE_SC3   00000002 DELL 00000001)
[    0.088550] ACPI: DSDT 0x000000006EFDA000 019528 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.097042] ACPI: FACS 0x000000006EDB9000 000040
[    0.101635] ACPI: BERT 0x000000006EFFC000 000030 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.110129] ACPI: ERST 0x000000006EFFB000 000230 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.118621] ACPI: HEST 0x000000006EFFA000 0007F4 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.127116] ACPI: HPET 0x000000006EFF8000 000038 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.135609] ACPI: APIC 0x000000006EFF6000 0018BE (v05 DELL   PE_SC3   00000002 DELL 00000001)
[    0.144103] ACPI: MCFG 0x000000006EFF5000 00003C (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.152596] ACPI: WSMT 0x000000006EFF4000 000028 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.161089] ACPI: SSDT 0x000000006EFD9000 000629 (v02 DELL   xhc_port 00000001 INTL 20210331)
[    0.169583] ACPI: SSDT 0x000000006EFD8000 000D6E (v02 AMD    CPMRAS   00000001 INTL 20210331)
[    0.178076] ACPI: EINJ 0x000000006EFD7000 000170 (v01 AMD    PE_SC3   00000001 AMD  00000001)
[    0.186569] ACPI: PCCT 0x000000006EFD6000 00006E (v02 DELL   AmdTable 00000001 AMD  00000001)
[    0.195062] ACPI: SSDT 0x000000006EFC7000 00E849 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.203557] ACPI: SRAT 0x000000006EFC6000 000CD0 (v03 DELL   PE_SC3   00000001 AMD  00000001)
[    0.212049] ACPI: MSCT 0x000000006EFC5000 00004E (v01 DELL   PE_SC3   00000000 AMD  00000001)
[    0.220543] ACPI: SLIT 0x000000006EFC4000 000030 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.229037] ACPI: CRAT 0x000000006EFBC000 0072F8 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.237530] ACPI: CDIT 0x000000006EFBB000 00002C (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.246023] ACPI: IVRS 0x000000006EFBA000 0001F0 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.254517] ACPI: SPCR 0x000000006EFB9000 000050 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.263009] ACPI: SLIC 0x000000006EFB8000 000176 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.271504] ACPI: SSDT 0x000000006EFFD000 000D66 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.279996] ACPI: SSDT 0x000000006EFB5000 00193C (v02 AMD    CPMCMN   00000001 INTL 20210331)
[    0.288490] ACPI: Reserving FACP table memory at [mem 0x6eff9000-0x6eff9113]
[    0.295510] ACPI: Reserving DSDT table memory at [mem 0x6efda000-0x6eff3527]
[    0.302530] ACPI: Reserving FACS table memory at [mem 0x6edb9000-0x6edb903f]
[    0.309550] ACPI: Reserving BERT table memory at [mem 0x6effc000-0x6effc02f]
[    0.316570] ACPI: Reserving ERST table memory at [mem 0x6effb000-0x6effb22f]
[    0.323589] ACPI: Reserving HEST table memory at [mem 0x6effa000-0x6effa7f3]
[    0.330619] ACPI: Reserving HPET table memory at [mem 0x6eff8000-0x6eff8037]
[    0.337638] ACPI: Reserving APIC table memory at [mem 0x6eff6000-0x6eff78bd]
[    0.344659] ACPI: Reserving MCFG table memory at [mem 0x6eff5000-0x6eff503b]
[    0.351680] ACPI: Reserving WSMT table memory at [mem 0x6eff4000-0x6eff4027]
[    0.358699] ACPI: Reserving SSDT table memory at [mem 0x6efd9000-0x6efd9628]
[    0.365719] ACPI: Reserving SSDT table memory at [mem 0x6efd8000-0x6efd8d6d]
[    0.372739] ACPI: Reserving EINJ table memory at [mem 0x6efd7000-0x6efd716f]
[    0.379760] ACPI: Reserving PCCT table memory at [mem 0x6efd6000-0x6efd606d]
[    0.386779] ACPI: Reserving SSDT table memory at [mem 0x6efc7000-0x6efd5848]
[    0.393800] ACPI: Reserving SRAT table memory at [mem 0x6efc6000-0x6efc6ccf]
[    0.400819] ACPI: Reserving MSCT table memory at [mem 0x6efc5000-0x6efc504d]
[    0.407839] ACPI: Reserving SLIT table memory at [mem 0x6efc4000-0x6efc402f]
[    0.414859] ACPI: Reserving CRAT table memory at [mem 0x6efbc000-0x6efc32f7]
[    0.421879] ACPI: Reserving CDIT table memory at [mem 0x6efbb000-0x6efbb02b]
[    0.428900] ACPI: Reserving IVRS table memory at [mem 0x6efba000-0x6efba1ef]
[    0.435920] ACPI: Reserving SPCR table memory at [mem 0x6efb9000-0x6efb904f]
[    0.442939] ACPI: Reserving SLIC table memory at [mem 0x6efb8000-0x6efb8175]
[    0.449960] ACPI: Reserving SSDT table memory at [mem 0x6effd000-0x6effdd65]
[    0.456980] ACPI: Reserving SSDT table memory at [mem 0x6efb5000-0x6efb693b]
[    0.464073] APIC: Switched APIC routing to: cluster x2apic
[    0.469477] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.475440] ACPI: SRAT: Node 0 PXM 0 [mem 0x000c0000-0x7fffffff]
[    0.481419] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.487659] ACPI: SRAT: Node 1 PXM 1 [mem 0x2080000000-0x407fffffff]
[    0.493992] NUMA: Node 0 [mem 0x00001000-0x0009ffff] + [mem 0x000c0000-0x7fffffff] -> [mem 0x00001000-0x7fffffff]
[    0.504213] NUMA: Node 0 [mem 0x00001000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00001000-0x207fffffff]
[    0.514880] NODE_DATA(0) allocated [mem 0x207fcd59c0-0x207fcfffff]
[    0.521035] NODE_DATA(1) allocated [mem 0x407f1d49c0-0x407f1fefff]
[    0.527321] cannot allocate crashkernel low memory (size:0x10800000).
[    0.533851] Zone ranges:
[    0.536229]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.542383]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.548535]   Normal   [mem 0x0000000100000000-0x000000407f1fffff]
[    0.554689]   Device   empty
[    0.557549] Movable zone start for each node
[    0.561796] Early memory node ranges
[    0.565348]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.571590]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.577828]   node   0: [mem 0x0000000000100000-0x0000000015dfffff]
[    0.584069]   node   0: [mem 0x0000000056700000-0x00000000567fbfff]
[    0.590309]   node   0: [mem 0x00000000567fd000-0x000000005a142fff]
[    0.596549]   node   0: [mem 0x000000005a343000-0x0000000067acefff]
[    0.602788]   node   0: [mem 0x000000006efff000-0x000000006effffff]
[    0.609028]   node   0: [mem 0x000000006f00b000-0x000000006fffffff]
[    0.615269]   node   0: [mem 0x0000000100000000-0x000000207fcfffff]
[    0.621520]   node   1: [mem 0x0000002080000000-0x000000407f1fffff]
[    0.627760] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fcfffff]
[    0.634771] Initmem setup node 1 [mem 0x0000002080000000-0x000000407f1fffff]
[    0.641802] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.647605] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.653424] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.659656] On node 0, zone DMA32: 35072 pages in unavailable ranges
[    0.665864] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.671959] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.678049] On node 0, zone DMA32: 30000 pages in unavailable ranges
[    0.684294] On node 0, zone DMA32: 11 pages in unavailable ranges
[    0.909487] On node 1, zone Normal: 768 pages in unavailable ranges
[    0.915586] On node 1, zone Normal: 3584 pages in unavailable ranges
[    0.922049] ACPI: PM-Timer IO Port: 0x408
[    0.925912] ACPI: X2APIC_NMI (uid[0xffffffff] high edge lint[0x1])
[    0.932041] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.937946] IOAPIC[0]: apic_id 240, version 33, address 0xfec00000, GSI 0-23
[    0.944956] IOAPIC[1]: apic_id 241, version 33, address 0xe0100000, GSI 120-151
[    0.952237] IOAPIC[2]: apic_id 242, version 33, address 0xc5100000, GSI 88-119
[    0.959430] IOAPIC[3]: apic_id 243, version 33, address 0xaa100000, GSI 56-87
[    0.966537] IOAPIC[4]: apic_id 244, version 33, address 0xfd100000, GSI 24-55
[    0.973643] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.979967] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.986473] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.992879] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.997996] ACPI: SPCR: console: uart,io,0x2f8,115200
[    1.003024] CPU topo: Max. logical packages:   1
[    1.007613] CPU topo: Max. logical dies:       1
[    1.012205] CPU topo: Max. dies per package:   1
[    1.016803] CPU topo: Max. threads per core:   2
[    1.021394] CPU topo: Num. cores per package:    64
[    1.026282] CPU topo: Num. threads per package: 128
[    1.031134] CPU topo: Allowing 128 present CPUs plus 0 hotplug CPUs
[    1.037399] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    1.044916] PM: hibernation: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    1.052456] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    1.059996] PM: hibernation: Registered nosave memory: [mem 0x15e00000-0x567fffff]
[    1.067536] PM: hibernation: Registered nosave memory: [mem 0x5a143000-0x5a342fff]
[    1.075075] PM: hibernation: Registered nosave memory: [mem 0x67acf000-0x6effefff]
[    1.082617] PM: hibernation: Registered nosave memory: [mem 0x6f000000-0x6f00afff]
[    1.090155] PM: hibernation: Registered nosave memory: [mem 0x70000000-0xffffffff]
[    1.097696] PM: hibernation: Registered nosave memory: [mem 0x207fd00000-0x207fffffff]
[    1.105582] [mem 0x56800000-0xffffffff] available for PCI devices
[    1.111650] Booting paravirtualized kernel on bare hardware
[    1.117196] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    1.127634] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:128 nr_cpu_ids:128 nr_node_ids:2
[    1.138522] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[    1.144997] Kernel command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    1.174325] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e biosdevname=0 mem_encrypt=off", will be passed to user space.
[    1.191174] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    1.198090] printk: log_buf_len total cpu_extra contributions: 520192 bytes
[    1.205024] printk: log_buf_len min size: 262144 bytes
[    1.210469] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[    1.217851] printk: early log buf free: 246352(93%)
[    1.224200] software IO TLB: area num 128.
[    1.228127] software IO TLB: swiotlb_memblock_alloc: Failed to allocate 268435456 bytes tlb structure
[    1.243220] software IO TLB: SWIOTLB bounce buffer size adjusted 131072 -> 65536 slabs
[    1.249314] Fallback order for Node 0: 0 1 
[    1.249318] Fallback order for Node 1: 1 0 
[    1.249332] Built 2 zonelists, mobility grouping on.  Total pages: 66743906
[    1.272321] Policy zone: Normal
[    1.275449] mem auto-init: stack:off, heap alloc:on, heap free:off
[    1.696885] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=128, Nodes=2
Poking KASLR using RDRAND RDTSC...
[    1.717508] ftrace: allocating 53763 entries in 212 pages
[    1.722723] ftrace: allocated 212 pages with 4 groups
[    1.728625] Dynamic Preempt: voluntary
[    1.732555] rcu: Preemptible hierarchical RCU implementation.
[    1.738116] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=128.
[    1.745050] 	Trampoline variant of Tasks RCU enabled.
[    1.750075] 	Rude variant of Tasks RCU enabled.
[    1.754582] 	Tracing variant of Tasks RCU enabled.
[    1.759350] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.766898] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=128
[    1.773783] RCU Tasks: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.782587] RCU Tasks Rude: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.791863] RCU Tasks Trace: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.804736] NR_IRQS: 524544, nr_irqs: 3624, preallocated irqs: 16
[    1.810925] rcu: srcu_init: Setting srcu_struct sizes to big.
[    1.816670] Console: colour dummy device 80x25
[    1.820952] printk: legacy console [ttyS0] enabled
[    1.820952] printk: legacy console [ttyS0] enabled
[    1.830485] printk: legacy bootconsole [earlyser0] disabled
[    1.830485] printk: legacy bootconsole [earlyser0] disabled
[    1.841674] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    1.852953] ACPI: Core revision 20250404
[    1.857103] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    1.866261] APIC: Switch to symmetric I/O mode setup
[    1.871688] AMD-Vi: Using global IVHD EFR:0x841f77e022094ace, EFR2:0x0
[    1.880633] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    1.906264] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x398c2d4a7c5, max_idle_ns: 881590438229 ns
[    1.916778] Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.36 BogoMIPS (lpj=7984724)
[    1.920790] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    1.924884] LVT offset 2 assigned for vector 0xf4
[    1.928810] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    1.932777] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    1.936778] process: using mwait in idle threads
[    1.940781] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    1.944777] Spectre V2 : Mitigation: Retpolines
[    1.948777] Spectre V2 : User space: Mitigation: STIBP always-on protection
[    1.952777] Speculative Return Stack Overflow: Mitigation: Safe RET
[    1.956777] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.960777] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
[    1.964777] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    1.968777] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    1.972780] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.976777] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.980777] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.984777] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    1.988777] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    1.992777] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    1.996777] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    2.000777] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    2.004777] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[    2.042651] Freeing SMP alternatives memory: 48K
[    2.044779] pid_max: default: 131072 minimum: 1024
[    2.056352] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm
[    2.056830] Yama: becoming mindful.
[    2.060902] AppArmor: AppArmor initialized
[    2.073505] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    2.081792] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    2.084926] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.088873] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.205575] smpboot: CPU0: AMD EPYC 7713 64-Core Processor (family: 0x19, model: 0x1, stepping: 0x1)
[    2.209248] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    2.212779] ... version:                0
[    2.216777] ... bit width:              48
[    2.220778] ... generic registers:      6
[    2.224777] ... value mask:             0000ffffffffffff
[    2.228777] ... max period:             00007fffffffffff
[    2.232777] ... fixed-purpose events:   0
[    2.236777] ... event mask:             000000000000003f
[    2.241215] signal: max sigframe size: 3376
[    2.244837] rcu: Hierarchical SRCU implementation.
[    2.248778] rcu: 	Max phase no-delay instances is 1000.
[    2.252834] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
[    2.265246] MCE: In-kernel MCE decoding enabled.
[    2.268826] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    2.273747] smp: Bringing up secondary CPUs ...
[    2.276925] smpboot: x86: Booting SMP configuration:
[    2.280781] .... node  #0, CPUs:          #1   #2   #3   #4   #5   #6   #7   #8   #9  #10  #11  #12  #13  #14  #15  #16  #17  #18  #19  #20  #21  #22  #23  #24  #25  #26  #27  #28  #29  #30  #31
[    2.292779] .... node  #1, CPUs:    #32  #33  #34  #35  #36  #37  #38  #39  #40  #41  #42  #43  #44  #45  #46  #47  #48  #49  #50  #51  #52  #53  #54  #55  #56  #57  #58  #59  #60  #61  #62  #63
[    2.444779] .... node  #0, CPUs:    #64  #65  #66  #67  #68  #69  #70  #71  #72  #73  #74  #75  #76  #77  #78  #79  #80  #81  #82  #83  #84  #85  #86  #87  #88  #89  #90  #91  #92  #93  #94  #95
[    2.452779] .... node  #1, CPUs:    #96  #97  #98  #99 #100 #101 #102 #103 #104 #105 #106 #107 #108 #109 #110 #111 #112 #113 #114 #115 #116 #117 #118 #119 #120 #121 #122 #123 #124 #125 #126 #127
[    2.461081] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[    2.612946] smp: Brought up 2 nodes, 128 CPUs
[    2.616782] smpboot: Total of 128 processors activated (511022.33 BogoMIPS)
[    2.627135] Memory: 262225192K/266975624K available (18401K kernel code, 3299K rwdata, 7944K rodata, 4760K init, 6092K bss, 4428304K reserved, 0K cma-reserved)
[    2.635074] devtmpfs: initialized
[    2.636884] x86/mm: Memory block size: 2048MB
[    2.651709] ACPI: PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    2.652780] ACPI: PM: Registering ACPI NVS region [mem 0x6dfcf000-0x6edfefff] (14876672 bytes)
[    2.661033] ACPI: PM: Registering ACPI NVS region [mem 0x6f000000-0x6f00afff] (45056 bytes)
[    2.664899] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    2.668841] posixtimers hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.672996] futex hash table entries: 16384 (1048576 bytes on 2 NUMA nodes, total 2048 KiB, linear).
[    2.677005] pinctrl core: initialized pinctrl subsystem
[    2.680927] PM: RTC time: 15:41:08, date: 2025-06-17
[    2.685552] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    2.689384] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    2.692961] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    2.696959] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    2.700785] audit: initializing netlink subsys (disabled)
[    2.704805] audit: type=2000 audit(1750174867.824:1): state=initialized audit_enabled=0 res=1
[    2.704983] thermal_sys: Registered thermal governor 'fair_share'
[    2.708779] thermal_sys: Registered thermal governor 'bang_bang'
[    2.712779] thermal_sys: Registered thermal governor 'step_wise'
[    2.716778] thermal_sys: Registered thermal governor 'user_space'
[    2.720801] cpuidle: using governor ladder
[    2.728788] cpuidle: using governor menu
[    2.732824] Detected 1 PCC Subspaces
[    2.736779] Registering PCC driver as Mailbox controller
[    2.740951] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    2.744780] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    2.748959] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    2.752789] PCI: Using configuration type 1 for base access
[    2.756786] PCI: Dell System detected, enabling pci=bfsort.
[    2.760982] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    2.764996] HugeTLB: allocation took 0ms with hugepage_allocation_threads=32
[    2.768821] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    2.772779] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    2.776778] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    2.780778] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    2.789425] ACPI: Added _OSI(Module Device)
[    2.792779] ACPI: Added _OSI(Processor Device)
[    2.796778] ACPI: Added _OSI(Processor Aggregator Device)
[    2.842244] ACPI: 6 ACPI AML tables successfully acquired and loaded
[    2.858355] ACPI: Interpreter enabled
[    2.860790] ACPI: PM: (supports S0 S5)
[    2.864778] ACPI: Using IOAPIC for interrupt routing
[    2.869395] HEST: Table parsing has been initialized.
[    2.876794] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    2.880780] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.884778] PCI: Ignoring E820 reservations for host bridge windows
[    2.893829] ACPI: Enabled 1 GPEs in block 00 to 1F
[    2.936157] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    2.936859] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    2.940857] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    2.944856] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    2.948856] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    2.952857] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    2.956856] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    2.960856] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    2.965284] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-3f])
[    2.968782] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.972943] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER DPC]
[    2.977094] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    2.980778] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.989357] PCI host bridge to bus 0000:00
[    2.992782] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    2.996778] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    3.000779] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000fffff window]
[    3.004778] pci_bus 0000:00: root bus resource [io  0x0d00-0x3fff window]
[    3.008778] pci_bus 0000:00: root bus resource [mem 0xe1000000-0xfebfffff window]
[    3.012779] pci_bus 0000:00: root bus resource [mem 0x63dc0000000-0x7fcffffffff window]
[    3.016778] pci_bus 0000:00: root bus resource [bus 00-3f]
[    3.020792] pci 0000:00:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.024931] pci 0000:00:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.028888] pci 0000:00:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.032872] pci 0000:00:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.036869] pci 0000:00:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.040872] pci 0000:00:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.044793] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.048781] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    3.052779] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    3.056847] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    3.061789] pci 0000:00:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.068864] pci 0000:00:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.072874] pci 0000:00:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.076874] pci 0000:00:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.080793] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.084782] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    3.088789] pci 0000:00:07.1: enabling Extended Tags
[    3.092826] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    3.096934] pci 0000:00:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.100871] pci 0000:00:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.104794] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.108782] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    3.112790] pci 0000:00:08.1: enabling Extended Tags
[    3.116827] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    3.120969] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
[    3.124893] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
[    3.128950] pci 0000:00:18.0: [1022:1650] type 00 class 0x060000 conventional PCI endpoint
[    3.132886] pci 0000:00:18.1: [1022:1651] type 00 class 0x060000 conventional PCI endpoint
[    3.136843] pci 0000:00:18.2: [1022:1652] type 00 class 0x060000 conventional PCI endpoint
[    3.140848] pci 0000:00:18.3: [1022:1653] type 00 class 0x060000 conventional PCI endpoint
[    3.148831] pci 0000:00:18.4: [1022:1654] type 00 class 0x060000 conventional PCI endpoint
[    3.152843] pci 0000:00:18.5: [1022:1655] type 00 class 0x060000 conventional PCI endpoint
[    3.156848] pci 0000:00:18.6: [1022:1656] type 00 class 0x060000 conventional PCI endpoint
[    3.160845] pci 0000:00:18.7: [1022:1657] type 00 class 0x060000 conventional PCI endpoint
[    3.164913] pci 0000:01:00.0: [1000:0097] type 00 class 0x010700 PCIe Endpoint
[    3.168809] pci 0000:01:00.0: BAR 0 [io  0x1000-0x10ff]
[    3.172780] pci 0000:01:00.0: BAR 1 [mem 0xf7400000-0xf740ffff 64bit]
[    3.176779] pci 0000:01:00.0: BAR 3 [mem 0xf7300000-0xf73fffff 64bit]
[    3.180780] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]
[    3.184783] pci 0000:01:00.0: enabling Extended Tags
[    3.188862] pci 0000:01:00.0: supports D1 D2
[    3.192820] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[    3.196778] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x000fffff 64bit]: contains BAR 0 for 16 VFs
[    3.200779] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x000fffff 64bit]
[    3.204778] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x00ffffff 64bit]: contains BAR 2 for 16 VFs
[    3.208929] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.212867] pci 0000:02:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.216811] pci 0000:02:00.0: enabling Extended Tags
[    3.220940] pci 0000:02:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.224805] pci 0000:02:00.2: BAR 2 [mem 0xf7200000-0xf727ffff]
[    3.228780] pci 0000:02:00.2: BAR 5 [mem 0xf7280000-0xf7281fff]
[    3.232783] pci 0000:02:00.2: enabling Extended Tags
[    3.236980] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.240915] pci 0000:03:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.244814] pci 0000:03:00.0: enabling Extended Tags
[    3.248990] pci 0000:03:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.252809] pci 0000:03:00.2: BAR 2 [mem 0xf7100000-0xf717ffff]
[    3.256780] pci 0000:03:00.2: BAR 5 [mem 0xf7180000-0xf7181fff]
[    3.260783] pci 0000:03:00.2: enabling Extended Tags
[    3.264972] pci 0000:03:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.268807] pci 0000:03:00.3: BAR 0 [mem 0xf7000000-0xf70fffff 64bit]
[    3.272786] pci 0000:03:00.3: enabling Extended Tags
[    3.276829] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
[    3.280960] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.289677] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 40-7f])
[    3.292781] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.296941] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.301094] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.304778] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.309722] PCI host bridge to bus 0000:40
[    3.312782] pci_bus 0000:40: root bus resource [io  0x4000-0x6fff window]
[    3.316778] pci_bus 0000:40: root bus resource [mem 0x90000000-0xaaffffff window]
[    3.320778] pci_bus 0000:40: root bus resource [mem 0x47e80000000-0x63dbfffffff window]
[    3.324778] pci_bus 0000:40: root bus resource [bus 40-7f]
[    3.328787] pci 0000:40:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.332878] pci 0000:40:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.336879] pci 0000:40:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.340862] pci 0000:40:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.344863] pci 0000:40:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.348872] pci 0000:40:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.352796] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.356783] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    3.360868] pci 0000:40:03.1: PME# supported from D0 D3hot D3cold
[    3.377542] pci 0000:40:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.380802] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.384785] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    3.392793] pci 0000:40:03.2: PME# supported from D0 D3hot D3cold
[    3.411144] pci 0000:40:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.412800] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.416783] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    3.420884] pci 0000:40:03.3: PME# supported from D0 D3hot D3cold
[    3.440878] pci 0000:40:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.444800] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.448785] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    3.452901] pci 0000:40:03.4: PME# supported from D0 D3hot D3cold
[    3.470819] pci 0000:40:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.472893] pci 0000:40:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.476867] pci 0000:40:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.480869] pci 0000:40:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.484797] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.488784] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    3.492792] pci 0000:40:07.1: enabling Extended Tags
[    3.496830] pci 0000:40:07.1: PME# supported from D0 D3hot D3cold
[    3.504944] pci 0000:40:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.512871] pci 0000:40:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.520795] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.524782] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    3.532789] pci 0000:40:08.1: enabling Extended Tags
[    3.536826] pci 0000:40:08.1: PME# supported from D0 D3hot D3cold
[    3.545027] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.548862] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.552859] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.556867] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.564865] pci 0000:45:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.568811] pci 0000:45:00.0: enabling Extended Tags
[    3.576937] pci 0000:45:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.584806] pci 0000:45:00.2: BAR 2 [mem 0xa5300000-0xa537ffff]
[    3.588780] pci 0000:45:00.2: BAR 5 [mem 0xa5380000-0xa5381fff]
[    3.596782] pci 0000:45:00.2: enabling Extended Tags
[    3.600974] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.604910] pci 0000:46:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.612814] pci 0000:46:00.0: enabling Extended Tags
[    3.616987] pci 0000:46:00.1: [1022:1486] type 00 class 0x108000 PCIe Endpoint
[    3.624807] pci 0000:46:00.1: BAR 2 [mem 0xa5100000-0xa51fffff]
[    3.628780] pci 0000:46:00.1: BAR 5 [mem 0xa5282000-0xa5283fff]
[    3.636783] pci 0000:46:00.1: enabling Extended Tags
[    3.640972] pci 0000:46:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.648808] pci 0000:46:00.2: BAR 2 [mem 0xa5200000-0xa527ffff]
[    3.656780] pci 0000:46:00.2: BAR 5 [mem 0xa5280000-0xa5281fff]
[    3.660783] pci 0000:46:00.2: enabling Extended Tags
[    3.664977] pci 0000:46:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.672806] pci 0000:46:00.3: BAR 0 [mem 0xa5000000-0xa50fffff 64bit]
[    3.680786] pci 0000:46:00.3: enabling Extended Tags
[    3.684828] pci 0000:46:00.3: PME# supported from D0 D3hot D3cold
[    3.692966] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.697452] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 80-bf])
[    3.704832] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.712947] acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.721096] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.728778] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.737694] PCI host bridge to bus 0000:80
[    3.740781] pci_bus 0000:80: root bus resource [io  0x7000-0x9fff window]
[    3.748778] pci_bus 0000:80: root bus resource [mem 0xab000000-0xc5ffffff window]
[    3.756778] pci_bus 0000:80: root bus resource [mem 0x2bf40000000-0x47e7fffffff window]
[    3.764778] pci_bus 0000:80: root bus resource [bus 80-bf]
[    3.768788] pci 0000:80:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.776881] pci 0000:80:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.784879] pci 0000:80:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.792872] pci 0000:80:01.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.800798] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.804783] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    3.812870] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    3.833990] pci 0000:80:01.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.840804] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.844785] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    3.852852] pci 0000:80:01.2: PME# supported from D0 D3hot D3cold
[    3.873043] pci 0000:80:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.876880] pci 0000:80:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.880870] pci 0000:80:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.884934] pci 0000:80:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.888872] pci 0000:80:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.892889] pci 0000:80:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.896793] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.900782] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    3.904789] pci 0000:80:07.1: enabling Extended Tags
[    3.908829] pci 0000:80:07.1: PME# supported from D0 D3hot D3cold
[    3.912938] pci 0000:80:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.916872] pci 0000:80:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.920793] pci 0000:80:08.1: PCI bridge to [bus 84]
[    3.924782] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    3.928789] pci 0000:80:08.1: enabling Extended Tags
[    3.932827] pci 0000:80:08.1: PME# supported from D0 D3hot D3cold
[    3.936948] pci 0000:80:08.2: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.940795] pci 0000:80:08.2: PCI bridge to [bus 85]
[    3.944782] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    3.948789] pci 0000:80:08.2: enabling Extended Tags
[    3.952827] pci 0000:80:08.2: PME# supported from D0 D3hot D3cold
[    3.957022] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.960862] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.964868] pci 0000:83:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.968811] pci 0000:83:00.0: enabling Extended Tags
[    3.972939] pci 0000:83:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.976805] pci 0000:83:00.2: BAR 2 [mem 0xbfa00000-0xbfa7ffff]
[    3.980780] pci 0000:83:00.2: BAR 5 [mem 0xbfa80000-0xbfa81fff]
[    3.984784] pci 0000:83:00.2: enabling Extended Tags
[    3.988981] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.992913] pci 0000:84:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.996814] pci 0000:84:00.0: enabling Extended Tags
[    4.000992] pci 0000:84:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.004807] pci 0000:84:00.2: BAR 2 [mem 0xbf900000-0xbf97ffff]
[    4.008780] pci 0000:84:00.2: BAR 5 [mem 0xbf980000-0xbf981fff]
[    4.012784] pci 0000:84:00.2: enabling Extended Tags
[    4.016985] pci 0000:80:08.1: PCI bridge to [bus 84]
[    4.020912] pci 0000:85:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[    4.024809] pci 0000:85:00.0: BAR 5 [mem 0xbf800000-0xbf8007ff]
[    4.028783] pci 0000:85:00.0: enabling Extended Tags
[    4.032841] pci 0000:85:00.0: PME# supported from D3hot D3cold
[    4.036955] pci 0000:80:08.2: PCI bridge to [bus 85]
[    4.041508] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus c0-ff])
[    4.044781] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    4.048944] acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug AER DPC]
[    4.053096] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    4.056778] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
[    4.061810] PCI host bridge to bus 0000:c0
[    4.064782] pci_bus 0000:c0: root bus resource [io  0xa000-0xffff window]
[    4.068778] pci_bus 0000:c0: root bus resource [mem 0xc6000000-0xe0ffffff window]
[    4.072778] pci_bus 0000:c0: root bus resource [mem 0x10000000000-0x2bf3fffffff window]
[    4.076778] pci_bus 0000:c0: root bus resource [io  0x03b0-0x03df window]
[    4.080778] pci_bus 0000:c0: root bus resource [mem 0x000a0000-0x000bffff window]
[    4.084778] pci_bus 0000:c0: root bus resource [bus c0-ff]
[    4.088788] pci 0000:c0:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    4.092878] pci 0000:c0:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    4.096881] pci 0000:c0:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.100862] pci 0000:c0:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.104863] pci 0000:c0:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.108869] pci 0000:c0:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.112795] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.116783] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    4.120895] pci 0000:c0:03.1: PME# supported from D0 D3hot D3cold
[    4.141735] pci 0000:c0:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.144801] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.148785] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    4.152915] pci 0000:c0:03.2: PME# supported from D0 D3hot D3cold
[    4.172586] pci 0000:c0:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.172801] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.176783] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    4.180891] pci 0000:c0:03.3: PME# supported from D0 D3hot D3cold
[    4.199638] pci 0000:c0:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.200801] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.204784] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    4.208889] pci 0000:c0:03.4: PME# supported from D0 D3hot D3cold
[    4.226916] pci 0000:c0:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.228907] pci 0000:c0:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.232872] pci 0000:c0:05.1: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.236793] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.240793] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    4.244875] pci 0000:c0:05.1: PME# supported from D0 D3hot D3cold
[    4.248932] pci 0000:c0:05.2: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.252793] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.256782] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    4.260783] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.264823] pci 0000:c0:05.2: PME# supported from D0 D3hot D3cold
[    4.268924] pci 0000:c0:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.272869] pci 0000:c0:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.276793] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.280782] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    4.284789] pci 0000:c0:07.1: enabling Extended Tags
[    4.288823] pci 0000:c0:07.1: PME# supported from D0 D3hot D3cold
[    4.292928] pci 0000:c0:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.296871] pci 0000:c0:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.300794] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.304782] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    4.308789] pci 0000:c0:08.1: enabling Extended Tags
[    4.312825] pci 0000:c0:08.1: PME# supported from D0 D3hot D3cold
[    4.320938] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.324862] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.328859] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.332858] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.336879] pci 0000:c1:00.0: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.340823] pci 0000:c1:00.0: BAR 0 [mem 0xc7030000-0xc703ffff 64bit pref]
[    4.344780] pci 0000:c1:00.0: BAR 2 [mem 0xc7040000-0xc704ffff 64bit pref]
[    4.348780] pci 0000:c1:00.0: BAR 4 [mem 0xc7050000-0xc705ffff 64bit pref]
[    4.352779] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.356865] pci 0000:c1:00.0: PME# supported from D0 D3hot D3cold
[    4.360834] pci 0000:c1:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:c0:05.1 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
[    4.369728] pci 0000:c1:00.1: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.372823] pci 0000:c1:00.1: BAR 0 [mem 0xc7000000-0xc700ffff 64bit pref]
[    4.376781] pci 0000:c1:00.1: BAR 2 [mem 0xc7010000-0xc701ffff 64bit pref]
[    4.380780] pci 0000:c1:00.1: BAR 4 [mem 0xc7020000-0xc702ffff 64bit pref]
[    4.384779] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.388866] pci 0000:c1:00.1: PME# supported from D0 D3hot D3cold
[    4.400811] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.404859] pci 0000:c2:00.0: [1556:be00] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    4.408804] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.412785] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    4.416787] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.428794] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.432814] pci_bus 0000:c3: extended config space not accessible
[    4.436806] pci 0000:c3:00.0: [102b:0536] type 00 class 0x030000 conventional PCI endpoint
[    4.440824] pci 0000:c3:00.0: BAR 0 [mem 0xc6000000-0xc6ffffff pref]
[    4.444779] pci 0000:c3:00.0: BAR 1 [mem 0xda808000-0xda80bfff]
[    4.448779] pci 0000:c3:00.0: BAR 2 [mem 0xda000000-0xda7fffff]
[    4.452797] pci 0000:c3:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    4.456904] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.460877] pci 0000:c8:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    4.464810] pci 0000:c8:00.0: enabling Extended Tags
[    4.468937] pci 0000:c8:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.472804] pci 0000:c8:00.2: BAR 2 [mem 0xdbb00000-0xdbb7ffff]
[    4.476780] pci 0000:c8:00.2: BAR 5 [mem 0xdbb80000-0xdbb81fff]
[    4.480782] pci 0000:c8:00.2: enabling Extended Tags
[    4.488874] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.492913] pci 0000:c9:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.496813] pci 0000:c9:00.0: enabling Extended Tags
[    4.500987] pci 0000:c9:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.504807] pci 0000:c9:00.2: BAR 2 [mem 0xdba00000-0xdba7ffff]
[    4.508780] pci 0000:c9:00.2: BAR 5 [mem 0xdba80000-0xdba81fff]
[    4.512783] pci 0000:c9:00.2: enabling Extended Tags
[    4.516982] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.527860] iommu: Default domain type: Translated
[    4.528778] iommu: DMA domain TLB invalidation policy: lazy mode
[    4.537073] SCSI subsystem initialized
[    4.540821] ACPI: bus type USB registered
[    4.544803] usbcore: registered new interface driver usbfs
[    4.548788] usbcore: registered new interface driver hub
[    4.552813] usbcore: registered new device driver usb
[    4.556811] pps_core: LinuxPPS API ver. 1 registered
[    4.560777] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux•it>
[    4.564783] PTP clock support registered
[    4.568857] EDAC MC: Ver: 3.0.0
[    4.572994] efivars: Registered efivars operations
[    4.581233] NetLabel: Initializing
[    4.584641] NetLabel:  domain hash size = 128
[    4.584780] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    4.588801] NetLabel:  unlabeled traffic allowed by default
[    4.592823] PCI: Using ACPI for IRQ routing
[    4.604804] pci 0000:c3:00.0: vgaarb: setting as boot VGA device
[    4.608776] pci 0000:c3:00.0: vgaarb: bridge control possible
[    4.608776] pci 0000:c3:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    4.608778] vgaarb: loaded
[    4.611489] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    4.612778] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    4.620877] clocksource: Switched to clocksource tsc-early
[    4.626650] VFS: Disk quotas dquot_6.6.0
[    4.630604] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.637731] AppArmor: AppArmor Filesystem Enabled
[    4.642466] pnp: PnP ACPI init
[    4.645798] system 00:00: [mem 0x80000000-0x8fffffff] has been reserved
[    4.652515] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[    4.660745] pnp: PnP ACPI: found 5 devices
[    4.671952] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    4.680935] NET: Registered PF_INET protocol family
[    4.685941] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.697711] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.706666] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    4.714694] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.724205] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.732588] TCP: Hash tables configured (established 524288 bind 65536)
[    4.739564] UDP hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.747982] UDP-Lite hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.756816] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    4.762479] NET: Registered PF_XDP protocol family
[    4.767275] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.777093] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.786912] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    4.796733] pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
[    4.802403] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: can't assign; no space
[    4.810148] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: failed to assign
[    4.817368] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: can't assign; no space
[    4.825632] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: failed to assign
[    4.833378] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: can't assign; no space
[    4.841642] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: failed to assign
[    4.849382] pci 0000:00:03.2: PCI bridge to [bus 01]
[    4.854349] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    4.860443] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    4.867232] pci 0000:00:07.1: PCI bridge to [bus 02]
[    4.872204] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    4.878994] pci 0000:00:08.1: PCI bridge to [bus 03]
[    4.883962] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    4.890754] PCI: No. 2 try to assign unassigned res
[    4.895641] pci 0000:00:03.2: resource 14 [mem 0xf7300000-0xf74fffff] released
[    4.902864] pci 0000:00:03.2: PCI bridge to [bus 01]
[    4.907838] pci 0000:00:03.2: bridge window [mem 0x00100000-0x002fffff] to [bus 01] add_size 1200000 add_align 100000
[    4.918444] pci 0000:00:03.2: bridge window [mem 0xe1000000-0xe23fffff]: assigned
[    4.925930] pci 0000:01:00.0: BAR 3 [mem 0xe1000000-0xe10fffff 64bit]: assigned
[    4.933237] pci 0000:01:00.0: ROM [mem 0xe1100000-0xe11fffff pref]: assigned
[    4.940287] pci 0000:01:00.0: VF BAR 2 [mem 0xe1200000-0xe21fffff 64bit]: assigned
[    4.947855] pci 0000:01:00.0: BAR 1 [mem 0xe2200000-0xe220ffff 64bit]: assigned
[    4.955168] pci 0000:01:00.0: VF BAR 0 [mem 0xe2210000-0xe230ffff 64bit]: assigned
[    4.962737] pci 0000:00:03.2: PCI bridge to [bus 01]
[    4.967712] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    4.973815] pci 0000:00:03.2:   bridge window [mem 0xe1000000-0xe23fffff]
[    4.980611] pci 0000:00:07.1: PCI bridge to [bus 02]
[    4.985582] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    4.992371] pci 0000:00:08.1: PCI bridge to [bus 03]
[    4.997345] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.004142] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    5.010327] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    5.016515] pci_bus 0000:00: resource 6 [mem 0x000c0000-0x000fffff window]
[    5.023393] pci_bus 0000:00: resource 7 [io  0x0d00-0x3fff window]
[    5.029572] pci_bus 0000:00: resource 8 [mem 0xe1000000-0xfebfffff window]
[    5.036445] pci_bus 0000:00: resource 9 [mem 0x63dc0000000-0x7fcffffffff window]
[    5.043839] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[    5.049411] pci_bus 0000:01: resource 1 [mem 0xe1000000-0xe23fffff]
[    5.055677] pci_bus 0000:02: resource 1 [mem 0xf7200000-0xf72fffff]
[    5.061945] pci_bus 0000:03: resource 1 [mem 0xf7000000-0xf71fffff]
[    5.068372] pci 0000:40:03.1: bridge window [io  0x1000-0x0fff] to [bus 41] add_size 1000
[    5.076566] pci 0000:40:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 41] add_size 200000 add_align 100000
[    5.088043] pci 0000:40:03.2: bridge window [io  0x1000-0x0fff] to [bus 42] add_size 1000
[    5.096218] pci 0000:40:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 42] add_size 200000 add_align 100000
[    5.107686] pci 0000:40:03.3: bridge window [io  0x1000-0x0fff] to [bus 43] add_size 1000
[    5.115857] pci 0000:40:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 43] add_size 200000 add_align 100000
[    5.127326] pci 0000:40:03.4: bridge window [io  0x1000-0x0fff] to [bus 44] add_size 1000
[    5.135496] pci 0000:40:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 44] add_size 200000 add_align 100000
[    5.146972] pci 0000:40:03.1: bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]: assigned
[    5.155924] pci 0000:40:03.2: bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]: assigned
[    5.164877] pci 0000:40:03.3: bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]: assigned
[    5.173830] pci 0000:40:03.4: bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]: assigned
[    5.182783] pci 0000:40:03.1: bridge window [io  0x4000-0x4fff]: assigned
[    5.189570] pci 0000:40:03.2: bridge window [io  0x5000-0x5fff]: assigned
[    5.196356] pci 0000:40:03.3: bridge window [io  0x6000-0x6fff]: assigned
[    5.203141] pci 0000:40:03.4: bridge window [io  size 0x1000]: can't assign; no space
[    5.210967] pci 0000:40:03.4: bridge window [io  size 0x1000]: failed to assign
[    5.218274] pci 0000:40:03.4: bridge window [io  0x4000-0x4fff]: assigned
[    5.225061] pci 0000:40:03.3: bridge window [io  0x5000-0x5fff]: assigned
[    5.231845] pci 0000:40:03.2: bridge window [io  0x6000-0x6fff]: assigned
[    5.238630] pci 0000:40:03.1: bridge window [io  size 0x1000]: can't assign; no space
[    5.246455] pci 0000:40:03.1: bridge window [io  size 0x1000]: failed to assign
[    5.253762] pci 0000:40:03.1: PCI bridge to [bus 41]
[    5.258731] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    5.265517] pci 0000:40:03.1:   bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.273777] pci 0000:40:03.2: PCI bridge to [bus 42]
[    5.278741] pci 0000:40:03.2:   bridge window [io  0x6000-0x6fff]
[    5.284836] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    5.291620] pci 0000:40:03.2:   bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.299881] pci 0000:40:03.3: PCI bridge to [bus 43]
[    5.304846] pci 0000:40:03.3:   bridge window [io  0x5000-0x5fff]
[    5.310948] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    5.317733] pci 0000:40:03.3:   bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.325993] pci 0000:40:03.4: PCI bridge to [bus 44]
[    5.330959] pci 0000:40:03.4:   bridge window [io  0x4000-0x4fff]
[    5.337058] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    5.343847] pci 0000:40:03.4:   bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.352108] pci 0000:40:07.1: PCI bridge to [bus 45]
[    5.357072] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    5.363861] pci 0000:40:08.1: PCI bridge to [bus 46]
[    5.368824] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    5.375612] pci_bus 0000:40: Some PCI device resources are unassigned, try booting with pci=realloc
[    5.384649] pci_bus 0000:40: resource 4 [io  0x4000-0x6fff window]
[    5.390827] pci_bus 0000:40: resource 5 [mem 0x90000000-0xaaffffff window]
[    5.397701] pci_bus 0000:40: resource 6 [mem 0x47e80000000-0x63dbfffffff window]
[    5.405093] pci_bus 0000:41: resource 1 [mem 0xa4c00000-0xa4ffffff]
[    5.411361] pci_bus 0000:41: resource 2 [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.419135] pci_bus 0000:42: resource 0 [io  0x6000-0x6fff]
[    5.424705] pci_bus 0000:42: resource 1 [mem 0xa4800000-0xa4bfffff]
[    5.430973] pci_bus 0000:42: resource 2 [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.438711] pci_bus 0000:43: resource 0 [io  0x5000-0x5fff]
[    5.444285] pci_bus 0000:43: resource 1 [mem 0xa4400000-0xa47fffff]
[    5.450552] pci_bus 0000:43: resource 2 [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.458288] pci_bus 0000:44: resource 0 [io  0x4000-0x4fff]
[    5.463861] pci_bus 0000:44: resource 1 [mem 0xa4000000-0xa43fffff]
[    5.470130] pci_bus 0000:44: resource 2 [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.477866] pci_bus 0000:45: resource 1 [mem 0xa5300000-0xa53fffff]
[    5.484134] pci_bus 0000:46: resource 1 [mem 0xa5000000-0xa52fffff]
[    5.490475] pci 0000:80:01.1: bridge window [io  0x1000-0x0fff] to [bus 81] add_size 1000
[    5.498652] pci 0000:80:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 81] add_size 200000 add_align 100000
[    5.510116] pci 0000:80:01.2: bridge window [io  0x1000-0x0fff] to [bus 82] add_size 1000
[    5.518289] pci 0000:80:01.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 82] add_size 200000 add_align 100000
[    5.529762] pci 0000:80:01.1: bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]: assigned
[    5.538718] pci 0000:80:01.2: bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]: assigned
[    5.547669] pci 0000:80:01.1: bridge window [io  0x7000-0x7fff]: assigned
[    5.554457] pci 0000:80:01.2: bridge window [io  0x8000-0x8fff]: assigned
[    5.561244] pci 0000:80:01.1: PCI bridge to [bus 81]
[    5.566207] pci 0000:80:01.1:   bridge window [io  0x7000-0x7fff]
[    5.572303] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    5.579089] pci 0000:80:01.1:   bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.587350] pci 0000:80:01.2: PCI bridge to [bus 82]
[    5.592314] pci 0000:80:01.2:   bridge window [io  0x8000-0x8fff]
[    5.598408] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    5.605191] pci 0000:80:01.2:   bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.613454] pci 0000:80:07.1: PCI bridge to [bus 83]
[    5.618418] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    5.625205] pci 0000:80:08.1: PCI bridge to [bus 84]
[    5.630170] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    5.636960] pci 0000:80:08.2: PCI bridge to [bus 85]
[    5.641930] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    5.648718] pci_bus 0000:80: resource 4 [io  0x7000-0x9fff window]
[    5.654896] pci_bus 0000:80: resource 5 [mem 0xab000000-0xc5ffffff window]
[    5.661768] pci_bus 0000:80: resource 6 [mem 0x2bf40000000-0x47e7fffffff window]
[    5.669161] pci_bus 0000:81: resource 0 [io  0x7000-0x7fff]
[    5.674733] pci_bus 0000:81: resource 1 [mem 0xbf400000-0xbf7fffff]
[    5.680997] pci_bus 0000:81: resource 2 [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.688738] pci_bus 0000:82: resource 0 [io  0x8000-0x8fff]
[    5.694310] pci_bus 0000:82: resource 1 [mem 0xbf000000-0xbf3fffff]
[    5.700577] pci_bus 0000:82: resource 2 [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.708315] pci_bus 0000:83: resource 1 [mem 0xbfa00000-0xbfafffff]
[    5.714582] pci_bus 0000:84: resource 1 [mem 0xbf900000-0xbf9fffff]
[    5.720847] pci_bus 0000:85: resource 1 [mem 0xbf800000-0xbf8fffff]
[    5.727180] pci 0000:c0:03.1: bridge window [io  0x1000-0x0fff] to [bus c4] add_size 1000
[    5.735356] pci 0000:c0:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c4] add_size 200000 add_align 100000
[    5.746823] pci 0000:c0:03.2: bridge window [io  0x1000-0x0fff] to [bus c5] add_size 1000
[    5.754997] pci 0000:c0:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c5] add_size 200000 add_align 100000
[    5.766461] pci 0000:c0:03.3: bridge window [io  0x1000-0x0fff] to [bus c6] add_size 1000
[    5.774633] pci 0000:c0:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c6] add_size 200000 add_align 100000
[    5.786099] pci 0000:c0:03.4: bridge window [io  0x1000-0x0fff] to [bus c7] add_size 1000
[    5.794275] pci 0000:c0:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c7] add_size 200000 add_align 100000
[    5.805742] pci 0000:c0:05.1: bridge window [mem 0x00100000-0x000fffff] to [bus c1] add_size 100000 add_align 100000
[    5.816259] pci 0000:c0:03.1: bridge window [mem 0x10000000000-0x100001fffff 64bit pref]: assigned
[    5.825216] pci 0000:c0:03.2: bridge window [mem 0x10000200000-0x100003fffff 64bit pref]: assigned
[    5.834185] pci 0000:c0:03.3: bridge window [mem 0x10000400000-0x100005fffff 64bit pref]: assigned
[    5.843138] pci 0000:c0:03.4: bridge window [mem 0x10000600000-0x100007fffff 64bit pref]: assigned
[    5.852091] pci 0000:c0:05.1: bridge window [mem 0xc7100000-0xc71fffff]: assigned
[    5.859570] pci 0000:c0:03.1: bridge window [io  0xa000-0xafff]: assigned
[    5.866355] pci 0000:c0:03.2: bridge window [io  0xb000-0xbfff]: assigned
[    5.873143] pci 0000:c0:03.3: bridge window [io  0xc000-0xcfff]: assigned
[    5.879929] pci 0000:c0:03.4: bridge window [io  0xd000-0xdfff]: assigned
[    5.886714] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    5.891678] pci 0000:c0:03.1:   bridge window [io  0xa000-0xafff]
[    5.897773] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    5.904560] pci 0000:c0:03.1:   bridge window [mem 0x10000000000-0x100001fffff 64bit pref]
[    5.912822] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    5.917792] pci 0000:c0:03.2:   bridge window [io  0xb000-0xbfff]
[    5.923886] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    5.930673] pci 0000:c0:03.2:   bridge window [mem 0x10000200000-0x100003fffff 64bit pref]
[    5.938933] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    5.943895] pci 0000:c0:03.3:   bridge window [io  0xc000-0xcfff]
[    5.949990] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    5.956775] pci 0000:c0:03.3:   bridge window [mem 0x10000400000-0x100005fffff 64bit pref]
[    5.965036] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    5.969999] pci 0000:c0:03.4:   bridge window [io  0xd000-0xdfff]
[    5.976094] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    5.982880] pci 0000:c0:03.4:   bridge window [mem 0x10000600000-0x100007fffff 64bit pref]
[    5.991144] pci 0000:c1:00.0: ROM [mem 0xc7100000-0xc713ffff pref]: assigned
[    5.998193] pci 0000:c1:00.1: ROM [mem 0xc7140000-0xc717ffff pref]: assigned
[    6.005239] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    6.010209] pci 0000:c0:05.1:   bridge window [mem 0xc7100000-0xc71fffff]
[    6.016993] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.024735] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    6.029699] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    6.036541] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.044289] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    6.049522] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    6.056313] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.064056] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    6.069029] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    6.075817] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    6.080791] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    6.087586] pci_bus 0000:c0: resource 4 [io  0xa000-0xffff window]
[    6.093769] pci_bus 0000:c0: resource 5 [mem 0xc6000000-0xe0ffffff window]
[    6.100644] pci_bus 0000:c0: resource 6 [mem 0x10000000000-0x2bf3fffffff window]
[    6.108037] pci_bus 0000:c0: resource 7 [io  0x03b0-0x03df window]
[    6.114215] pci_bus 0000:c0: resource 8 [mem 0x000a0000-0x000bffff window]
[    6.121087] pci_bus 0000:c4: resource 0 [io  0xa000-0xafff]
[    6.126661] pci_bus 0000:c4: resource 1 [mem 0xdb600000-0xdb9fffff]
[    6.132927] pci_bus 0000:c4: resource 2 [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.140666] pci_bus 0000:c5: resource 0 [io  0xb000-0xbfff]
[    6.146239] pci_bus 0000:c5: resource 1 [mem 0xdb200000-0xdb5fffff]
[    6.152503] pci_bus 0000:c5: resource 2 [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.160243] pci_bus 0000:c6: resource 0 [io  0xc000-0xcfff]
[    6.165816] pci_bus 0000:c6: resource 1 [mem 0xdae00000-0xdb1fffff]
[    6.172081] pci_bus 0000:c6: resource 2 [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.179822] pci_bus 0000:c7: resource 0 [io  0xd000-0xdfff]
[    6.185395] pci_bus 0000:c7: resource 1 [mem 0xdaa00000-0xdadfffff]
[    6.191659] pci_bus 0000:c7: resource 2 [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.199402] pci_bus 0000:c1: resource 1 [mem 0xc7100000-0xc71fffff]
[    6.205667] pci_bus 0000:c1: resource 2 [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.212886] pci_bus 0000:c2: resource 1 [mem 0xda000000-0xda8fffff]
[    6.219153] pci_bus 0000:c2: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.226372] pci_bus 0000:c3: resource 1 [mem 0xda000000-0xda8fffff]
[    6.232638] pci_bus 0000:c3: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.239855] pci_bus 0000:c8: resource 1 [mem 0xdbb00000-0xdbbfffff]
[    6.246122] pci_bus 0000:c9: resource 1 [mem 0xdba00000-0xdbafffff]
[    6.253086] PCI: CLS 64 bytes, default 64
[    6.257180] Trying to unpack rootfs image as initramfs...
[    6.317092] AMD-Vi: IOMMU SNP support enabled.
[    6.321704] pci 0000:c0:00.2: AMD-Vi: IOMMU performance counters supported
[    6.328734] pci 0000:c0:01.0: Adding to iommu group 0
[    6.333846] pci 0000:c0:02.0: Adding to iommu group 1
[    6.339054] pci 0000:c0:03.0: Adding to iommu group 2
[    6.344220] pci 0000:c0:03.1: Adding to iommu group 2
[    6.349321] pci 0000:c0:03.2: Adding to iommu group 2
[    6.354418] pci 0000:c0:03.3: Adding to iommu group 2
[    6.359522] pci 0000:c0:03.4: Adding to iommu group 2
[    6.364627] pci 0000:c0:04.0: Adding to iommu group 3
[    6.369775] pci 0000:c0:05.0: Adding to iommu group 4
[    6.374870] pci 0000:c0:05.1: Adding to iommu group 4
[    6.379967] pci 0000:c0:05.2: Adding to iommu group 4
[    6.385072] pci 0000:c0:07.0: Adding to iommu group 5
[    6.390153] pci 0000:c0:07.1: Adding to iommu group 6
[    6.395266] pci 0000:c0:08.0: Adding to iommu group 7
[    6.400356] pci 0000:c0:08.1: Adding to iommu group 8
[    6.405417] pci 0000:c1:00.0: Adding to iommu group 4
[    6.410477] pci 0000:c1:00.1: Adding to iommu group 4
[    6.415539] pci 0000:c2:00.0: Adding to iommu group 4
[    6.420604] pci 0000:c3:00.0: Adding to iommu group 4
[    6.425689] pci 0000:c8:00.0: Adding to iommu group 9
[    6.430778] pci 0000:c8:00.2: Adding to iommu group 10
[    6.435950] pci 0000:c9:00.0: Adding to iommu group 11
[    6.441126] pci 0000:c9:00.2: Adding to iommu group 12
[    6.452702] pci 0000:80:00.2: AMD-Vi: IOMMU performance counters supported
[    6.459775] pci 0000:80:01.0: Adding to iommu group 13
[    6.464972] pci 0000:80:01.1: Adding to iommu group 13
[    6.470157] pci 0000:80:01.2: Adding to iommu group 13
[    6.475352] pci 0000:80:02.0: Adding to iommu group 14
[    6.480544] pci 0000:80:03.0: Adding to iommu group 15
[    6.485735] pci 0000:80:04.0: Adding to iommu group 16
[    6.490926] pci 0000:80:05.0: Adding to iommu group 17
[    6.496122] pci 0000:80:07.0: Adding to iommu group 18
[    6.501297] pci 0000:80:07.1: Adding to iommu group 19
[    6.506496] pci 0000:80:08.0: Adding to iommu group 20
[    6.511671] pci 0000:80:08.1: Adding to iommu group 21
[    6.516845] pci 0000:80:08.2: Adding to iommu group 22
[    6.522021] pci 0000:83:00.0: Adding to iommu group 23
[    6.527196] pci 0000:83:00.2: Adding to iommu group 24
[    6.532371] pci 0000:84:00.0: Adding to iommu group 25
[    6.537541] pci 0000:84:00.2: Adding to iommu group 26
[    6.542716] pci 0000:85:00.0: Adding to iommu group 27
[    6.555216] pci 0000:40:00.2: AMD-Vi: IOMMU performance counters supported
[    6.562225] pci 0000:40:01.0: Adding to iommu group 28
[    6.567423] pci 0000:40:02.0: Adding to iommu group 29
[    6.572714] pci 0000:40:03.0: Adding to iommu group 30
[    6.577891] pci 0000:40:03.1: Adding to iommu group 30
[    6.583071] pci 0000:40:03.2: Adding to iommu group 30
[    6.588246] pci 0000:40:03.3: Adding to iommu group 30
[    6.593421] pci 0000:40:03.4: Adding to iommu group 30
[    6.598619] pci 0000:40:04.0: Adding to iommu group 31
[    6.603810] pci 0000:40:05.0: Adding to iommu group 32
[    6.609002] pci 0000:40:07.0: Adding to iommu group 33
[    6.614175] pci 0000:40:07.1: Adding to iommu group 34
[    6.619368] pci 0000:40:08.0: Adding to iommu group 35
[    6.624536] pci 0000:40:08.1: Adding to iommu group 36
[    6.629711] pci 0000:45:00.0: Adding to iommu group 37
[    6.634887] pci 0000:45:00.2: Adding to iommu group 38
[    6.640063] pci 0000:46:00.0: Adding to iommu group 39
[    6.645234] pci 0000:46:00.1: Adding to iommu group 40
[    6.650433] pci 0000:46:00.2: Adding to iommu group 41
[    6.655611] pci 0000:46:00.3: Adding to iommu group 42
[    6.667977] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    6.674991] pci 0000:00:00.0: Adding to iommu group 43
[    6.680182] pci 0000:00:01.0: Adding to iommu group 44
[    6.685374] pci 0000:00:02.0: Adding to iommu group 45
[    6.690566] pci 0000:00:03.0: Adding to iommu group 46
[    6.693340] Freeing initrd memory: 38564K
[    6.695745] pci 0000:00:03.2: Adding to iommu group 47
[    6.704916] pci 0000:00:04.0: Adding to iommu group 48
[    6.710109] pci 0000:00:05.0: Adding to iommu group 49
[    6.715302] pci 0000:00:07.0: Adding to iommu group 50
[    6.720479] pci 0000:00:07.1: Adding to iommu group 51
[    6.725674] pci 0000:00:08.0: Adding to iommu group 52
[    6.730844] pci 0000:00:08.1: Adding to iommu group 53
[    6.736062] pci 0000:00:14.0: Adding to iommu group 54
[    6.741235] pci 0000:00:14.3: Adding to iommu group 54
[    6.746587] pci 0000:00:18.0: Adding to iommu group 55
[    6.751782] pci 0000:00:18.1: Adding to iommu group 55
[    6.756956] pci 0000:00:18.2: Adding to iommu group 55
[    6.762130] pci 0000:00:18.3: Adding to iommu group 55
[    6.767305] pci 0000:00:18.4: Adding to iommu group 55
[    6.772480] pci 0000:00:18.5: Adding to iommu group 55
[    6.777653] pci 0000:00:18.6: Adding to iommu group 55
[    6.782828] pci 0000:00:18.7: Adding to iommu group 55
[    6.788002] pci 0000:01:00.0: Adding to iommu group 56
[    6.793176] pci 0000:02:00.0: Adding to iommu group 57
[    6.798354] pci 0000:02:00.2: Adding to iommu group 58
[    6.803524] pci 0000:03:00.0: Adding to iommu group 59
[    6.808699] pci 0000:03:00.2: Adding to iommu group 60
[    6.813874] pci 0000:03:00.3: Adding to iommu group 61
[    6.828092] AMD-Vi: Extended features (0x841f77e022094ace, 0x0): PPR X2APIC NX IA GA PC SNP
[    6.836453] AMD-Vi: Interrupt remapping enabled
[    6.840982] AMD-Vi: X2APIC enabled
[    6.845502] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    6.851965] software IO TLB: mapped [mem 0x000000005bf37000-0x0000000063f37000] (128MB)
[    6.860106] LVT offset 0 assigned for vector 0x400
[    6.866483] perf: AMD IBS detected (0x000003ff)
[    6.872372] amd_uncore: 4 amd_df counters detected
[    6.877212] amd_uncore: 6 amd_l3 counters detected
[    6.883631] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    6.890789] perf/amd_iommu: Detected AMD IOMMU #1 (2 banks, 4 counters/bank).
[    6.897949] perf/amd_iommu: Detected AMD IOMMU #2 (2 banks, 4 counters/bank).
[    6.905102] perf/amd_iommu: Detected AMD IOMMU #3 (2 banks, 4 counters/bank).
[    6.915504] Initialise system trusted keyrings
[    6.919963] Key type blacklist registered
[    6.924098] workingset: timestamp_bits=36 max_order=26 bucket_order=0
[    6.931081] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    6.937071] fuse: init (API version 7.44)
[    6.941340] integrity: Platform Keyring initialized
[    6.958315] Key type asymmetric registered
[    6.962412] Asymmetric key parser 'x509' registered
[    6.967327] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    6.974847] io scheduler mq-deadline registered
[    6.981995] ledtrig-cpu: registered to indicate activity on CPUs
[    6.988326] pcieport 0000:00:03.2: PME: Signaling with IRQ 38
[    6.994467] pcieport 0000:00:07.1: PME: Signaling with IRQ 40
[    7.000451] pcieport 0000:00:08.1: PME: Signaling with IRQ 41
[    7.006430] pcieport 0000:40:03.1: PME: Signaling with IRQ 42
[    7.012228] pcieport 0000:40:03.1: pciehp: Slot #167 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.026295] pcieport 0000:40:03.2: PME: Signaling with IRQ 43
[    7.032092] pcieport 0000:40:03.2: pciehp: Slot #166 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.046089] pcieport 0000:40:03.3: PME: Signaling with IRQ 44
[    7.051889] pcieport 0000:40:03.3: pciehp: Slot #169 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.065899] pcieport 0000:40:03.4: PME: Signaling with IRQ 45
[    7.071752] pcieport 0000:40:03.4: pciehp: Slot #168 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.085823] pcieport 0000:40:07.1: PME: Signaling with IRQ 47
[    7.091796] pcieport 0000:40:08.1: PME: Signaling with IRQ 48
[    7.097891] pcieport 0000:80:01.1: PME: Signaling with IRQ 49
[    7.103705] pcieport 0000:80:01.1: pciehp: Slot #160 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.117693] pcieport 0000:80:01.2: PME: Signaling with IRQ 50
[    7.123491] pcieport 0000:80:01.2: pciehp: Slot #161 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.137596] pcieport 0000:80:07.1: PME: Signaling with IRQ 52
[    7.143638] pcieport 0000:80:08.1: PME: Signaling with IRQ 54
[    7.149657] pcieport 0000:80:08.2: PME: Signaling with IRQ 55
[    7.155611] pcieport 0000:c0:03.1: PME: Signaling with IRQ 56
[    7.161408] pcieport 0000:c0:03.1: pciehp: Slot #163 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.175416] pcieport 0000:c0:03.2: PME: Signaling with IRQ 57
[    7.181213] pcieport 0000:c0:03.2: pciehp: Slot #162 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.195188] pcieport 0000:c0:03.3: PME: Signaling with IRQ 58
[    7.200991] pcieport 0000:c0:03.3: pciehp: Slot #165 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.214967] pcieport 0000:c0:03.4: PME: Signaling with IRQ 59
[    7.220772] pcieport 0000:c0:03.4: pciehp: Slot #164 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.234743] pcieport 0000:c0:05.1: PME: Signaling with IRQ 60
[    7.240677] pcieport 0000:c0:05.2: PME: Signaling with IRQ 61
[    7.246709] pcieport 0000:c0:07.1: PME: Signaling with IRQ 63
[    7.252732] pcieport 0000:c0:08.1: PME: Signaling with IRQ 65
[    7.259239] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    7.266715] ACPI: button: Power Button [PWRF]
[    7.708613] Estimated ratio of average max frequency by base frequency (times 1024): 1464
[    7.717099] ERST: Error Record Serialization Table (ERST) support is initialized.
[    7.724599] pstore: Using crash dump compression: deflate
[    7.730000] pstore: Registered erst as persistent store backend
[    7.736062] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    7.742627] 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    7.750770] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    7.761853] Linux agpgart interface v0.103
[    7.792340] loop: module loaded
[    7.806718] ahci 0000:85:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[    7.814730] ahci 0000:85:00.0: 8/8 ports implemented (port mask 0xff)
[    7.821177] ahci 0000:85:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part sxs 
[    7.831475] scsi host0: ahci
[    7.834599] scsi host1: ahci
[    7.837704] scsi host2: ahci
[    7.840803] scsi host3: ahci
[    7.843897] scsi host4: ahci
[    7.846996] scsi host5: ahci
[    7.850100] scsi host6: ahci
[    7.853203] scsi host7: ahci
[    7.856157] ata1: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800100 irq 67 lpm-pol 0 ext
[    7.864770] ata2: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800180 irq 68 lpm-pol 0 ext
[    7.873374] ata3: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800200 irq 69 lpm-pol 0 ext
[    7.881982] ata4: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800280 irq 70 lpm-pol 0 ext
[    7.890586] ata5: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800300 irq 71 lpm-pol 0 ext
[    7.899199] ata6: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800380 irq 72 lpm-pol 0 ext
[    7.907808] ata7: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800400 irq 73 lpm-pol 0 ext
[    7.916414] ata8: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800480 irq 74 lpm-pol 0 ext
[    7.925361] tun: Universal TUN/TAP device driver, 1.6
[    7.930430] tsc: Refined TSC clocksource calibration: 1996.247 MHz
[    7.936664] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398caa9ddcb, max_idle_ns: 881590739785 ns
[    7.936706] PPP generic driver version 2.4.2
[    7.950967] clocksource: Switched to clocksource tsc
[    7.951148] VFIO - User Level meta-driver version: 0.3
[    7.961446] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    7.966690] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 1
[    7.974189] xhci_hcd 0000:03:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    7.983740] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    7.988973] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 2
[    7.996371] xhci_hcd 0000:03:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.003464] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.011730] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.018954] usb usb1: Product: xHCI Host Controller
[    8.023836] usb usb1: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.032789] usb usb1: SerialNumber: 0000:03:00.3
[    8.037585] hub 1-0:1.0: USB hub found
[    8.041350] hub 1-0:1.0: 2 ports detected
[    8.046210] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.054332] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.062592] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.069815] usb usb2: Product: xHCI Host Controller
[    8.074701] usb usb2: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.083655] usb usb2: SerialNumber: 0000:03:00.3
[    8.088426] hub 2-0:1.0: USB hub found
[    8.092182] hub 2-0:1.0: 2 ports detected
[    8.097118] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.102353] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 3
[    8.109841] xhci_hcd 0000:46:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.119349] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.124578] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 4
[    8.132003] xhci_hcd 0000:46:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.139113] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.147380] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.154605] usb usb3: Product: xHCI Host Controller
[    8.159482] usb usb3: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.168437] usb usb3: SerialNumber: 0000:46:00.3
[    8.173238] hub 3-0:1.0: USB hub found
[    8.176999] hub 3-0:1.0: 2 ports detected
[    8.181798] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.189913] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.198172] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.205394] usb usb4: Product: xHCI Host Controller
[    8.210280] usb usb4: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.219241] usb usb4: SerialNumber: 0000:46:00.3
[    8.224005] hub 4-0:1.0: USB hub found
[    8.227768] hub 4-0:1.0: 2 ports detected
[    8.232826] usbcore: registered new interface driver uas
[    8.234633] ata8: SATA link down (SStatus 0 SControl 300)
[    8.238176] usbcore: registered new interface driver usb-storage
[    8.243572] ata4: SATA link down (SStatus 0 SControl 300)
[    8.249591] i8042: PNP: No PS/2 controller found.
[    8.254983] ata5: SATA link down (SStatus 0 SControl 300)
[    8.259745] mousedev: PS/2 mouse device common for all mice
[    8.265090] ata6: SATA link down (SStatus 0 SControl 300)
[    8.270746] rtc_cmos 00:02: RTC can wake from S4
[    8.276062] ata7: SATA link down (SStatus 0 SControl 300)
[    8.281027] rtc_cmos 00:02: registered as rtc0
[    8.286079] ata2: SATA link down (SStatus 0 SControl 300)
[    8.290573] rtc_cmos 00:02: setting system clock to 2025-06-17T15:41:15 UTC (1750174875)
[    8.292279] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[    8.295926] ata3: SATA link down (SStatus 0 SControl 300)
[    8.304029] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram
[    8.310538] ata1: SATA link down (SStatus 0 SControl 300)
[    8.315922] i2c_dev: i2c /dev entries driver
[    8.332301] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    8.344483] device-mapper: uevent: version 1.0.3
[    8.349217] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists•linux.dev
[    8.358086] amd_pstate: driver load is disabled, boot with specific mode to enable this
[    8.366121] efifb: probing for efifb
[    8.369717] efifb: No BGRT, not showing boot graphics
[    8.374766] efifb: framebuffer at 0xc6000000, using 3072k, total 3072k
[    8.381290] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    8.387298] efifb: scrolling: redraw
[    8.390875] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    8.396506] fbcon: Deferring console take-over
[    8.400958] fb0: EFI VGA frame buffer device
[    8.405323] drop_monitor: Initializing network drop monitor service
[    8.411750] NET: Registered PF_INET6 protocol family
[    8.423806] Segment Routing with IPv6
[    8.427486] In-situ OAM (IOAM) with IPv6
[    8.428286] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[    8.431065] usb 1-1: New USB device found, idVendor=0424, idProduct=2744, bcdDevice= 1.21
[    8.431068] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    8.431070] usb 1-1: Product: USB2734
[    8.431072] usb 1-1: Manufacturer: Microchip Tech
[    8.431434] NET: Registered PF_PACKET protocol family
[    8.466790] Key type dns_resolver registered
[    8.483246] x86/amd: Previous system reset reason [0x00080800]: software wrote 0x6 to reset control register 0xCF9
[    8.483884] hub 1-1:1.0: USB hub found
[    8.493594] microcode: Current revision: 0x0a0011d5
[    8.497566] hub 1-1:1.0: 4 ports detected
[    8.502224] microcode: Updated early from: 0x0a0011d5
[    8.513550] resctrl: L3 allocation detected
[    8.517738] resctrl: MB allocation detected
[    8.521921] resctrl: L3 monitoring detected
[    8.526277] IPI shorthand broadcast: enabled
[    8.534260] sched_clock: Marking stable (8468001583, 64260748)->(9550697271, -1018434940)
[    8.543021] registered taskstats version 1
[    8.550800] Loading compiled-in X.509 certificates
[    8.556105] Loaded X.509 cert 'Build time autogenerated kernel key: 08bfd1fd39cd432a2b2f01158b4d473611f86fe0'
[    8.568316] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
[    8.574868] Demotion targets for Node 0: null
[    8.575875] usb 3-1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    8.579235] Demotion targets for Node 1: null
[    8.587408] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.592399] Key type .fscrypt registered
[    8.599281] usb 2-1: New USB device found, idVendor=0424, idProduct=5744, bcdDevice= 1.21
[    8.602826] Key type fscrypt-provisioning registered
[    8.615987] usb 2-1: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[    8.619445] Key type encrypted registered
[    8.623123] usb 2-1: Product: USB5734
[    8.627133] AppArmor: AppArmor sha256 policy hashing enabled
[    8.630798] usb 2-1: Manufacturer: Microchip Tech
[    8.636542] integrity: Loading X.509 certificate: UEFI:db
[    8.646587] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    8.651561] hub 3-1:1.0: USB hub found
[    8.657363] integrity: Loading X.509 certificate: UEFI:db
[    8.657379] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    8.661339] hub 2-1:1.0: USB hub found
[    8.666521] integrity: Loading X.509 certificate: UEFI:db
[    8.666639] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    8.677601] hub 3-1:1.0: 4 ports detected
[    8.681316] integrity: Loading X.509 certificate: UEFI:db
[    8.681451] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    8.686749] hub 2-1:1.0: 4 ports detected
[    8.695873] ima: No TPM chip found, activating TPM-bypass!
[    8.725784] Loading compiled-in module X.509 certificates
[    8.731601] Loaded X.509 cert 'Build time autogenerated kernel key: 08bfd1fd39cd432a2b2f01158b4d473611f86fe0'
[    8.741520] ima: Allocated hash algorithm: sha1
[    8.746061] ima: No architecture policies found
[    8.750617] evm: Initialising EVM extended attributes:
[    8.755759] evm: security.selinux
[    8.759080] evm: security.SMACK64
[    8.762399] evm: security.SMACK64EXEC
[    8.766063] evm: security.SMACK64TRANSMUTE
[    8.770166] evm: security.SMACK64MMAP
[    8.773827] evm: security.apparmor
[    8.777236] evm: security.ima
[    8.780206] evm: security.capability
[    8.783787] evm: HMAC attrs: 0x1
[    8.787400] PM:   Magic number: 13:2:690
[    8.791421] mem mem: hash matches
[    8.795264] RAS: Correctable Errors collector initialized.
[    8.800901] clk: Disabling unused clocks
[    8.804833] PM: genpd: Disabling unused power domains
[    8.811600] Freeing unused decrypted memory: 2028K
[    8.817127] Freeing unused kernel image (initmem) memory: 4760K
[    8.823059] Write protecting the kernel read-only data: 26624k
[    8.829337] Freeing unused kernel image (text/rodata gap) memory: 28K
[    8.836107] Freeing unused kernel image (rodata/data gap) memory: 248K
[    8.929535] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    8.935973] Run /init as init process
[    8.946346] systemd[1]: Inserted module 'autofs4'
[    9.173568] systemd[1]: systemd 252-46.el9_5.3 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)
[    9.206019] systemd[1]: Detected architecture x86-64.
[    9.211073] systemd[1]: Running in initrd.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow) dracut-057-80.git20250411.el9_5 (Initramfs)^[[0m!

[    9.232366] systemd[1]: Hostname set to <sharavati.amd.com>.
[    9.330446] systemd[1]: Queued start job for default target Initrd Default Target.
[    9.338127] systemd[1]: Reached target Initrd /usr File System.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd /usr File System^[[0m.
[    9.356387] systemd[1]: Reached target Local File Systems.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
[    9.372323] systemd[1]: Reached target Slice Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSlice Units^[[0m.
[    9.388327] systemd[1]: Reached target Swaps.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwaps^[[0m.
[    9.404318] systemd[1]: Reached target Timer Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[    9.416279] usb 3-1.1: new high-speed USB device number 3 using xhci_hcd
[    9.423098] systemd[1]: Listening on D-Bus System Message Bus Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[    9.440477] systemd[1]: Listening on Journal Socket (/dev/log).
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket (/dev/log)^[[0m.
[    9.456479] systemd[1]: Listening on Journal Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket^[[0m.
[    9.472483] systemd[1]: Listening on udev Control Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[    9.488423] systemd[1]: Listening on udev Kernel Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
[    9.504329] systemd[1]: Reached target Socket Units.
[^[[0;32m  OK  ^[[[    9.510259] usb 3-1.1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
0m] Reached targ[    9.519071] usb 3-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
et ^[[0;1;39mSocket Units^[[0m.
[    9.562358] systemd[1]: Starting Create List of Static Device Nodes...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
[    9.579581] hub 3-1.1:1.0: USB hub found
[    9.583755] hub 3-1.1:1.0: 4 ports detected
[    9.588741] systemd[1]: Starting Journal Service...
         Starting ^[[0;1;39mJournal Service^[[0m...
[    9.605868] systemd[1]: Starting Load Kernel Modules...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
[    9.621400] systemd[1]: Starting Create System Users...
         Starting ^[[0;1;39mCreate System Users^[[0m...
[    9.637481] systemd[1]: Starting Setup Virtual Console...
         Starting ^[[0;1;39mSetup Virtual Console^[[0m...
[    9.653370] systemd[1]: Finished Create List of Static Device Nodes.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[    9.668285] usb 3-1.4: new high-speed USB device number 4 using xhci_hcd
[    9.675303] systemd[1]: Finished Load Kernel Modules.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[    9.692511] systemd[1]: Started Journal Service.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSetup Virtual Console^[[0m.
         Startin[    9.761262] usb 3-1.4: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
g ^[[0;1;39mdracu[    9.770467] usb 3-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
t cmdline hook^[[0m...
         Starting ^[[0;1;39mApply Kernel Variables^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate System Users^[[0m.
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
[    9.835585] hub 3-1.4:1.0: USB hub found
[    9.839880] hub 3-1.4:1.0: 4 ports detected
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut cmdline hook^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Starting ^[[0;1;39mdracut pre-udev hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-udev hook^[[0m.
         Starting ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[   10.225439] wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQBC data block query control method not found
[^[[0;32m  OK  ^[[0m] Finished ^[[0[   10.236534] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
;1;39mColdplug A[   10.243553] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
ll udev Devices^[[   10.244376] ccp 0000:46:00.1: no command queues available
[0m.
[   10.252177] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[   10.258829] ccp 0000:46:00.1: sev enabled
[   10.260427] tg3 0000:c1:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:90
[   10.260432] tg3 0000:c1:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.260436] tg3 0000:c1:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.260438] tg3 0000:c1:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[   10.286901] tg3 0000:c1:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:91
[   10.290721] ccp 0000:46:00.1: psp enabled
[   10.298546] tg3 0000:c1:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.329606] tg3 0000:c1:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.329609] tg3 0000:c1:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[^[[0;32m  OK  ^[[[   10.345237] ACPI: bus type drm_connector registered
0m] Reached targ[   10.350619] mpt3sas version 52.100.00.00 loaded
et ^[[0;1;39mSyst[   10.357048] mpt3sas_cm0: 63 BIT PCI BUS DMA ADDRESSING SUPPORTED, total mem (262592960 kB)
em Initializatio[   10.366071] mgag200 0000:c3:00.0: vgaarb: deactivate vga console
n^[[0m.
[   10.379527] [drm] Initialized mgag200 1.0.0 for 0000:c3:00.0 on minor 0
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork^[[0m.
[   10.390495] fbcon: mgag200drmfb (fb0) is primary device
[   10.390497] fbcon: Deferring console take-over
[   10.402031] mgag200 0000:c3:00.0: [drm] fb0: mgag200drmfb frame buffer device
[   10.420448] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   10.428477] mpt3sas_cm0: MSI-X vectors supported: 96
[   10.433441] 	 no of cores: 128, max_msix_vectors: -1
[   10.438406] mpt3sas_cm0:  0 96 96
         Starting ^[[0;1;39mdracut initqueue hook[   10.445593] mpt3sas_cm0: High IOPs queues : disabled
^[[0m...
[   10.450842] mpt3sas0-msix0: PCI-MSI-X enabled: IRQ 108
[   10.456762] mpt3sas0-msix1: PCI-MSI-X enabled: IRQ 109
[   10.461903] mpt3sas0-msix2: PCI-MSI-X enabled: IRQ 110
[   10.461904] mpt3sas0-msix3: PCI-MSI-X enabled: IRQ 111
[   10.461906] mpt3sas0-msix4: PCI-MSI-X enabled: IRQ 112
[   10.461907] mpt3sas0-msix5: PCI-MSI-X enabled: IRQ 113
[   10.461909] mpt3sas0-msix6: PCI-MSI-X enabled: IRQ 114
[   10.487606] mpt3sas0-msix7: PCI-MSI-X enabled: IRQ 115
[   10.487608] mpt3sas0-msix8: PCI-MSI-X enabled: IRQ 116
[   10.487609] mpt3sas0-msix9: PCI-MSI-X enabled: IRQ 117
[   10.487610] mpt3sas0-msix10: PCI-MSI-X enabled: IRQ 118
[   10.487611] mpt3sas0-msix11: PCI-MSI-X enabled: IRQ 119
[   10.487612] mpt3sas0-msix12: PCI-MSI-X enabled: IRQ 120
[   10.487614] mpt3sas0-msix13: PCI-MSI-X enabled: IRQ 121
[   10.487615] mpt3sas0-msix14: PCI-MSI-X enabled: IRQ 122
[   10.487617] mpt3sas0-msix15: PCI-MSI-X enabled: IRQ 123
         Startin[   10.534390] mpt3sas0-msix16: PCI-MSI-X enabled: IRQ 124
g ^[[0;1;39mShow [   10.540994] mpt3sas0-msix17: PCI-MSI-X enabled: IRQ 125
[   10.540995] mpt3sas0-msix18: PCI-MSI-X enabled: IRQ 126
Plymouth Boot Sc[   10.540997] mpt3sas0-msix19: PCI-MSI-X enabled: IRQ 127
[   10.540998] mpt3sas0-msix20: PCI-MSI-X enabled: IRQ 128
reen^[[0m...
[   10.540999] mpt3sas0-msix21: PCI-MSI-X enabled: IRQ 129
[   10.541001] mpt3sas0-msix22: PCI-MSI-X enabled: IRQ 130
[   10.541002] mpt3sas0-msix23: PCI-MSI-X enabled: IRQ 131
[^[[0;32m  OK  ^[[[   10.541004] mpt3sas0-msix24: PCI-MSI-X enabled: IRQ 132
[   10.541005] mpt3sas0-msix25: PCI-MSI-X enabled: IRQ 133
0m] Started ^[[0;[   10.541006] mpt3sas0-msix26: PCI-MSI-X enabled: IRQ 134
[   10.541007] mpt3sas0-msix27: PCI-MSI-X enabled: IRQ 135
1;39mShow Plymou[   10.541009] mpt3sas0-msix28: PCI-MSI-X enabled: IRQ 136
[   10.541010] mpt3sas0-msix29: PCI-MSI-X enabled: IRQ 137
th Boot Screen^[[[   10.541011] mpt3sas0-msix30: PCI-MSI-X enabled: IRQ 138
[   10.541012] mpt3sas0-msix31: PCI-MSI-X enabled: IRQ 139
0m.
[   10.541014] mpt3sas0-msix32: PCI-MSI-X enabled: IRQ 140
[   10.541015] mpt3sas0-msix33: PCI-MSI-X enabled: IRQ 141
[   10.541016] mpt3sas0-msix34: PCI-MSI-X enabled: IRQ 142
[   10.541017] mpt3sas0-msix35: PCI-MSI-X enabled: IRQ 143
[   10.541018] mpt3sas0-msix36: PCI-MSI-X enabled: IRQ 144
[   10.541020] mpt3sas0-msix37: PCI-MSI-X enabled: IRQ 145
[   10.541021] mpt3sas0-msix38: PCI-MSI-X enabled: IRQ 146
[   10.541022] mpt3sas0-msix39: PCI-MSI-X enabled: IRQ 147
[   10.541024] mpt3sas0-msix40: PCI-MSI-X enabled: IRQ 148
[   10.541025] mpt3sas0-msix41: PCI-MSI-X enabled: IRQ 149
[   10.541026] mpt3sas0-msix42: PCI-MSI-X enabled: IRQ 150
[   10.541028] mpt3sas0-msix43: PCI-MSI-X enabled: IRQ 151
[   10.541029] mpt3sas0-msix44: PCI-MSI-X enabled: IRQ 152
[   10.541030] mpt3sas0-msix45: PCI-MSI-X enabled: IRQ 153
[   10.541031] mpt3sas0-msix46: PCI-MSI-X enabled: IRQ 154
[   10.541033] mpt3sas0-msix47: PCI-MSI-X enabled: IRQ 155
[   10.712970] mpt3sas0-msix48: PCI-MSI-X enabled: IRQ 156
[   10.712971] mpt3sas0-msix49: PCI-MSI-X enabled: IRQ 157
[   10.712973] mpt3sas0-msix50: PCI-MSI-X enabled: IRQ 158
[   10.712974] mpt3sas0-msix51: PCI-MSI-X enabled: IRQ 159
[^[[0;32m  OK  ^[[[   10.712976] mpt3sas0-msix52: PCI-MSI-X enabled: IRQ 160
0m] Started ^[[0;[   10.740498] mpt3sas0-msix53: PCI-MSI-X enabled: IRQ 161
1;39mForward Pas[   10.740500] mpt3sas0-msix54: PCI-MSI-X enabled: IRQ 162
[   10.740502] mpt3sas0-msix55: PCI-MSI-X enabled: IRQ 163
sword Requests t[   10.740503] mpt3sas0-msix56: PCI-MSI-X enabled: IRQ 164
[   10.740504] mpt3sas0-msix57: PCI-MSI-X enabled: IRQ 165
o Plymouth Direc[   10.740506] mpt3sas0-msix58: PCI-MSI-X enabled: IRQ 166
[   10.740507] mpt3sas0-msix59: PCI-MSI-X enabled: IRQ 167
tory Watch^[[0m.\r[   10.740508] mpt3sas0-msix60: PCI-MSI-X enabled: IRQ 168

[^[[0;32m  OK  [   10.740510] mpt3sas0-msix61: PCI-MSI-X enabled: IRQ 169
[   10.740511] mpt3sas0-msix62: PCI-MSI-X enabled: IRQ 170
^[[0m] Reached ta[   10.740512] mpt3sas0-msix63: PCI-MSI-X enabled: IRQ 171
[   10.740513] mpt3sas0-msix64: PCI-MSI-X enabled: IRQ 172
rget ^[[0;1;39mPa[   10.740515] mpt3sas0-msix65: PCI-MSI-X enabled: IRQ 173
th Units^[[0m.
[   10.740516] mpt3sas0-msix66: PCI-MSI-X enabled: IRQ 174
[   10.740517] mpt3sas0-msix67: PCI-MSI-X enabled: IRQ 175
[   10.740519] mpt3sas0-msix68: PCI-MSI-X enabled: IRQ 176
[   10.740520] mpt3sas0-msix69: PCI-MSI-X enabled: IRQ 177
[   10.740521] mpt3sas0-msix70: PCI-MSI-X enabled: IRQ 178
[   10.740523] mpt3sas0-msix71: PCI-MSI-X enabled: IRQ 179
[   10.740524] mpt3sas0-msix72: PCI-MSI-X enabled: IRQ 180
[   10.740525] mpt3sas0-msix73: PCI-MSI-X enabled: IRQ 181
[   10.740527] mpt3sas0-msix74: PCI-MSI-X enabled: IRQ 182
[   10.867891] mpt3sas0-msix75: PCI-MSI-X enabled: IRQ 183
[   10.867893] mpt3sas0-msix76: PCI-MSI-X enabled: IRQ 184
[   10.867894] mpt3sas0-msix77: PCI-MSI-X enabled: IRQ 185
[   10.867896] mpt3sas0-msix78: PCI-MSI-X enabled: IRQ 186
[^[[0;32m  OK  ^[[[   10.867898] mpt3sas0-msix79: PCI-MSI-X enabled: IRQ 187
0m] Reached targ[   10.867900] mpt3sas0-msix80: PCI-MSI-X enabled: IRQ 188
et ^[[0;1;39mBasi[   10.902017] mpt3sas0-msix81: PCI-MSI-X enabled: IRQ 189
c System^[[0m.
[   10.908632] mpt3sas0-msix82: PCI-MSI-X enabled: IRQ 190
[   10.915245] mpt3sas0-msix83: PCI-MSI-X enabled: IRQ 191
[   10.920471] mpt3sas0-msix84: PCI-MSI-X enabled: IRQ 192
[   10.925696] mpt3sas0-msix85: PCI-MSI-X enabled: IRQ 193
[   10.930920] mpt3sas0-msix86: PCI-MSI-X enabled: IRQ 194
[   10.936149] mpt3sas0-msix87: PCI-MSI-X enabled: IRQ 195
[   10.941373] mpt3sas0-msix88: PCI-MSI-X enabled: IRQ 196
[   10.946601] mpt3sas0-msix89: PCI-MSI-X enabled: IRQ 197
[   10.951825] mpt3sas0-msix90: PCI-MSI-X enabled: IRQ 198
[   10.957051] mpt3sas0-msix91: PCI-MSI-X enabled: IRQ 199
[   10.962276] mpt3sas0-msix92: PCI-MSI-X enabled: IRQ 200
[   10.967501] mpt3sas0-msix93: PCI-MSI-X enabled: IRQ 201
[   10.972728] mpt3sas0-msix94: PCI-MSI-X enabled: IRQ 202
[   10.977953] mpt3sas0-msix95: PCI-MSI-X enabled: IRQ 203
[   10.983181] mpt3sas_cm0: iomem(0x00000000e2200000), mapped(0x0000000065b9719f), size(65536)
[   10.991526] mpt3sas_cm0: ioport(0x0000000000001000), size(256)
[   11.055339] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   11.063338] mpt3sas_cm0: sending message unit reset !!
[   11.069987] mpt3sas_cm0: message unit reset: SUCCESS
[   11.102718] mpt3sas_cm0: scatter gather: sge_in_main_msg(1), sge_per_chain(7), sge_per_io(128), chains_per_io(19)
[   11.114216] mpt3sas_cm0: request pool(0x0000000025c7d7b7) - dma(0xe0600000): depth(9700), frame_size(128), pool_size(1212 kB)
[   11.150964] mpt3sas_cm0: sense pool(0x0000000033530e5f) - dma(0xdef00000): depth(9463), element_size(96), pool_size (887 kB)
[   11.162277] mpt3sas_cm0: reply pool(0x00000000621a3169) - dma(0xdec00000): depth(9764), frame_size(128), pool_size(1220 kB)
[   11.173415] mpt3sas_cm0: config page(0x00000000019b791f) - dma(0xdebee000): size(512)
[   11.181243] mpt3sas_cm0: Allocated physical memory: size(40437 kB)
[   11.187424] mpt3sas_cm0: Current Controller Queue Depth(9460),Max Controller Queue Depth(9584)
[   11.196029] mpt3sas_cm0: Scatter Gather Elements per IO(128)
[   11.247510] mpt3sas_cm0: _base_display_fwpkg_version: complete
[   11.253347] mpt3sas_cm0: FW Package Ver(16.17.01.00)
[   11.258600] mpt3sas_cm0: LSISAS3008: FWVersion(16.00.11.00), ChipRevision(0x02)
[   11.265908] mpt3sas_cm0: Protocol=(Initiator,Target), Capabilities=(TLR,EEDP,Snapshot Buffer,Diag Trace Buffer,Task Set Full,NCQ)
[   11.277630] scsi host8: Fusion MPT SAS Host
[   11.283660] mpt3sas_cm0: sending port enable !!
[   11.288637] mpt3sas_cm0: hba_port entry: 0000000010245bd6, port: 255 is added to hba_port list
[   11.298376] mpt3sas_cm0: host_add: handle(0x0001), sas_addr(0x52cea7f0be87bf00), phys(8)
[   11.306810] mpt3sas_cm0: handle(0xa) sas_address(0x4433221100000000) port_type(0x1)
[   11.315657] scsi 8:0:0:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.323751] scsi 8:0:0:0: SATA: handle(0x000a), sas_addr(0x4433221100000000), phy(0), device_name(0x500a075131911ad0)
[   11.334349] scsi 8:0:0:0: enclosure logical id (0x52cea7f0be87bf00), slot(1) 
[   11.341482] scsi 8:0:0:0: enclosure level(0x0001), connector name(     )
[   11.348238] scsi 8:0:0:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.356672] scsi 8:0:0:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.371491]  end_device-8:0: add: handle(0x000a), sas_addr(0x4433221100000000)
[   11.378844] mpt3sas_cm0: handle(0xc) sas_address(0x58ce38ee219651a2) port_type(0x1)
[   11.387754] scsi 8:0:1:0: Direct-Access     KIOXIA   KPM6WVUG960G     BD08 PQ: 0 ANSI: 6
[   11.395851] scsi 8:0:1:0: SSP: handle(0x000c), sas_addr(0x58ce38ee219651a2), phy(4), device_name(0x58ce38ee219651a0)
[   11.406359] scsi 8:0:1:0: enclosure logical id (0x52cea7f0be87bf00), slot(0) 
[   11.413493] scsi 8:0:1:0: enclosure level(0x0001), connector name(     )
[   11.420200] scsi 8:0:1:0: qdepth(254), tagged(1), scsi_level(7), cmd_que(1)
[   11.428903]  end_device-8:1: add: handle(0x000c), sas_addr(0x58ce38ee219651a2)
[   11.436242] mpt3sas_cm0: handle(0xb) sas_address(0x4433221106000000) port_type(0x1)
[   11.445019] scsi 8:0:2:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.453115] scsi 8:0:2:0: SATA: handle(0x000b), sas_addr(0x4433221106000000), phy(6), device_name(0x500a075131911a6f)
[   11.463715] scsi 8:0:2:0: enclosure logical id (0x52cea7f0be87bf00), slot(2) 
[   11.470848] scsi 8:0:2:0: enclosure level(0x0001), connector name(     )
[   11.477601] scsi 8:0:2:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.486037] scsi 8:0:2:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.500943]  end_device-8:2: add: handle(0x000b), sas_addr(0x4433221106000000)
[   11.508282] mpt3sas_cm0: port enable: SUCCESS
[   11.512926] sd 8:0:0:0: Attached scsi generic sg0 type 0
[   11.513526] sd 8:0:0:0: [sda] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.518530] sd 8:0:1:0: Attached scsi generic sg1 type 0
[   11.518732] sd 8:0:1:0: [sdb] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.518735] sd 8:0:1:0: [sdb] 4096-byte physical blocks
[   11.518916] sd 8:0:1:0: [sdb] Write Protect is off
[   11.519132] sd 8:0:1:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   11.525815] sd 8:0:0:0: [sda] 4096-byte physical blocks
[   11.531465] sd 8:0:2:0: Attached scsi generic sg2 type 0
[   11.532022] sd 8:0:2:0: [sdc] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.532026] sd 8:0:2:0: [sdc] 4096-byte physical blocks
[   11.534033] sd 8:0:2:0: [sdc] Write Protect is off
[   11.535318] sd 8:0:2:0: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.540726] sd 8:0:0:0: [sda] Write Protect is off
[   11.600026] sd 8:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.645525]  sdb: sdb1 sdb2
[   11.648473] sd 8:0:1:0: [sdb] Attached SCSI disk
[   11.682484]  sdc: sdc1 sdc2
[   11.685422] sd 8:0:2:0: [sdc] Attached SCSI disk
[   11.690118]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7
[   11.695465] sd 8:0:0:0: [sda] Attached SCSI disk
[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39m/dev/mapper/rhel_sharavati-root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut initqueue hook^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m.
         Mounting ^[[0;1;39m/sysroot^[[0m...
[   12.413070] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled
[   12.423501] XFS (dm-1): Mounting V5 Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[   12.447262] XFS (dm-1): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/sysroot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root File System^[[0m.
         Starting ^[[0;1;39mMountpoints Configured in the Real Root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMountpoints Configured in the Real Root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Default Target^[[0m.
         Starting ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
         Starting ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Default Target^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd /usr File System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut initqueue hook^[[0m.
         Starting ^[[0;1;39mPlymouth switch root service^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Va[   12.686267] systemd-journald[1089]: Received SIGTERM from PID 1 (systemd).
riables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mColdplug All udev Devices^[[0m.
         Stopping ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Kernel Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-udev hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut cmdline hook^[[0m.
         Starting ^[[0;1;39mCleanup udev Database^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate System Users^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleanup udev Database^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwitch Root^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPlymouth s[   12.797412] systemd[1]: RTC configured in localtime, applying delta of 330 minutes to system time.
witch root service^[[0m.
         Starting ^[[0;1;39mSwitch Root^[[0m...
[   12.823537] systemd[1]: systemd 252-46.el9_5.3 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)
[   12.856001] systemd[1]: Detected architecture x86-64.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow)^[[0m!

[   12.935742] systemd-rc-local-generator[1707]: /etc/rc.d/rc.local is not marked executable, skipping.
[   13.189562] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[   13.196889] systemd[1]: Stopped Switch Root.
[^[[0;32m  OK  ^[[[   13.201436] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
0m] Stopped ^[[0;[   13.212134] systemd[1]: Created slice Virtual Machine and Container Slice.
1;39mSwitch Root[   13.220512] systemd[1]: Created slice Slice /system/getty.
^[[0m.
[^[[0;32m[   13.227341] systemd[1]: Created slice Slice /system/modprobe.
  OK  ^[[0m] Crea[   13.234486] systemd[1]: Created slice Slice /system/serial-getty.
ted slice ^[[0;1;[   13.241942] systemd[1]: Created slice Slice /system/sshd-keygen.
39mVirtual Machi[   13.249551] systemd[1]: Created slice Slice /system/systemd-fsck.
ne and Container[   13.256738] systemd[1]: Created slice User and Session Slice.
 Slice^[[0m.
[^[[   13.263278] systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
[0;32m  OK  ^[[0m[   13.279621] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
] Created slice [   13.288731] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
^[[0;1;39mSlice /[   13.299337] systemd[1]: Reached target Local Encrypted Volumes.
system/getty^[[0m[   13.306628] systemd[1]: Stopped target Switch Root.
.
[^[[0;32m  OK[   13.312891] systemd[1]: Stopped target Initrd File Systems.
  ^[[0m] Created [   13.319843] systemd[1]: Stopped target Initrd Root File System.
slice ^[[0;1;39mS[   13.327152] systemd[1]: Reached target Local Integrity Protected Volumes.
lice /system/mod[   13.335339] systemd[1]: Reached target Path Units.
probe^[[0m.
[^[[[   13.341509] systemd[1]: Reached target Slice Units.
0;32m  OK  ^[[0m][   13.347769] systemd[1]: Reached target Local Verity Protected Volumes.
 Created slice ^[[   13.355733] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[0;1;39mSlice /s[   13.363804] systemd[1]: Listening on LVM2 poll daemon socket.
ystem/serial-get[   13.370763] systemd[1]: multipathd control socket was skipped because of an unmet condition check (ConditionPathExists=/etc/multipath.conf).
ty^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/sshd-keygen^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;3[   13.413087] systemd[1]: Listening on RPCbind Server Activation Socket.
2m  OK  ^[[0m] Se[   13.420369] systemd[1]: Reached target RPC Port Mapper.
t up automount ^[[   13.428001] systemd[1]: Listening on Process Core Dump Socket.
[0;1;39mArbitrar[   13.434236] systemd[1]: Listening on initctl Compatibility Named Pipe.
y Executa…orma[   13.443197] systemd[1]: Listening on udev Control Socket.
ts File System A[   13.448953] systemd[1]: Listening on udev Kernel Socket.
utomount Point^[[0m.
[^[[0;32m  [   13.456875] systemd[1]: Activating swap /dev/mapper/rhel_sharavati-swap...
OK  ^[[0m] Reache[   13.461796] Adding 7815164k swap on /dev/mapper/rhel_sharavati-swap.  Priority:-2 extents:1 across:7815164k SS
d target ^[[0;1;39mLocal Encrypte[   13.478046] systemd[1]: Mounting Huge Pages File System...
d Volumes^[[0m.\r\r[   13.486104] systemd[1]: Mounting POSIX Message Queue File System...

[^[[0;32m  OK  ^[[   13.493754] systemd[1]: Mounting Kernel Debug File System...
[0m] Stopped tar[   13.500800] systemd[1]: Mounting Kernel Trace File System...
get ^[[0;1;39mSwi[   13.506658] systemd[1]: Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
tch Root^[[0m.
[   13.521491] systemd[1]: iscsi-starter.service was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes).
[^[[0;32m  OK  ^[[0m] Stopped targ[   13.537108] systemd[1]: Starting Create List of Static Device Nodes...
et ^[[0;1;39mInitrd File Systems^[[   13.546127] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[0m.
[^[[0;32m [   13.558998] systemd[1]: Starting Load Kernel Module configfs...
 OK  ^[[0m] Stopp[   13.566288] systemd[1]: Starting Load Kernel Module drm...
ed target ^[[0;1;[   13.573174] systemd[1]: Starting Load Kernel Module fuse...
39mInitrd Root File System^[[0m.\r[   13.581238] systemd[1]: Starting Read and set NIS domainname from /etc/sysconfig/network...

[^[[0;32m  OK  [   13.590136] systemd[1]: plymouth-switch-root.service: Deactivated successfully.
^[[0m] Reached ta[   13.598866] systemd[1]: Stopped Plymouth switch root service.
rget ^[[0;1;39mLo[   13.606027] systemd[1]: systemd-fsck-root.service: Deactivated successfully.
cal Integrity Pr[   13.614352] systemd[1]: Stopped File System Check on Root Device.
otected Volumes^[[   13.621884] systemd[1]: Stopped Journal Service.
[0m.
[^[[0;32m  OK  ^[[0m] Reach[   13.630159] systemd[1]: Starting Journal Service...
ed target ^[[0;1;39mPath Units^[[0[   13.637609] systemd[1]: Starting Load Kernel Modules...
[   13.642743] systemd-journald[1736]: File /run/log/journal/8f37f8055146469d8baec3ad508b0084/system.journal corrupted or uncleanly shut down, renaming and replacing.
m.
[^[[0;32m  OK  ^[[0m] Reached[   13.659805] systemd[1]: Starting Generate network units from Kernel command line...
 target ^[[0;1;39[   13.668521] systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
mSlice Units^[[0m.
[^[[0;32m  OK[   13.689902] systemd[1]: Starting Remount Root and Kernel File Systems...
  ^[[0m] Reached [   13.697881] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
target ^[[0;1;39mLocal Verity Pro[   13.709952] systemd[1]: Starting Coldplug All udev Devices...
tected Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Listen[   13.720205] systemd[1]: Activated swap /dev/mapper/rhel_sharavati-swap.
ing on ^[[0;1;39m[   13.728504] systemd[1]: Started Journal Service.
Device-mapper event daemon FIFOs^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mLVM2 poll daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mRPCbind Server Activation Socket^[[0m.[   13.749476] systemd-journald[1736]: Received client request to flush runtime journal.

[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRPC Port Mapper^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mProcess Core Dump Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39minitctl Compatibility Named Pipe^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
         Activating swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m...
         Mounting ^[[0;1;39mHuge Pages File System^[[0m...
         Mounting ^[[0;1;39mPOSIX Message Queue File System^[[0m...
         Mounting ^[[0;1;39mKernel Debug File System^[[0m...
         Mounting ^[[0;1;39mKernel Trace File System^[[0m...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
         Starting ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module drm^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mJournal Service^[[0m.
         Starting ^[[0;1;39mJournal Service^[[0m...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
         Starting ^[[0;1;39mGenerate network units from Kernel command line^[[0m...
         Starting ^[[0;1;39mRemount Root and Kernel File Systems^[[0m...
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[^[[0;32m  OK  ^[[0m] Activated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mHuge Pages File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mPOSIX Message Queue File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Debug File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Trace File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMonitoring of LVM2 mirror…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module drm^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mR[   13.976778] IPMI message handler: version 39.2
ead and set NIS domainname from [   13.984471] ipmi device interface
/etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mGenerate network units from[   14.001662] ipmi_si: IPMI System Interface driver
 Kernel command [   14.006628] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
line^[[0m.
[^[[0[   14.014322] ipmi_platform: ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 10
;32m  OK  ^[[0m] [   14.022999] ipmi_si: Adding SMBIOS-specified kcs state machine
Finished ^[[0;1;3[   14.030293] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
9mRemount Root a[   14.037550] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca8] regsize 1 spacing 4 irq 10
nd Kernel File S[   14.047098] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
ystems^[[0m.
[^[[   14.056903] ipmi_si: Adding ACPI-specified kcs state machine
[0;32m  OK  ^[[0m[   14.064027] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 10
] Reached target ^[[0;1;39mSwaps^[[   14.077346] pstore: backend 'erst' already in use: ignoring 'efi_pstore'
[0m.
         [   14.077531] input: PC Speaker as /devices/platform/pcspkr/input/input1
Mounting ^[[0;1;3[   14.077786] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
9mFUSE Control F[   14.077790] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
ile System^[[0m..[   14.077881] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
.
         Mou[   14.077884] RAPL PMU: hw unit of domain package 2^-16 Joules
nting ^[[0;1;39mK[   14.077886] RAPL PMU: hw unit of domain core 2^-16 Joules
ernel Configurat[   14.083104] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
ion File System^[[   14.083734] i2c i2c-3: Successfully instantiated SPD at 0x50
[0m...
       [   14.084314] i2c i2c-3: Successfully instantiated SPD at 0x51
[   14.084877] i2c i2c-3: Successfully instantiated SPD at 0x52
  Starting ^[[0;1[   14.162414] i2c i2c-3: Successfully instantiated SPD at 0x53
;39mFlush Journa[   14.169455] i2c i2c-3: Successfully instantiated SPD at 0x54
l to Persistent [   14.176323] i2c i2c-3: Successfully instantiated SPD at 0x55
Storage^[[0m...\r\r[   14.183648] i2c i2c-3: Successfully instantiated SPD at 0x56

         Starti[   14.190591] i2c i2c-3: Successfully instantiated SPD at 0x57
ng ^[[0;1;39mLoad/Save OS Random Seed^[[0m...
         Starting ^[[0;1;39mApply Kernel Variables^[[0m...
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mFUSE Control File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel[   14.221774] ee1004 3-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
 Configuration File System^[[0m.\r[   14.230550] ee1004 3-0051: 512 byte EE1004-compliant SPD EEPROM, read-only

[^[[0;32m  OK  ^[[0m] Finished ^[[   14.239859] kvm_amd: TSC scaling supported
[0;1;39mLoad/Sav[   14.240195] ee1004 3-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
e OS Random Seed[   14.245410] kvm_amd: Nested Virtualization enabled
^[[0m.
[^[[0;32m[   14.245412] kvm_amd: Nested Paging enabled
  OK  ^[[0m] Fini[   14.255339] ee1004 3-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
shed ^[[0;1;39mFl[   14.259840] kvm_amd: LBR virtualization supported
ush Journal to Persistent Storag[   14.281371] ee1004 3-0054: 512 byte EE1004-compliant SPD EEPROM, read-only
e^[[0m.
[^[[0;32m  OK  ^[[0m] Fin[   14.290987] ee1004 3-0055: 512 byte EE1004-compliant SPD EEPROM, read-only
ished ^[[0;1;39mApply Kernel Vari[   14.300643] ee1004 3-0056: 512 byte EE1004-compliant SPD EEPROM, read-only
ables^[[0m.
[^[[0;32m  OK  ^[[0m][   14.310257] ee1004 3-0057: 512 byte EE1004-compliant SPD EEPROM, read-only
 Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
         Starting ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mColdplug All udev Devices^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mLoad/Save RF Kill Switch Status /dev/rfkill Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39m/usr/sbin/lvm vgchange -aa…utoactivation event rhel_sharavati^[[0m.
[   14.512287] ipmi_si IPI0001:00: The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.
[   14.584383] ipmi_si IPI0001:00: Using irq 10
[   14.612665] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20)
[   14.686564] ipmi_si IPI0001:00: IPMI kcs interface initialized
[   14.694985] ipmi_ssif: IPMI SSIF Interface driver
[   14.716988] power_meter ACPI000D:00: Found ACPI power meter.
[^[[0m^[[0;31m*     ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;1;31m*^[[0m^[[0;31m*    ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*   ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
[   17.819806] ccp 0000:46:00.1: SEV-SNP API:1.55 build:22
[   17.875441] ccp 0000:46:00.1: SEV API:1.55 build:22
[   17.882716] kvm_amd: SEV enabled (ASIDs 101 - 509)
[   17.887517] kvm_amd: SEV-ES enabled (ASIDs 1 - 100)
[   17.892399] kvm_amd: SEV-SNP enabled (ASIDs 1 - 100)
[   17.897553] kvm_amd: Virtual VMLOAD VMSAVE supported
[   17.902518] kvm_amd: Virtual GIF supported
[   17.927846] EDAC MC0: Giving out device to module amd64_edac controller F19h: DEV 0000:00:18.3 (INTERRUPT)
[   17.937504] EDAC amd64: F19h detected (node 0).
[   17.942056] EDAC amd64: MC: 0:     0MB 1:     0MB
^[M\r^[[K[ ^[[0;31m*[   17.946779] EDAC amd64: MC: 2: 16384MB 3: 16384MB
^[[0;1;31m*^[[0m^[[[   17.952889] EDAC amd64: MC: 0:     0MB 1:     0MB
0;31m*  ^[[0m] A [   17.958974] EDAC amd64: MC: 2: 16384MB 3: 16384MB
start job is run[   17.965072] EDAC amd64: MC: 0:     0MB 1:     0MB
ning for Wait fo[   17.971157] EDAC amd64: MC: 2: 16384MB 3: 16384MB
r…ice Initiali[   17.977257] EDAC amd64: MC: 0:     0MB 1:     0MB
zation (4s / no [   17.983345] EDAC amd64: MC: 2: 16384MB 3: 16384MB
limit)
[   17.989449] EDAC amd64: MC: 0:     0MB 1:     0MB
[   17.994922] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   17.999654] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.004368] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.009091] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.013806] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.018539] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.023264] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.035693] intel_rapl_common: Found RAPL domain package
[   18.036839] amd_atl: AMD Address Translation Library initialized
[   18.041021] intel_rapl_common: Found RAPL domain core
^[M\r^[[K[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Wait for…ice Initialization (5s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Local File Systems^[[0m.
         Mounting ^[[0;1;39m/boot^[[0m...
      [   18.420097] XFS (sda6): Mounting V5 Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
   Mounting ^[[0;[   18.422129] XFS (dm-0): Mounting V5 Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
1;39m/home^[[0m...
         Starting ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m...
[   18.446919] XFS (sda6): Ending clean mount
[   18.454203] XFS (dm-0): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
         Mounting ^[[0;1;39m/boot/efi^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
         Starting ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Mounting ^[[0;1;39mRPC Pipe File System^[[0m...
         Starting ^[[0;1;39mSecurity Auditing Service^[[0m...
         Starting ^[[0;1;39mRPC Bind^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRPC Bind^[[0m.
[   18.566988] RPC: Registered named UNIX socket transport module.
[   18.572912] RPC: Registered udp transport module.
[   18.577615] RPC: Registered tcp transport module.
[   18.582324] RPC: Registered tcp-with-tls transport module.
[   18.587809] RPC: Registered tcp NFSv4.1 backchannel transport module.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSecurity Auditing Service^[[0m.
         Starting ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mRPC Pipe File System^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mrpc_pipefs.target^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdnf makecache --timer^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily rotation of log files^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUpdates mlocate database every day^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily Cleanup of Temporary Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdaily update of the root trust anchor for DNSSEC^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt interface daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt network daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nodedev daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nwfilter daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt proxy daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt secret daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt storage daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
         Starting ^[[0;1;39mD-Bus System Message Bus^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mBasic System^[[0m.
         Starting ^[[0;1;39mNTP client/server^[[0m...
         Starting ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m...
         Starting ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mirqbalance daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mlibstoragemgmt plug-in server daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mMachine Check Exception Logging Daemon^[[0m.
         Starting ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msshd-keygen.target^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUser and Group Name Lookups^[[0m.
         Starting ^[[0;1;39mUser Login Management^[[0m...
         Starting ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNTP client/server^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Network^[[0m.
         Starting ^[[0;1;39mNetwork Manager^[[0m...
         Starting ^[[0;1;39mHostname Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mHostname Service^[[0m.
         Starting ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork^[[0m.
         Starting ^[[0;1;39mNetwork Manager Wait Online^[[0m...
         Starting ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
         Starting ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m...
         Starting ^[[0;1;39mOpenSSH server daemon^[[0m...
         Starting ^[[0;1;39mDynamic System Tuning Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNFS client services^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mOpenSSH server daemon^[[0m.
         Starting ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
[   22.756332] tg3 0000:c1:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   22.762954] tg3 0000:c1:00.0 eth0: Flow control is off for TX and off for RX
[   22.770007] tg3 0000:c1:00.0 eth0: EEE is disabled
^[M\r^[[K[     ^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[ ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*  ^[[0m] A start job is running for Network …nager Wait Online (12s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mNetwork Manager Wait Online^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork is Online^[[0m.
         Starting ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m...
         Starting ^[[0;1;39mNotify NFS peers of a restart^[[0m...
         Starting ^[[0;1;39mSystem Logging Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNotify NFS peers of a restart^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mCrash recovery kernel arming^[[0m...
         Starting ^[[0;1;39mPermit User Sessions^[[0m...
         Starting ^[[0;1;39mlibvirt QEMU daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDeferred execution scheduler^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mCommand Scheduler^[[0m.
         Starting ^[[0;1;39mHold until boot process finishes up^[[0m...
         Starting ^[[0;1;39mTerminate Plymouth Boot Screen^[[0m...
[^[[0;1;31mFAILED^[[0m] Failed to start ^[[0;1;39mCrash recovery kernel arming^[[0m.
See 'systemctl status kdump.service' for details.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSystem Logging Service^[[0m.
[   25.582890] fbcon: Taking over console
[   25.603367] Console: switching to colour frame buffer device 128x48

Red Hat Enterprise Linux 9.5 (Plow)
Kernel 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e on an x86_64

Activate the web console with: systemctl enable --now cockpit.socket

sharavati login: [   78.669179] /proc/cgroups lists only v1 controllers, use cgroup.controllers of root cgroup for v2 info
[  289.706418] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[  289.778754] systemd-rc-local-generator[3171]: /etc/rc.d/rc.local is not marked executable, skipping.
[  312.138751] virbr0: port 1(t0-Y3I4UV) entered blocking state
[  312.144417] virbr0: port 1(t0-Y3I4UV) entered disabled state
[  312.150126] t0-Y3I4UV: entered allmulticast mode
[  312.154821] t0-Y3I4UV: entered promiscuous mode
[  312.163837] virbr0: port 1(t0-Y3I4UV) entered blocking state
[  312.169505] virbr0: port 1(t0-Y3I4UV) entered listening state
[  314.177173] virbr0: port 1(t0-Y3I4UV) entered learning state
[  316.193129] virbr0: port 1(t0-Y3I4UV) entered forwarding state
[  316.198972] virbr0: topology change detected, propagating
[  338.746156] virbr0: port 1(t0-Y3I4UV) entered disabled state
[  338.753083] t0-Y3I4UV (unregistering): left allmulticast mode
[  338.758854] t0-Y3I4UV (unregistering): left promiscuous mode
[  338.764523] virbr0: port 1(t0-Y3I4UV) entered disabled state
[  339.337061] virbr0: port 1(t0-5UsGJ4) entered blocking state
[  339.342733] virbr0: port 1(t0-5UsGJ4) entered disabled state
[  339.348423] t0-5UsGJ4: entered allmulticast mode
[  339.353121] t0-5UsGJ4: entered promiscuous mode
[  339.362318] virbr0: port 1(t0-5UsGJ4) entered blocking state
[  339.367987] virbr0: port 1(t0-5UsGJ4) entered listening state
[  341.376583] virbr0: port 1(t0-5UsGJ4) entered learning state
[  343.392535] virbr0: port 1(t0-5UsGJ4) entered forwarding state
[  343.398381] virbr0: topology change detected, propagating
[  359.696180] hrtimer: interrupt took 14387 ns
[  365.129836] virbr0: port 1(t0-5UsGJ4) entered disabled state
[  365.136742] t0-5UsGJ4 (unregistering): left allmulticast mode
[  365.142512] t0-5UsGJ4 (unregistering): left promiscuous mode
[  365.148183] virbr0: port 1(t0-5UsGJ4) entered disabled state
[  365.820114] virbr0: port 1(t0-Y632WR) entered blocking state
[  365.825792] virbr0: port 1(t0-Y632WR) entered disabled state
[  365.831502] t0-Y632WR: entered allmulticast mode
[  365.836198] t0-Y632WR: entered promiscuous mode
[  365.845238] virbr0: port 1(t0-Y632WR) entered blocking state
[  365.850901] virbr0: port 1(t0-Y632WR) entered listening state
[  367.872001] virbr0: port 1(t0-Y632WR) entered learning state
[  369.887956] virbr0: port 1(t0-Y632WR) entered forwarding state
[  369.893794] virbr0: topology change detected, propagating
[  391.761215] virbr0: port 1(t0-Y632WR) entered disabled state
[  391.767932] t0-Y632WR (unregistering): left allmulticast mode
[  391.773697] t0-Y632WR (unregistering): left promiscuous mode
[  391.779365] virbr0: port 1(t0-Y632WR) entered disabled state
[  392.425985] virbr0: port 1(t0-J1Z3wK) entered blocking state
[  392.431665] virbr0: port 1(t0-J1Z3wK) entered disabled state
[  392.437378] t0-J1Z3wK: entered allmulticast mode
[  392.442099] t0-J1Z3wK: entered promiscuous mode
[  392.451959] virbr0: port 1(t0-J1Z3wK) entered blocking state
[  392.457618] virbr0: port 1(t0-J1Z3wK) entered listening state
[  394.463418] virbr0: port 1(t0-J1Z3wK) entered learning state
[  396.483368] virbr0: port 1(t0-J1Z3wK) entered forwarding state
[  396.489211] virbr0: topology change detected, propagating
[  418.421604] virbr0: port 1(t0-J1Z3wK) entered disabled state
[  418.428798] t0-J1Z3wK (unregistering): left allmulticast mode
[  418.434554] t0-J1Z3wK (unregistering): left promiscuous mode
[  418.440229] virbr0: port 1(t0-J1Z3wK) entered disabled state
[  419.078324] virbr0: port 1(t0-1vbr0M) entered blocking state
[  419.084005] virbr0: port 1(t0-1vbr0M) entered disabled state
[  419.089695] t0-1vbr0M: entered allmulticast mode
[  419.094393] t0-1vbr0M: entered promiscuous mode
[  419.103689] virbr0: port 1(t0-1vbr0M) entered blocking state
[  419.109357] virbr0: port 1(t0-1vbr0M) entered listening state
[  421.118831] virbr0: port 1(t0-1vbr0M) entered learning state
[  423.134787] virbr0: port 1(t0-1vbr0M) entered forwarding state
[  423.140628] virbr0: topology change detected, propagating
[  445.096045] virbr0: port 1(t0-1vbr0M) entered disabled state
[  445.102680] t0-1vbr0M (unregistering): left allmulticast mode
[  445.108430] t0-1vbr0M (unregistering): left promiscuous mode
[  445.114099] virbr0: port 1(t0-1vbr0M) entered disabled state
[  445.766267] virbr0: port 1(t0-OCPXM1) entered blocking state
[  445.771940] virbr0: port 1(t0-OCPXM1) entered disabled state
[  445.777655] t0-OCPXM1: entered allmulticast mode
[  445.782364] t0-OCPXM1: entered promiscuous mode
[  445.791716] virbr0: port 1(t0-OCPXM1) entered blocking state
[  445.797380] virbr0: port 1(t0-OCPXM1) entered listening state
[  447.806277] virbr0: port 1(t0-OCPXM1) entered learning state
[  449.822231] virbr0: port 1(t0-OCPXM1) entered forwarding state
[  449.828078] virbr0: topology change detected, propagating
[  471.895613] virbr0: port 1(t0-OCPXM1) entered disabled state
[  471.902281] t0-OCPXM1 (unregistering): left allmulticast mode
[  471.908047] t0-OCPXM1 (unregistering): left promiscuous mode
[  471.913725] virbr0: port 1(t0-OCPXM1) entered disabled state
[  472.574228] virbr0: port 1(t0-KxApS6) entered blocking state
[  472.579895] virbr0: port 1(t0-KxApS6) entered disabled state
[  472.585585] t0-KxApS6: entered allmulticast mode
[  472.590281] t0-KxApS6: entered promiscuous mode
[  472.599382] virbr0: port 1(t0-KxApS6) entered blocking state
[  472.605043] virbr0: port 1(t0-KxApS6) entered listening state
[  474.625709] virbr0: port 1(t0-KxApS6) entered learning state
[  476.641666] virbr0: port 1(t0-KxApS6) entered forwarding state
[  476.647503] virbr0: topology change detected, propagating
[  498.763614] virbr0: port 1(t0-KxApS6) entered disabled state
[  498.770858] t0-KxApS6 (unregistering): left allmulticast mode
[  498.776614] t0-KxApS6 (unregistering): left promiscuous mode
[  498.782288] virbr0: port 1(t0-KxApS6) entered disabled state
[  499.458602] virbr0: port 1(t0-XxSG60) entered blocking state
[  499.464271] virbr0: port 1(t0-XxSG60) entered disabled state
[  499.470005] t0-XxSG60: entered allmulticast mode
[  499.474704] t0-XxSG60: entered promiscuous mode
[  499.483892] virbr0: port 1(t0-XxSG60) entered blocking state
[  499.489558] virbr0: port 1(t0-XxSG60) entered listening state
[  501.505412] virbr0: port 1(t0-XxSG60) entered learning state
[  503.517369] virbr0: port 1(t0-XxSG60) entered forwarding state
[  503.523213] virbr0: topology change detected, propagating
[  525.711420] virbr0: port 1(t0-XxSG60) entered disabled state
[  525.718313] t0-XxSG60 (unregistering): left allmulticast mode
[  525.724064] t0-XxSG60 (unregistering): left promiscuous mode
[  525.729739] virbr0: port 1(t0-XxSG60) entered disabled state
[  526.373581] virbr0: port 1(t0-Asa074) entered blocking state
[  526.379248] virbr0: port 1(t0-Asa074) entered disabled state
[  526.384969] t0-Asa074: entered allmulticast mode
[  526.389663] t0-Asa074: entered promiscuous mode
[  526.399009] virbr0: port 1(t0-Asa074) entered blocking state
[  526.404677] virbr0: port 1(t0-Asa074) entered listening state
[  528.416837] virbr0: port 1(t0-Asa074) entered learning state
[  530.428792] virbr0: port 1(t0-Asa074) entered forwarding state
[  530.434637] virbr0: topology change detected, propagating
[  552.666840] virbr0: port 1(t0-Asa074) entered disabled state
[  552.673856] t0-Asa074 (unregistering): left allmulticast mode
[  552.679614] t0-Asa074 (unregistering): left promiscuous mode
[  552.685286] virbr0: port 1(t0-Asa074) entered disabled state
[  553.314456] virbr0: port 1(t0-CjcUmz) entered blocking state
[  553.320130] virbr0: port 1(t0-CjcUmz) entered disabled state
[  553.325852] t0-CjcUmz: entered allmulticast mode
[  553.330566] t0-CjcUmz: entered promiscuous mode
[  553.339799] virbr0: port 1(t0-CjcUmz) entered blocking state
[  553.345461] virbr0: port 1(t0-CjcUmz) entered listening state
[  555.356259] virbr0: port 1(t0-CjcUmz) entered learning state
[  557.372220] virbr0: port 1(t0-CjcUmz) entered forwarding state
[  557.378066] virbr0: topology change detected, propagating
[  579.566046] virbr0: port 1(t0-CjcUmz) entered disabled state
[  579.573226] t0-CjcUmz (unregistering): left allmulticast mode
[  579.578988] t0-CjcUmz (unregistering): left promiscuous mode
[  579.584664] virbr0: port 1(t0-CjcUmz) entered disabled state
[  583.887012] virbr0: port 1(t0-8bATjM) entered blocking state
[  583.892703] virbr0: port 1(t0-8bATjM) entered disabled state
[  583.898405] t0-8bATjM: entered allmulticast mode
[  583.903113] t0-8bATjM: entered promiscuous mode
[  583.912127] virbr0: port 1(t0-8bATjM) entered blocking state
[  583.917794] virbr0: port 1(t0-8bATjM) entered listening state
[  585.947622] virbr0: port 1(t0-8bATjM) entered learning state
[  587.963580] virbr0: port 1(t0-8bATjM) entered forwarding state
[  587.969424] virbr0: topology change detected, propagating
[  860.479200] virbr0: port 1(t0-8bATjM) entered disabled state
[  860.486047] t0-8bATjM (unregistering): left allmulticast mode
[  860.491814] t0-8bATjM (unregistering): left promiscuous mode
[  860.497483] virbr0: port 1(t0-8bATjM) entered disabled state
[  864.880693] virbr0: port 1(t0-AuZOdO) entered blocking state
[  864.886370] virbr0: port 1(t0-AuZOdO) entered disabled state
[  864.892074] t0-AuZOdO: entered allmulticast mode
[  864.896773] t0-AuZOdO: entered promiscuous mode
[  864.905746] virbr0: port 1(t0-AuZOdO) entered blocking state
[  864.911413] virbr0: port 1(t0-AuZOdO) entered listening state
[  866.937636] virbr0: port 1(t0-AuZOdO) entered learning state
[  868.949591] virbr0: port 1(t0-AuZOdO) entered forwarding state
[  868.955433] virbr0: topology change detected, propagating
[  891.982803] virbr0: port 1(t0-AuZOdO) entered disabled state
[  891.989559] t0-AuZOdO (unregistering): left allmulticast mode
[  891.995310] t0-AuZOdO (unregistering): left promiscuous mode
[  892.000980] virbr0: port 1(t0-AuZOdO) entered disabled state
[  892.620116] virbr0: port 1(t0-9GplTv) entered blocking state
[  892.625789] virbr0: port 1(t0-9GplTv) entered disabled state
[  892.631492] t0-9GplTv: entered allmulticast mode
[  892.636197] t0-9GplTv: entered promiscuous mode
[  892.645584] virbr0: port 1(t0-9GplTv) entered blocking state
[  892.651247] virbr0: port 1(t0-9GplTv) entered listening state
[  894.677048] virbr0: port 1(t0-9GplTv) entered learning state
[  896.697003] virbr0: port 1(t0-9GplTv) entered forwarding state
[  896.702842] virbr0: topology change detected, propagating
[  919.706385] virbr0: port 1(t0-9GplTv) entered disabled state
[  919.713127] t0-9GplTv (unregistering): left allmulticast mode
[  919.718882] t0-9GplTv (unregistering): left promiscuous mode
[  919.724549] virbr0: port 1(t0-9GplTv) entered disabled state
[  920.360129] virbr0: port 1(t0-FPFvlM) entered blocking state
[  920.365809] virbr0: port 1(t0-FPFvlM) entered disabled state
[  920.371517] t0-FPFvlM: entered allmulticast mode
[  920.376210] t0-FPFvlM: entered promiscuous mode
[  920.385511] virbr0: port 1(t0-FPFvlM) entered blocking state
[  920.391172] virbr0: port 1(t0-FPFvlM) entered listening state
[  922.424457] virbr0: port 1(t0-FPFvlM) entered learning state
[  924.436418] virbr0: port 1(t0-FPFvlM) entered forwarding state
[  924.442257] virbr0: topology change detected, propagating
[  947.467857] virbr0: port 1(t0-FPFvlM) entered disabled state
[  947.474834] t0-FPFvlM (unregistering): left allmulticast mode
[  947.480606] t0-FPFvlM (unregistering): left promiscuous mode
[  947.486283] virbr0: port 1(t0-FPFvlM) entered disabled state
[  948.158702] virbr0: port 1(t0-FgcuHq) entered blocking state
[  948.164379] virbr0: port 1(t0-FgcuHq) entered disabled state
[  948.170091] t0-FgcuHq: entered allmulticast mode
[  948.174788] t0-FgcuHq: entered promiscuous mode
[  948.184388] virbr0: port 1(t0-FgcuHq) entered blocking state
[  948.190054] virbr0: port 1(t0-FgcuHq) entered listening state
[  950.195875] virbr0: port 1(t0-FgcuHq) entered learning state
[  952.211832] virbr0: port 1(t0-FgcuHq) entered forwarding state
[  952.217675] virbr0: topology change detected, propagating
[  975.240962] virbr0: port 1(t0-FgcuHq) entered disabled state
[  975.247833] t0-FgcuHq (unregistering): left allmulticast mode
[  975.253602] t0-FgcuHq (unregistering): left promiscuous mode
[  975.259276] virbr0: port 1(t0-FgcuHq) entered disabled state
[  975.962760] virbr0: port 1(t0-UL2Gru) entered blocking state
[  975.968442] virbr0: port 1(t0-UL2Gru) entered disabled state
[  975.974133] t0-UL2Gru: entered allmulticast mode
[  975.978838] t0-UL2Gru: entered promiscuous mode
[  975.988194] virbr0: port 1(t0-UL2Gru) entered blocking state
[  975.993861] virbr0: port 1(t0-UL2Gru) entered listening state
[  978.003280] virbr0: port 1(t0-UL2Gru) entered learning state
[  980.019249] virbr0: port 1(t0-UL2Gru) entered forwarding state
[  980.025093] virbr0: topology change detected, propagating
[ 1003.084375] virbr0: port 1(t0-UL2Gru) entered disabled state
[ 1003.091306] t0-UL2Gru (unregistering): left allmulticast mode
[ 1003.097057] t0-UL2Gru (unregistering): left promiscuous mode
[ 1003.102726] virbr0: port 1(t0-UL2Gru) entered disabled state
[ 1003.771378] virbr0: port 1(t0-AdxEfB) entered blocking state
[ 1003.777057] virbr0: port 1(t0-AdxEfB) entered disabled state
[ 1003.782775] t0-AdxEfB: entered allmulticast mode
[ 1003.787474] t0-AdxEfB: entered promiscuous mode
[ 1003.796904] virbr0: port 1(t0-AdxEfB) entered blocking state
[ 1003.802569] virbr0: port 1(t0-AdxEfB) entered listening state
[ 1005.814698] virbr0: port 1(t0-AdxEfB) entered learning state
[ 1007.826657] virbr0: port 1(t0-AdxEfB) entered forwarding state
[ 1007.832502] virbr0: topology change detected, propagating
[ 1030.912531] virbr0: port 1(t0-AdxEfB) entered disabled state
[ 1030.919405] t0-AdxEfB (unregistering): left allmulticast mode
[ 1030.925159] t0-AdxEfB (unregistering): left promiscuous mode
[ 1030.930829] virbr0: port 1(t0-AdxEfB) entered disabled state
[ 1031.573216] virbr0: port 1(t0-nmEX0q) entered blocking state
[ 1031.578892] virbr0: port 1(t0-nmEX0q) entered disabled state
[ 1031.584596] t0-nmEX0q: entered allmulticast mode
[ 1031.589299] t0-nmEX0q: entered promiscuous mode
[ 1031.598409] virbr0: port 1(t0-nmEX0q) entered blocking state
[ 1031.604073] virbr0: port 1(t0-nmEX0q) entered listening state
[ 1033.618110] virbr0: port 1(t0-nmEX0q) entered learning state
[ 1035.634070] virbr0: port 1(t0-nmEX0q) entered forwarding state
[ 1035.639911] virbr0: topology change detected, propagating
[ 1058.699221] virbr0: port 1(t0-nmEX0q) entered disabled state
[ 1058.705783] t0-nmEX0q (unregistering): left allmulticast mode
[ 1058.711532] t0-nmEX0q (unregistering): left promiscuous mode
[ 1058.717205] virbr0: port 1(t0-nmEX0q) entered disabled state
[ 1059.348674] virbr0: port 1(t0-LBnpxi) entered blocking state
[ 1059.354343] virbr0: port 1(t0-LBnpxi) entered disabled state
[ 1059.360041] t0-LBnpxi: entered allmulticast mode
[ 1059.364731] t0-LBnpxi: entered promiscuous mode
[ 1059.374028] virbr0: port 1(t0-LBnpxi) entered blocking state
[ 1059.379699] virbr0: port 1(t0-LBnpxi) entered listening state
[ 1061.393522] virbr0: port 1(t0-LBnpxi) entered learning state
[ 1063.409475] virbr0: port 1(t0-LBnpxi) entered forwarding state
[ 1063.415318] virbr0: topology change detected, propagating
[ 1086.490219] virbr0: port 1(t0-LBnpxi) entered disabled state
[ 1086.497282] t0-LBnpxi (unregistering): left allmulticast mode
[ 1086.503052] t0-LBnpxi (unregistering): left promiscuous mode
[ 1086.508728] virbr0: port 1(t0-LBnpxi) entered disabled state
[ 1087.148639] virbr0: port 1(t0-RtPm4y) entered blocking state
[ 1087.154317] virbr0: port 1(t0-RtPm4y) entered disabled state
[ 1087.160025] t0-RtPm4y: entered allmulticast mode
[ 1087.164727] t0-RtPm4y: entered promiscuous mode
[ 1087.174014] virbr0: port 1(t0-RtPm4y) entered blocking state
[ 1087.179680] virbr0: port 1(t0-RtPm4y) entered listening state
[ 1089.204938] virbr0: port 1(t0-RtPm4y) entered learning state
[ 1091.216896] virbr0: port 1(t0-RtPm4y) entered forwarding state
[ 1091.222736] virbr0: topology change detected, propagating
[ 1114.842929] virbr0: port 1(t0-RtPm4y) entered disabled state
[ 1114.849957] t0-RtPm4y (unregistering): left allmulticast mode
[ 1114.855711] t0-RtPm4y (unregistering): left promiscuous mode
[ 1114.861382] virbr0: port 1(t0-RtPm4y) entered disabled state
[ 1115.534539] virbr0: port 1(t0-GgNw5b) entered blocking state
[ 1115.540216] virbr0: port 1(t0-GgNw5b) entered disabled state
[ 1115.545907] t0-GgNw5b: entered allmulticast mode
[ 1115.550603] t0-GgNw5b: entered promiscuous mode
[ 1115.559736] virbr0: port 1(t0-GgNw5b) entered blocking state
[ 1115.565404] virbr0: port 1(t0-GgNw5b) entered listening state
[ 1117.588356] virbr0: port 1(t0-GgNw5b) entered learning state
[ 1119.600307] virbr0: port 1(t0-GgNw5b) entered forwarding state
[ 1119.606146] virbr0: topology change detected, propagating
[ 1143.131329] virbr0: port 1(t0-GgNw5b) entered disabled state
[ 1143.138148] t0-GgNw5b (unregistering): left allmulticast mode
[ 1143.143915] t0-GgNw5b (unregistering): left promiscuous mode
[ 1143.149586] virbr0: port 1(t0-GgNw5b) entered disabled state
[ 1147.446215] virbr0: port 1(t0-EowzuD) entered blocking state
[ 1147.451899] virbr0: port 1(t0-EowzuD) entered disabled state
[ 1147.457601] t0-EowzuD: entered allmulticast mode
[ 1147.462321] t0-EowzuD: entered promiscuous mode
[ 1147.471459] virbr0: port 1(t0-EowzuD) entered blocking state
[ 1147.477126] virbr0: port 1(t0-EowzuD) entered listening state
[ 1149.487682] virbr0: port 1(t0-EowzuD) entered learning state
[ 1151.503650] virbr0: port 1(t0-EowzuD) entered forwarding state
[ 1151.509493] virbr0: topology change detected, propagating
[ 1522.417966] virbr0: port 1(t0-EowzuD) entered disabled state
[ 1522.424844] t0-EowzuD (unregistering): left allmulticast mode
[ 1522.430601] t0-EowzuD (unregistering): left promiscuous mode
[ 1522.436275] virbr0: port 1(t0-EowzuD) entered disabled state
[ 1526.813861] virbr0: port 1(t0-5pjIkd) entered blocking state
[ 1526.819545] virbr0: port 1(t0-5pjIkd) entered disabled state
[ 1526.825268] t0-5pjIkd: entered allmulticast mode
[ 1526.829968] t0-5pjIkd: entered promiscuous mode
[ 1526.839184] virbr0: port 1(t0-5pjIkd) entered blocking state
[ 1526.844848] virbr0: port 1(t0-5pjIkd) entered listening state
[ 1528.871649] virbr0: port 1(t0-5pjIkd) entered learning state
[ 1530.887597] virbr0: port 1(t0-5pjIkd) entered forwarding state
[ 1530.893443] virbr0: topology change detected, propagating
[ 1536.948626] virbr0: port 1(t0-5pjIkd) entered disabled state
[ 1536.955595] t0-5pjIkd (unregistering): left allmulticast mode
[ 1536.961348] t0-5pjIkd (unregistering): left promiscuous mode
[ 1536.967022] virbr0: port 1(t0-5pjIkd) entered disabled state
[ 1537.774236] virbr0: port 1(t0-zteUrF) entered blocking state
[ 1537.779906] virbr0: port 1(t0-zteUrF) entered disabled state
[ 1537.785624] t0-zteUrF: entered allmulticast mode
[ 1537.790347] t0-zteUrF: entered promiscuous mode
[ 1537.799793] virbr0: port 1(t0-zteUrF) entered blocking state
[ 1537.805458] virbr0: port 1(t0-zteUrF) entered listening state
[ 1539.815407] virbr0: port 1(t0-zteUrF) entered learning state
[ 1541.831357] virbr0: port 1(t0-zteUrF) entered forwarding state
[ 1541.837193] virbr0: topology change detected, propagating
[ 1548.005730] virbr0: port 1(t0-zteUrF) entered disabled state
[ 1548.012628] t0-zteUrF (unregistering): left allmulticast mode
[ 1548.018388] t0-zteUrF (unregistering): left promiscuous mode
[ 1548.024079] virbr0: port 1(t0-zteUrF) entered disabled state
[ 1548.846532] virbr0: port 1(t0-9ltey9) entered blocking state
[ 1548.852198] virbr0: port 1(t0-9ltey9) entered disabled state
[ 1548.857902] t0-9ltey9: entered allmulticast mode
[ 1548.862612] t0-9ltey9: entered promiscuous mode
[ 1548.871886] virbr0: port 1(t0-9ltey9) entered blocking state
[ 1548.877554] virbr0: port 1(t0-9ltey9) entered listening state
[ 1550.887175] virbr0: port 1(t0-9ltey9) entered learning state
[ 1552.903130] virbr0: port 1(t0-9ltey9) entered forwarding state
[ 1552.908977] virbr0: topology change detected, propagating
[ 1559.032093] virbr0: port 1(t0-9ltey9) entered disabled state
[ 1559.038894] t0-9ltey9 (unregistering): left allmulticast mode
[ 1559.044648] t0-9ltey9 (unregistering): left promiscuous mode
[ 1559.050322] virbr0: port 1(t0-9ltey9) entered disabled state
[ 1559.879678] virbr0: port 1(t0-X1MWE2) entered blocking state
[ 1559.885344] virbr0: port 1(t0-X1MWE2) entered disabled state
[ 1559.891031] t0-X1MWE2: entered allmulticast mode
[ 1559.895733] t0-X1MWE2: entered promiscuous mode
[ 1559.905158] virbr0: port 1(t0-X1MWE2) entered blocking state
[ 1559.910825] virbr0: port 1(t0-X1MWE2) entered listening state
[ 1561.930930] virbr0: port 1(t0-X1MWE2) entered learning state
[ 1563.942888] virbr0: port 1(t0-X1MWE2) entered forwarding state
[ 1563.948732] virbr0: topology change detected, propagating
[ 1570.132196] virbr0: port 1(t0-X1MWE2) entered disabled state
[ 1570.138976] t0-X1MWE2 (unregistering): left allmulticast mode
[ 1570.144726] t0-X1MWE2 (unregistering): left promiscuous mode
[ 1570.150390] virbr0: port 1(t0-X1MWE2) entered disabled state
[ 1570.948678] virbr0: port 1(t0-hiPEtr) entered blocking state
[ 1570.954354] virbr0: port 1(t0-hiPEtr) entered disabled state
[ 1570.960063] t0-hiPEtr: entered allmulticast mode
[ 1570.964766] t0-hiPEtr: entered promiscuous mode
[ 1570.974195] virbr0: port 1(t0-hiPEtr) entered blocking state
[ 1570.979857] virbr0: port 1(t0-hiPEtr) entered listening state
[ 1572.998698] virbr0: port 1(t0-hiPEtr) entered learning state
[ 1575.014644] virbr0: port 1(t0-hiPEtr) entered forwarding state
[ 1575.020488] virbr0: topology change detected, propagating
[ 1581.136403] virbr0: port 1(t0-hiPEtr) entered disabled state
[ 1581.143279] t0-hiPEtr (unregistering): left allmulticast mode
[ 1581.149081] t0-hiPEtr (unregistering): left promiscuous mode
[ 1581.154752] virbr0: port 1(t0-hiPEtr) entered disabled state
[ 1581.962409] virbr0: port 1(t0-gSUSsx) entered blocking state
[ 1581.968083] virbr0: port 1(t0-gSUSsx) entered disabled state
[ 1581.973791] t0-gSUSsx: entered allmulticast mode
[ 1581.978511] t0-gSUSsx: entered promiscuous mode
[ 1581.987544] virbr0: port 1(t0-gSUSsx) entered blocking state
[ 1581.993204] virbr0: port 1(t0-gSUSsx) entered listening state
[ 1584.006456] virbr0: port 1(t0-gSUSsx) entered learning state
[ 1586.022408] virbr0: port 1(t0-gSUSsx) entered forwarding state
[ 1586.028254] virbr0: topology change detected, propagating
[ 1592.043379] virbr0: port 1(t0-gSUSsx) entered disabled state
[ 1592.050354] t0-gSUSsx (unregistering): left allmulticast mode
[ 1592.056112] t0-gSUSsx (unregistering): left promiscuous mode
[ 1592.061798] virbr0: port 1(t0-gSUSsx) entered disabled state
[ 1592.870476] virbr0: port 1(t0-YT4S2v) entered blocking state
[ 1592.876148] virbr0: port 1(t0-YT4S2v) entered disabled state
[ 1592.881833] t0-YT4S2v: entered allmulticast mode
[ 1592.886532] t0-YT4S2v: entered promiscuous mode
[ 1592.895901] virbr0: port 1(t0-YT4S2v) entered blocking state
[ 1592.901564] virbr0: port 1(t0-YT4S2v) entered listening state
[ 1594.918220] virbr0: port 1(t0-YT4S2v) entered learning state
[ 1596.934166] virbr0: port 1(t0-YT4S2v) entered forwarding state
[ 1596.940003] virbr0: topology change detected, propagating
[ 1603.131051] virbr0: port 1(t0-YT4S2v) entered disabled state
[ 1603.137897] t0-YT4S2v (unregistering): left allmulticast mode
[ 1603.143657] t0-YT4S2v (unregistering): left promiscuous mode
[ 1603.149326] virbr0: port 1(t0-YT4S2v) entered disabled state
[ 1603.946032] virbr0: port 1(t0-GLAfPH) entered blocking state
[ 1603.951700] virbr0: port 1(t0-GLAfPH) entered disabled state
[ 1603.957384] t0-GLAfPH: entered allmulticast mode
[ 1603.962079] t0-GLAfPH: entered promiscuous mode
[ 1603.971467] virbr0: port 1(t0-GLAfPH) entered blocking state
[ 1603.977128] virbr0: port 1(t0-GLAfPH) entered listening state
[ 1605.989973] virbr0: port 1(t0-GLAfPH) entered learning state
[ 1608.005923] virbr0: port 1(t0-GLAfPH) entered forwarding state
[ 1608.011771] virbr0: topology change detected, propagating
[ 1614.030990] virbr0: port 1(t0-GLAfPH) entered disabled state
[ 1614.037815] t0-GLAfPH (unregistering): left allmulticast mode
[ 1614.043581] t0-GLAfPH (unregistering): left promiscuous mode
[ 1614.049254] virbr0: port 1(t0-GLAfPH) entered disabled state
[ 1614.849002] virbr0: port 1(t0-UNVFY1) entered blocking state
[ 1614.854688] virbr0: port 1(t0-UNVFY1) entered disabled state
[ 1614.860401] t0-UNVFY1: entered allmulticast mode
[ 1614.865104] t0-UNVFY1: entered promiscuous mode
[ 1614.874558] virbr0: port 1(t0-UNVFY1) entered blocking state
[ 1614.880220] virbr0: port 1(t0-UNVFY1) entered listening state
[ 1616.905745] virbr0: port 1(t0-UNVFY1) entered learning state
[ 1618.917684] virbr0: port 1(t0-UNVFY1) entered forwarding state
[ 1618.923527] virbr0: topology change detected, propagating
[ 1625.027060] virbr0: port 1(t0-UNVFY1) entered disabled state
[ 1625.033671] t0-UNVFY1 (unregistering): left allmulticast mode
[ 1625.039428] t0-UNVFY1 (unregistering): left promiscuous mode
[ 1625.045102] virbr0: port 1(t0-UNVFY1) entered disabled state
[ 1625.864717] virbr0: port 1(t0-xcVvuI) entered blocking state
[ 1625.870388] virbr0: port 1(t0-xcVvuI) entered disabled state
[ 1625.876087] t0-xcVvuI: entered allmulticast mode
[ 1625.880809] t0-xcVvuI: entered promiscuous mode
[ 1625.890234] virbr0: port 1(t0-xcVvuI) entered blocking state
[ 1625.895896] virbr0: port 1(t0-xcVvuI) entered listening state
[ 1627.909496] virbr0: port 1(t0-xcVvuI) entered learning state
[ 1629.925443] virbr0: port 1(t0-xcVvuI) entered forwarding state
[ 1629.931285] virbr0: topology change detected, propagating
[ 1636.078961] virbr0: port 1(t0-xcVvuI) entered disabled state
[ 1636.085815] t0-xcVvuI (unregistering): left allmulticast mode
[ 1636.091564] t0-xcVvuI (unregistering): left promiscuous mode
[ 1636.097232] virbr0: port 1(t0-xcVvuI) entered disabled state
[ 1640.622669] virbr0: port 1(t0-mTurbG) entered blocking state
[ 1640.628355] virbr0: port 1(t0-mTurbG) entered disabled state
[ 1640.634067] t0-mTurbG: entered allmulticast mode
[ 1640.638761] t0-mTurbG: entered promiscuous mode
[ 1640.647809] virbr0: port 1(t0-mTurbG) entered blocking state
[ 1640.653474] virbr0: port 1(t0-mTurbG) entered listening state
[ 1642.661172] virbr0: port 1(t0-mTurbG) entered learning state
[ 1644.677116] virbr0: port 1(t0-mTurbG) entered forwarding state
[ 1644.682956] virbr0: topology change detected, propagating
[ 1825.502360] virbr0: port 1(t0-mTurbG) entered disabled state
[ 1825.509371] t0-mTurbG (unregistering): left allmulticast mode
[ 1825.515125] t0-mTurbG (unregistering): left promiscuous mode
[ 1825.520799] virbr0: port 1(t0-mTurbG) entered disabled state
[ 1829.985995] virbr0: port 1(t0-K3wgYU) entered blocking state
[ 1829.991671] virbr0: port 1(t0-K3wgYU) entered disabled state
[ 1829.997361] t0-K3wgYU: entered allmulticast mode
[ 1830.002052] t0-K3wgYU: entered promiscuous mode
[ 1830.011005] virbr0: port 1(t0-K3wgYU) entered blocking state
[ 1830.016671] virbr0: port 1(t0-K3wgYU) entered listening state
[ 1832.032991] virbr0: port 1(t0-K3wgYU) entered learning state
[ 1834.048934] virbr0: port 1(t0-K3wgYU) entered forwarding state
[ 1834.054776] virbr0: topology change detected, propagating
[ 1840.178192] virbr0: port 1(t0-K3wgYU) entered disabled state
[ 1840.184881] t0-K3wgYU (unregistering): left allmulticast mode
[ 1840.190638] t0-K3wgYU (unregistering): left promiscuous mode
[ 1840.196304] virbr0: port 1(t0-K3wgYU) entered disabled state
[ 1841.000979] virbr0: port 1(t0-Z06B7c) entered blocking state
[ 1841.006652] virbr0: port 1(t0-Z06B7c) entered disabled state
[ 1841.012344] t0-Z06B7c: entered allmulticast mode
[ 1841.017044] t0-Z06B7c: entered promiscuous mode
[ 1841.026799] virbr0: port 1(t0-Z06B7c) entered blocking state
[ 1841.032461] virbr0: port 1(t0-Z06B7c) entered listening state
[ 1843.044744] virbr0: port 1(t0-Z06B7c) entered learning state
[ 1845.056699] virbr0: port 1(t0-Z06B7c) entered forwarding state
[ 1845.062546] virbr0: topology change detected, propagating
[ 1851.733945] virbr0: port 1(t0-Z06B7c) entered disabled state
[ 1851.741041] t0-Z06B7c (unregistering): left allmulticast mode
[ 1851.746805] t0-Z06B7c (unregistering): left promiscuous mode
[ 1851.752479] virbr0: port 1(t0-Z06B7c) entered disabled state
[ 1852.558332] virbr0: port 1(t0-9o8zz7) entered blocking state
[ 1852.564019] virbr0: port 1(t0-9o8zz7) entered disabled state
[ 1852.569798] t0-9o8zz7: entered allmulticast mode
[ 1852.574495] t0-9o8zz7: entered promiscuous mode
[ 1852.583788] virbr0: port 1(t0-9o8zz7) entered blocking state
[ 1852.589450] virbr0: port 1(t0-9o8zz7) entered listening state
[ 1854.624490] virbr0: port 1(t0-9o8zz7) entered learning state
[ 1856.640440] virbr0: port 1(t0-9o8zz7) entered forwarding state
[ 1856.646286] virbr0: topology change detected, propagating
[ 1862.765808] virbr0: port 1(t0-9o8zz7) entered disabled state
[ 1862.772675] t0-9o8zz7 (unregistering): left allmulticast mode
[ 1862.778428] t0-9o8zz7 (unregistering): left promiscuous mode
[ 1862.784104] virbr0: port 1(t0-9o8zz7) entered disabled state
[ 1863.601422] virbr0: port 1(t0-ylknL2) entered blocking state
[ 1863.607090] virbr0: port 1(t0-ylknL2) entered disabled state
[ 1863.612790] t0-ylknL2: entered allmulticast mode
[ 1863.617510] t0-ylknL2: entered promiscuous mode
[ 1863.627221] virbr0: port 1(t0-ylknL2) entered blocking state
[ 1863.632888] virbr0: port 1(t0-ylknL2) entered listening state
[ 1865.664247] virbr0: port 1(t0-ylknL2) entered learning state
[ 1867.680202] virbr0: port 1(t0-ylknL2) entered forwarding state
[ 1867.686048] virbr0: topology change detected, propagating
[ 1873.838461] virbr0: port 1(t0-ylknL2) entered disabled state
[ 1873.845314] t0-ylknL2 (unregistering): left allmulticast mode
[ 1873.851076] t0-ylknL2 (unregistering): left promiscuous mode
[ 1873.856748] virbr0: port 1(t0-ylknL2) entered disabled state
[ 1874.643104] virbr0: port 1(t0-nBAWC7) entered blocking state
[ 1874.648791] virbr0: port 1(t0-nBAWC7) entered disabled state
[ 1874.654505] t0-nBAWC7: entered allmulticast mode
[ 1874.659258] t0-nBAWC7: entered promiscuous mode
[ 1874.668615] virbr0: port 1(t0-nBAWC7) entered blocking state
[ 1874.674282] virbr0: port 1(t0-nBAWC7) entered listening state
[ 1876.704010] virbr0: port 1(t0-nBAWC7) entered learning state
[ 1878.719954] virbr0: port 1(t0-nBAWC7) entered forwarding state
[ 1878.725795] virbr0: topology change detected, propagating
[ 1884.825901] virbr0: port 1(t0-nBAWC7) entered disabled state
[ 1884.832816] t0-nBAWC7 (unregistering): left allmulticast mode
[ 1884.838573] t0-nBAWC7 (unregistering): left promiscuous mode
[ 1884.844254] virbr0: port 1(t0-nBAWC7) entered disabled state
[ 1885.665588] virbr0: port 1(t0-8VXVDu) entered blocking state
[ 1885.671266] virbr0: port 1(t0-8VXVDu) entered disabled state
[ 1885.676978] t0-8VXVDu: entered allmulticast mode
[ 1885.681667] t0-8VXVDu: entered promiscuous mode
[ 1885.690865] virbr0: port 1(t0-8VXVDu) entered blocking state
[ 1885.696531] virbr0: port 1(t0-8VXVDu) entered listening state
[ 1887.711773] virbr0: port 1(t0-8VXVDu) entered learning state
[ 1889.727715] virbr0: port 1(t0-8VXVDu) entered forwarding state
[ 1889.733555] virbr0: topology change detected, propagating
[ 1895.853120] virbr0: port 1(t0-8VXVDu) entered disabled state
[ 1895.859887] t0-8VXVDu (unregistering): left allmulticast mode
[ 1895.865636] t0-8VXVDu (unregistering): left promiscuous mode
[ 1895.871303] virbr0: port 1(t0-8VXVDu) entered disabled state
[ 1896.688114] virbr0: port 1(t0-LUEMth) entered blocking state
[ 1896.693788] virbr0: port 1(t0-LUEMth) entered disabled state
[ 1896.699521] t0-LUEMth: entered allmulticast mode
[ 1896.704211] t0-LUEMth: entered promiscuous mode
[ 1896.713586] virbr0: port 1(t0-LUEMth) entered blocking state
[ 1896.719249] virbr0: port 1(t0-LUEMth) entered listening state
[ 1898.751530] virbr0: port 1(t0-LUEMth) entered learning state
[ 1900.767478] virbr0: port 1(t0-LUEMth) entered forwarding state
[ 1900.773317] virbr0: topology change detected, propagating
[ 1906.904503] virbr0: port 1(t0-LUEMth) entered disabled state
[ 1906.911426] t0-LUEMth (unregistering): left allmulticast mode
[ 1906.917177] t0-LUEMth (unregistering): left promiscuous mode
[ 1906.922851] virbr0: port 1(t0-LUEMth) entered disabled state
[ 1907.723978] virbr0: port 1(t0-m18Ung) entered blocking state
[ 1907.729644] virbr0: port 1(t0-m18Ung) entered disabled state
[ 1907.735336] t0-m18Ung: entered allmulticast mode
[ 1907.740036] t0-m18Ung: entered promiscuous mode
[ 1907.748857] virbr0: port 1(t0-m18Ung) entered blocking state
[ 1907.754524] virbr0: port 1(t0-m18Ung) entered listening state
[ 1909.791282] virbr0: port 1(t0-m18Ung) entered learning state
[ 1911.807234] virbr0: port 1(t0-m18Ung) entered forwarding state
[ 1911.813079] virbr0: topology change detected, propagating
[ 1917.932880] virbr0: port 1(t0-m18Ung) entered disabled state
[ 1917.939769] t0-m18Ung (unregistering): left allmulticast mode
[ 1917.945521] t0-m18Ung (unregistering): left promiscuous mode
[ 1917.951189] virbr0: port 1(t0-m18Ung) entered disabled state
[ 1918.757482] virbr0: port 1(t0-CCKwGt) entered blocking state
[ 1918.763150] virbr0: port 1(t0-CCKwGt) entered disabled state
[ 1918.768869] t0-CCKwGt: entered allmulticast mode
[ 1918.773563] t0-CCKwGt: entered promiscuous mode
[ 1918.782876] virbr0: port 1(t0-CCKwGt) entered blocking state
[ 1918.788541] virbr0: port 1(t0-CCKwGt) entered listening state
[ 1920.799051] virbr0: port 1(t0-CCKwGt) entered learning state
[ 1922.814993] virbr0: port 1(t0-CCKwGt) entered forwarding state
[ 1922.820832] virbr0: topology change detected, propagating
[ 1928.939882] virbr0: port 1(t0-CCKwGt) entered disabled state
[ 1928.947116] t0-CCKwGt (unregistering): left allmulticast mode
[ 1928.952874] t0-CCKwGt (unregistering): left promiscuous mode
[ 1928.958554] virbr0: port 1(t0-CCKwGt) entered disabled state
[ 1929.773833] virbr0: port 1(t0-y2hjFK) entered blocking state
[ 1929.779514] virbr0: port 1(t0-y2hjFK) entered disabled state
[ 1929.785212] t0-y2hjFK: entered allmulticast mode
[ 1929.789910] t0-y2hjFK: entered promiscuous mode
[ 1929.799225] virbr0: port 1(t0-y2hjFK) entered blocking state
[ 1929.804888] virbr0: port 1(t0-y2hjFK) entered listening state
[ 1931.838803] virbr0: port 1(t0-y2hjFK) entered learning state
[ 1933.854756] virbr0: port 1(t0-y2hjFK) entered forwarding state
[ 1933.860596] virbr0: topology change detected, propagating
[ 1940.008235] virbr0: port 1(t0-y2hjFK) entered disabled state
[ 1940.015089] t0-y2hjFK (unregistering): left allmulticast mode
[ 1940.020849] t0-y2hjFK (unregistering): left promiscuous mode
[ 1940.026523] virbr0: port 1(t0-y2hjFK) entered disabled state
[ 1944.526089] virbr0: port 1(t0-L6jmRW) entered blocking state
[ 1944.531777] virbr0: port 1(t0-L6jmRW) entered disabled state
[ 1944.537484] t0-L6jmRW: entered allmulticast mode
[ 1944.542185] t0-L6jmRW: entered promiscuous mode
[ 1944.551242] virbr0: port 1(t0-L6jmRW) entered blocking state
[ 1944.556903] virbr0: port 1(t0-L6jmRW) entered listening state
[ 1946.590486] virbr0: port 1(t0-L6jmRW) entered learning state
[ 1948.606426] virbr0: port 1(t0-L6jmRW) entered forwarding state
[ 1948.612263] virbr0: topology change detected, propagating
[ 2132.547854] virbr0: port 1(t0-L6jmRW) entered disabled state
[ 2132.554592] t0-L6jmRW (unregistering): left allmulticast mode
[ 2132.560344] t0-L6jmRW (unregistering): left promiscuous mode
[ 2132.566010] virbr0: port 1(t0-L6jmRW) entered disabled state
[ 2150.693658] virbr0: port 1(t0-OlQEZo) entered blocking state
[ 2150.699344] virbr0: port 1(t0-OlQEZo) entered disabled state
[ 2150.705054] t0-OlQEZo: entered allmulticast mode
[ 2150.709760] t0-OlQEZo: entered promiscuous mode
[ 2150.718700] virbr0: port 1(t0-OlQEZo) entered blocking state
[ 2150.724368] virbr0: port 1(t0-OlQEZo) entered listening state
[ 2152.766006] virbr0: port 1(t0-OlQEZo) entered learning state
[ 2154.777959] virbr0: port 1(t0-OlQEZo) entered forwarding state
[ 2154.783805] virbr0: topology change detected, propagating
[ 2166.957404] virbr0: port 2(t0-2ZbDjF) entered blocking state
[ 2166.963074] virbr0: port 2(t0-2ZbDjF) entered disabled state
[ 2166.968770] t0-2ZbDjF: entered allmulticast mode
[ 2166.973483] t0-2ZbDjF: entered promiscuous mode
[ 2166.982172] virbr0: port 2(t0-2ZbDjF) entered blocking state
[ 2166.987838] virbr0: port 2(t0-2ZbDjF) entered listening state
[ 2169.017656] virbr0: port 2(t0-2ZbDjF) entered learning state
[ 2171.033610] virbr0: port 2(t0-2ZbDjF) entered forwarding state
[ 2171.039450] virbr0: topology change detected, propagating
[ 2183.741852] virbr0: port 3(t0-W1JvqT) entered blocking state
[ 2183.747534] virbr0: port 3(t0-W1JvqT) entered disabled state
[ 2183.753257] t0-W1JvqT: entered allmulticast mode
[ 2183.757951] t0-W1JvqT: entered promiscuous mode
[ 2183.766734] virbr0: port 3(t0-W1JvqT) entered blocking state
[ 2183.772396] virbr0: port 3(t0-W1JvqT) entered listening state
[ 2185.785285] virbr0: port 3(t0-W1JvqT) entered learning state
[ 2187.801247] virbr0: port 3(t0-W1JvqT) entered forwarding state
[ 2187.807135] virbr0: topology change detected, propagating
[ 2200.940358] virbr0: port 4(t0-p95IT0) entered blocking state
[ 2200.946034] virbr0: port 4(t0-p95IT0) entered disabled state
[ 2200.951733] t0-p95IT0: entered allmulticast mode
[ 2200.956441] t0-p95IT0: entered promiscuous mode
[ 2200.965393] virbr0: port 4(t0-p95IT0) entered blocking state
[ 2200.971057] virbr0: port 4(t0-p95IT0) entered listening state
[ 2203.000916] virbr0: port 4(t0-p95IT0) entered learning state
[ 2205.020876] virbr0: port 4(t0-p95IT0) entered forwarding state
[ 2205.026715] virbr0: topology change detected, propagating
[ 2218.214885] virbr0: port 5(t0-fmKBlh) entered blocking state
[ 2218.220556] virbr0: port 5(t0-fmKBlh) entered disabled state
[ 2218.226253] t0-fmKBlh: entered allmulticast mode
[ 2218.230949] t0-fmKBlh: entered promiscuous mode
[ 2218.239967] virbr0: port 5(t0-fmKBlh) entered blocking state
[ 2218.245634] virbr0: port 5(t0-fmKBlh) entered listening state
[ 2220.280537] virbr0: port 5(t0-fmKBlh) entered learning state
[ 2222.300496] virbr0: port 5(t0-fmKBlh) entered forwarding state
[ 2222.306335] virbr0: topology change detected, propagating
[ 3469.635314] virbr0: port 1(t0-OlQEZo) entered disabled state
[ 3469.642028] t0-OlQEZo (unregistering): left allmulticast mode
[ 3469.647786] t0-OlQEZo (unregistering): left promiscuous mode
[ 3469.653461] virbr0: port 1(t0-OlQEZo) entered disabled state
[ 3472.324806] virbr0: port 2(t0-2ZbDjF) entered disabled state
[ 3472.331372] t0-2ZbDjF (unregistering): left allmulticast mode
[ 3472.337143] t0-2ZbDjF (unregistering): left promiscuous mode
[ 3472.342825] virbr0: port 2(t0-2ZbDjF) entered disabled state
[ 3475.045998] virbr0: port 3(t0-W1JvqT) entered disabled state
[ 3475.052799] t0-W1JvqT (unregistering): left allmulticast mode
[ 3475.058554] t0-W1JvqT (unregistering): left promiscuous mode
[ 3475.064226] virbr0: port 3(t0-W1JvqT) entered disabled state
[ 3477.697884] virbr0: port 4(t0-p95IT0) entered disabled state
[ 3477.704663] t0-p95IT0 (unregistering): left allmulticast mode
[ 3477.710416] t0-p95IT0 (unregistering): left promiscuous mode
[ 3477.716080] virbr0: port 4(t0-p95IT0) entered disabled state
[ 3480.333612] virbr0: port 5(t0-fmKBlh) entered disabled state
[ 3480.340311] t0-fmKBlh (unregistering): left allmulticast mode
[ 3480.346079] t0-fmKBlh (unregistering): left promiscuous mode
[ 3480.351754] virbr0: port 5(t0-fmKBlh) entered disabled state
[ 3498.757474] virbr0: port 1(t0-2Ic1Oa) entered blocking state
[ 3498.763145] virbr0: port 1(t0-2Ic1Oa) entered disabled state
[ 3498.768845] t0-2Ic1Oa: entered allmulticast mode
[ 3498.773557] t0-2Ic1Oa: entered promiscuous mode
[ 3498.782493] virbr0: port 1(t0-2Ic1Oa) entered blocking state
[ 3498.788157] virbr0: port 1(t0-2Ic1Oa) entered listening state
[ 3500.796237] virbr0: port 1(t0-2Ic1Oa) entered learning state
[ 3502.812194] virbr0: port 1(t0-2Ic1Oa) entered forwarding state
[ 3502.818036] virbr0: topology change detected, propagating
[ 3515.496380] virbr0: port 2(t0-G7RjDb) entered blocking state
[ 3515.502056] virbr0: port 2(t0-G7RjDb) entered disabled state
[ 3515.507769] t0-G7RjDb: entered allmulticast mode
[ 3515.512467] t0-G7RjDb: entered promiscuous mode
[ 3515.521054] virbr0: port 2(t0-G7RjDb) entered blocking state
[ 3515.526717] virbr0: port 2(t0-G7RjDb) entered listening state
[ 3517.563853] virbr0: port 2(t0-G7RjDb) entered learning state
[ 3519.579808] virbr0: port 2(t0-G7RjDb) entered forwarding state
[ 3519.585648] virbr0: topology change detected, propagating
[ 3532.752841] virbr0: port 3(t0-xIHJ7T) entered blocking state
[ 3532.758507] virbr0: port 3(t0-xIHJ7T) entered disabled state
[ 3532.764216] t0-xIHJ7T: entered allmulticast mode
[ 3532.768923] t0-xIHJ7T: entered promiscuous mode
[ 3532.777458] virbr0: port 3(t0-xIHJ7T) entered blocking state
[ 3532.783117] virbr0: port 3(t0-xIHJ7T) entered listening state
[ 3534.811458] virbr0: port 3(t0-xIHJ7T) entered learning state
[ 3536.831415] virbr0: port 3(t0-xIHJ7T) entered forwarding state
[ 3536.837259] virbr0: topology change detected, propagating
[ 3550.144637] virbr0: port 4(t0-25shv9) entered blocking state
[ 3550.150305] virbr0: port 4(t0-25shv9) entered disabled state
[ 3550.155996] t0-25shv9: entered allmulticast mode
[ 3550.160690] t0-25shv9: entered promiscuous mode
[ 3550.169488] virbr0: port 4(t0-25shv9) entered blocking state
[ 3550.175151] virbr0: port 4(t0-25shv9) entered listening state
[ 3552.187059] virbr0: port 4(t0-25shv9) entered learning state
[ 3554.207011] virbr0: port 4(t0-25shv9) entered forwarding state
[ 3554.212855] virbr0: topology change detected, propagating
[ 3568.010752] virbr0: port 5(t0-BuNJzD) entered blocking state
[ 3568.016424] virbr0: port 5(t0-BuNJzD) entered disabled state
[ 3568.022126] t0-BuNJzD: entered allmulticast mode
[ 3568.026833] t0-BuNJzD: entered promiscuous mode
[ 3568.035347] virbr0: port 5(t0-BuNJzD) entered blocking state
[ 3568.041010] virbr0: port 5(t0-BuNJzD) entered listening state
[ 3570.074656] virbr0: port 5(t0-BuNJzD) entered learning state
[ 3572.090603] virbr0: port 5(t0-BuNJzD) entered forwarding state
[ 3572.096449] virbr0: topology change detected, propagating
[ 5160.158444] virbr0: port 1(t0-2Ic1Oa) entered disabled state
[ 5160.165230] t0-2Ic1Oa (unregistering): left allmulticast mode
[ 5160.170991] t0-2Ic1Oa (unregistering): left promiscuous mode
[ 5160.176665] virbr0: port 1(t0-2Ic1Oa) entered disabled state
[ 5162.866004] virbr0: port 2(t0-G7RjDb) entered disabled state
[ 5162.873205] t0-G7RjDb (unregistering): left allmulticast mode
[ 5162.878969] t0-G7RjDb (unregistering): left promiscuous mode
[ 5162.884645] virbr0: port 2(t0-G7RjDb) entered disabled state
[ 5165.526385] virbr0: port 3(t0-xIHJ7T) entered disabled state
[ 5165.533222] t0-xIHJ7T (unregistering): left allmulticast mode
[ 5165.538995] t0-xIHJ7T (unregistering): left promiscuous mode
[ 5165.544664] virbr0: port 3(t0-xIHJ7T) entered disabled state
[ 5168.236023] virbr0: port 4(t0-25shv9) entered disabled state
[ 5168.242729] t0-25shv9 (unregistering): left allmulticast mode
[ 5168.248502] t0-25shv9 (unregistering): left promiscuous mode
[ 5168.254181] virbr0: port 4(t0-25shv9) entered disabled state
[ 5170.879538] virbr0: port 5(t0-BuNJzD) entered disabled state
[ 5170.886666] t0-BuNJzD (unregistering): left allmulticast mode
[ 5170.892420] t0-BuNJzD (unregistering): left promiscuous mode
[ 5170.898096] virbr0: port 5(t0-BuNJzD) entered disabled state
[ 5224.784726] JFS: nTxBlock = 8192, nTxLock = 65536
[ 5224.825213] QNX4 filesystem 0.2.3 registered.
[ 5224.906791] raid6: avx2x4   gen() 27789 MB/s
[ 5224.978790] raid6: avx2x2   gen() 29432 MB/s
[ 5225.050789] raid6: avx2x1   gen() 20129 MB/s
[ 5225.055065] raid6: using algorithm avx2x2 gen() 29432 MB/s
[ 5225.126785] raid6: .... xor() 27279 MB/s, rmw enabled
[ 5225.131842] raid6: using avx2x2 recovery algorithm
[ 5225.139032] xor: automatically using best checksumming function   avx       
[ 5225.235691] Btrfs loaded, zoned=yes, fsverity=yes
[ 5229.672020] sda6: Can't mount, would change RO state
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Runtime Directory /run/user/0^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser Slice of UID 0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNFS client services^[[0m.
         Stopping ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mShow Plymouth Reboot Screen^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mUser and Group Name Lookups^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSystem Logging Service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork is Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager Wait Online^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
         Stopping ^[[0;1;39mNetwork Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Network^[[0m.
         Stopping ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGenerate network units from Kernel command line^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
         Stopping ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Plymouth Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mVirtual Machine and Container Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt legacy monolithic daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mSSSD Kerberos Cache Manager [ 5231.119519] audit: type=1305 audit(1750160298.166:638): op=set audit_pid=0 old=2294 auid=4294967295 ses=4294967295 subj=unconfined res=1
responder socket[ 5231.133660] audit: type=1131 audit(1750160298.178:639): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=auditd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
^[[0m.
[^[[0;32m[ 5231.153354] audit: type=1131 audit(1750160298.198:640): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
  OK  ^[[0m] Closed ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mlibvirt logging daemon socket^[[0m.
         Stopping ^[[0;1;39mD-Bus System Message Bus^[[0m...
         Starting ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus So[ 5231.223691] audit: type=1131 audit(1750160298.270:641): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-fsck@dev-disk-by\x2duuid-FBE5\x2d86EF comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
cket^[[0m.
[^[[0[ 5231.247606] XFS (sda6): Unmounting Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Unset automount ^[[0;1;39mArbitrary Executab…ormats File System Automount Point^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Encrypted Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Integrity Protected Volumes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal Verity Protected Volumes^[[0m.
         Deactivating swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
         Stopping ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-sysctl.service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Jump To initramfs^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
         Stopping ^[[0;1;39mSecurity Auditing Service^[[0m...
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/dm-name-rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/rhel_sharavati/swap^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-uuid…8d2e1f-0fb1-4c94-97ac-38505613fcbf^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/disk/by-id/d…kEo36yeb12DWUnp5czhD1hrKFNCXkJMetK^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/dm-2^[[0m.
[^[[0;32m  OK  ^[[0m] Deactivated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
         Unmounting ^[[0;1;39m/boot/efi^[[0m...
         Unmounting ^[[0;1;39m/home^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m...
         Unmounting ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m...
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup.service^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service^[[0m.
         Unmounting ^[[0;1;39m/boot^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/boot^[[0m.
[ 5231.695196] XFS (dm-0): Unmounting Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Local File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUnmount All Filesystems^[[0m.
         Stoppin[ 5231.739328] audit: type=1131 audit(1750160298.786:642): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
g ^[[0;1;39mMonit[ 5231.760945] audit: type=1131 audit(1750160298.806:643): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRemount Root and Kernel File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[[ 5231.852348] audit: type=1131 audit(1750160298.898:644): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
0m] Stopped ^[[0;[ 5231.874066] audit: type=1130 audit(1750160298.918:645): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
1;39mMonitoring [ 5231.895226] audit: type=1131 audit(1750160298.918:646): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=unconfined msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
of LVM2 mirrors…using dmeventd or progress pol[ 5231.919860] audit: type=1334 audit(1750160298.966:647): prog-id=37 op=UNLOAD
ling^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLate Shutdown Services^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSystem Reboot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Reboot^[[0m.
[ 5231.955029] watchdog: watchdog0: watchdog did not stop!
[ 5231.965363] systemd-shutdown[1]: Using hardware watchdog 'SP5100 TCO timer', version 0, device /dev/watchdog0
[ 5231.975360] systemd-shutdown[1]: Watchdog running with a timeout of 10min.
[ 5231.984826] systemd-shutdown[1]: Syncing filesystems and block devices.
[ 5231.991484] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
[ 5232.018953] systemd-journald[1736]: Received SIGTERM from PID 1 (systemd-shutdow).
[ 5232.054848] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
[ 5232.080344] systemd-shutdown[1]: Unmounting file systems.
[ 5232.086539] [70752]: Remounting '/' read-only with options 'attr2,inode64,logbufs=8,logbsize=32k,noquota'.
[ 5232.112234] systemd-shutdown[1]: All filesystems unmounted.
[ 5232.118422] systemd-shutdown[1]: Deactivating swaps.
[ 5232.123429] systemd-shutdown[1]: All swaps deactivated.
[ 5232.128662] systemd-shutdown[1]: Detaching loop devices.
[ 5232.134492] systemd-shutdown[1]: All loop devices detached.
[ 5232.140067] systemd-shutdown[1]: Stopping MD devices.
[ 5232.140125] systemd-shutdown[1]: All MD devices stopped.
[ 5232.150490] systemd-shutdown[1]: Detaching DM devices.
[ 5232.156104] systemd-shutdown[1]: Detaching DM /dev/dm-2 (253:2).
[ 5232.194728] systemd-shutdown[1]: Detaching DM /dev/dm-0 (253:0).
[ 5232.254776] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[ 5232.261270] systemd-shutdown[1]: Detaching DM devices.
[ 5232.266586] systemd-shutdown[1]: Not all DM devices detached, 1 left.
[ 5232.273024] systemd-shutdown[1]: Cannot finalize remaining DM devices, continuing.
[ 5232.280588] watchdog: watchdog0: watchdog did not stop!
[ 5232.368641] systemd-shutdown[1]: Successfully changed into root pivot.
[ 5232.375195] systemd-shutdown[1]: Returning to initrd...
[ 5232.427986] dracut Warning: Killing all remaining processes
dracut Warning: Killing all remaining processes
[ 5232.594033] XFS (dm-1): Unmounting Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[ 5232.615423] dracut Warning: Unmounted /oldroot.
dracut Warning: Unmounted /oldroot.
[ 5232.632233] dracut: Disassembling device-mapper devices
Rebooting.
[ 5232.853356] sd 8:0:2:0: [sdc] Synchronizing SCSI cache
[ 5232.858650] sd 8:0:0:0: [sda] Synchronizing SCSI cache
[ 5234.336439] mpt3sas_cm0: sending message unit reset !!
[ 5234.343100] mpt3sas_cm0: message unit reset: SUCCESS
[ 5234.350675] ACPI: PM: Preparing to enter system sleep state S5
[ 5234.356636] kvm: exiting hardware virtualization
[ 5234.361301] reboot: Restarting system
[ 5234.364967] reboot: machine restart
^[[c^[[2J^[[01;01H^[[=3h^[[2J^[[01;01HKEY MAPPING FOR CONSOLE REDIRECTION:

Use the <ESC><1> key sequence for <F1>
Use the <ESC><2> key sequence for <F2>
Use the <ESC><3> key sequence for <F3>
Use the <ESC><0> key sequence for <F10>
Use the <ESC><!> key sequence for <F11>
Use the <ESC><@> key sequence for <F12>

Use the <ESC><Ctrl><M> key sequence for <Ctrl><M>
Use the <ESC><Ctrl><H> key sequence for <Ctrl><H>
Use the <ESC><Ctrl><I> key sequence for <Ctrl><I>
Use the <ESC><Ctrl><J> key sequence for <Ctrl><J>

Use the <ESC><X><X> key sequence for <Alt><x>, where x is any letter
key, and X is the upper case of that key

Use the <ESC><R><ESC><r><ESC><R> key sequence for <Ctrl><Alt><Del>

Press the spacebar to pause...
Initializing PCIe, USB, and Video... Done
PowerEdge R6515
BIOS Version: 2.17.0
Console Redirection Enabled Requested by iDRAC

F2	 = System Setup
F10	 = Lifecycle Controller (Config
	   iDRAC, Update FW, Install OS)
F11	 = Boot Manager
F12	 = PXE Boot
iDRAC IPV4:  10.86.18.202 [Dedicated]
                                
Initializing Firmware Interfaces...
 





Enumerating Boot options...
Enumerating Boot options... Done
Loading Lifecycle Controller Drivers...
Loading Lifecycle Controller Drivers...Done
Lifecycle Controller: Collecting System Inventory...

iDRAC IPV4:  10.86.18.202 [Dedicated]

^[[2J^[[01;01HLifecycle Controller: Done
Booting...
^[[2J^[[01;01HBooting from Integrated Storage Controller 1: Red Hat Enterprise Linux
^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[02;32HGRUB version 2.06

\r^[[04;02H/----------------------------------------------------------------------------\^[[05;02H|^[[05;79H|^[[06;02H|^[[06;79H|^[[07;02H|^[[07;79H|^[[08;02H|^[[08;79H|^[[09;02H|^[[09;79H|^[[10;02H|^[[10;79H|^[[11;02H|^[[11;79H|^[[12;02H|^[[12;79H|^[[13;02H|^[[13;79H|^[[14;02H|^[[14;79H|^[[15;02H|^[[15;79H|^[[16;02H|^[[16;79H|^[[17;02H\----------------------------------------------------------------------------/^[[18;02H^[[19;02H     Use the ^ and v keys to select which entry is highlighted.          
\r      Press enter to boot the selected OS, `e' to edit the commands       
\r      before booting or `c' for a command-line. ESC to return previous    
\r      menu.                                                               ^[[05;80H ^[[0m^[[30m^[[47m^[[05;03H*Red Hat Enterprise Linux (6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e)>
\r^[[06;01H^[[0m^[[37m^[[40m^[[05;78H^[[06;03H Red Hat Enterprise Linux (6.16.0-rc2-next-20250616-050f8ad7b5-67a08d82997)>
\r^[[07;01H^[[06;78H^[[07;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250613-bc6e0ba6c9-dc42f4ece61)>
\r^[[08;01H^[[07;78H^[[08;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250612-0bb71d3018-d909e6968a1)>
\r^[[09;01H^[[08;78H^[[09;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250611-19a60293b9-72d7c68e20e)>
\r^[[10;01H^[[09;78H^[[10;03H Red Hat Enterprise Linux (6.16.0-rc1-next-20250610-b27cc623e0-9a3b1b1b837)>
\r^[[11;01H^[[10;78H^[[11;03H Red Hat Enterprise Linux (6.15.0-rc7-next-20250526-3be1a7a31f-22d449bcd69)>
\r^[[12;01H^[[11;78H^[[12;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250514-bdd609656f-ccb396cc166)>
\r^[[13;01H^[[12;78H^[[13;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250513-aa94665adc-e0bf3d3816b)>
\r^[[14;01H^[[13;78H^[[14;03H Red Hat Enterprise Linux (6.15.0-rc6-next-20250512-edef457004-450c56522a8)>
\r^[[15;01H^[[14;78H^[[15;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250508-f48887a98b-19c541fe872)>
\r^[[16;01H^[[15;78H^[[16;03H Red Hat Enterprise Linux (6.15.0-rc5-next-20250507-08710e6960-81586bd2ca8)>
\r^[[17;01H^[[16;78H^[[16;80Hv^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 5s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 4s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 3s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 2s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 1s.                 ^[[05;78H^[[23;01H   The highlighted entry will be executed automatically in 0s.                 ^[[05;78H^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m^[[0m^[[30m^[[40m^[[2J^[[01;01H^[[0m^[[37m^[[40m  Booting `Red Hat Enterprise Linux
\r(6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e) 9.5 (Plow)'

\r[    0.000000] Linux version 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e (root@sharavati•amd.com) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-5), GNU ld version 2.35.2-63.el9) #1 SMP PREEMPT_DYNAMIC Tue Jun 17 15:21:04 IST 2025
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] SEV-SNP: RMP table physical range [0x0000000015e00000 - 0x00000000566fffff]
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000015dfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000015e00000-0x00000000566fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000056700000-0x00000000567fbfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000567fc000-0x00000000567fcfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000567fd000-0x000000005a142fff] usable
[    0.000000] BIOS-e820: [mem 0x000000005a143000-0x000000005a342fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005a343000-0x0000000067acefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000067acf000-0x000000006dfcefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006dfcf000-0x000000006edfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006edff000-0x000000006effefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000006efff000-0x000000006effffff] usable
[    0.000000] BIOS-e820: [mem 0x000000006f000000-0x000000006f00afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006f00b000-0x000000006fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000070000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa000000-0x00000000aaffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c5000000-0x00000000c5ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e0ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000207fcfffff] usable
[    0.000000] BIOS-e820: [mem 0x000000207fd00000-0x000000207fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000002080000000-0x000000407f1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000407f200000-0x000000407fffffff] reserved
[    0.000000] printk: legacy bootconsole [earlyser0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by Dell Inc.
[    0.000000] efi: ACPI=0x6effe000 ACPI 2.0=0x6effe014 MEMATTR=0x63f376a0 SMBIOS=0x6979e000 SMBIOS 3.0=0x6979c000 MOKvar=0x67bcc000 RNG=0x6efb4020 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem56: MMIO range=[0x80000000-0x8fffffff] (256MB) from e820 map
[    0.000000] efi: Remove mem57: MMIO range=[0xaa000000-0xaaffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem58: MMIO range=[0xc5000000-0xc5ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem59: MMIO range=[0xe0000000-0xe0ffffff] (16MB) from e820 map
[    0.000000] efi: Remove mem60: MMIO range=[0xfd000000-0xffffffff] (48MB) from e820 map
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[    0.000000] DMI: Memory slots populated: 8/16
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1996.277 MHz processor
[    0.000029] last_pfn = 0x407f200 max_arch_pfn = 0x400000000
[    0.005552] MTRR map: 7 entries (2 fixed + 5 variable; max 19), built from 9 variable MTRRs
[    0.013867] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Memory KASLR using RDRAND RDTSC...
[    0.023928] x2apic: enabled by BIOS, switching to x2apic ops
[    0.029563] last_pfn = 0x70000 max_arch_pfn = 0x400000000
[    0.039396] SEV-SNP: Reserving start/end of RMP table on a 2MB boundary [0x0000000056600000]
[    0.047671] Using GB pages for direct mapping
[    0.052596] Secure boot disabled
[    0.055646] RAMDISK: [mem 0x0bb2c000-0x0e0d4fff]
[    0.060243] ACPI: Early table checksum verification disabled
[    0.065876] ACPI: RSDP 0x000000006EFFE014 000024 (v02 DELL  )
[    0.071593] ACPI: XSDT 0x000000006EFB7188 0000DC (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.080089] ACPI: FACP 0x000000006EFF9000 000114 (v06 DELL   PE_SC3   00000002 DELL 00000001)
[    0.088581] ACPI: DSDT 0x000000006EFDA000 019528 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.097073] ACPI: FACS 0x000000006EDB9000 000040
[    0.101665] ACPI: BERT 0x000000006EFFC000 000030 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.110159] ACPI: ERST 0x000000006EFFB000 000230 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.118651] ACPI: HEST 0x000000006EFFA000 0007F4 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.127143] ACPI: HPET 0x000000006EFF8000 000038 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.135637] ACPI: APIC 0x000000006EFF6000 0018BE (v05 DELL   PE_SC3   00000002 DELL 00000001)
[    0.144130] ACPI: MCFG 0x000000006EFF5000 00003C (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.152626] ACPI: WSMT 0x000000006EFF4000 000028 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.161117] ACPI: SSDT 0x000000006EFD9000 000629 (v02 DELL   xhc_port 00000001 INTL 20210331)
[    0.169609] ACPI: SSDT 0x000000006EFD8000 000D6E (v02 AMD    CPMRAS   00000001 INTL 20210331)
[    0.178103] ACPI: EINJ 0x000000006EFD7000 000170 (v01 AMD    PE_SC3   00000001 AMD  00000001)
[    0.186595] ACPI: PCCT 0x000000006EFD6000 00006E (v02 DELL   AmdTable 00000001 AMD  00000001)
[    0.195088] ACPI: SSDT 0x000000006EFC7000 00E849 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.203581] ACPI: SRAT 0x000000006EFC6000 000CD0 (v03 DELL   PE_SC3   00000001 AMD  00000001)
[    0.212075] ACPI: MSCT 0x000000006EFC5000 00004E (v01 DELL   PE_SC3   00000000 AMD  00000001)
[    0.220567] ACPI: SLIT 0x000000006EFC4000 000030 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.229059] ACPI: CRAT 0x000000006EFBC000 0072F8 (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.237553] ACPI: CDIT 0x000000006EFBB000 00002C (v01 DELL   PE_SC3   00000001 AMD  00000001)
[    0.246046] ACPI: IVRS 0x000000006EFBA000 0001F0 (v02 DELL   PE_SC3   00000001 AMD  00000001)
[    0.254539] ACPI: SPCR 0x000000006EFB9000 000050 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.263031] ACPI: SLIC 0x000000006EFB8000 000176 (v01 DELL   PE_SC3   00000002 DELL 00000001)
[    0.271524] ACPI: SSDT 0x000000006EFFD000 000D66 (v02 DELL   PE_SC3   00000002 DELL 00000001)
[    0.280018] ACPI: SSDT 0x000000006EFB5000 00193C (v02 AMD    CPMCMN   00000001 INTL 20210331)
[    0.288510] ACPI: Reserving FACP table memory at [mem 0x6eff9000-0x6eff9113]
[    0.295530] ACPI: Reserving DSDT table memory at [mem 0x6efda000-0x6eff3527]
[    0.302550] ACPI: Reserving FACS table memory at [mem 0x6edb9000-0x6edb903f]
[    0.309570] ACPI: Reserving BERT table memory at [mem 0x6effc000-0x6effc02f]
[    0.316589] ACPI: Reserving ERST table memory at [mem 0x6effb000-0x6effb22f]
[    0.323608] ACPI: Reserving HEST table memory at [mem 0x6effa000-0x6effa7f3]
[    0.330629] ACPI: Reserving HPET table memory at [mem 0x6eff8000-0x6eff8037]
[    0.337648] ACPI: Reserving APIC table memory at [mem 0x6eff6000-0x6eff78bd]
[    0.344668] ACPI: Reserving MCFG table memory at [mem 0x6eff5000-0x6eff503b]
[    0.351688] ACPI: Reserving WSMT table memory at [mem 0x6eff4000-0x6eff4027]
[    0.358716] ACPI: Reserving SSDT table memory at [mem 0x6efd9000-0x6efd9628]
[    0.365736] ACPI: Reserving SSDT table memory at [mem 0x6efd8000-0x6efd8d6d]
[    0.372755] ACPI: Reserving EINJ table memory at [mem 0x6efd7000-0x6efd716f]
[    0.379775] ACPI: Reserving PCCT table memory at [mem 0x6efd6000-0x6efd606d]
[    0.386794] ACPI: Reserving SSDT table memory at [mem 0x6efc7000-0x6efd5848]
[    0.393815] ACPI: Reserving SRAT table memory at [mem 0x6efc6000-0x6efc6ccf]
[    0.400834] ACPI: Reserving MSCT table memory at [mem 0x6efc5000-0x6efc504d]
[    0.407854] ACPI: Reserving SLIT table memory at [mem 0x6efc4000-0x6efc402f]
[    0.414874] ACPI: Reserving CRAT table memory at [mem 0x6efbc000-0x6efc32f7]
[    0.421894] ACPI: Reserving CDIT table memory at [mem 0x6efbb000-0x6efbb02b]
[    0.428913] ACPI: Reserving IVRS table memory at [mem 0x6efba000-0x6efba1ef]
[    0.435933] ACPI: Reserving SPCR table memory at [mem 0x6efb9000-0x6efb904f]
[    0.442953] ACPI: Reserving SLIC table memory at [mem 0x6efb8000-0x6efb8175]
[    0.449973] ACPI: Reserving SSDT table memory at [mem 0x6effd000-0x6effdd65]
[    0.456992] ACPI: Reserving SSDT table memory at [mem 0x6efb5000-0x6efb693b]
[    0.464088] APIC: Switched APIC routing to: cluster x2apic
[    0.469490] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[    0.475452] ACPI: SRAT: Node 0 PXM 0 [mem 0x000c0000-0x7fffffff]
[    0.481432] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.487671] ACPI: SRAT: Node 1 PXM 1 [mem 0x2080000000-0x407fffffff]
[    0.494004] NUMA: Node 0 [mem 0x00001000-0x0009ffff] + [mem 0x000c0000-0x7fffffff] -> [mem 0x00001000-0x7fffffff]
[    0.504224] NUMA: Node 0 [mem 0x00001000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00001000-0x207fffffff]
[    0.514891] NODE_DATA(0) allocated [mem 0x207fcd59c0-0x207fcfffff]
[    0.521045] NODE_DATA(1) allocated [mem 0x407f1d49c0-0x407f1fefff]
[    0.527329] cannot allocate crashkernel low memory (size:0x10800000).
[    0.533847] Zone ranges:
[    0.536202]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.542355]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.548509]   Normal   [mem 0x0000000100000000-0x000000407f1fffff]
[    0.554662]   Device   empty
[    0.557522] Movable zone start for each node
[    0.561768] Early memory node ranges
[    0.565321]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.571596]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.577835]   node   0: [mem 0x0000000000100000-0x0000000015dfffff]
[    0.584075]   node   0: [mem 0x0000000056700000-0x00000000567fbfff]
[    0.590315]   node   0: [mem 0x00000000567fd000-0x000000005a142fff]
[    0.596555]   node   0: [mem 0x000000005a343000-0x0000000067acefff]
[    0.602795]   node   0: [mem 0x000000006efff000-0x000000006effffff]
[    0.609034]   node   0: [mem 0x000000006f00b000-0x000000006fffffff]
[    0.615274]   node   0: [mem 0x0000000100000000-0x000000207fcfffff]
[    0.621524]   node   1: [mem 0x0000002080000000-0x000000407f1fffff]
[    0.627765] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fcfffff]
[    0.634776] Initmem setup node 1 [mem 0x0000002080000000-0x000000407f1fffff]
[    0.641796] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.647600] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.653418] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.659649] On node 0, zone DMA32: 35072 pages in unavailable ranges
[    0.665857] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.671952] On node 0, zone DMA32: 512 pages in unavailable ranges
[    0.678042] On node 0, zone DMA32: 30000 pages in unavailable ranges
[    0.684286] On node 0, zone DMA32: 11 pages in unavailable ranges
[    0.910171] On node 1, zone Normal: 768 pages in unavailable ranges
[    0.916269] On node 1, zone Normal: 3584 pages in unavailable ranges
[    0.922726] ACPI: PM-Timer IO Port: 0x408
[    0.926596] ACPI: X2APIC_NMI (uid[0xffffffff] high edge lint[0x1])
[    0.932723] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.938629] IOAPIC[0]: apic_id 240, version 33, address 0xfec00000, GSI 0-23
[    0.945638] IOAPIC[1]: apic_id 241, version 33, address 0xe0100000, GSI 120-151
[    0.952918] IOAPIC[2]: apic_id 242, version 33, address 0xc5100000, GSI 88-119
[    0.960112] IOAPIC[3]: apic_id 243, version 33, address 0xaa100000, GSI 56-87
[    0.967217] IOAPIC[4]: apic_id 244, version 33, address 0xfd100000, GSI 24-55
[    0.974323] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.980647] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.987154] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.993559] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.998676] ACPI: SPCR: console: uart,io,0x2f8,115200
[    1.003703] CPU topo: Max. logical packages:   1
[    1.008292] CPU topo: Max. logical dies:       1
[    1.012885] CPU topo: Max. dies per package:   1
[    1.017482] CPU topo: Max. threads per core:   2
[    1.022072] CPU topo: Num. cores per package:    64
[    1.026969] CPU topo: Num. threads per package: 128
[    1.031822] CPU topo: Allowing 128 present CPUs plus 0 hotplug CPUs
[    1.038087] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    1.045601] PM: hibernation: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    1.053141] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    1.060681] PM: hibernation: Registered nosave memory: [mem 0x15e00000-0x567fffff]
[    1.068221] PM: hibernation: Registered nosave memory: [mem 0x5a143000-0x5a342fff]
[    1.075760] PM: hibernation: Registered nosave memory: [mem 0x67acf000-0x6effefff]
[    1.083300] PM: hibernation: Registered nosave memory: [mem 0x6f000000-0x6f00afff]
[    1.090840] PM: hibernation: Registered nosave memory: [mem 0x70000000-0xffffffff]
[    1.098379] PM: hibernation: Registered nosave memory: [mem 0x207fd00000-0x207fffffff]
[    1.106266] [mem 0x56800000-0xffffffff] available for PCI devices
[    1.112332] Booting paravirtualized kernel on bare hardware
[    1.117879] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    1.128315] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:128 nr_cpu_ids:128 nr_node_ids:2
[    1.139191] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[    1.145670] Kernel command line: BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e root=/dev/mapper/rhel_sharavati-root ro selinux=0 console=ttyS0,115200n8 earlyprintk=ttyS0,115200 net.ifnames=0 biosdevname=0 swiotlb=131072 kvm_amd.debug_swap=0 mem_encrypt=off crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M
[    1.174996] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,gpt6)/vmlinuz-6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e biosdevname=0 mem_encrypt=off", will be passed to user space.
[    1.191844] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    1.198761] printk: log_buf_len total cpu_extra contributions: 520192 bytes
[    1.205694] printk: log_buf_len min size: 262144 bytes
[    1.211138] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[    1.218519] printk: early log buf free: 246352(93%)
[    1.224844] software IO TLB: area num 128.
[    1.228786] software IO TLB: swiotlb_memblock_alloc: Failed to allocate 268435456 bytes tlb structure
[    1.243899] software IO TLB: SWIOTLB bounce buffer size adjusted 131072 -> 65536 slabs
[    1.249946] Fallback order for Node 0: 0 1 
[    1.249950] Fallback order for Node 1: 1 0 
[    1.249963] Built 2 zonelists, mobility grouping on.  Total pages: 66743906
[    1.272944] Policy zone: Normal
[    1.276072] mem auto-init: stack:off, heap alloc:on, heap free:off
[    1.698330] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=128, Nodes=2
Poking KASLR using RDRAND RDTSC...
[    1.719592] ftrace: allocating 53763 entries in 212 pages
[    1.724806] ftrace: allocated 212 pages with 4 groups
[    1.730745] Dynamic Preempt: voluntary
[    1.734675] rcu: Preemptible hierarchical RCU implementation.
[    1.740240] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=128.
[    1.747174] 	Trampoline variant of Tasks RCU enabled.
[    1.752201] 	Rude variant of Tasks RCU enabled.
[    1.756707] 	Tracing variant of Tasks RCU enabled.
[    1.761473] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.769013] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=128
[    1.775918] RCU Tasks: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.784721] RCU Tasks Rude: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.793993] RCU Tasks Trace: Setting shift to 7 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=128.
[    1.806879] NR_IRQS: 524544, nr_irqs: 3624, preallocated irqs: 16
[    1.813063] rcu: srcu_init: Setting srcu_struct sizes to big.
[    1.818808] Console: colour dummy device 80x25
[    1.823091] printk: legacy console [ttyS0] enabled
[    1.823091] printk: legacy console [ttyS0] enabled
[    1.832624] printk: legacy bootconsole [earlyser0] disabled
[    1.832624] printk: legacy bootconsole [earlyser0] disabled
[    1.843812] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    1.855090] ACPI: Core revision 20250404
[    1.859239] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    1.868380] APIC: Switch to symmetric I/O mode setup
[    1.873779] AMD-Vi: Using global IVHD EFR:0x841f77e022094ace, EFR2:0x0
[    1.882858] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    1.908382] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x398ce337d3f, max_idle_ns: 881590769522 ns
[    1.918894] Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.55 BogoMIPS (lpj=7985108)
[    1.922906] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    1.927007] LVT offset 2 assigned for vector 0xf4
[    1.930923] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    1.934892] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    1.938894] process: using mwait in idle threads
[    1.942897] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    1.946893] Spectre V2 : Mitigation: Retpolines
[    1.950893] Spectre V2 : User space: Mitigation: STIBP always-on protection
[    1.954893] Speculative Return Stack Overflow: Mitigation: Safe RET
[    1.958893] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.962893] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
[    1.966892] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    1.970893] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    1.974896] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.978893] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.982892] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.986893] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    1.990892] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    1.994893] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    1.998892] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    2.002892] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    2.006892] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[    2.044921] Freeing SMP alternatives memory: 48K
[    2.046895] pid_max: default: 131072 minimum: 1024
[    2.058496] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm
[    2.058945] Yama: becoming mindful.
[    2.063020] AppArmor: AppArmor initialized
[    2.075649] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    2.083924] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    2.087044] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.090988] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.207725] smpboot: CPU0: AMD EPYC 7713 64-Core Processor (family: 0x19, model: 0x1, stepping: 0x1)
[    2.211244] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    2.214895] ... version:                0
[    2.218893] ... bit width:              48
[    2.222894] ... generic registers:      6
[    2.226893] ... value mask:             0000ffffffffffff
[    2.230893] ... max period:             00007fffffffffff
[    2.234893] ... fixed-purpose events:   0
[    2.238893] ... event mask:             000000000000003f
[    2.243322] signal: max sigframe size: 3376
[    2.246953] rcu: Hierarchical SRCU implementation.
[    2.250894] rcu: 	Max phase no-delay instances is 1000.
[    2.254950] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
[    2.267299] MCE: In-kernel MCE decoding enabled.
[    2.270941] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    2.275845] smp: Bringing up secondary CPUs ...
[    2.279053] smpboot: x86: Booting SMP configuration:
[    2.282896] .... node  #0, CPUs:          #1   #2   #3   #4   #5   #6   #7   #8   #9  #10  #11  #12  #13  #14  #15  #16  #17  #18  #19  #20  #21  #22  #23  #24  #25  #26  #27  #28  #29  #30  #31
[    2.294895] .... node  #1, CPUs:    #32  #33  #34  #35  #36  #37  #38  #39  #40  #41  #42  #43  #44  #45  #46  #47  #48  #49  #50  #51  #52  #53  #54  #55  #56  #57  #58  #59  #60  #61  #62  #63
[    2.446896] .... node  #0, CPUs:    #64  #65  #66  #67  #68  #69  #70  #71  #72  #73  #74  #75  #76  #77  #78  #79  #80  #81  #82  #83  #84  #85  #86  #87  #88  #89  #90  #91  #92  #93  #94  #95
[    2.454897] .... node  #1, CPUs:    #96  #97  #98  #99 #100 #101 #102 #103 #104 #105 #106 #107 #108 #109 #110 #111 #112 #113 #114 #115 #116 #117 #118 #119 #120 #121 #122 #123 #124 #125 #126 #127
[    2.463199] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[    2.615064] smp: Brought up 2 nodes, 128 CPUs
[    2.618897] smpboot: Total of 128 processors activated (511046.91 BogoMIPS)
[    2.632825] Memory: 262225220K/266975624K available (18401K kernel code, 3299K rwdata, 7944K rodata, 4760K init, 6092K bss, 4428276K reserved, 0K cma-reserved)
[    2.640576] devtmpfs: initialized
[    2.643000] x86/mm: Memory block size: 2048MB
[    2.657221] ACPI: PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    2.658895] ACPI: PM: Registering ACPI NVS region [mem 0x6dfcf000-0x6edfefff] (14876672 bytes)
[    2.663180] ACPI: PM: Registering ACPI NVS region [mem 0x6f000000-0x6f00afff] (45056 bytes)
[    2.671011] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    2.674959] posixtimers hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.679109] futex hash table entries: 16384 (1048576 bytes on 2 NUMA nodes, total 2048 KiB, linear).
[    2.683125] pinctrl core: initialized pinctrl subsystem
[    2.687045] PM: RTC time: 17:10:34, date: 2025-06-17
[    2.691669] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    2.695501] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    2.699074] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    2.703076] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    2.706901] audit: initializing netlink subsys (disabled)
[    2.710923] audit: type=2000 audit(1750180233.828:1): state=initialized audit_enabled=0 res=1
[    2.711100] thermal_sys: Registered thermal governor 'fair_share'
[    2.714895] thermal_sys: Registered thermal governor 'bang_bang'
[    2.718894] thermal_sys: Registered thermal governor 'step_wise'
[    2.722893] thermal_sys: Registered thermal governor 'user_space'
[    2.726917] cpuidle: using governor ladder
[    2.734904] cpuidle: using governor menu
[    2.738943] Detected 1 PCC Subspaces
[    2.742895] Registering PCC driver as Mailbox controller
[    2.751070] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    2.754898] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    2.759077] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    2.762904] PCI: Using configuration type 1 for base access
[    2.766902] PCI: Dell System detected, enabling pci=bfsort.
[    2.771098] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    2.775114] HugeTLB: allocation took 0ms with hugepage_allocation_threads=32
[    2.778937] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    2.782894] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    2.786894] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    2.790893] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    2.799209] ACPI: Added _OSI(Module Device)
[    2.802894] ACPI: Added _OSI(Processor Device)
[    2.806894] ACPI: Added _OSI(Processor Aggregator Device)
[    2.851854] ACPI: 6 ACPI AML tables successfully acquired and loaded
[    2.867850] ACPI: Interpreter enabled
[    2.870908] ACPI: PM: (supports S0 S5)
[    2.874894] ACPI: Using IOAPIC for interrupt routing
[    2.879513] HEST: Table parsing has been initialized.
[    2.883304] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    2.886897] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.890893] PCI: Ignoring E820 reservations for host bridge windows
[    2.899338] ACPI: Enabled 1 GPEs in block 00 to 1F
[    2.941286] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    2.942973] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    2.946972] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    2.950971] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    2.954971] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    2.958971] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    2.962971] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    2.966971] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    2.971397] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-3f])
[    2.974898] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.979059] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER DPC]
[    2.983210] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    2.986894] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.991891] PCI host bridge to bus 0000:00
[    2.994897] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    2.998894] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    3.002895] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000fffff window]
[    3.006894] pci_bus 0000:00: root bus resource [io  0x0d00-0x3fff window]
[    3.010894] pci_bus 0000:00: root bus resource [mem 0xe1000000-0xfebfffff window]
[    3.014894] pci_bus 0000:00: root bus resource [mem 0x63dc0000000-0x7fcffffffff window]
[    3.018894] pci_bus 0000:00: root bus resource [bus 00-3f]
[    3.022908] pci 0000:00:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.027049] pci 0000:00:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.031004] pci 0000:00:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.034987] pci 0000:00:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.038984] pci 0000:00:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.042989] pci 0000:00:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.046909] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.050898] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    3.054895] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    3.058963] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    3.063900] pci 0000:00:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.066988] pci 0000:00:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.070988] pci 0000:00:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.074988] pci 0000:00:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.078909] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.082898] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    3.086906] pci 0000:00:07.1: enabling Extended Tags
[    3.090941] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    3.095052] pci 0000:00:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.098987] pci 0000:00:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.102909] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.106898] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    3.110906] pci 0000:00:08.1: enabling Extended Tags
[    3.114943] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    3.119084] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
[    3.123009] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
[    3.127065] pci 0000:00:18.0: [1022:1650] type 00 class 0x060000 conventional PCI endpoint
[    3.131001] pci 0000:00:18.1: [1022:1651] type 00 class 0x060000 conventional PCI endpoint
[    3.134962] pci 0000:00:18.2: [1022:1652] type 00 class 0x060000 conventional PCI endpoint
[    3.138960] pci 0000:00:18.3: [1022:1653] type 00 class 0x060000 conventional PCI endpoint
[    3.142959] pci 0000:00:18.4: [1022:1654] type 00 class 0x060000 conventional PCI endpoint
[    3.146959] pci 0000:00:18.5: [1022:1655] type 00 class 0x060000 conventional PCI endpoint
[    3.150963] pci 0000:00:18.6: [1022:1656] type 00 class 0x060000 conventional PCI endpoint
[    3.158958] pci 0000:00:18.7: [1022:1657] type 00 class 0x060000 conventional PCI endpoint
[    3.163028] pci 0000:01:00.0: [1000:0097] type 00 class 0x010700 PCIe Endpoint
[    3.166924] pci 0000:01:00.0: BAR 0 [io  0x1000-0x10ff]
[    3.170896] pci 0000:01:00.0: BAR 1 [mem 0xf7400000-0xf740ffff 64bit]
[    3.174895] pci 0000:01:00.0: BAR 3 [mem 0xf7300000-0xf73fffff 64bit]
[    3.178896] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]
[    3.182899] pci 0000:01:00.0: enabling Extended Tags
[    3.186978] pci 0000:01:00.0: supports D1 D2
[    3.190935] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x0000ffff 64bit]
[    3.194894] pci 0000:01:00.0: VF BAR 0 [mem 0x00000000-0x000fffff 64bit]: contains BAR 0 for 16 VFs
[    3.198895] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x000fffff 64bit]
[    3.202894] pci 0000:01:00.0: VF BAR 2 [mem 0x00000000-0x00ffffff 64bit]: contains BAR 2 for 16 VFs
[    3.207045] pci 0000:00:03.2: PCI bridge to [bus 01]
[    3.210982] pci 0000:02:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.214927] pci 0000:02:00.0: enabling Extended Tags
[    3.219055] pci 0000:02:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.222921] pci 0000:02:00.2: BAR 2 [mem 0xf7200000-0xf727ffff]
[    3.226896] pci 0000:02:00.2: BAR 5 [mem 0xf7280000-0xf7281fff]
[    3.230899] pci 0000:02:00.2: enabling Extended Tags
[    3.235095] pci 0000:00:07.1: PCI bridge to [bus 02]
[    3.239030] pci 0000:03:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.242930] pci 0000:03:00.0: enabling Extended Tags
[    3.247105] pci 0000:03:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.250924] pci 0000:03:00.2: BAR 2 [mem 0xf7100000-0xf717ffff]
[    3.254896] pci 0000:03:00.2: BAR 5 [mem 0xf7180000-0xf7181fff]
[    3.258900] pci 0000:03:00.2: enabling Extended Tags
[    3.263087] pci 0000:03:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.266923] pci 0000:03:00.3: BAR 0 [mem 0xf7000000-0xf70fffff 64bit]
[    3.270902] pci 0000:03:00.3: enabling Extended Tags
[    3.274945] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
[    3.279076] pci 0000:00:08.1: PCI bridge to [bus 03]
[    3.284279] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 40-7f])
[    3.286897] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.291058] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.295212] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.298894] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.307508] PCI host bridge to bus 0000:40
[    3.310897] pci_bus 0000:40: root bus resource [io  0x4000-0x6fff window]
[    3.314894] pci_bus 0000:40: root bus resource [mem 0x90000000-0xaaffffff window]
[    3.318894] pci_bus 0000:40: root bus resource [mem 0x47e80000000-0x63dbfffffff window]
[    3.322894] pci_bus 0000:40: root bus resource [bus 40-7f]
[    3.326903] pci 0000:40:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.330992] pci 0000:40:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.334996] pci 0000:40:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.338978] pci 0000:40:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.342978] pci 0000:40:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.346987] pci 0000:40:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.350912] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.354899] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    3.358987] pci 0000:40:03.1: PME# supported from D0 D3hot D3cold
[    3.378613] pci 0000:40:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.378911] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.382899] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    3.386986] pci 0000:40:03.2: PME# supported from D0 D3hot D3cold
[    3.404215] pci 0000:40:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.406912] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.410900] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    3.415062] pci 0000:40:03.3: PME# supported from D0 D3hot D3cold
[    3.434016] pci 0000:40:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.434916] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.438901] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    3.443015] pci 0000:40:03.4: PME# supported from D0 D3hot D3cold
[    3.460076] pci 0000:40:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.462985] pci 0000:40:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.466983] pci 0000:40:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.470989] pci 0000:40:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.474913] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.478900] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    3.482905] pci 0000:40:07.1: enabling Extended Tags
[    3.486944] pci 0000:40:07.1: PME# supported from D0 D3hot D3cold
[    3.494911] pci 0000:40:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.502987] pci 0000:40:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.510910] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.514898] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    3.522905] pci 0000:40:08.1: enabling Extended Tags
[    3.526943] pci 0000:40:08.1: PME# supported from D0 D3hot D3cold
[    3.531152] pci 0000:40:03.1: PCI bridge to [bus 41]
[    3.538978] pci 0000:40:03.2: PCI bridge to [bus 42]
[    3.542975] pci 0000:40:03.3: PCI bridge to [bus 43]
[    3.546976] pci 0000:40:03.4: PCI bridge to [bus 44]
[    3.550982] pci 0000:45:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    3.558926] pci 0000:45:00.0: enabling Extended Tags
[    3.563055] pci 0000:45:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.570922] pci 0000:45:00.2: BAR 2 [mem 0xa5300000-0xa537ffff]
[    3.578896] pci 0000:45:00.2: BAR 5 [mem 0xa5380000-0xa5381fff]
[    3.582898] pci 0000:45:00.2: enabling Extended Tags
[    3.591091] pci 0000:40:07.1: PCI bridge to [bus 45]
[    3.595027] pci 0000:46:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    3.602902] pci 0000:46:00.0: enabling Extended Tags
[    3.607102] pci 0000:46:00.1: [1022:1486] type 00 class 0x108000 PCIe Endpoint
[    3.614923] pci 0000:46:00.1: BAR 2 [mem 0xa5100000-0xa51fffff]
[    3.618896] pci 0000:46:00.1: BAR 5 [mem 0xa5282000-0xa5283fff]
[    3.626899] pci 0000:46:00.1: enabling Extended Tags
[    3.631087] pci 0000:46:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    3.638923] pci 0000:46:00.2: BAR 2 [mem 0xa5200000-0xa527ffff]
[    3.642896] pci 0000:46:00.2: BAR 5 [mem 0xa5280000-0xa5281fff]
[    3.650899] pci 0000:46:00.2: enabling Extended Tags
[    3.655086] pci 0000:46:00.3: [1022:148c] type 00 class 0x0c0330 PCIe Endpoint
[    3.662922] pci 0000:46:00.3: BAR 0 [mem 0xa5000000-0xa50fffff 64bit]
[    3.666902] pci 0000:46:00.3: enabling Extended Tags
[    3.674943] pci 0000:46:00.3: PME# supported from D0 D3hot D3cold
[    3.679080] pci 0000:40:08.1: PCI bridge to [bus 46]
[    3.687223] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 80-bf])
[    3.690898] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    3.702954] acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER DPC]
[    3.711220] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    3.718894] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
[    3.727805] PCI host bridge to bus 0000:80
[    3.730897] pci_bus 0000:80: root bus resource [io  0x7000-0x9fff window]
[    3.738894] pci_bus 0000:80: root bus resource [mem 0xab000000-0xc5ffffff window]
[    3.746894] pci_bus 0000:80: root bus resource [mem 0x2bf40000000-0x47e7fffffff window]
[    3.754895] pci_bus 0000:80: root bus resource [bus 80-bf]
[    3.758904] pci 0000:80:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    3.766992] pci 0000:80:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    3.774995] pci 0000:80:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.782988] pci 0000:80:01.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.790911] pci 0000:80:01.1: PCI bridge to [bus 81]
[    3.794899] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    3.802988] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    3.823190] pci 0000:80:01.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    3.830911] pci 0000:80:01.2: PCI bridge to [bus 82]
[    3.834899] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    3.842987] pci 0000:80:01.2: PME# supported from D0 D3hot D3cold
[    3.861537] pci 0000:80:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.867093] pci 0000:80:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.878894] pci 0000:80:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.886985] pci 0000:80:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.894981] pci 0000:80:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.902982] pci 0000:80:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.910909] pci 0000:80:07.1: PCI bridge to [bus 83]
[    3.914898] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    3.922905] pci 0000:80:07.1: enabling Extended Tags
[    3.926941] pci 0000:80:07.1: PME# supported from D0 D3hot D3cold
[    3.931050] pci 0000:80:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    3.938987] pci 0000:80:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.946909] pci 0000:80:08.1: PCI bridge to [bus 84]
[    3.954898] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    3.958905] pci 0000:80:08.1: enabling Extended Tags
[    3.962943] pci 0000:80:08.1: PME# supported from D0 D3hot D3cold
[    3.971059] pci 0000:80:08.2: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    3.978910] pci 0000:80:08.2: PCI bridge to [bus 85]
[    3.982898] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    3.990905] pci 0000:80:08.2: enabling Extended Tags
[    3.994942] pci 0000:80:08.2: PME# supported from D0 D3hot D3cold
[    4.002937] pci 0000:80:01.1: PCI bridge to [bus 81]
[    4.006978] pci 0000:80:01.2: PCI bridge to [bus 82]
[    4.010980] pci 0000:83:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    4.018927] pci 0000:83:00.0: enabling Extended Tags
[    4.023055] pci 0000:83:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.030921] pci 0000:83:00.2: BAR 2 [mem 0xbfa00000-0xbfa7ffff]
[    4.038896] pci 0000:83:00.2: BAR 5 [mem 0xbfa80000-0xbfa81fff]
[    4.042899] pci 0000:83:00.2: enabling Extended Tags
[    4.047097] pci 0000:80:07.1: PCI bridge to [bus 83]
[    4.055027] pci 0000:84:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.058930] pci 0000:84:00.0: enabling Extended Tags
[    4.067106] pci 0000:84:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.074923] pci 0000:84:00.2: BAR 2 [mem 0xbf900000-0xbf97ffff]
[    4.078896] pci 0000:84:00.2: BAR 5 [mem 0xbf980000-0xbf981fff]
[    4.086899] pci 0000:84:00.2: enabling Extended Tags
[    4.091101] pci 0000:80:08.1: PCI bridge to [bus 84]
[    4.095031] pci 0000:85:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
[    4.102926] pci 0000:85:00.0: BAR 5 [mem 0xbf800000-0xbf8007ff]
[    4.106899] pci 0000:85:00.0: enabling Extended Tags
[    4.114957] pci 0000:85:00.0: PME# supported from D3hot D3cold
[    4.119069] pci 0000:80:08.2: PCI bridge to [bus 85]
[    4.123615] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus c0-ff])
[    4.130899] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    4.139059] acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug AER DPC]
[    4.147209] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    4.154894] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
[    4.167271] PCI host bridge to bus 0000:c0
[    4.170897] pci_bus 0000:c0: root bus resource [io  0xa000-0xffff window]
[    4.174894] pci_bus 0000:c0: root bus resource [mem 0xc6000000-0xe0ffffff window]
[    4.182894] pci_bus 0000:c0: root bus resource [mem 0x10000000000-0x2bf3fffffff window]
[    4.190895] pci_bus 0000:c0: root bus resource [io  0x03b0-0x03df window]
[    4.198894] pci_bus 0000:c0: root bus resource [mem 0x000a0000-0x000bffff window]
[    4.206894] pci_bus 0000:c0: root bus resource [bus c0-ff]
[    4.210903] pci 0000:c0:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
[    4.218991] pci 0000:c0:00.2: [1022:164f] type 00 class 0x080600 conventional PCI endpoint
[    4.226993] pci 0000:c0:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.238978] pci 0000:c0:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.246980] pci 0000:c0:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.254987] pci 0000:c0:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.262911] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.266898] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    4.270985] pci 0000:c0:03.1: PME# supported from D0 D3hot D3cold
[    4.293865] pci 0000:c0:03.2: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.298917] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.302900] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    4.310964] pci 0000:c0:03.2: PME# supported from D0 D3hot D3cold
[    4.329266] pci 0000:c0:03.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.330916] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.334899] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    4.339007] pci 0000:c0:03.3: PME# supported from D0 D3hot D3cold
[    4.360323] pci 0000:c0:03.4: [1022:1483] type 01 class 0x060400 PCIe Root Port
[    4.362916] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.366901] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    4.371016] pci 0000:c0:03.4: PME# supported from D0 D3hot D3cold
[    4.391661] pci 0000:c0:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.394987] pci 0000:c0:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.398989] pci 0000:c0:05.1: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.402909] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.406903] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    4.410939] pci 0000:c0:05.1: PME# supported from D0 D3hot D3cold
[    4.415045] pci 0000:c0:05.2: [1022:149a] type 01 class 0x060400 PCIe Root Port
[    4.418909] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.422898] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    4.426899] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.430939] pci 0000:c0:05.2: PME# supported from D0 D3hot D3cold
[    4.435036] pci 0000:c0:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.438983] pci 0000:c0:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.442908] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.446898] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    4.450905] pci 0000:c0:07.1: enabling Extended Tags
[    4.454941] pci 0000:c0:07.1: PME# supported from D0 D3hot D3cold
[    4.459048] pci 0000:c0:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
[    4.462983] pci 0000:c0:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
[    4.466909] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.470898] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    4.474906] pci 0000:c0:08.1: enabling Extended Tags
[    4.478943] pci 0000:c0:08.1: PME# supported from D0 D3hot D3cold
[    4.483134] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    4.486978] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    4.490980] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    4.494978] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    4.498994] pci 0000:c1:00.0: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.502942] pci 0000:c1:00.0: BAR 0 [mem 0xc7030000-0xc703ffff 64bit pref]
[    4.506902] pci 0000:c1:00.0: BAR 2 [mem 0xc7040000-0xc704ffff 64bit pref]
[    4.510898] pci 0000:c1:00.0: BAR 4 [mem 0xc7050000-0xc705ffff 64bit pref]
[    4.514897] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.518970] pci 0000:c1:00.0: PME# supported from D0 D3hot D3cold
[    4.522950] pci 0000:c1:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:c0:05.1 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
[    4.540321] pci 0000:c1:00.1: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
[    4.546941] pci 0000:c1:00.1: BAR 0 [mem 0xc7000000-0xc700ffff 64bit pref]
[    4.554896] pci 0000:c1:00.1: BAR 2 [mem 0xc7010000-0xc701ffff 64bit pref]
[    4.562896] pci 0000:c1:00.1: BAR 4 [mem 0xc7020000-0xc702ffff 64bit pref]
[    4.566895] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]
[    4.574983] pci 0000:c1:00.1: PME# supported from D0 D3hot D3cold
[    4.590920] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    4.594975] pci 0000:c2:00.0: [1556:be00] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    4.602920] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.606901] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    4.614904] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    4.630911] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    4.634931] pci_bus 0000:c3: extended config space not accessible
[    4.642923] pci 0000:c3:00.0: [102b:0536] type 00 class 0x030000 conventional PCI endpoint
[    4.650941] pci 0000:c3:00.0: BAR 0 [mem 0xc6000000-0xc6ffffff pref]
[    4.654895] pci 0000:c3:00.0: BAR 1 [mem 0xda808000-0xda80bfff]
[    4.662895] pci 0000:c3:00.0: BAR 2 [mem 0xda000000-0xda7fffff]
[    4.666913] pci 0000:c3:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    4.675023] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    4.682997] pci 0000:c8:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
[    4.686926] pci 0000:c8:00.0: enabling Extended Tags
[    4.695053] pci 0000:c8:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.698920] pci 0000:c8:00.2: BAR 2 [mem 0xdbb00000-0xdbb7ffff]
[    4.706896] pci 0000:c8:00.2: BAR 5 [mem 0xdbb80000-0xdbb81fff]
[    4.710898] pci 0000:c8:00.2: enabling Extended Tags
[    4.719017] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    4.723028] pci 0000:c9:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
[    4.730929] pci 0000:c9:00.0: enabling Extended Tags
[    4.735109] pci 0000:c9:00.2: [1022:1498] type 00 class 0x108000 PCIe Endpoint
[    4.742924] pci 0000:c9:00.2: BAR 2 [mem 0xdba00000-0xdba7ffff]
[    4.746896] pci 0000:c9:00.2: BAR 5 [mem 0xdba80000-0xdba81fff]
[    4.754900] pci 0000:c9:00.2: enabling Extended Tags
[    4.759102] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    4.770018] iommu: Default domain type: Translated
[    4.774894] iommu: DMA domain TLB invalidation policy: lazy mode
[    4.783198] SCSI subsystem initialized
[    4.786937] ACPI: bus type USB registered
[    4.790919] usbcore: registered new interface driver usbfs
[    4.794904] usbcore: registered new interface driver hub
[    4.802929] usbcore: registered new device driver usb
[    4.806925] pps_core: LinuxPPS API ver. 1 registered
[    4.810893] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux•it>
[    4.822896] PTP clock support registered
[    4.826974] EDAC MC: Ver: 3.0.0
[    4.830914] efivars: Registered efivars operations
[    4.835347] NetLabel: Initializing
[    4.838894] NetLabel:  domain hash size = 128
[    4.842895] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    4.846921] NetLabel:  unlabeled traffic allowed by default
[    4.850939] PCI: Using ACPI for IRQ routing
[    4.859910] pci 0000:c3:00.0: vgaarb: setting as boot VGA device
[    4.862892] pci 0000:c3:00.0: vgaarb: bridge control possible
[    4.862892] pci 0000:c3:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    4.862895] vgaarb: loaded
[    4.867041] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    4.870894] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    4.879101] clocksource: Switched to clocksource tsc-early
[    4.884720] VFS: Disk quotas dquot_6.6.0
[    4.888672] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.895797] AppArmor: AppArmor Filesystem Enabled
[    4.900522] pnp: PnP ACPI init
[    4.903831] system 00:00: [mem 0x80000000-0x8fffffff] has been reserved
[    4.910541] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[    4.918738] pnp: PnP ACPI: found 5 devices
[    4.929805] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    4.938799] NET: Registered PF_INET protocol family
[    4.943810] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.955583] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    4.964538] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    4.972567] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    4.982059] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc hugepage)
[    4.990439] TCP: Hash tables configured (established 524288 bind 65536)
[    4.997418] UDP hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    5.005838] UDP-Lite hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    5.014674] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    5.020339] NET: Registered PF_XDP protocol family
[    5.025134] pci 0000:01:00.0: ROM [mem 0xfff00000-0xffffffff pref]: can't claim; no compatible bridge window
[    5.034954] pci 0000:c1:00.0: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    5.044770] pci 0000:c1:00.1: ROM [mem 0xfffc0000-0xffffffff pref]: can't claim; no compatible bridge window
[    5.054591] pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
[    5.060260] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: can't assign; no space
[    5.067997] pci 0000:01:00.0: ROM [mem size 0x00100000 pref]: failed to assign
[    5.075215] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: can't assign; no space
[    5.083475] pci 0000:01:00.0: VF BAR 2 [mem size 0x01000000 64bit]: failed to assign
[    5.091215] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: can't assign; no space
[    5.099471] pci 0000:01:00.0: VF BAR 0 [mem size 0x00100000 64bit]: failed to assign
[    5.107213] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.112178] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    5.118272] pci 0000:00:03.2:   bridge window [mem 0xf7300000-0xf74fffff]
[    5.125061] pci 0000:00:07.1: PCI bridge to [bus 02]
[    5.130031] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    5.136819] pci 0000:00:08.1: PCI bridge to [bus 03]
[    5.141785] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.148571] PCI: No. 2 try to assign unassigned res
[    5.153449] pci 0000:00:03.2: resource 14 [mem 0xf7300000-0xf74fffff] released
[    5.160665] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.165636] pci 0000:00:03.2: bridge window [mem 0x00100000-0x002fffff] to [bus 01] add_size 1200000 add_align 100000
[    5.176245] pci 0000:00:03.2: bridge window [mem 0xe1000000-0xe23fffff]: assigned
[    5.183728] pci 0000:01:00.0: BAR 3 [mem 0xe1000000-0xe10fffff 64bit]: assigned
[    5.191039] pci 0000:01:00.0: ROM [mem 0xe1100000-0xe11fffff pref]: assigned
[    5.198087] pci 0000:01:00.0: VF BAR 2 [mem 0xe1200000-0xe21fffff 64bit]: assigned
[    5.205655] pci 0000:01:00.0: BAR 1 [mem 0xe2200000-0xe220ffff 64bit]: assigned
[    5.212964] pci 0000:01:00.0: VF BAR 0 [mem 0xe2210000-0xe230ffff 64bit]: assigned
[    5.220534] pci 0000:00:03.2: PCI bridge to [bus 01]
[    5.225499] pci 0000:00:03.2:   bridge window [io  0x1000-0x1fff]
[    5.231592] pci 0000:00:03.2:   bridge window [mem 0xe1000000-0xe23fffff]
[    5.238379] pci 0000:00:07.1: PCI bridge to [bus 02]
[    5.243345] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf72fffff]
[    5.250134] pci 0000:00:08.1: PCI bridge to [bus 03]
[    5.255139] pci 0000:00:08.1:   bridge window [mem 0xf7000000-0xf71fffff]
[    5.261927] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    5.268109] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    5.274291] pci_bus 0000:00: resource 6 [mem 0x000c0000-0x000fffff window]
[    5.281161] pci_bus 0000:00: resource 7 [io  0x0d00-0x3fff window]
[    5.287340] pci_bus 0000:00: resource 8 [mem 0xe1000000-0xfebfffff window]
[    5.294214] pci_bus 0000:00: resource 9 [mem 0x63dc0000000-0x7fcffffffff window]
[    5.301607] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[    5.307178] pci_bus 0000:01: resource 1 [mem 0xe1000000-0xe23fffff]
[    5.313444] pci_bus 0000:02: resource 1 [mem 0xf7200000-0xf72fffff]
[    5.319709] pci_bus 0000:03: resource 1 [mem 0xf7000000-0xf71fffff]
[    5.326052] pci 0000:40:03.1: bridge window [io  0x1000-0x0fff] to [bus 41] add_size 1000
[    5.334225] pci 0000:40:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 41] add_size 200000 add_align 100000
[    5.345695] pci 0000:40:03.2: bridge window [io  0x1000-0x0fff] to [bus 42] add_size 1000
[    5.353865] pci 0000:40:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 42] add_size 200000 add_align 100000
[    5.365330] pci 0000:40:03.3: bridge window [io  0x1000-0x0fff] to [bus 43] add_size 1000
[    5.373502] pci 0000:40:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 43] add_size 200000 add_align 100000
[    5.384970] pci 0000:40:03.4: bridge window [io  0x1000-0x0fff] to [bus 44] add_size 1000
[    5.393140] pci 0000:40:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 44] add_size 200000 add_align 100000
[    5.404610] pci 0000:40:03.1: bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]: assigned
[    5.413567] pci 0000:40:03.2: bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]: assigned
[    5.422520] pci 0000:40:03.3: bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]: assigned
[    5.431470] pci 0000:40:03.4: bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]: assigned
[    5.440425] pci 0000:40:03.1: bridge window [io  0x4000-0x4fff]: assigned
[    5.447208] pci 0000:40:03.2: bridge window [io  0x5000-0x5fff]: assigned
[    5.453995] pci 0000:40:03.3: bridge window [io  0x6000-0x6fff]: assigned
[    5.460781] pci 0000:40:03.4: bridge window [io  size 0x1000]: can't assign; no space
[    5.468605] pci 0000:40:03.4: bridge window [io  size 0x1000]: failed to assign
[    5.475914] pci 0000:40:03.4: bridge window [io  0x4000-0x4fff]: assigned
[    5.482696] pci 0000:40:03.3: bridge window [io  0x5000-0x5fff]: assigned
[    5.489486] pci 0000:40:03.2: bridge window [io  0x6000-0x6fff]: assigned
[    5.496269] pci 0000:40:03.1: bridge window [io  size 0x1000]: can't assign; no space
[    5.504095] pci 0000:40:03.1: bridge window [io  size 0x1000]: failed to assign
[    5.511400] pci 0000:40:03.1: PCI bridge to [bus 41]
[    5.516368] pci 0000:40:03.1:   bridge window [mem 0xa4c00000-0xa4ffffff]
[    5.523153] pci 0000:40:03.1:   bridge window [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.531412] pci 0000:40:03.2: PCI bridge to [bus 42]
[    5.536377] pci 0000:40:03.2:   bridge window [io  0x6000-0x6fff]
[    5.542470] pci 0000:40:03.2:   bridge window [mem 0xa4800000-0xa4bfffff]
[    5.549254] pci 0000:40:03.2:   bridge window [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.557517] pci 0000:40:03.3: PCI bridge to [bus 43]
[    5.562491] pci 0000:40:03.3:   bridge window [io  0x5000-0x5fff]
[    5.568584] pci 0000:40:03.3:   bridge window [mem 0xa4400000-0xa47fffff]
[    5.575383] pci 0000:40:03.3:   bridge window [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.583645] pci 0000:40:03.4: PCI bridge to [bus 44]
[    5.588609] pci 0000:40:03.4:   bridge window [io  0x4000-0x4fff]
[    5.594704] pci 0000:40:03.4:   bridge window [mem 0xa4000000-0xa43fffff]
[    5.601489] pci 0000:40:03.4:   bridge window [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.609750] pci 0000:40:07.1: PCI bridge to [bus 45]
[    5.614722] pci 0000:40:07.1:   bridge window [mem 0xa5300000-0xa53fffff]
[    5.621512] pci 0000:40:08.1: PCI bridge to [bus 46]
[    5.626481] pci 0000:40:08.1:   bridge window [mem 0xa5000000-0xa52fffff]
[    5.633270] pci_bus 0000:40: Some PCI device resources are unassigned, try booting with pci=realloc
[    5.642313] pci_bus 0000:40: resource 4 [io  0x4000-0x6fff window]
[    5.648494] pci_bus 0000:40: resource 5 [mem 0x90000000-0xaaffffff window]
[    5.655364] pci_bus 0000:40: resource 6 [mem 0x47e80000000-0x63dbfffffff window]
[    5.662758] pci_bus 0000:41: resource 1 [mem 0xa4c00000-0xa4ffffff]
[    5.669022] pci_bus 0000:41: resource 2 [mem 0x47e80000000-0x47e801fffff 64bit pref]
[    5.676762] pci_bus 0000:42: resource 0 [io  0x6000-0x6fff]
[    5.682370] pci_bus 0000:42: resource 1 [mem 0xa4800000-0xa4bfffff]
[    5.688634] pci_bus 0000:42: resource 2 [mem 0x47e80200000-0x47e803fffff 64bit pref]
[    5.696375] pci_bus 0000:43: resource 0 [io  0x5000-0x5fff]
[    5.701946] pci_bus 0000:43: resource 1 [mem 0xa4400000-0xa47fffff]
[    5.708213] pci_bus 0000:43: resource 2 [mem 0x47e80400000-0x47e805fffff 64bit pref]
[    5.715953] pci_bus 0000:44: resource 0 [io  0x4000-0x4fff]
[    5.721526] pci_bus 0000:44: resource 1 [mem 0xa4000000-0xa43fffff]
[    5.727788] pci_bus 0000:44: resource 2 [mem 0x47e80600000-0x47e807fffff 64bit pref]
[    5.735529] pci_bus 0000:45: resource 1 [mem 0xa5300000-0xa53fffff]
[    5.741794] pci_bus 0000:46: resource 1 [mem 0xa5000000-0xa52fffff]
[    5.748153] pci 0000:80:01.1: bridge window [io  0x1000-0x0fff] to [bus 81] add_size 1000
[    5.756338] pci 0000:80:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 81] add_size 200000 add_align 100000
[    5.767809] pci 0000:80:01.2: bridge window [io  0x1000-0x0fff] to [bus 82] add_size 1000
[    5.775986] pci 0000:80:01.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 82] add_size 200000 add_align 100000
[    5.787456] pci 0000:80:01.1: bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]: assigned
[    5.796427] pci 0000:80:01.2: bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]: assigned
[    5.805382] pci 0000:80:01.1: bridge window [io  0x7000-0x7fff]: assigned
[    5.812166] pci 0000:80:01.2: bridge window [io  0x8000-0x8fff]: assigned
[    5.818951] pci 0000:80:01.1: PCI bridge to [bus 81]
[    5.823917] pci 0000:80:01.1:   bridge window [io  0x7000-0x7fff]
[    5.830011] pci 0000:80:01.1:   bridge window [mem 0xbf400000-0xbf7fffff]
[    5.836796] pci 0000:80:01.1:   bridge window [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.845057] pci 0000:80:01.2: PCI bridge to [bus 82]
[    5.850029] pci 0000:80:01.2:   bridge window [io  0x8000-0x8fff]
[    5.856123] pci 0000:80:01.2:   bridge window [mem 0xbf000000-0xbf3fffff]
[    5.862907] pci 0000:80:01.2:   bridge window [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.871169] pci 0000:80:07.1: PCI bridge to [bus 83]
[    5.876141] pci 0000:80:07.1:   bridge window [mem 0xbfa00000-0xbfafffff]
[    5.882933] pci 0000:80:08.1: PCI bridge to [bus 84]
[    5.887903] pci 0000:80:08.1:   bridge window [mem 0xbf900000-0xbf9fffff]
[    5.894690] pci 0000:80:08.2: PCI bridge to [bus 85]
[    5.899668] pci 0000:80:08.2:   bridge window [mem 0xbf800000-0xbf8fffff]
[    5.906459] pci_bus 0000:80: resource 4 [io  0x7000-0x9fff window]
[    5.912640] pci_bus 0000:80: resource 5 [mem 0xab000000-0xc5ffffff window]
[    5.919514] pci_bus 0000:80: resource 6 [mem 0x2bf40000000-0x47e7fffffff window]
[    5.926908] pci_bus 0000:81: resource 0 [io  0x7000-0x7fff]
[    5.932478] pci_bus 0000:81: resource 1 [mem 0xbf400000-0xbf7fffff]
[    5.938744] pci_bus 0000:81: resource 2 [mem 0x2bf40000000-0x2bf401fffff 64bit pref]
[    5.946485] pci_bus 0000:82: resource 0 [io  0x8000-0x8fff]
[    5.952056] pci_bus 0000:82: resource 1 [mem 0xbf000000-0xbf3fffff]
[    5.958323] pci_bus 0000:82: resource 2 [mem 0x2bf40200000-0x2bf403fffff 64bit pref]
[    5.966063] pci_bus 0000:83: resource 1 [mem 0xbfa00000-0xbfafffff]
[    5.972327] pci_bus 0000:84: resource 1 [mem 0xbf900000-0xbf9fffff]
[    5.978592] pci_bus 0000:85: resource 1 [mem 0xbf800000-0xbf8fffff]
[    5.984913] pci 0000:c0:03.1: bridge window [io  0x1000-0x0fff] to [bus c4] add_size 1000
[    5.993082] pci 0000:c0:03.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c4] add_size 200000 add_align 100000
[    6.004610] pci 0000:c0:03.2: bridge window [io  0x1000-0x0fff] to [bus c5] add_size 1000
[    6.012783] pci 0000:c0:03.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c5] add_size 200000 add_align 100000
[    6.024249] pci 0000:c0:03.3: bridge window [io  0x1000-0x0fff] to [bus c6] add_size 1000
[    6.032421] pci 0000:c0:03.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c6] add_size 200000 add_align 100000
[    6.043886] pci 0000:c0:03.4: bridge window [io  0x1000-0x0fff] to [bus c7] add_size 1000
[    6.052056] pci 0000:c0:03.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus c7] add_size 200000 add_align 100000
[    6.063525] pci 0000:c0:05.1: bridge window [mem 0x00100000-0x000fffff] to [bus c1] add_size 100000 add_align 100000
[    6.074046] pci 0000:c0:03.1: bridge window [mem 0x10000000000-0x100001fffff 64bit pref]: assigned
[    6.082996] pci 0000:c0:03.2: bridge window [mem 0x10000200000-0x100003fffff 64bit pref]: assigned
[    6.091949] pci 0000:c0:03.3: bridge window [mem 0x10000400000-0x100005fffff 64bit pref]: assigned
[    6.100901] pci 0000:c0:03.4: bridge window [mem 0x10000600000-0x100007fffff 64bit pref]: assigned
[    6.109898] pci 0000:c0:05.1: bridge window [mem 0xc7100000-0xc71fffff]: assigned
[    6.117375] pci 0000:c0:03.1: bridge window [io  0xa000-0xafff]: assigned
[    6.124160] pci 0000:c0:03.2: bridge window [io  0xb000-0xbfff]: assigned
[    6.130945] pci 0000:c0:03.3: bridge window [io  0xc000-0xcfff]: assigned
[    6.137732] pci 0000:c0:03.4: bridge window [io  0xd000-0xdfff]: assigned
[    6.144519] pci 0000:c0:03.1: PCI bridge to [bus c4]
[    6.149486] pci 0000:c0:03.1:   bridge window [io  0xa000-0xafff]
[    6.155579] pci 0000:c0:03.1:   bridge window [mem 0xdb600000-0xdb9fffff]
[    6.162365] pci 0000:c0:03.1:   bridge window [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.170625] pci 0000:c0:03.2: PCI bridge to [bus c5]
[    6.175588] pci 0000:c0:03.2:   bridge window [io  0xb000-0xbfff]
[    6.181681] pci 0000:c0:03.2:   bridge window [mem 0xdb200000-0xdb5fffff]
[    6.188469] pci 0000:c0:03.2:   bridge window [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.196727] pci 0000:c0:03.3: PCI bridge to [bus c6]
[    6.201691] pci 0000:c0:03.3:   bridge window [io  0xc000-0xcfff]
[    6.207784] pci 0000:c0:03.3:   bridge window [mem 0xdae00000-0xdb1fffff]
[    6.214605] pci 0000:c0:03.3:   bridge window [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.222867] pci 0000:c0:03.4: PCI bridge to [bus c7]
[    6.227839] pci 0000:c0:03.4:   bridge window [io  0xd000-0xdfff]
[    6.233930] pci 0000:c0:03.4:   bridge window [mem 0xdaa00000-0xdadfffff]
[    6.240715] pci 0000:c0:03.4:   bridge window [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.248979] pci 0000:c1:00.0: ROM [mem 0xc7100000-0xc713ffff pref]: assigned
[    6.256029] pci 0000:c1:00.1: ROM [mem 0xc7140000-0xc717ffff pref]: assigned
[    6.263075] pci 0000:c0:05.1: PCI bridge to [bus c1]
[    6.268042] pci 0000:c0:05.1:   bridge window [mem 0xc7100000-0xc71fffff]
[    6.274827] pci 0000:c0:05.1:   bridge window [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.282569] pci 0000:c2:00.0: PCI bridge to [bus c3]
[    6.287540] pci 0000:c2:00.0:   bridge window [mem 0xda000000-0xda8fffff]
[    6.294326] pci 0000:c2:00.0:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.302067] pci 0000:c0:05.2: PCI bridge to [bus c2-c3]
[    6.307299] pci 0000:c0:05.2:   bridge window [mem 0xda000000-0xda8fffff]
[    6.314119] pci 0000:c0:05.2:   bridge window [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.321860] pci 0000:c0:07.1: PCI bridge to [bus c8]
[    6.326827] pci 0000:c0:07.1:   bridge window [mem 0xdbb00000-0xdbbfffff]
[    6.333623] pci 0000:c0:08.1: PCI bridge to [bus c9]
[    6.338595] pci 0000:c0:08.1:   bridge window [mem 0xdba00000-0xdbafffff]
[    6.345381] pci_bus 0000:c0: resource 4 [io  0xa000-0xffff window]
[    6.351556] pci_bus 0000:c0: resource 5 [mem 0xc6000000-0xe0ffffff window]
[    6.358429] pci_bus 0000:c0: resource 6 [mem 0x10000000000-0x2bf3fffffff window]
[    6.365826] pci_bus 0000:c0: resource 7 [io  0x03b0-0x03df window]
[    6.372008] pci_bus 0000:c0: resource 8 [mem 0x000a0000-0x000bffff window]
[    6.378881] pci_bus 0000:c4: resource 0 [io  0xa000-0xafff]
[    6.384453] pci_bus 0000:c4: resource 1 [mem 0xdb600000-0xdb9fffff]
[    6.390721] pci_bus 0000:c4: resource 2 [mem 0x10000000000-0x100001fffff 64bit pref]
[    6.398462] pci_bus 0000:c5: resource 0 [io  0xb000-0xbfff]
[    6.404032] pci_bus 0000:c5: resource 1 [mem 0xdb200000-0xdb5fffff]
[    6.410297] pci_bus 0000:c5: resource 2 [mem 0x10000200000-0x100003fffff 64bit pref]
[    6.418038] pci_bus 0000:c6: resource 0 [io  0xc000-0xcfff]
[    6.423608] pci_bus 0000:c6: resource 1 [mem 0xdae00000-0xdb1fffff]
[    6.429877] pci_bus 0000:c6: resource 2 [mem 0x10000400000-0x100005fffff 64bit pref]
[    6.437616] pci_bus 0000:c7: resource 0 [io  0xd000-0xdfff]
[    6.443187] pci_bus 0000:c7: resource 1 [mem 0xdaa00000-0xdadfffff]
[    6.449450] pci_bus 0000:c7: resource 2 [mem 0x10000600000-0x100007fffff 64bit pref]
[    6.457190] pci_bus 0000:c1: resource 1 [mem 0xc7100000-0xc71fffff]
[    6.463459] pci_bus 0000:c1: resource 2 [mem 0xc7000000-0xc70fffff 64bit pref]
[    6.470675] pci_bus 0000:c2: resource 1 [mem 0xda000000-0xda8fffff]
[    6.476943] pci_bus 0000:c2: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.484159] pci_bus 0000:c3: resource 1 [mem 0xda000000-0xda8fffff]
[    6.490427] pci_bus 0000:c3: resource 2 [mem 0xc6000000-0xc6ffffff 64bit pref]
[    6.497647] pci_bus 0000:c8: resource 1 [mem 0xdbb00000-0xdbbfffff]
[    6.503913] pci_bus 0000:c9: resource 1 [mem 0xdba00000-0xdbafffff]
[    6.510992] PCI: CLS 64 bytes, default 64
[    6.515090] Trying to unpack rootfs image as initramfs...
[    6.577976] AMD-Vi: IOMMU SNP support enabled.
[    6.582606] pci 0000:c0:00.2: AMD-Vi: IOMMU performance counters supported
[    6.589642] pci 0000:c0:01.0: Adding to iommu group 0
[    6.594755] pci 0000:c0:02.0: Adding to iommu group 1
[    6.599955] pci 0000:c0:03.0: Adding to iommu group 2
[    6.605053] pci 0000:c0:03.1: Adding to iommu group 2
[    6.610154] pci 0000:c0:03.2: Adding to iommu group 2
[    6.615252] pci 0000:c0:03.3: Adding to iommu group 2
[    6.620356] pci 0000:c0:03.4: Adding to iommu group 2
[    6.625509] pci 0000:c0:04.0: Adding to iommu group 3
[    6.630660] pci 0000:c0:05.0: Adding to iommu group 4
[    6.635764] pci 0000:c0:05.1: Adding to iommu group 4
[    6.640870] pci 0000:c0:05.2: Adding to iommu group 4
[    6.645980] pci 0000:c0:07.0: Adding to iommu group 5
[    6.651065] pci 0000:c0:07.1: Adding to iommu group 6
[    6.656174] pci 0000:c0:08.0: Adding to iommu group 7
[    6.661264] pci 0000:c0:08.1: Adding to iommu group 8
[    6.666324] pci 0000:c1:00.0: Adding to iommu group 4
[    6.671386] pci 0000:c1:00.1: Adding to iommu group 4
[    6.676447] pci 0000:c2:00.0: Adding to iommu group 4
[    6.681511] pci 0000:c3:00.0: Adding to iommu group 4
[    6.686596] pci 0000:c8:00.0: Adding to iommu group 9
[    6.691685] pci 0000:c8:00.2: Adding to iommu group 10
[    6.696860] pci 0000:c9:00.0: Adding to iommu group 11
[    6.702034] pci 0000:c9:00.2: Adding to iommu group 12
[    6.713429] pci 0000:80:00.2: AMD-Vi: IOMMU performance counters supported
[    6.720492] pci 0000:80:01.0: Adding to iommu group 13
[    6.725675] pci 0000:80:01.1: Adding to iommu group 13
[    6.730854] pci 0000:80:01.2: Adding to iommu group 13
[    6.736050] pci 0000:80:02.0: Adding to iommu group 14
[    6.741242] pci 0000:80:03.0: Adding to iommu group 15
[    6.746432] pci 0000:80:04.0: Adding to iommu group 16
[    6.751621] pci 0000:80:05.0: Adding to iommu group 17
[    6.756814] pci 0000:80:07.0: Adding to iommu group 18
[    6.761983] pci 0000:80:07.1: Adding to iommu group 19
[    6.767180] pci 0000:80:08.0: Adding to iommu group 20
[    6.772348] pci 0000:80:08.1: Adding to iommu group 21
[    6.777522] pci 0000:80:08.2: Adding to iommu group 22
[    6.782696] pci 0000:83:00.0: Adding to iommu group 23
[    6.787874] pci 0000:83:00.2: Adding to iommu group 24
[    6.793045] pci 0000:84:00.0: Adding to iommu group 25
[    6.798220] pci 0000:84:00.2: Adding to iommu group 26
[    6.803392] pci 0000:85:00.0: Adding to iommu group 27
[    6.815730] pci 0000:40:00.2: AMD-Vi: IOMMU performance counters supported
[    6.822732] pci 0000:40:01.0: Adding to iommu group 28
[    6.827951] pci 0000:40:02.0: Adding to iommu group 29
[    6.833240] pci 0000:40:03.0: Adding to iommu group 30
[    6.838416] pci 0000:40:03.1: Adding to iommu group 30
[    6.843592] pci 0000:40:03.2: Adding to iommu group 30
[    6.848772] pci 0000:40:03.3: Adding to iommu group 30
[    6.853947] pci 0000:40:03.4: Adding to iommu group 30
[    6.859136] pci 0000:40:04.0: Adding to iommu group 31
[    6.864333] pci 0000:40:05.0: Adding to iommu group 32
[    6.869529] pci 0000:40:07.0: Adding to iommu group 33
[    6.874704] pci 0000:40:07.1: Adding to iommu group 34
[    6.879901] pci 0000:40:08.0: Adding to iommu group 35
[    6.885075] pci 0000:40:08.1: Adding to iommu group 36
[    6.890246] pci 0000:45:00.0: Adding to iommu group 37
[    6.895418] pci 0000:45:00.2: Adding to iommu group 38
[    6.900594] pci 0000:46:00.0: Adding to iommu group 39
[    6.905768] pci 0000:46:00.1: Adding to iommu group 40
[    6.910941] pci 0000:46:00.2: Adding to iommu group 41
[    6.916118] pci 0000:46:00.3: Adding to iommu group 42
[    6.928422] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    6.935439] pci 0000:00:00.0: Adding to iommu group 43
[    6.940650] pci 0000:00:01.0: Adding to iommu group 44
[    6.945845] pci 0000:00:02.0: Adding to iommu group 45
[    6.950864] Freeing initrd memory: 38564K
[    6.951036] pci 0000:00:03.0: Adding to iommu group 46
[    6.960172] pci 0000:00:03.2: Adding to iommu group 47
[    6.965373] pci 0000:00:04.0: Adding to iommu group 48
[    6.970570] pci 0000:00:05.0: Adding to iommu group 49
[    6.975761] pci 0000:00:07.0: Adding to iommu group 50
[    6.980933] pci 0000:00:07.1: Adding to iommu group 51
[    6.986128] pci 0000:00:08.0: Adding to iommu group 52
[    6.991306] pci 0000:00:08.1: Adding to iommu group 53
[    6.996523] pci 0000:00:14.0: Adding to iommu group 54
[    7.001695] pci 0000:00:14.3: Adding to iommu group 54
[    7.007048] pci 0000:00:18.0: Adding to iommu group 55
[    7.012223] pci 0000:00:18.1: Adding to iommu group 55
[    7.017400] pci 0000:00:18.2: Adding to iommu group 55
[    7.022571] pci 0000:00:18.3: Adding to iommu group 55
[    7.027747] pci 0000:00:18.4: Adding to iommu group 55
[    7.032921] pci 0000:00:18.5: Adding to iommu group 55
[    7.038094] pci 0000:00:18.6: Adding to iommu group 55
[    7.043267] pci 0000:00:18.7: Adding to iommu group 55
[    7.048452] pci 0000:01:00.0: Adding to iommu group 56
[    7.053624] pci 0000:02:00.0: Adding to iommu group 57
[    7.058800] pci 0000:02:00.2: Adding to iommu group 58
[    7.063971] pci 0000:03:00.0: Adding to iommu group 59
[    7.069146] pci 0000:03:00.2: Adding to iommu group 60
[    7.074318] pci 0000:03:00.3: Adding to iommu group 61
[    7.088487] AMD-Vi: Extended features (0x841f77e022094ace, 0x0): PPR X2APIC NX IA GA PC SNP
[    7.096843] AMD-Vi: Interrupt remapping enabled
[    7.101374] AMD-Vi: X2APIC enabled
[    7.105736] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    7.112176] software IO TLB: mapped [mem 0x000000005bf37000-0x0000000063f37000] (128MB)
[    7.120323] LVT offset 0 assigned for vector 0x400
[    7.126657] perf: AMD IBS detected (0x000003ff)
[    7.132612] amd_uncore: 4 amd_df counters detected
[    7.137452] amd_uncore: 6 amd_l3 counters detected
[    7.144049] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    7.151215] perf/amd_iommu: Detected AMD IOMMU #1 (2 banks, 4 counters/bank).
[    7.158375] perf/amd_iommu: Detected AMD IOMMU #2 (2 banks, 4 counters/bank).
[    7.165526] perf/amd_iommu: Detected AMD IOMMU #3 (2 banks, 4 counters/bank).
[    7.175919] Initialise system trusted keyrings
[    7.180381] Key type blacklist registered
[    7.184510] workingset: timestamp_bits=36 max_order=26 bucket_order=0
[    7.191474] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    7.197455] fuse: init (API version 7.44)
[    7.201726] integrity: Platform Keyring initialized
[    7.218478] Key type asymmetric registered
[    7.222574] Asymmetric key parser 'x509' registered
[    7.227485] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    7.234972] io scheduler mq-deadline registered
[    7.242101] ledtrig-cpu: registered to indicate activity on CPUs
[    7.248417] pcieport 0000:00:03.2: PME: Signaling with IRQ 38
[    7.254583] pcieport 0000:00:07.1: PME: Signaling with IRQ 40
[    7.260564] pcieport 0000:00:08.1: PME: Signaling with IRQ 41
[    7.266552] pcieport 0000:40:03.1: PME: Signaling with IRQ 42
[    7.272353] pcieport 0000:40:03.1: pciehp: Slot #167 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.286372] pcieport 0000:40:03.2: PME: Signaling with IRQ 43
[    7.292178] pcieport 0000:40:03.2: pciehp: Slot #166 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.306194] pcieport 0000:40:03.3: PME: Signaling with IRQ 44
[    7.311997] pcieport 0000:40:03.3: pciehp: Slot #169 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.326017] pcieport 0000:40:03.4: PME: Signaling with IRQ 45
[    7.331815] pcieport 0000:40:03.4: pciehp: Slot #168 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.345902] pcieport 0000:40:07.1: PME: Signaling with IRQ 47
[    7.351877] pcieport 0000:40:08.1: PME: Signaling with IRQ 48
[    7.357982] pcieport 0000:80:01.1: PME: Signaling with IRQ 49
[    7.363834] pcieport 0000:80:01.1: pciehp: Slot #160 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.377851] pcieport 0000:80:01.2: PME: Signaling with IRQ 50
[    7.383644] pcieport 0000:80:01.2: pciehp: Slot #161 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.397764] pcieport 0000:80:07.1: PME: Signaling with IRQ 52
[    7.403797] pcieport 0000:80:08.1: PME: Signaling with IRQ 54
[    7.409814] pcieport 0000:80:08.2: PME: Signaling with IRQ 55
[    7.415765] pcieport 0000:c0:03.1: PME: Signaling with IRQ 56
[    7.421563] pcieport 0000:c0:03.1: pciehp: Slot #163 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.435531] pcieport 0000:c0:03.2: PME: Signaling with IRQ 57
[    7.441332] pcieport 0000:c0:03.2: pciehp: Slot #162 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.455300] pcieport 0000:c0:03.3: PME: Signaling with IRQ 58
[    7.461098] pcieport 0000:c0:03.3: pciehp: Slot #165 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.475084] pcieport 0000:c0:03.4: PME: Signaling with IRQ 59
[    7.480884] pcieport 0000:c0:03.4: pciehp: Slot #164 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    7.494864] pcieport 0000:c0:05.1: PME: Signaling with IRQ 60
[    7.500791] pcieport 0000:c0:05.2: PME: Signaling with IRQ 61
[    7.506823] pcieport 0000:c0:07.1: PME: Signaling with IRQ 63
[    7.512845] pcieport 0000:c0:08.1: PME: Signaling with IRQ 65
[    7.519362] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    7.526833] ACPI: button: Power Button [PWRF]
[    7.972459] Estimated ratio of average max frequency by base frequency (times 1024): 1464
[    7.980952] ERST: Error Record Serialization Table (ERST) support is initialized.
[    7.988456] pstore: Using crash dump compression: deflate
[    7.993851] pstore: Registered erst as persistent store backend
[    7.999923] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    8.006490] 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    8.014642] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    8.025744] Linux agpgart interface v0.103
[    8.056142] loop: module loaded
[    8.070621] ahci 0000:85:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[    8.078628] ahci 0000:85:00.0: 8/8 ports implemented (port mask 0xff)
[    8.085108] ahci 0000:85:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part sxs 
[    8.095423] scsi host0: ahci
[    8.098544] scsi host1: ahci
[    8.101641] scsi host2: ahci
[    8.104748] scsi host3: ahci
[    8.107834] scsi host4: ahci
[    8.110931] scsi host5: ahci
[    8.114042] scsi host6: ahci
[    8.117147] scsi host7: ahci
[    8.120097] ata1: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800100 irq 67 lpm-pol 0 ext
[    8.128716] ata2: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800180 irq 68 lpm-pol 0 ext
[    8.137323] ata3: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800200 irq 69 lpm-pol 0 ext
[    8.145931] ata4: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800280 irq 70 lpm-pol 0 ext
[    8.154533] ata5: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800300 irq 71 lpm-pol 0 ext
[    8.163139] ata6: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800380 irq 72 lpm-pol 0 ext
[    8.171745] ata7: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800400 irq 73 lpm-pol 0 ext
[    8.180352] ata8: SATA max UDMA/133 abar m2048@0xbf800000 port 0xbf800480 irq 74 lpm-pol 0 ext
[    8.189015] tsc: Refined TSC clocksource calibration: 1996.248 MHz
[    8.189353] tun: Universal TUN/TAP device driver, 1.6
[    8.195250] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398cac3bdaf, max_idle_ns: 881590646346 ns
[    8.200342] PPP generic driver version 2.4.2
[    8.214568] clocksource: Switched to clocksource tsc
[    8.214730] VFIO - User Level meta-driver version: 0.3
[    8.225063] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.230305] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 1
[    8.237808] xhci_hcd 0000:03:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.247364] xhci_hcd 0000:03:00.3: xHCI Host Controller
[    8.252595] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 2
[    8.259987] xhci_hcd 0000:03:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.267080] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.275346] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.282572] usb usb1: Product: xHCI Host Controller
[    8.287450] usb usb1: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.296405] usb usb1: SerialNumber: 0000:03:00.3
[    8.301208] hub 1-0:1.0: USB hub found
[    8.304976] hub 1-0:1.0: 2 ports detected
[    8.309840] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.317961] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.326225] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.333447] usb usb2: Product: xHCI Host Controller
[    8.338332] usb usb2: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.347290] usb usb2: SerialNumber: 0000:03:00.3
[    8.352061] hub 2-0:1.0: USB hub found
[    8.355823] hub 2-0:1.0: 2 ports detected
[    8.360770] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.366000] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 3
[    8.373492] xhci_hcd 0000:46:00.3: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000000000010
[    8.383005] xhci_hcd 0000:46:00.3: xHCI Host Controller
[    8.388241] xhci_hcd 0000:46:00.3: new USB bus registered, assigned bus number 4
[    8.395636] xhci_hcd 0000:46:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    8.402719] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[    8.410983] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.418203] usb usb3: Product: xHCI Host Controller
[    8.423080] usb usb3: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.432033] usb usb3: SerialNumber: 0000:46:00.3
[    8.436829] hub 3-0:1.0: USB hub found
[    8.440597] hub 3-0:1.0: 2 ports detected
[    8.445404] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.453521] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[    8.461787] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.469008] usb usb4: Product: xHCI Host Controller
[    8.473893] usb usb4: Manufacturer: Linux 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e xhci-hcd
[    8.482843] usb usb4: SerialNumber: 0000:46:00.3
[    8.487607] hub 4-0:1.0: USB hub found
[    8.491375] hub 4-0:1.0: 2 ports detected
[    8.496558] usbcore: registered new interface driver uas
[    8.501896] ata7: SATA link down (SStatus 0 SControl 300)
[    8.501908] usbcore: registered new interface driver usb-storage
[    8.507330] ata4: SATA link down (SStatus 0 SControl 300)
[    8.513337] i8042: PNP: No PS/2 controller found.
[    8.518729] ata3: SATA link down (SStatus 0 SControl 300)
[    8.523496] mousedev: PS/2 mouse device common for all mice
[    8.528834] ata5: SATA link down (SStatus 0 SControl 300)
[    8.534495] rtc_cmos 00:02: RTC can wake from S4
[    8.539808] ata2: SATA link down (SStatus 0 SControl 300)
[    8.544771] rtc_cmos 00:02: registered as rtc0
[    8.549824] ata8: SATA link down (SStatus 0 SControl 300)
[    8.554316] rtc_cmos 00:02: setting system clock to 2025-06-17T17:10:40 UTC (1750180240)
[    8.556256] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[    8.559670] ata1: SATA link down (SStatus 0 SControl 300)
[    8.567772] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram
[    8.574283] ata6: SATA link down (SStatus 0 SControl 300)
[    8.579668] i2c_dev: i2c /dev entries driver
[    8.596040] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    8.608266] device-mapper: uevent: version 1.0.3
[    8.612989] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists•linux.dev
[    8.621859] amd_pstate: driver load is disabled, boot with specific mode to enable this
[    8.629908] efifb: probing for efifb
[    8.633501] efifb: No BGRT, not showing boot graphics
[    8.638559] efifb: framebuffer at 0xc6000000, using 3072k, total 3072k
[    8.645093] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    8.651114] efifb: scrolling: redraw
[    8.654691] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    8.660337] fbcon: Deferring console take-over
[    8.664788] fb0: EFI VGA frame buffer device
[    8.669178] drop_monitor: Initializing network drop monitor service
[    8.675622] NET: Registered PF_INET6 protocol family
[    8.688435] Segment Routing with IPv6
[    8.692110] In-situ OAM (IOAM) with IPv6
[    8.695051] usb 1-1: New USB device found, idVendor=0424, idProduct=2744, bcdDevice= 1.21
[    8.696065] NET: Registered PF_PACKET protocol family
[    8.696250] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[    8.704212] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    8.709358] Key type dns_resolver registered
[    8.715823] usb 1-1: Product: USB2734
[    8.730878] usb 1-1: Manufacturer: Microchip Tech
[    8.738221] x86/amd: Previous system reset reason [0x00080800]: software wrote 0x6 to reset control register 0xCF9
[    8.748588] microcode: Current revision: 0x0a0011d5
[    8.753471] microcode: Updated early from: 0x0a0011d5
[    8.761869] resctrl: L3 allocation detected
[    8.766056] resctrl: MB allocation detected
[    8.770241] resctrl: L3 monitoring detected
[    8.774594] IPI shorthand broadcast: enabled
[    8.779556] hub 1-1:1.0: USB hub found
[    8.782625] sched_clock: Marking stable (8716001730, 64237472)->(9543704928, -763465726)
[    8.783555] hub 1-1:1.0: 4 ports detected
[    8.795972] registered taskstats version 1
[    8.802384] Loading compiled-in X.509 certificates
[    8.807798] Loaded X.509 cert 'Build time autogenerated kernel key: 08bfd1fd39cd432a2b2f01158b4d473611f86fe0'
[    8.822227] Demotion targets for Node 0: null
[    8.826591] Demotion targets for Node 1: null
[    8.831430] Key type .fscrypt registered
[    8.835364] Key type fscrypt-provisioning registered
[    8.841261] usb 3-1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    8.849441] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.856611] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
[    8.856708] Key type encrypted registered
[    8.867150] AppArmor: AppArmor sha256 policy hashing enabled
[    8.872896] integrity: Loading X.509 certificate: UEFI:db
[    8.876683] usb 2-1: New USB device found, idVendor=0424, idProduct=5744, bcdDevice= 1.21
[    8.878316] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    8.886468] usb 2-1: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[    8.897239] integrity: Loading X.509 certificate: UEFI:db
[    8.897257] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    8.904389] usb 2-1: Product: USB5734
[    8.909787] integrity: Loading X.509 certificate: UEFI:db
[    8.909900] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[    8.920823] usb 2-1: Manufacturer: Microchip Tech
[    8.939419] hub 2-1:1.0: USB hub found
[    8.943457] integrity: Loading X.509 certificate: UEFI:db
[    8.943594] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[    8.947436] hub 3-1:1.0: USB hub found
[    8.952905] ima: No TPM chip found, activating TPM-bypass!
[    8.963930] hub 2-1:1.0: 4 ports detected
[    8.967665] Loading compiled-in module X.509 certificates
[    8.973387] hub 3-1:1.0: 4 ports detected
[    8.977599] Loaded X.509 cert 'Build time autogenerated kernel key: 08bfd1fd39cd432a2b2f01158b4d473611f86fe0'
[    8.996480] ima: Allocated hash algorithm: sha1
[    9.001015] ima: No architecture policies found
[    9.005567] evm: Initialising EVM extended attributes:
[    9.010707] evm: security.selinux
[    9.014027] evm: security.SMACK64
[    9.017346] evm: security.SMACK64EXEC
[    9.021013] evm: security.SMACK64TRANSMUTE
[    9.025111] evm: security.SMACK64MMAP
[    9.028780] evm: security.apparmor
[    9.032180] evm: security.ima
[    9.035155] evm: security.capability
[    9.038773] evm: HMAC attrs: 0x1
[    9.042383] PM:   Magic number: 13:696:188
[    9.046642] acpi device:47: hash matches
[    9.050581] acpi device:1a: hash matches
[    9.054930] RAS: Correctable Errors collector initialized.
[    9.060573] clk: Disabling unused clocks
[    9.064505] PM: genpd: Disabling unused power domains
[    9.071294] Freeing unused decrypted memory: 2028K
[    9.076894] Freeing unused kernel image (initmem) memory: 4760K
[    9.082833] Write protecting the kernel read-only data: 26624k
[    9.089110] Freeing unused kernel image (text/rodata gap) memory: 28K
[    9.095734] Freeing unused kernel image (rodata/data gap) memory: 248K
[    9.189042] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    9.195490] Run /init as init process
[    9.205941] systemd[1]: Inserted module 'autofs4'
[    9.431400] systemd[1]: systemd 252-46.el9_5.3 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)
[    9.463853] systemd[1]: Detected architecture x86-64.
[    9.468906] systemd[1]: Running in initrd.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow) dracut-057-80.git20250411.el9_5 (Initramfs)^[[0m!

[    9.488343] systemd[1]: Hostname set to <sharavati.amd.com>.
[    9.587347] systemd[1]: Queued start job for default target Initrd Default Target.
[    9.595034] systemd[1]: Reached target Initrd /usr File System.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd /usr File System^[[0m.
[    9.612306] systemd[1]: Reached target Local File Systems.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
[    9.628318] systemd[1]: Reached target Slice Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSlice Units^[[0m.
[    9.644310] systemd[1]: Reached target Swaps.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwaps^[[0m.
[    9.660297] systemd[1]: Reached target Timer Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[    9.676465] systemd[1]: Listening on D-Bus System Message Bus Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[    9.696457] systemd[1]: Listening on Journal Socket (/dev/log).
[^[[0;32m  OK  ^[[0m] Listening on[    9.704250] usb 3-1.1: new high-speed USB device number 3 using xhci_hcd
 ^[[0;1;39mJournal Socket (/dev/log)^[[0m.
[    9.720457] systemd[1]: Listening on Journal Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket^[[0m.
[    9.736466] systemd[1]: Listening on udev Control Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[    9.752414] systemd[1]: Listening on udev Kernel Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
[    9.768307] systemd[1]: Reached target Socket Units.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
[    9.801264] usb 3-1.1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[    9.809612] systemd[1]: Starting Create List of Static Device Nodes...
[    9.816142] usb 3-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
[    9.838655] systemd[1]: Starting Journal Service...
         Starting ^[[0;1;39mJournal Service^[[0m...
[    9.853528] systemd[1]: Starting Load Kernel Modules...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
[    9.869319] systemd[1]: Starting Create System Users...
         Startin[    9.875167] hub 3-1.1:1.0: USB hub found
g ^[[0;1;39mCreat[    9.880139] hub 3-1.1:1.0: 4 ports detected
e System Users^[[0m...
[    9.893449] systemd[1]: Starting Setup Virtual Console...
         Starting ^[[0;1;39mSetup Virtual Console^[[0m...
[    9.909553] systemd[1]: Finished Create List of Static Device Nodes.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[    9.932439] systemd[1]: Started Journal Service.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Modules^[[0m.
[    9.964254] usb 3-1.4: new high-speed USB device number 4 using xhci_hcd
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mSetup Virtual Console^[[0m.
         Starting ^[[0;1;39mdracut cmdline hook^[[0m...
         Starting ^[[0;1;39mApply Kernel Variables^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mApply Kernel Variables^[[0m.
[   10.057262] usb 3-1.4: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[   10.065617] usb 3-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate System Users^[[0m.
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut cmdline hook^[[0m.
[   10.131212] hub 3-1.4:1.0: USB hub found
[   10.135390] hub 3-1.4:1.0: 4 ports detected
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Starting ^[[0;1;39mdracut pre-udev hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-udev hook^[[0m.
         Starting ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[   10.532060] wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQBC data block query control method not found
[^[[0;32m  OK  ^[[0m] Finished ^[[0[   10.543089] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
;1;39mColdplug A[   10.550207] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
ll udev Devices^[[   10.558773] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[0m.
[   10.559328] ccp 0000:46:00.1: no command queues available
[   10.573123] ccp 0000:46:00.1: sev enabled
[   10.577144] ccp 0000:46:00.1: psp enabled
[   10.577712] tg3 0000:c1:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:90
[   10.591689] tg3 0000:c1:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[^[[0;32m  OK  ^[[[   10.601519] tg3 0000:c1:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
0m] Reached targ[   10.610738] tg3 0000:c1:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
et ^[[0;1;39mSyst[   10.619855] mpt3sas version 52.100.00.00 loaded
em Initializatio[   10.619877] ACPI: bus type drm_connector registered
n^[[0m.
[   10.625267] mpt3sas_cm0: 63 BIT PCI BUS DMA ADDRESSING SUPPORTED, total mem (262592988 kB)
[   10.633740] tg3 0000:c1:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address d0:8e:79:bb:95:91
[   10.650506] tg3 0000:c1:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[   10.650509] tg3 0000:c1:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[   10.650511] tg3 0000:c1:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[^[[0;32m  OK  ^[[[   10.675059] mgag200 0000:c3:00.0: vgaarb: deactivate vga console
0m] Reached target ^[[0;1;39mNetwork^[[0m.
[   10.685020] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   10.688550] [drm] Initialized mgag200 1.0.0 for 0000:c3:00.0 on minor 0
[   10.693965] mpt3sas_cm0: MSI-X vectors supported: 96
[   10.705520] 	 no of cores: 128, max_msix_vectors: -1
[   10.705521] mpt3sas_cm0:  0 96 96
[   10.705523] fbcon: mgag200drmfb (fb0) is primary device
[   10.705526] fbcon: Deferring console take-over
[   10.709510] mpt3sas_cm0: High IOPs queues : disabled
[   10.710498] mgag200 0000:c3:00.0: [drm] fb0: mgag200drmfb frame buffer device
[   10.713813] mpt3sas0-msix0: PCI-MSI-X enabled: IRQ 108
[   10.713815] mpt3sas0-msix1: PCI-MSI-X enabled: IRQ 109
[   10.745864] mpt3sas0-msix2: PCI-MSI-X enabled: IRQ 110
[   10.745865] mpt3sas0-msix3: PCI-MSI-X enabled: IRQ 111
[   10.745867] mpt3sas0-msix4: PCI-MSI-X enabled: IRQ 112
[   10.745868] mpt3sas0-msix5: PCI-MSI-X enabled: IRQ 113
[   10.745870] mpt3sas0-msix6: PCI-MSI-X enabled: IRQ 114
[   10.771566] mpt3sas0-msix7: PCI-MSI-X enabled: IRQ 115
[   10.771568] mpt3sas0-msix8: PCI-MSI-X enabled: IRQ 116
[   10.771569] mpt3sas0-msix9: PCI-MSI-X enabled: IRQ 117
[   10.771570] mpt3sas0-msix10: PCI-MSI-X enabled: IRQ 118
[   10.771572] mpt3sas0-msix11: PCI-MSI-X enabled: IRQ 119
[   10.771573] mpt3sas0-msix12: PCI-MSI-X enabled: IRQ 120
[   10.771575] mpt3sas0-msix13: PCI-MSI-X enabled: IRQ 121
[   10.807897] mpt3sas0-msix14: PCI-MSI-X enabled: IRQ 122
[   10.813123] mpt3sas0-msix15: PCI-MSI-X enabled: IRQ 123
[   10.818405] mpt3sas0-msix16: PCI-MSI-X enabled: IRQ 124
         Startin[   10.823637] mpt3sas0-msix17: PCI-MSI-X enabled: IRQ 125
g ^[[0;1;39mdracu[   10.830240] mpt3sas0-msix18: PCI-MSI-X enabled: IRQ 126
t initqueue hook[   10.836876] mpt3sas0-msix19: PCI-MSI-X enabled: IRQ 127
^[[0m...
[   10.843467] mpt3sas0-msix20: PCI-MSI-X enabled: IRQ 128
[   10.849472] mpt3sas0-msix21: PCI-MSI-X enabled: IRQ 129
[   10.854697] mpt3sas0-msix22: PCI-MSI-X enabled: IRQ 130
[   10.854699] mpt3sas0-msix23: PCI-MSI-X enabled: IRQ 131
[   10.854700] mpt3sas0-msix24: PCI-MSI-X enabled: IRQ 132
[   10.854702] mpt3sas0-msix25: PCI-MSI-X enabled: IRQ 133
[   10.854704] mpt3sas0-msix26: PCI-MSI-X enabled: IRQ 134
[   10.854705] mpt3sas0-msix27: PCI-MSI-X enabled: IRQ 135
[   10.854707] mpt3sas0-msix28: PCI-MSI-X enabled: IRQ 136
[   10.891286] mpt3sas0-msix29: PCI-MSI-X enabled: IRQ 137
[   10.891288] mpt3sas0-msix30: PCI-MSI-X enabled: IRQ 138
[   10.891289] mpt3sas0-msix31: PCI-MSI-X enabled: IRQ 139
[   10.891291] mpt3sas0-msix32: PCI-MSI-X enabled: IRQ 140
[   10.891292] mpt3sas0-msix33: PCI-MSI-X enabled: IRQ 141
[   10.891293] mpt3sas0-msix34: PCI-MSI-X enabled: IRQ 142
[   10.891295] mpt3sas0-msix35: PCI-MSI-X enabled: IRQ 143
         Startin[   10.891296] mpt3sas0-msix36: PCI-MSI-X enabled: IRQ 144
g ^[[0;1;39mShow [   10.891298] mpt3sas0-msix37: PCI-MSI-X enabled: IRQ 145
Plymouth Boot Sc[   10.941102] mpt3sas0-msix38: PCI-MSI-X enabled: IRQ 146
reen^[[0m...
[   10.941103] mpt3sas0-msix39: PCI-MSI-X enabled: IRQ 147
[   10.941105] mpt3sas0-msix40: PCI-MSI-X enabled: IRQ 148
[   10.941106] mpt3sas0-msix41: PCI-MSI-X enabled: IRQ 149
[^[[0;32m  OK  ^[[[   10.941108] mpt3sas0-msix42: PCI-MSI-X enabled: IRQ 150
0m] Started ^[[0;[   10.941109] mpt3sas0-msix43: PCI-MSI-X enabled: IRQ 151
1;39mShow Plymou[   10.941111] mpt3sas0-msix44: PCI-MSI-X enabled: IRQ 152
th Boot Screen^[[[   10.984436] mpt3sas0-msix45: PCI-MSI-X enabled: IRQ 153
0m.
[   10.984438] mpt3sas0-msix46: PCI-MSI-X enabled: IRQ 154
[   10.984440] mpt3sas0-msix47: PCI-MSI-X enabled: IRQ 155
[   10.984441] mpt3sas0-msix48: PCI-MSI-X enabled: IRQ 156
[^[[0;32m  OK  ^[[[   10.984442] mpt3sas0-msix49: PCI-MSI-X enabled: IRQ 157
[   10.984444] mpt3sas0-msix50: PCI-MSI-X enabled: IRQ 158
0m] Started ^[[0;[   10.984446] mpt3sas0-msix51: PCI-MSI-X enabled: IRQ 159
[   10.984447] mpt3sas0-msix52: PCI-MSI-X enabled: IRQ 160
1;39mForward Pas[   11.030903] mpt3sas0-msix53: PCI-MSI-X enabled: IRQ 161
sword Requests t[   11.030904] mpt3sas0-msix54: PCI-MSI-X enabled: IRQ 162
o Plymouth Direc[   11.030906] mpt3sas0-msix55: PCI-MSI-X enabled: IRQ 163
tory Watch^[[0m.\r[   11.030907] mpt3sas0-msix56: PCI-MSI-X enabled: IRQ 164

[^[[0;32m  OK  [   11.030908] mpt3sas0-msix57: PCI-MSI-X enabled: IRQ 165
^[[0m] Reached ta[   11.030910] mpt3sas0-msix58: PCI-MSI-X enabled: IRQ 166
[   11.030912] mpt3sas0-msix59: PCI-MSI-X enabled: IRQ 167
rget ^[[0;1;39mPa[   11.075795] mpt3sas0-msix60: PCI-MSI-X enabled: IRQ 168
th Units^[[0m.
[   11.075796] mpt3sas0-msix61: PCI-MSI-X enabled: IRQ 169
[   11.075798] mpt3sas0-msix62: PCI-MSI-X enabled: IRQ 170
[   11.075799] mpt3sas0-msix63: PCI-MSI-X enabled: IRQ 171
[^[[0;32m  OK  ^[[[   11.075800] mpt3sas0-msix64: PCI-MSI-X enabled: IRQ 172
0m] Reached targ[   11.075802] mpt3sas0-msix65: PCI-MSI-X enabled: IRQ 173
et ^[[0;1;39mBasi[   11.075803] mpt3sas0-msix66: PCI-MSI-X enabled: IRQ 174
c System^[[0m.
[   11.119291] mpt3sas0-msix67: PCI-MSI-X enabled: IRQ 175
[   11.125905] mpt3sas0-msix68: PCI-MSI-X enabled: IRQ 176
[   11.131130] mpt3sas0-msix69: PCI-MSI-X enabled: IRQ 177
[   11.136356] mpt3sas0-msix70: PCI-MSI-X enabled: IRQ 178
[   11.141583] mpt3sas0-msix71: PCI-MSI-X enabled: IRQ 179
[   11.146806] mpt3sas0-msix72: PCI-MSI-X enabled: IRQ 180
[   11.152033] mpt3sas0-msix73: PCI-MSI-X enabled: IRQ 181
[   11.157260] mpt3sas0-msix74: PCI-MSI-X enabled: IRQ 182
[   11.162487] mpt3sas0-msix75: PCI-MSI-X enabled: IRQ 183
[   11.167713] mpt3sas0-msix76: PCI-MSI-X enabled: IRQ 184
[   11.172940] mpt3sas0-msix77: PCI-MSI-X enabled: IRQ 185
[   11.178163] mpt3sas0-msix78: PCI-MSI-X enabled: IRQ 186
[   11.183387] mpt3sas0-msix79: PCI-MSI-X enabled: IRQ 187
[   11.188614] mpt3sas0-msix80: PCI-MSI-X enabled: IRQ 188
[   11.193838] mpt3sas0-msix81: PCI-MSI-X enabled: IRQ 189
[   11.199067] mpt3sas0-msix82: PCI-MSI-X enabled: IRQ 190
[   11.204293] mpt3sas0-msix83: PCI-MSI-X enabled: IRQ 191
[   11.209518] mpt3sas0-msix84: PCI-MSI-X enabled: IRQ 192
[   11.214743] mpt3sas0-msix85: PCI-MSI-X enabled: IRQ 193
[   11.219970] mpt3sas0-msix86: PCI-MSI-X enabled: IRQ 194
[   11.225194] mpt3sas0-msix87: PCI-MSI-X enabled: IRQ 195
[   11.230421] mpt3sas0-msix88: PCI-MSI-X enabled: IRQ 196
[   11.235649] mpt3sas0-msix89: PCI-MSI-X enabled: IRQ 197
[   11.240875] mpt3sas0-msix90: PCI-MSI-X enabled: IRQ 198
[   11.246099] mpt3sas0-msix91: PCI-MSI-X enabled: IRQ 199
[   11.251324] mpt3sas0-msix92: PCI-MSI-X enabled: IRQ 200
[   11.256552] mpt3sas0-msix93: PCI-MSI-X enabled: IRQ 201
[   11.261775] mpt3sas0-msix94: PCI-MSI-X enabled: IRQ 202
[   11.267002] mpt3sas0-msix95: PCI-MSI-X enabled: IRQ 203
[   11.272229] mpt3sas_cm0: iomem(0x00000000e2200000), mapped(0x00000000ce50dbdf), size(65536)
[   11.280573] mpt3sas_cm0: ioport(0x0000000000001000), size(256)
[   11.344178] mpt3sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[   11.352181] mpt3sas_cm0: sending message unit reset !!
[   11.358835] mpt3sas_cm0: message unit reset: SUCCESS
[   11.391522] mpt3sas_cm0: scatter gather: sge_in_main_msg(1), sge_per_chain(7), sge_per_io(128), chains_per_io(19)
[   11.402988] mpt3sas_cm0: request pool(0x00000000ffb79edd) - dma(0xe0600000): depth(9700), frame_size(128), pool_size(1212 kB)
[   11.439621] mpt3sas_cm0: sense pool(0x000000009ddccf2d) - dma(0xdef00000): depth(9463), element_size(96), pool_size (887 kB)
[   11.450934] mpt3sas_cm0: reply pool(0x000000009f6cf742) - dma(0xdec00000): depth(9764), frame_size(128), pool_size(1220 kB)
[   11.462072] mpt3sas_cm0: config page(0x000000001ae1bc69) - dma(0xdebee000): size(512)
[   11.469901] mpt3sas_cm0: Allocated physical memory: size(40437 kB)
[   11.476084] mpt3sas_cm0: Current Controller Queue Depth(9460),Max Controller Queue Depth(9584)
[   11.484701] mpt3sas_cm0: Scatter Gather Elements per IO(128)
[   11.536191] mpt3sas_cm0: _base_display_fwpkg_version: complete
[   11.542033] mpt3sas_cm0: FW Package Ver(16.17.01.00)
[   11.547288] mpt3sas_cm0: LSISAS3008: FWVersion(16.00.11.00), ChipRevision(0x02)
[   11.554598] mpt3sas_cm0: Protocol=(Initiator,Target), Capabilities=(TLR,EEDP,Snapshot Buffer,Diag Trace Buffer,Task Set Full,NCQ)
[   11.566322] scsi host8: Fusion MPT SAS Host
[   11.572332] mpt3sas_cm0: sending port enable !!
[   11.577273] mpt3sas_cm0: hba_port entry: 00000000aef80168, port: 255 is added to hba_port list
[   11.587017] mpt3sas_cm0: host_add: handle(0x0001), sas_addr(0x52cea7f0be87bf00), phys(8)
[   11.595450] mpt3sas_cm0: handle(0xa) sas_address(0x4433221100000000) port_type(0x1)
[   11.604312] scsi 8:0:0:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.612409] scsi 8:0:0:0: SATA: handle(0x000a), sas_addr(0x4433221100000000), phy(0), device_name(0x500a075131911ad0)
[   11.623008] scsi 8:0:0:0: enclosure logical id (0x52cea7f0be87bf00), slot(1) 
[   11.630141] scsi 8:0:0:0: enclosure level(0x0001), connector name(     )
[   11.636899] scsi 8:0:0:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.645337] scsi 8:0:0:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.660154]  end_device-8:0: add: handle(0x000a), sas_addr(0x4433221100000000)
[   11.667497] mpt3sas_cm0: handle(0xc) sas_address(0x58ce38ee219651a2) port_type(0x1)
[   11.676113] scsi 8:0:1:0: Direct-Access     KIOXIA   KPM6WVUG960G     BD08 PQ: 0 ANSI: 6
[   11.684209] scsi 8:0:1:0: SSP: handle(0x000c), sas_addr(0x58ce38ee219651a2), phy(4), device_name(0x58ce38ee219651a0)
[   11.694722] scsi 8:0:1:0: enclosure logical id (0x52cea7f0be87bf00), slot(0) 
[   11.701855] scsi 8:0:1:0: enclosure level(0x0001), connector name(     )
[   11.708580] scsi 8:0:1:0: qdepth(254), tagged(1), scsi_level(7), cmd_que(1)
[   11.717279]  end_device-8:1: add: handle(0x000c), sas_addr(0x58ce38ee219651a2)
[   11.724626] mpt3sas_cm0: handle(0xb) sas_address(0x4433221106000000) port_type(0x1)
[   11.733408] scsi 8:0:2:0: Direct-Access     ATA      MTFDDAK960TDT    J004 PQ: 0 ANSI: 6
[   11.741507] scsi 8:0:2:0: SATA: handle(0x000b), sas_addr(0x4433221106000000), phy(6), device_name(0x500a075131911a6f)
[   11.752104] scsi 8:0:2:0: enclosure logical id (0x52cea7f0be87bf00), slot(2) 
[   11.759237] scsi 8:0:2:0: enclosure level(0x0001), connector name(     )
[   11.766003] scsi 8:0:2:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[   11.774441] scsi 8:0:2:0: qdepth(32), tagged(1), scsi_level(7), cmd_que(1)
[   11.789257]  end_device-8:2: add: handle(0x000b), sas_addr(0x4433221106000000)
[   11.812253] mpt3sas_cm0: port enable: SUCCESS
[   11.816924] sd 8:0:0:0: Attached scsi generic sg0 type 0
[   11.817472] sd 8:0:0:0: [sda] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.822492] scsi 8:0:1:0: Attached scsi generic sg1 type 0
[   11.829810] sd 8:0:0:0: [sda] 4096-byte physical blocks
[   11.831915] sd 8:0:0:0: [sda] Write Protect is off
[   11.835319] sd 8:0:1:0: [sdb] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.835641] sd 8:0:2:0: Attached scsi generic sg2 type 0
[   11.836271] sd 8:0:2:0: [sdc] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   11.836276] sd 8:0:2:0: [sdc] 4096-byte physical blocks
[   11.838290] sd 8:0:2:0: [sdc] Write Protect is off
[   11.839576] sd 8:0:2:0: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.845342] sd 8:0:1:0: [sdb] 4096-byte physical blocks
[   11.853640] sd 8:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   11.858400] sd 8:0:1:0: [sdb] Write Protect is off
[   11.903069] sd 8:0:1:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   11.970366]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7
[   11.970446]  sdc: sdc1 sdc2
[   11.975757] sd 8:0:0:0: [sda] Attached SCSI disk
[   11.978268] sd 8:0:2:0: [sdc] Attached SCSI disk
[   11.985306]  sdb: sdb1 sdb2
[   11.990306] sd 8:0:1:0: [sdb] Attached SCSI disk
[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39m/dev/mapper/rhel_sharavati-root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut initqueue hook^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/mapper/rhel_sharavati-root^[[0m.
         Mounting ^[[0;1;39m/sysroot^[[0m...
[   12.717378] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled
[   12.727725] XFS (dm-1): Mounting V5 Filesystem 254e7c99-a3df-41be-8429-d28e07cb528a
[   12.752216] XFS (dm-1): Ending clean mount
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/sysroot^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Root File System^[[0m.
         Starting ^[[0;1;39mMountpoints Configured in the Real Root^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMountpoints Configured in the Real Root^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mInitrd Default Target^[[0m.
         Starting ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
         Starting ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mNetwork^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-pivot and cleanup hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Default Target^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mBasic System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mInitrd /usr File System^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPath Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSlice Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSocket Units^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mLocal File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSwaps^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut initqueue hook^[[0m.
         Starting ^[[0;1;39mPlymouth switch root service^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mApply Kernel Variables^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad Kernel Modules^[[0m.
[^[[0;32m  OK  ^[[0[   12.994155] systemd-journald[1090]: Received SIGTERM from PID 1 (systemd).
m] Stopped ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mColdplug All udev Devices^[[0m.
         Stopping ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleaning Up and Shutting Down Daemons^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mudev Kernel Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut pre-udev hook^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mdracut cmdline hook^[[0m.
         Starting ^[[0;1;39mCleanup udev Database^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCreate System Users^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCleanup udev Database^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSwitch Root^[[0m.
         Starting ^[[0;1;39mSwitch Root^[[0m...
[   13.106283] systemd[1]: RTC configured in localtime, applying delta of 330 minutes to system time.
[   13.131556] systemd[1]: systemd 252-46.el9_5.3 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)
[   13.164030] systemd[1]: Detected architecture x86-64.

Welcome to ^[[0;31mRed Hat Enterprise Linux 9.5 (Plow)^[[0m!

[   13.243517] systemd-rc-local-generator[1713]: /etc/rc.d/rc.local is not marked executable, skipping.
[   13.505629] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[   13.512957] systemd[1]: Stopped Switch Root.
[^[[0;32m  OK  ^[[[   13.517510] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
0m] Stopped ^[[0;[   13.528273] systemd[1]: Created slice Virtual Machine and Container Slice.
1;39mSwitch Root[   13.536659] systemd[1]: Created slice Slice /system/getty.
^[[0m.
[^[[0;32m[   13.543447] systemd[1]: Created slice Slice /system/modprobe.
  OK  ^[[0m] Crea[   13.550553] systemd[1]: Created slice Slice /system/serial-getty.
ted slice ^[[0;1;[   13.558370] systemd[1]: Created slice Slice /system/sshd-keygen.
39mVirtual Machi[   13.565438] systemd[1]: Created slice Slice /system/systemd-fsck.
ne and Container[   13.573010] systemd[1]: Created slice User and Session Slice.
 Slice^[[0m.
[^[[   13.579390] systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
[0;32m  OK  ^[[0m[   13.595708] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
] Created slice [   13.604803] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
^[[0;1;39mSlice /[   13.615443] systemd[1]: Reached target Local Encrypted Volumes.
system/getty^[[0m[   13.622738] systemd[1]: Stopped target Switch Root.
.
[^[[0;32m  OK[   13.628998] systemd[1]: Stopped target Initrd File Systems.
  ^[[0m] Created [   13.635953] systemd[1]: Stopped target Initrd Root File System.
slice ^[[0;1;39mS[   13.643264] systemd[1]: Reached target Local Integrity Protected Volumes.
lice /system/mod[   13.651448] systemd[1]: Reached target Path Units.
probe^[[0m.
[^[[[   13.657623] systemd[1]: Reached target Slice Units.
0;32m  OK  ^[[0m][   13.663891] systemd[1]: Reached target Local Verity Protected Volumes.
 Created slice ^[[   13.671850] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[0;1;39mSlice /s[   13.679920] systemd[1]: Listening on LVM2 poll daemon socket.
ystem/serial-get[   13.686880] systemd[1]: multipathd control socket was skipped because of an unmet condition check (ConditionPathExists=/etc/multipath.conf).
ty^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/sshd-keygen^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mSlice /system/systemd-fsck^[[0m.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mUser and Session Slice^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mForward Password Requests to Wall Directory Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Set up automount ^[[0;1;39mArbitrar[   13.733298] systemd[1]: Listening on RPCbind Server Activation Socket.
y Executa…orma[   13.740723] systemd[1]: Reached target RPC Port Mapper.
ts File System A[   13.748447] systemd[1]: Listening on Process Core Dump Socket.
utomount Point^[[[   13.754521] systemd[1]: Listening on initctl Compatibility Named Pipe.
0m.
[^[[0;32m  [   13.763421] systemd[1]: Listening on udev Control Socket.
OK  ^[[0m] Reache[   13.769225] systemd[1]: Listening on udev Kernel Socket.
d target ^[[0;1;39mLocal Encrypte[   13.777219] systemd[1]: Activating swap /dev/mapper/rhel_sharavati-swap...
d Volumes^[[0m.\r\r[   13.782051] Adding 7815164k swap on /dev/mapper/rhel_sharavati-swap.  Priority:-2 extents:1 across:7815164k SS

[^[[0;32m  OK  ^[[0m] Stopped tar[   13.798307] systemd[1]: Mounting Huge Pages File System...
get ^[[0;1;39mSwitch Root^[[0m.
[   13.806542] systemd[1]: Mounting POSIX Message Queue File System...
[^[[0;32m  OK  ^[[[   13.815380] systemd[1]: Mounting Kernel Debug File System...
0m] Stopped targ[   13.822393] systemd[1]: Mounting Kernel Trace File System...
et ^[[0;1;39mInit[   13.828305] systemd[1]: Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
rd File Systems^[[   13.843128] systemd[1]: iscsi-starter.service was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes).
[0m.
[^[[0;32m  OK  ^[[0m] Stopp[   13.858474] systemd[1]: Starting Create List of Static Device Nodes...
ed target ^[[0;1;39mInitrd Root F[   13.867766] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
ile System^[[0m.
[^[[0;32m  OK  [   13.880880] systemd[1]: Starting Load Kernel Module configfs...
^[[0m] Reached ta[   13.889350] systemd[1]: Starting Load Kernel Module drm...
rget ^[[0;1;39mLo[   13.896156] systemd[1]: Starting Load Kernel Module fuse...
cal Integrity Protected Volumes^[[   13.903780] systemd[1]: Starting Read and set NIS domainname from /etc/sysconfig/network...
[0m.
[^[[0;32m [   13.913168] systemd[1]: plymouth-switch-root.service: Deactivated successfully.
 OK  ^[[0m] Reach[   13.921819] systemd[1]: Stopped Plymouth switch root service.
ed target ^[[0;1;[   13.929075] systemd[1]: systemd-fsck-root.service: Deactivated successfully.
39mPath Units^[[0[   13.937371] systemd[1]: Stopped File System Check on Root Device.
m.
[^[[0;32m  O[   13.944912] systemd[1]: Stopped Journal Service.
K  ^[[0m] Reached target ^[[0;1;39[   13.953448] systemd[1]: Starting Journal Service...
mSlice Units^[[0m.
[^[[0;32m  OK[   13.960599] systemd[1]: Starting Load Kernel Modules...
[   13.965932] systemd-journald[1744]: File /run/log/journal/8f37f8055146469d8baec3ad508b0084/system.journal corrupted or uncleanly shut down, renaming and replacing.
  ^[[0m] Reached target ^[[0;1;39m[   13.982481] systemd[1]: Starting Generate network units from Kernel command line...
Local Verity Pro[   13.991535] systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
tected Volumes^[[0m.
[^[[0;32m  [   14.012702] systemd[1]: Starting Remount Root and Kernel File Systems...
OK  ^[[0m] Listen[   14.020902] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
ing on ^[[0;1;39mDevice-mapper ev[   14.033011] systemd[1]: Starting Coldplug All udev Devices...
ent daemon FIFOs^[[0m.
[^[[0;32m  OK  ^[[0m] List[   14.043305] systemd[1]: Activated swap /dev/mapper/rhel_sharavati-swap.
ening on ^[[0;1;3[   14.051505] systemd[1]: Started Journal Service.
9mLVM2 poll daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mRPCbind Server Activation Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRPC Port Mapper^[[0m.
[^[[0;32m  [   14.072372] systemd-journald[1744]: Received client request to flush runtime journal.
OK  ^[[0m] Listening on ^[[0;1;39mProcess Core Dump Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39minitctl Compatibility Named Pipe^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
         Activating swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m...
         Mounting ^[[0;1;39mHuge Pages File System^[[0m...
         Mounting ^[[0;1;39mPOSIX Message Queue File System^[[0m...
         Mounting ^[[0;1;39mKernel Debug File System^[[0m...
         Mounting ^[[0;1;39mKernel Trace File System^[[0m...
         Starting ^[[0;1;39mCreate List of Static Device Nodes^[[0m...
         Starting ^[[0;1;39mMonitoring of LVM2 mirror…ing dmeventd or progress polling^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module drm^[[0m...
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mPlymouth switch root service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mFile System Check on Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mJournal Service^[[0m.
         Starting ^[[0;1;39mJournal Service^[[0m...
         Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
         Starting ^[[0;1;39mGenerate network units from Kernel command line^[[0m...
         Starting ^[[0;1;39mRemount Root and Kernel File Systems^[[0m...
         Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[^[[0;32m  OK  ^[[0m] Activated swap ^[[0;1;39m/dev/mapper/rhel_sharavati-swap^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mHuge Pages File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mPOSIX Message Queue File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Debug File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Trace File System^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate List of Static Device Nodes^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mMonitoring of LVM2 mirror…using dmeventd or progress polling^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module drm^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRead and set NIS domainname from /etc/sysconfig/network^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel [   14.301792] IPMI message handler: version 39.2
Modules^[[0m.
[^[[0;32m  OK  ^[[0[   14.309848] ipmi device interface
m] Finished ^[[0;1;39mGenerate network units from Kernel command line^[[0m.
[^[[0[   14.320398] ipmi_si: IPMI System Interface driver
;32m  OK  ^[[0m] [   14.325396] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
Finished ^[[0;1;3[   14.333110] ipmi_platform: ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 10
9mRemount Root a[   14.334962] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
nd Kernel File S[   14.335939] pstore: backend 'erst' already in use: ignoring 'efi_pstore'
ystems^[[0m.
[^[[   14.336520] input: PC Speaker as /devices/platform/pcspkr/input/input1
[0;32m  OK  ^[[0m[   14.339015] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
] Reached target[   14.339018] RAPL PMU: hw unit of domain package 2^-16 Joules
 ^[[0;1;39mSwaps^[[   14.339020] RAPL PMU: hw unit of domain core 2^-16 Joules
[0m.
         [   14.341799] ipmi_si: Adding SMBIOS-specified kcs state machine
Mounting ^[[0;1;3[   14.350577] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
9mFUSE Control F[   14.358736] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
ile System^[[0m..[   14.371093] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
.
         Mou[   14.375909] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca8] regsize 1 spacing 4 irq 10
nting ^[[0;1;39mK[   14.383589] i2c i2c-3: Successfully instantiated SPD at 0x50
ernel Configurat[   14.389883] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
ion File System^[[   14.397510] i2c i2c-3: Successfully instantiated SPD at 0x51
[0m...
       [   14.405879] ipmi_si: Adding ACPI-specified kcs state machine
  Starting ^[[0;1[   14.413751] i2c i2c-3: Successfully instantiated SPD at 0x52
;39mFlush Journa[   14.421889] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 10
l to Persistent [   14.431658] i2c i2c-3: Successfully instantiated SPD at 0x53
Storage^[[0m...\r\r[   14.488270] i2c i2c-3: Successfully instantiated SPD at 0x54

         Starti[   14.495306] i2c i2c-3: Successfully instantiated SPD at 0x55
ng ^[[0;1;39mLoad[   14.502352] i2c i2c-3: Successfully instantiated SPD at 0x56
/Save OS Random [   14.509390] i2c i2c-3: Successfully instantiated SPD at 0x57
Seed^[[0m...
         Starting ^[[0;1;39mApply Kernel Variables^[[0m...
         Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mFUSE Control File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Configuration File System^[[0m.
[^[[0;32m  OK  [   14.541376] ee1004 3-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
^[[0m] Finished ^[[0;1;39mLoad/Sav[   14.550755] ee1004 3-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
e OS Random Seed[   14.559578] kvm_amd: TSC scaling supported
[   14.560297] ee1004 3-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
^[[0m.
[^[[0;32m[   14.564214] kvm_amd: Nested Virtualization enabled
  OK  ^[[0m] Fini[   14.572747] ee1004 3-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
shed ^[[0;1;39mFl[   14.577255] kvm_amd: Nested Paging enabled
ush Journal to P[   14.587169] ee1004 3-0054: 512 byte EE1004-compliant SPD EEPROM, read-only
ersistent Storag[   14.590993] kvm_amd: LBR virtualization supported
e^[[0m.
[^[[0;32[   14.600835] ee1004 3-0055: 512 byte EE1004-compliant SPD EEPROM, read-only
m  OK  ^[[0m] Finished ^[[0;1;39mA[   14.616004] ee1004 3-0056: 512 byte EE1004-compliant SPD EEPROM, read-only
pply Kernel Variables^[[0m.
[^[[[   14.624824] ee1004 3-0057: 512 byte EE1004-compliant SPD EEPROM, read-only
0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
         Starting ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRule-based Manager for Device Events and Files^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mColdplug All udev Devices^[[0m.
         Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
         Starting ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mLoad/Save RF Kill Switch Status /dev/rfkill Watch^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39m/usr/sbin/lvm vgchange -aa…utoactivation event rhel_sharavati^[[0m.
[   14.848262] ipmi_si IPI0001:00: The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.
[   14.924335] ipmi_si IPI0001:00: Using irq 10
[   14.955848] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20)
[   15.025423] ipmi_si IPI0001:00: IPMI kcs interface initialized
[   15.033979] ipmi_ssif: IPMI SSIF Interface driver
[   15.048256] power_meter ACPI000D:00: Found ACPI power meter.
[^[[0m^[[0;31m*     ^[[0m] A start job is running for Wait for…ice Initialization (3s / no limit)
^[M\r^[[K[^[[0;1;31m*^[[0m^[[0;31m*    ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
^[M\r^[[K[^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*   ^[[0m] A start job is running for Wait for…ice Initialization (4s / no limit)
[   18.161545] ccp 0000:46:00.1: SEV-SNP API:1.55 build:22
[   18.215718] ccp 0000:46:00.1: SEV API:1.55 build:22
[   18.223011] kvm_amd: SEV enabled (ASIDs 101 - 509)
[   18.227815] kvm_amd: SEV-ES enabled (ASIDs 1 - 100)
[   18.232701] kvm_amd: SEV-SNP enabled (ASIDs 1 - 100)
[   18.237840] kvm_amd: Virtual VMLOAD VMSAVE supported
[   18.242811] kvm_amd: Virtual GIF supported
[   18.267551] EDAC MC0: Giving out device to module amd64_edac controller F19h: DEV 0000:00:18.3 (INTERRUPT)
[   18.277203] EDAC amd64: F19h detected (node 0).
[   18.281761] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.286482] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.291206] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.295923] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.300655] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.305375] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.310098] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.314814] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.319544] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.324263] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.328990] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.333707] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.338437] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.343154] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.347885] EDAC amd64: MC: 0:     0MB 1:     0MB
[   18.352600] EDAC amd64: MC: 2: 16384MB 3: 16384MB
[   18.364144] intel_rapl_common: Found RAPL domain package
[   18.365471] amd_atl: AMD Address Translation Library initialized
[   18.369465] intel_rapl_common: Found RAPL domain core
^[M\r^[[K[ ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*  ^[[0m] A start job is running for Wait for…ice Initialization (5s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mWait for udev To Complete Device Initialization^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Local File Systems^[[0m.
         Mounting ^[[0;1;39m/boot^[[0m...
      [   18.768109] XFS (sda6): Mounting V5 Filesystem 8a4de4ea-bc9f-4c69-9e30-c78fbc184188
   Mounting ^[[0;[   18.769991] XFS (dm-0): Mounting V5 Filesystem 3e33526b-995a-4b32-9d5d-d26941ce5b47
1;39m/home^[[0m...
         Starting ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m...
[   18.795084] XFS (sda6): Ending clean mount
[^[[0;32m  OK  ^[[[   18.803336] XFS (dm-0): Ending clean mount
0m] Mounted ^[[0;1;39m/boot^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on /dev/disk/by-uuid/FBE5-86EF^[[0m.
         Mounting ^[[0;1;39m/boot/efi^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/boot/efi^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLocal File Systems^[[0m.
         Starting ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m...
         Starting ^[[0;1;39mCreate Volatile Files and Directories^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mTell Plymouth To Write Out Runtime Data^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate Volatile Files and Directories^[[0m.
         Mounting ^[[0;1;39mRPC Pipe File System^[[0m...
         Starting ^[[0;1;39mSecurity Auditing Service^[[0m...
         Starting ^[[0;1;39mRPC Bind^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mRPC Bind^[[0m.
[   18.911822] RPC: Registered named UNIX socket transport module.
[   18.917747] RPC: Registered udp transport module.
[   18.922454] RPC: Registered tcp transport module.
[   18.927164] RPC: Registered tcp-with-tls transport module.
[   18.932652] RPC: Registered tcp NFSv4.1 backchannel transport module.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSecurity Auditing Service^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mRPC Pipe File System^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mrpc_pipefs.target^[[0m.
         Starting ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRecord System Boot/Shutdown in UTMP^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdnf makecache --timer^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily rotation of log files^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUpdates mlocate database every day^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily Cleanup of Temporary Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdaily update of the root trust anchor for DNSSEC^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimer Units^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mD-Bus System Message Bus Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsid Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mOpen-iSCSI iscsiuio Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mSSSD Kerberos Cache Manager responder socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt interface daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt locking daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt logging daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt network daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nodedev daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt nwfilter daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt proxy daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon admin socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt QEMU daemon read-only socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt secret daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlibvirt storage daemon socket^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSocket Units^[[0m.
         Starting ^[[0;1;39mD-Bus System Message Bus^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mD-Bus System Message Bus^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mBasic System^[[0m.
         Starting ^[[0;1;39mNTP client/server^[[0m...
         Starting ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m...
         Starting ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mirqbalance daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mlibstoragemgmt plug-in server daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mLow Memory Monitor^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mMachine Check Exception Logging Daemon^[[0m.
         Starting ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msshd-keygen.target^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUser and Group Name Lookups^[[0m.
         Starting ^[[0;1;39mUser Login Management^[[0m...
         Starting ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRestore /run/initramfs on shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mVirtual Machine and Container Registration Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNTP client/server^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSelf Monitoring and Reporting Technology (SMART) Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mfirewalld - dynamic firewall daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Network^[[0m.
         Starting ^[[0;1;39mNetwork Manager^[[0m...
         Starting ^[[0;1;39mHostname Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mHostname Service^[[0m.
         Starting ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager Script Dispatcher Service^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork^[[0m.
         Starting ^[[0;1;39mNetwork Manager Wait Online^[[0m...
         Starting ^[[0;1;39mGSSAPI Proxy Daemon^[[0m...
         Starting ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m...
         Starting ^[[0;1;39mOpenSSH server daemon^[[0m...
         Starting ^[[0;1;39mDynamic System Tuning Daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mEnable periodic update of entitlement certificates.^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mGSSAPI Proxy Daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNFS client services^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPreparation for Remote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mOpenSSH server daemon^[[0m.
         Starting ^[[0;1;39mAuthorization Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDynamic System Tuning Daemon^[[0m.
[  ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
[   23.103801] tg3 0000:c1:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   23.110426] tg3 0000:c1:00.0 eth0: Flow control is off for TX and off for RX
[   23.117468] tg3 0000:c1:00.0 eth0: EEE is disabled
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network Manager Wait Online (9s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (10s / no limit)
^[M\r^[[K[     ^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[    ^[[0;31m*^[[0;1;31m*^[[0m] A start job is running for Network …nager Wait Online (11s / no limit)
^[M\r^[[K[   ^[[0;31m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] A start job is running for Network …nager Wait Online (12s / no limit)
^[M\r^[[K[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mNetwork Manager Wait Online^[[0m.
^[[K[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork is Online^[[0m.
         Starting ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m...
         Starting ^[[0;1;39mNotify NFS peers of a restart^[[0m...
         Starting ^[[0;1;39mSystem Logging Service^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNotify NFS peers of a restart^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLogin and scanning of iSCSI devices^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
         Starting ^[[0;1;39mCrash recovery kernel arming^[[0m...
         Starting ^[[0;1;39mPermit User Sessions^[[0m...
         Starting ^[[0;1;39mlibvirt QEMU daemon^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPermit User Sessions^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDeferred execution scheduler^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mCommand Scheduler^[[0m.
         Starting ^[[0;1;39mHold until boot process finishes up^[[0m...
         Starting ^[[0;1;39mTerminate Plymouth Boot Screen^[[0m...
[^[[0;1;31mFAILED^[[0m] Failed to start ^[[0;1;39mCrash recovery kernel arming^[[0m.
See 'systemctl status kdump.service' for details.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSystem Logging Service^[[0m.
[   25.871092] fbcon: Taking over console
[   25.891160] Console: switching to colour frame buffer device 128x48

Red Hat Enterprise Linux 9.5 (Plow)
Kernel 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e on an x86_64

Activate the web console with: systemctl enable --now cockpit.socket

sharavati login: [   48.136396] /proc/cgroups lists only v1 controllers, use cgroup.controllers of root cgroup for v2 info
[  289.411187] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[  289.463175] systemd-rc-local-generator[3161]: /etc/rc.d/rc.local is not marked executable, skipping.
[  311.093473] virbr0: port 1(t0-HlW2la) entered blocking state
[  311.099154] virbr0: port 1(t0-HlW2la) entered disabled state
[  311.104860] t0-HlW2la: entered allmulticast mode
[  311.109568] t0-HlW2la: entered promiscuous mode
[  311.118768] virbr0: port 1(t0-HlW2la) entered blocking state
[  311.124430] virbr0: port 1(t0-HlW2la) entered listening state
[  313.149592] virbr0: port 1(t0-HlW2la) entered learning state
[  315.165547] virbr0: port 1(t0-HlW2la) entered forwarding state
[  315.171391] virbr0: topology change detected, propagating
[  336.553586] virbr0: port 1(t0-HlW2la) entered disabled state
[  336.560324] t0-HlW2la (unregistering): left allmulticast mode
[  336.566082] t0-HlW2la (unregistering): left promiscuous mode
[  336.571753] virbr0: port 1(t0-HlW2la) entered disabled state
[  337.361092] virbr0: port 1(t0-zeGGki) entered blocking state
[  337.366767] virbr0: port 1(t0-zeGGki) entered disabled state
[  337.372464] t0-zeGGki: entered allmulticast mode
[  337.377168] t0-zeGGki: entered promiscuous mode
[  337.386400] virbr0: port 1(t0-zeGGki) entered blocking state
[  337.392067] virbr0: port 1(t0-zeGGki) entered listening state
[  339.421018] virbr0: port 1(t0-zeGGki) entered learning state
[  341.436977] virbr0: port 1(t0-zeGGki) entered forwarding state
[  341.442822] virbr0: topology change detected, propagating
[  362.669769] virbr0: port 1(t0-zeGGki) entered disabled state
[  362.676522] t0-zeGGki (unregistering): left allmulticast mode
[  362.682287] t0-zeGGki (unregistering): left promiscuous mode
[  362.687957] virbr0: port 1(t0-zeGGki) entered disabled state
[  363.486485] virbr0: port 1(t0-s9I06t) entered blocking state
[  363.492163] virbr0: port 1(t0-s9I06t) entered disabled state
[  363.497857] t0-s9I06t: entered allmulticast mode
[  363.502555] t0-s9I06t: entered promiscuous mode
[  363.511502] virbr0: port 1(t0-s9I06t) entered blocking state
[  363.517164] virbr0: port 1(t0-s9I06t) entered listening state
[  365.532450] virbr0: port 1(t0-s9I06t) entered learning state
[  367.548408] virbr0: port 1(t0-s9I06t) entered forwarding state
[  367.554249] virbr0: topology change detected, propagating
[  390.072867] virbr0: port 1(t0-s9I06t) entered disabled state
[  390.080052] t0-s9I06t (unregistering): left allmulticast mode
[  390.085810] t0-s9I06t (unregistering): left promiscuous mode
[  390.091488] virbr0: port 1(t0-s9I06t) entered disabled state
[  390.874283] virbr0: port 1(t0-IKfsJv) entered blocking state
[  390.879959] virbr0: port 1(t0-IKfsJv) entered disabled state
[  390.885688] t0-IKfsJv: entered allmulticast mode
[  390.890385] t0-IKfsJv: entered promiscuous mode
[  390.899506] virbr0: port 1(t0-IKfsJv) entered blocking state
[  390.905174] virbr0: port 1(t0-IKfsJv) entered listening state
[  392.923852] virbr0: port 1(t0-IKfsJv) entered learning state
[  394.939807] virbr0: port 1(t0-IKfsJv) entered forwarding state
[  394.945652] virbr0: topology change detected, propagating
[  679.684117] virbr0: port 1(t0-IKfsJv) entered disabled state
[  679.691201] t0-IKfsJv (unregistering): left allmulticast mode
[  679.696961] t0-IKfsJv (unregistering): left promiscuous mode
[  679.702647] virbr0: port 1(t0-IKfsJv) entered disabled state
[  680.433141] virbr0: port 1(t0-9Qg7JG) entered blocking state
[  680.438813] virbr0: port 1(t0-9Qg7JG) entered disabled state
[  680.444525] t0-9Qg7JG: entered allmulticast mode
[  680.449239] t0-9Qg7JG: entered promiscuous mode
[  680.457920] virbr0: port 1(t0-9Qg7JG) entered blocking state
[  680.463588] virbr0: port 1(t0-9Qg7JG) entered listening state
[  682.485814] virbr0: port 1(t0-9Qg7JG) entered learning state
[  684.501770] virbr0: port 1(t0-9Qg7JG) entered forwarding state
[  684.507615] virbr0: topology change detected, propagating
[  705.934691] virbr0: port 1(t0-9Qg7JG) entered disabled state
[  705.941466] t0-9Qg7JG (unregistering): left allmulticast mode
[  705.947219] t0-9Qg7JG (unregistering): left promiscuous mode
[  705.952894] virbr0: port 1(t0-9Qg7JG) entered disabled state
[  706.777758] virbr0: port 1(t0-w0lgPb) entered blocking state
[  706.783428] virbr0: port 1(t0-w0lgPb) entered disabled state
[  706.789149] t0-w0lgPb: entered allmulticast mode
[  706.793838] t0-w0lgPb: entered promiscuous mode
[  706.802633] virbr0: port 1(t0-w0lgPb) entered blocking state
[  706.808300] virbr0: port 1(t0-w0lgPb) entered listening state
[  708.821250] virbr0: port 1(t0-w0lgPb) entered learning state
[  710.837207] virbr0: port 1(t0-w0lgPb) entered forwarding state
[  710.843050] virbr0: topology change detected, propagating
[  732.092958] virbr0: port 1(t0-w0lgPb) entered disabled state
[  732.099716] t0-w0lgPb (unregistering): left allmulticast mode
[  732.105468] t0-w0lgPb (unregistering): left promiscuous mode
[  732.111142] virbr0: port 1(t0-w0lgPb) entered disabled state
[  732.954214] virbr0: port 1(t0-Dc2c2F) entered blocking state
[  732.959893] virbr0: port 1(t0-Dc2c2F) entered disabled state
[  732.965589] t0-Dc2c2F: entered allmulticast mode
[  732.970285] t0-Dc2c2F: entered promiscuous mode
[  732.979076] virbr0: port 1(t0-Dc2c2F) entered blocking state
[  732.984738] virbr0: port 1(t0-Dc2c2F) entered listening state
[  734.996694] virbr0: port 1(t0-Dc2c2F) entered learning state
[  737.012655] virbr0: port 1(t0-Dc2c2F) entered forwarding state
[  737.018502] virbr0: topology change detected, propagating
[  759.027286] virbr0: port 1(t0-Dc2c2F) entered disabled state
[  759.034158] t0-Dc2c2F (unregistering): left allmulticast mode
[  759.039915] t0-Dc2c2F (unregistering): left promiscuous mode
[  759.045584] virbr0: port 1(t0-Dc2c2F) entered disabled state
[  759.856668] virbr0: port 1(t0-RQkRbC) entered blocking state
[  759.862345] virbr0: port 1(t0-RQkRbC) entered disabled state
[  759.868048] t0-RQkRbC: entered allmulticast mode
[  759.872746] t0-RQkRbC: entered promiscuous mode
[  759.882176] virbr0: port 1(t0-RQkRbC) entered blocking state
[  759.887842] virbr0: port 1(t0-RQkRbC) entered listening state
[  761.908115] virbr0: port 1(t0-RQkRbC) entered learning state
[  763.924073] virbr0: port 1(t0-RQkRbC) entered forwarding state
[  763.929915] virbr0: topology change detected, propagating
[  785.940512] virbr0: port 1(t0-RQkRbC) entered disabled state
[  785.947731] t0-RQkRbC (unregistering): left allmulticast mode
[  785.953489] t0-RQkRbC (unregistering): left promiscuous mode
[  785.959166] virbr0: port 1(t0-RQkRbC) entered disabled state
[  786.681454] virbr0: port 1(t0-AcCy7U) entered blocking state
[  786.687127] virbr0: port 1(t0-AcCy7U) entered disabled state
[  786.692816] t0-AcCy7U: entered allmulticast mode
[  786.697527] t0-AcCy7U: entered promiscuous mode
[  786.706365] virbr0: port 1(t0-AcCy7U) entered blocking state
[  786.712030] virbr0: port 1(t0-AcCy7U) entered listening state
[  788.723534] virbr0: port 1(t0-AcCy7U) entered learning state
[  790.739490] virbr0: port 1(t0-AcCy7U) entered forwarding state
[  790.745330] virbr0: topology change detected, propagating
[  812.196821] virbr0: port 1(t0-AcCy7U) entered disabled state
[  812.203731] t0-AcCy7U (unregistering): left allmulticast mode
[  812.209491] t0-AcCy7U (unregistering): left promiscuous mode
[  812.215165] virbr0: port 1(t0-AcCy7U) entered disabled state
[  813.058106] virbr0: port 1(t0-OD0ukU) entered blocking state
[  813.063785] virbr0: port 1(t0-OD0ukU) entered disabled state
[  813.069474] t0-OD0ukU: entered allmulticast mode
[  813.074174] t0-OD0ukU: entered promiscuous mode
[  813.082966] virbr0: port 1(t0-OD0ukU) entered blocking state
[  813.088634] virbr0: port 1(t0-OD0ukU) entered listening state
[  815.122964] virbr0: port 1(t0-OD0ukU) entered learning state
[  817.138919] virbr0: port 1(t0-OD0ukU) entered forwarding state
[  817.144765] virbr0: topology change detected, propagating
[  838.338894] virbr0: port 1(t0-OD0ukU) entered disabled state
[  838.345767] t0-OD0ukU (unregistering): left allmulticast mode
[  838.351522] t0-OD0ukU (unregistering): left promiscuous mode
[  838.357198] virbr0: port 1(t0-OD0ukU) entered disabled state
[  843.787722] virbr0: port 1(t0-57Aw2V) entered blocking state
[  843.793400] virbr0: port 1(t0-57Aw2V) entered disabled state
[  843.799107] t0-57Aw2V: entered allmulticast mode
[  843.803820] t0-57Aw2V: entered promiscuous mode
[  843.812497] virbr0: port 1(t0-57Aw2V) entered blocking state
[  843.818160] virbr0: port 1(t0-57Aw2V) entered listening state
[  845.842299] virbr0: port 1(t0-57Aw2V) entered learning state
[  847.858249] virbr0: port 1(t0-57Aw2V) entered forwarding state
[  847.864093] virbr0: topology change detected, propagating
[ 1229.423527] virbr0: port 1(t0-57Aw2V) entered disabled state
[ 1229.430368] t0-57Aw2V (unregistering): left allmulticast mode
[ 1229.436121] t0-57Aw2V (unregistering): left promiscuous mode
[ 1229.441793] virbr0: port 1(t0-57Aw2V) entered disabled state
[ 1233.883316] virbr0: port 1(t0-ZUL6e2) entered blocking state
[ 1233.888986] virbr0: port 1(t0-ZUL6e2) entered disabled state
[ 1233.894680] t0-ZUL6e2: entered allmulticast mode
[ 1233.899396] t0-ZUL6e2: entered promiscuous mode
[ 1233.908187] virbr0: port 1(t0-ZUL6e2) entered blocking state
[ 1233.913853] virbr0: port 1(t0-ZUL6e2) entered listening state
[ 1235.945263] virbr0: port 1(t0-ZUL6e2) entered learning state
[ 1237.961220] virbr0: port 1(t0-ZUL6e2) entered forwarding state
[ 1237.967060] virbr0: topology change detected, propagating
[ 1260.912849] virbr0: port 1(t0-ZUL6e2) entered disabled state
[ 1260.919635] t0-ZUL6e2 (unregistering): left allmulticast mode
[ 1260.925384] t0-ZUL6e2 (unregistering): left promiscuous mode
[ 1260.931052] virbr0: port 1(t0-ZUL6e2) entered disabled state
[ 1261.785986] virbr0: port 1(t0-hZCCq8) entered blocking state
[ 1261.791662] virbr0: port 1(t0-hZCCq8) entered disabled state
[ 1261.797353] t0-hZCCq8: entered allmulticast mode
[ 1261.802049] t0-hZCCq8: entered promiscuous mode
[ 1261.811158] virbr0: port 1(t0-hZCCq8) entered blocking state
[ 1261.816823] virbr0: port 1(t0-hZCCq8) entered listening state
[ 1263.848644] virbr0: port 1(t0-hZCCq8) entered learning state
[ 1265.864598] virbr0: port 1(t0-hZCCq8) entered forwarding state
[ 1265.870439] virbr0: topology change detected, propagating
[ 1361.965188] virbr0: port 1(t0-hZCCq8) entered disabled state
[ 1361.972204] t0-hZCCq8 (unregistering): left allmulticast mode
[ 1361.977966] t0-hZCCq8 (unregistering): left promiscuous mode
[ 1361.983648] virbr0: port 1(t0-hZCCq8) entered disabled state
[ 1362.706791] virbr0: port 1(t0-XvmqVZ) entered blocking state
[ 1362.712458] virbr0: port 1(t0-XvmqVZ) entered disabled state
[ 1362.718152] t0-XvmqVZ: entered allmulticast mode
[ 1362.722851] t0-XvmqVZ: entered promiscuous mode
[ 1362.731821] virbr0: port 1(t0-XvmqVZ) entered blocking state
[ 1362.737485] virbr0: port 1(t0-XvmqVZ) entered listening state
[ 1364.774394] virbr0: port 1(t0-XvmqVZ) entered learning state
[ 1366.790360] virbr0: port 1(t0-XvmqVZ) entered forwarding state
[ 1366.796204] virbr0: topology change detected, propagating
[ 1389.308250] virbr0: port 1(t0-XvmqVZ) entered disabled state
[ 1389.314839] t0-XvmqVZ (unregistering): left allmulticast mode
[ 1389.320594] t0-XvmqVZ (unregistering): left promiscuous mode
[ 1389.326268] virbr0: port 1(t0-XvmqVZ) entered disabled state
[ 1390.147171] virbr0: port 1(t0-DhQdmd) entered blocking state
[ 1390.152853] virbr0: port 1(t0-DhQdmd) entered disabled state
[ 1390.158567] t0-DhQdmd: entered allmulticast mode
[ 1390.163273] t0-DhQdmd: entered promiscuous mode
[ 1390.172545] virbr0: port 1(t0-DhQdmd) entered blocking state
[ 1390.178209] virbr0: port 1(t0-DhQdmd) entered listening state
[ 1392.197792] virbr0: port 1(t0-DhQdmd) entered learning state
[ 1394.213744] virbr0: port 1(t0-DhQdmd) entered forwarding state
[ 1394.219586] virbr0: topology change detected, propagating
[ 1416.193667] virbr0: port 1(t0-DhQdmd) entered disabled state
[ 1416.200488] t0-DhQdmd (unregistering): left allmulticast mode
[ 1416.206245] t0-DhQdmd (unregistering): left promiscuous mode
[ 1416.211916] virbr0: port 1(t0-DhQdmd) entered disabled state
[ 1417.028778] virbr0: port 1(t0-WuwdH2) entered blocking state
[ 1417.034456] virbr0: port 1(t0-WuwdH2) entered disabled state
[ 1417.040151] t0-WuwdH2: entered allmulticast mode
[ 1417.044851] t0-WuwdH2: entered promiscuous mode
[ 1417.053967] virbr0: port 1(t0-WuwdH2) entered blocking state
[ 1417.059632] virbr0: port 1(t0-WuwdH2) entered listening state
[ 1419.077189] virbr0: port 1(t0-WuwdH2) entered learning state
[ 1421.093143] virbr0: port 1(t0-WuwdH2) entered forwarding state
[ 1421.098982] virbr0: topology change detected, propagating
[ 1443.292428] virbr0: port 1(t0-WuwdH2) entered disabled state
[ 1443.299540] t0-WuwdH2 (unregistering): left allmulticast mode
[ 1443.305312] t0-WuwdH2 (unregistering): left promiscuous mode
[ 1443.310991] virbr0: port 1(t0-WuwdH2) entered disabled state
[ 1444.134224] virbr0: port 1(t0-SCdoUu) entered blocking state
[ 1444.139900] virbr0: port 1(t0-SCdoUu) entered disabled state
[ 1444.145620] t0-SCdoUu: entered allmulticast mode
[ 1444.150317] t0-SCdoUu: entered promiscuous mode
[ 1444.159097] virbr0: port 1(t0-SCdoUu) entered blocking state
[ 1444.164761] virbr0: port 1(t0-SCdoUu) entered listening state
[ 1446.180583] virbr0: port 1(t0-SCdoUu) entered learning state
[ 1448.196538] virbr0: port 1(t0-SCdoUu) entered forwarding state
[ 1448.202380] virbr0: topology change detected, propagating
[ 1470.820384] virbr0: port 1(t0-SCdoUu) entered disabled state
[ 1470.827113] t0-SCdoUu (unregistering): left allmulticast mode
[ 1470.832878] t0-SCdoUu (unregistering): left promiscuous mode
[ 1470.838575] virbr0: port 1(t0-SCdoUu) entered disabled state
[ 1471.666539] virbr0: port 1(t0-463ztV) entered blocking state
[ 1471.672208] virbr0: port 1(t0-463ztV) entered disabled state
[ 1471.677922] t0-463ztV: entered allmulticast mode
[ 1471.682624] t0-463ztV: entered promiscuous mode
[ 1471.691995] virbr0: port 1(t0-463ztV) entered blocking state
[ 1471.697656] virbr0: port 1(t0-463ztV) entered listening state
[ 1473.731972] virbr0: port 1(t0-463ztV) entered learning state
[ 1475.747928] virbr0: port 1(t0-463ztV) entered forwarding state
[ 1475.753773] virbr0: topology change detected, propagating
[ 1498.286143] virbr0: port 1(t0-463ztV) entered disabled state
[ 1498.292973] t0-463ztV (unregistering): left allmulticast mode
[ 1498.298730] t0-463ztV (unregistering): left promiscuous mode
[ 1498.304407] virbr0: port 1(t0-463ztV) entered disabled state
[ 1499.159446] virbr0: port 1(t0-dWULgx) entered blocking state
[ 1499.165117] virbr0: port 1(t0-dWULgx) entered disabled state
[ 1499.170814] t0-dWULgx: entered allmulticast mode
[ 1499.175510] t0-dWULgx: entered promiscuous mode
[ 1499.184746] virbr0: port 1(t0-dWULgx) entered blocking state
[ 1499.190413] virbr0: port 1(t0-dWULgx) entered listening state
[ 1501.219362] virbr0: port 1(t0-dWULgx) entered learning state
[ 1503.235316] virbr0: port 1(t0-dWULgx) entered forwarding state
[ 1503.241160] virbr0: topology change detected, propagating
[ 1525.223751] virbr0: port 1(t0-dWULgx) entered disabled state
[ 1525.230791] t0-dWULgx (unregistering): left allmulticast mode
[ 1525.236555] t0-dWULgx (unregistering): left promiscuous mode
[ 1525.242226] virbr0: port 1(t0-dWULgx) entered disabled state
[ 1526.057849] virbr0: port 1(t0-ftgfL7) entered blocking state
[ 1526.063530] virbr0: port 1(t0-ftgfL7) entered disabled state
[ 1526.069243] t0-ftgfL7: entered allmulticast mode
[ 1526.073939] t0-ftgfL7: entered promiscuous mode
[ 1526.082958] virbr0: port 1(t0-ftgfL7) entered blocking state
[ 1526.088626] virbr0: port 1(t0-ftgfL7) entered listening state
[ 1528.098762] virbr0: port 1(t0-ftgfL7) entered learning state
[ 1530.114717] virbr0: port 1(t0-ftgfL7) entered forwarding state
[ 1530.120557] virbr0: topology change detected, propagating
[ 1552.656787] virbr0: port 1(t0-ftgfL7) entered disabled state
[ 1552.663312] t0-ftgfL7 (unregistering): left allmulticast mode
[ 1552.669068] t0-ftgfL7 (unregistering): left promiscuous mode
[ 1552.674738] virbr0: port 1(t0-ftgfL7) entered disabled state
[ 1553.519452] virbr0: port 1(t0-j77cBq) entered blocking state
[ 1553.525130] virbr0: port 1(t0-j77cBq) entered disabled state
[ 1553.530821] t0-j77cBq: entered allmulticast mode
[ 1553.535518] t0-j77cBq: entered promiscuous mode
[ 1553.544331] virbr0: port 1(t0-j77cBq) entered blocking state
[ 1553.549999] virbr0: port 1(t0-j77cBq) entered listening state
[ 1555.586157] virbr0: port 1(t0-j77cBq) entered learning state
[ 1557.602109] virbr0: port 1(t0-j77cBq) entered forwarding state
[ 1557.607994] virbr0: topology change detected, propagating
[ 1580.696023] virbr0: port 1(t0-j77cBq) entered disabled state
[ 1580.702977] t0-j77cBq (unregistering): left allmulticast mode
[ 1580.708743] t0-j77cBq (unregistering): left promiscuous mode
[ 1580.714422] virbr0: port 1(t0-j77cBq) entered disabled state
[ 1585.637385] virbr0: port 1(t0-HqzDcy) entered blocking state
[ 1585.643069] virbr0: port 1(t0-HqzDcy) entered disabled state
[ 1585.648766] t0-HqzDcy: entered allmulticast mode
[ 1585.653465] t0-HqzDcy: entered promiscuous mode
[ 1585.662542] virbr0: port 1(t0-HqzDcy) entered blocking state
[ 1585.668207] virbr0: port 1(t0-HqzDcy) entered listening state
[ 1587.681442] virbr0: port 1(t0-HqzDcy) entered learning state
[ 1589.697393] virbr0: port 1(t0-HqzDcy) entered forwarding state
[ 1589.703232] virbr0: topology change detected, propagating
[ 1979.358702] virbr0: port 1(t0-HqzDcy) entered disabled state
[ 1979.365804] t0-HqzDcy (unregistering): left allmulticast mode
[ 1979.371563] t0-HqzDcy (unregistering): left promiscuous mode
[ 1979.377242] virbr0: port 1(t0-HqzDcy) entered disabled state
[ 1983.734816] virbr0: port 1(t0-xPlKp7) entered blocking state
[ 1983.740493] virbr0: port 1(t0-xPlKp7) entered disabled state
[ 1983.746195] t0-xPlKp7: entered allmulticast mode
[ 1983.750896] t0-xPlKp7: entered promiscuous mode
[ 1983.759929] virbr0: port 1(t0-xPlKp7) entered blocking state
[ 1983.765594] virbr0: port 1(t0-xPlKp7) entered listening state
[ 1985.783867] virbr0: port 1(t0-xPlKp7) entered learning state
[ 1987.799818] virbr0: port 1(t0-xPlKp7) entered forwarding state
[ 1987.805662] virbr0: topology change detected, propagating
[ 1994.495107] virbr0: port 1(t0-xPlKp7) entered disabled state
[ 1994.501881] t0-xPlKp7 (unregistering): left allmulticast mode
[ 1994.507638] t0-xPlKp7 (unregistering): left promiscuous mode
[ 1994.513308] virbr0: port 1(t0-xPlKp7) entered disabled state
[ 1995.282010] virbr0: port 1(t0-bvoHvT) entered blocking state
[ 1995.287686] virbr0: port 1(t0-bvoHvT) entered disabled state
[ 1995.293407] t0-bvoHvT: entered allmulticast mode
[ 1995.298112] t0-bvoHvT: entered promiscuous mode
[ 1995.307220] virbr0: port 1(t0-bvoHvT) entered blocking state
[ 1995.312883] virbr0: port 1(t0-bvoHvT) entered listening state
[ 1997.335609] virbr0: port 1(t0-bvoHvT) entered learning state
[ 1999.351570] virbr0: port 1(t0-bvoHvT) entered forwarding state
[ 1999.357418] virbr0: topology change detected, propagating
[ 2005.999240] virbr0: port 1(t0-bvoHvT) entered disabled state
[ 2006.006147] t0-bvoHvT (unregistering): left allmulticast mode
[ 2006.011907] t0-bvoHvT (unregistering): left promiscuous mode
[ 2006.017582] virbr0: port 1(t0-bvoHvT) entered disabled state
[ 2006.811089] virbr0: port 1(t0-JLnj9a) entered blocking state
[ 2006.816768] virbr0: port 1(t0-JLnj9a) entered disabled state
[ 2006.822485] t0-JLnj9a: entered allmulticast mode
[ 2006.827180] t0-JLnj9a: entered promiscuous mode
[ 2006.836466] virbr0: port 1(t0-JLnj9a) entered blocking state
[ 2006.842133] virbr0: port 1(t0-JLnj9a) entered listening state
[ 2008.855460] virbr0: port 1(t0-JLnj9a) entered learning state
[ 2010.871313] virbr0: port 1(t0-JLnj9a) entered forwarding state
[ 2010.877156] virbr0: topology change detected, propagating
[ 2018.054602] virbr0: port 1(t0-JLnj9a) entered disabled state
[ 2018.061791] t0-JLnj9a (unregistering): left allmulticast mode
[ 2018.067557] t0-JLnj9a (unregistering): left promiscuous mode
[ 2018.073230] virbr0: port 1(t0-JLnj9a) entered disabled state
[ 2018.847813] virbr0: port 1(t0-Uq5PMp) entered blocking state
[ 2018.853493] virbr0: port 1(t0-Uq5PMp) entered disabled state
[ 2018.859179] t0-Uq5PMp: entered allmulticast mode
[ 2018.863882] t0-Uq5PMp: entered promiscuous mode
[ 2018.873274] virbr0: port 1(t0-Uq5PMp) entered blocking state
[ 2018.878938] virbr0: port 1(t0-Uq5PMp) entered listening state
[ 2020.891103] virbr0: port 1(t0-Uq5PMp) entered learning state
[ 2022.903062] virbr0: port 1(t0-Uq5PMp) entered forwarding state
[ 2022.908912] virbr0: topology change detected, propagating
[ 2029.630153] virbr0: port 1(t0-Uq5PMp) entered disabled state
[ 2029.637181] t0-Uq5PMp (unregistering): left allmulticast mode
[ 2029.642938] t0-Uq5PMp (unregistering): left promiscuous mode
[ 2029.648618] virbr0: port 1(t0-Uq5PMp) entered disabled state
[ 2030.414418] virbr0: port 1(t0-2UjBn8) entered blocking state
[ 2030.420099] virbr0: port 1(t0-2UjBn8) entered disabled state
[ 2030.425796] t0-2UjBn8: entered allmulticast mode
[ 2030.430490] t0-2UjBn8: entered promiscuous mode
[ 2030.439748] virbr0: port 1(t0-2UjBn8) entered blocking state
[ 2030.445415] virbr0: port 1(t0-2UjBn8) entered listening state
[ 2032.470855] virbr0: port 1(t0-2UjBn8) entered learning state
[ 2034.486804] virbr0: port 1(t0-2UjBn8) entered forwarding state
[ 2034.492652] virbr0: topology change detected, propagating
[ 2041.646309] virbr0: port 1(t0-2UjBn8) entered disabled state
[ 2041.653037] t0-2UjBn8 (unregistering): left allmulticast mode
[ 2041.658797] t0-2UjBn8 (unregistering): left promiscuous mode
[ 2041.664482] virbr0: port 1(t0-2UjBn8) entered disabled state
[ 2042.445496] virbr0: port 1(t0-H0a11J) entered blocking state
[ 2042.451175] virbr0: port 1(t0-H0a11J) entered disabled state
[ 2042.456903] t0-H0a11J: entered allmulticast mode
[ 2042.461606] t0-H0a11J: entered promiscuous mode
[ 2042.470971] virbr0: port 1(t0-H0a11J) entered blocking state
[ 2042.476638] virbr0: port 1(t0-H0a11J) entered listening state
[ 2044.506607] virbr0: port 1(t0-H0a11J) entered learning state
[ 2046.518549] virbr0: port 1(t0-H0a11J) entered forwarding state
[ 2046.524396] virbr0: topology change detected, propagating
[ 2053.173970] virbr0: port 1(t0-H0a11J) entered disabled state
[ 2053.180768] t0-H0a11J (unregistering): left allmulticast mode
[ 2053.186529] t0-H0a11J (unregistering): left promiscuous mode
[ 2053.192213] virbr0: port 1(t0-H0a11J) entered disabled state
[ 2053.961488] virbr0: port 1(t0-cDyDfB) entered blocking state
[ 2053.967169] virbr0: port 1(t0-cDyDfB) entered disabled state
[ 2053.972886] t0-cDyDfB: entered allmulticast mode
[ 2053.977584] t0-cDyDfB: entered promiscuous mode
[ 2053.986964] virbr0: port 1(t0-cDyDfB) entered blocking state
[ 2053.992627] virbr0: port 1(t0-cDyDfB) entered listening state
[ 2056.022334] virbr0: port 1(t0-cDyDfB) entered learning state
[ 2058.038274] virbr0: port 1(t0-cDyDfB) entered forwarding state
[ 2058.044119] virbr0: topology change detected, propagating
[ 2064.685830] virbr0: port 1(t0-cDyDfB) entered disabled state
[ 2064.692901] t0-cDyDfB (unregistering): left allmulticast mode
[ 2064.698665] t0-cDyDfB (unregistering): left promiscuous mode
[ 2064.704339] virbr0: port 1(t0-cDyDfB) entered disabled state
[ 2065.476038] virbr0: port 1(t0-sV0Cln) entered blocking state
[ 2065.481709] virbr0: port 1(t0-sV0Cln) entered disabled state
[ 2065.487435] t0-sV0Cln: entered allmulticast mode
[ 2065.492125] t0-sV0Cln: entered promiscuous mode
[ 2065.501284] virbr0: port 1(t0-sV0Cln) entered blocking state
[ 2065.506950] virbr0: port 1(t0-sV0Cln) entered listening state
[ 2067.542065] virbr0: port 1(t0-sV0Cln) entered learning state
[ 2069.558009] virbr0: port 1(t0-sV0Cln) entered forwarding state
[ 2069.563855] virbr0: topology change detected, propagating
[ 2076.721559] virbr0: port 1(t0-sV0Cln) entered disabled state
[ 2076.728414] t0-sV0Cln (unregistering): left allmulticast mode
[ 2076.734184] t0-sV0Cln (unregistering): left promiscuous mode
[ 2076.739863] virbr0: port 1(t0-sV0Cln) entered disabled state
[ 2077.520372] virbr0: port 1(t0-x64Ras) entered blocking state
[ 2077.526058] virbr0: port 1(t0-x64Ras) entered disabled state
[ 2077.531780] t0-x64Ras: entered allmulticast mode
[ 2077.536489] t0-x64Ras: entered promiscuous mode
[ 2077.545740] virbr0: port 1(t0-x64Ras) entered blocking state
[ 2077.551402] virbr0: port 1(t0-x64Ras) entered listening state
[ 2079.573792] virbr0: port 1(t0-x64Ras) entered learning state
[ 2081.589748] virbr0: port 1(t0-x64Ras) entered forwarding state
[ 2081.595598] virbr0: topology change detected, propagating
[ 2088.253310] virbr0: port 1(t0-x64Ras) entered disabled state
[ 2088.260091] t0-x64Ras (unregistering): left allmulticast mode
[ 2088.265849] t0-x64Ras (unregistering): left promiscuous mode
[ 2088.271523] virbr0: port 1(t0-x64Ras) entered disabled state
[ 2089.066009] virbr0: port 1(t0-HA4jXk) entered blocking state
[ 2089.071680] virbr0: port 1(t0-HA4jXk) entered disabled state
[ 2089.077376] t0-HA4jXk: entered allmulticast mode
[ 2089.082106] t0-HA4jXk: entered promiscuous mode
[ 2089.091268] virbr0: port 1(t0-HA4jXk) entered blocking state
[ 2089.096934] virbr0: port 1(t0-HA4jXk) entered listening state
[ 2091.129523] virbr0: port 1(t0-HA4jXk) entered learning state
[ 2093.141477] virbr0: port 1(t0-HA4jXk) entered forwarding state
[ 2093.147327] virbr0: topology change detected, propagating
[ 2100.292851] virbr0: port 1(t0-HA4jXk) entered disabled state
[ 2100.299597] t0-HA4jXk (unregistering): left allmulticast mode
[ 2100.305360] t0-HA4jXk (unregistering): left promiscuous mode
[ 2100.311041] virbr0: port 1(t0-HA4jXk) entered disabled state
[ 2104.770151] virbr0: port 1(t0-JL3S3j) entered blocking state
[ 2104.775822] virbr0: port 1(t0-JL3S3j) entered disabled state
[ 2104.781529] t0-JL3S3j: entered allmulticast mode
[ 2104.786224] t0-JL3S3j: entered promiscuous mode
[ 2104.795098] virbr0: port 1(t0-JL3S3j) entered blocking state
[ 2104.800763] virbr0: port 1(t0-JL3S3j) entered listening state
[ 2106.837161] virbr0: port 1(t0-JL3S3j) entered learning state
[ 2108.853106] virbr0: port 1(t0-JL3S3j) entered forwarding state
[ 2108.858948] virbr0: topology change detected, propagating
[ 2309.164011] virbr0: port 1(t0-JL3S3j) entered disabled state
[ 2309.170672] t0-JL3S3j (unregistering): left allmulticast mode
[ 2309.176431] t0-JL3S3j (unregistering): left promiscuous mode
[ 2309.182112] virbr0: port 1(t0-JL3S3j) entered disabled state
[ 2313.561243] virbr0: port 1(t0-7mV7D9) entered blocking state
[ 2313.566914] virbr0: port 1(t0-7mV7D9) entered disabled state
[ 2313.572612] t0-7mV7D9: entered allmulticast mode
[ 2313.577313] t0-7mV7D9: entered promiscuous mode
[ 2313.586293] virbr0: port 1(t0-7mV7D9) entered blocking state
[ 2313.591961] virbr0: port 1(t0-7mV7D9) entered listening state
[ 2315.600361] virbr0: port 1(t0-7mV7D9) entered learning state
[ 2317.616314] virbr0: port 1(t0-7mV7D9) entered forwarding state
[ 2317.622161] virbr0: topology change detected, propagating
[ 2324.879427] virbr0: port 1(t0-7mV7D9) entered disabled state
[ 2324.886188] t0-7mV7D9 (unregistering): left allmulticast mode
[ 2324.891946] t0-7mV7D9 (unregistering): left promiscuous mode
[ 2324.897616] virbr0: port 1(t0-7mV7D9) entered disabled state
[ 2325.669837] virbr0: port 1(t0-9WrKjY) entered blocking state
[ 2325.675510] virbr0: port 1(t0-9WrKjY) entered disabled state
[ 2325.681215] t0-9WrKjY: entered allmulticast mode
[ 2325.685932] t0-9WrKjY: entered promiscuous mode
[ 2325.695065] virbr0: port 1(t0-9WrKjY) entered blocking state
[ 2325.700729] virbr0: port 1(t0-9WrKjY) entered listening state
[ 2327.728084] virbr0: port 1(t0-9WrKjY) entered learning state
[ 2329.744033] virbr0: port 1(t0-9WrKjY) entered forwarding state
[ 2329.749882] virbr0: topology change detected, propagating
[ 2337.035515] virbr0: port 1(t0-9WrKjY) entered disabled state
[ 2337.042312] t0-9WrKjY (unregistering): left allmulticast mode
[ 2337.048064] t0-9WrKjY (unregistering): left promiscuous mode
[ 2337.053739] virbr0: port 1(t0-9WrKjY) entered disabled state
[ 2337.783533] virbr0: port 1(t0-LKaSqL) entered blocking state
[ 2337.789206] virbr0: port 1(t0-LKaSqL) entered disabled state
[ 2337.794918] t0-LKaSqL: entered allmulticast mode
[ 2337.799636] t0-LKaSqL: entered promiscuous mode
[ 2337.808993] virbr0: port 1(t0-LKaSqL) entered blocking state
[ 2337.814661] virbr0: port 1(t0-LKaSqL) entered listening state
[ 2339.823794] virbr0: port 1(t0-LKaSqL) entered learning state
[ 2341.839751] virbr0: port 1(t0-LKaSqL) entered forwarding state
[ 2341.845600] virbr0: topology change detected, propagating
[ 2348.555221] virbr0: port 1(t0-LKaSqL) entered disabled state
[ 2348.562053] t0-LKaSqL (unregistering): left allmulticast mode
[ 2348.567824] t0-LKaSqL (unregistering): left promiscuous mode
[ 2348.573498] virbr0: port 1(t0-LKaSqL) entered disabled state
[ 2349.353570] virbr0: port 1(t0-soO1GR) entered blocking state
[ 2349.359249] virbr0: port 1(t0-soO1GR) entered disabled state
[ 2349.364972] t0-soO1GR: entered allmulticast mode
[ 2349.369680] t0-soO1GR: entered promiscuous mode
[ 2349.378978] virbr0: port 1(t0-soO1GR) entered blocking state
[ 2349.384645] virbr0: port 1(t0-soO1GR) entered listening state
[ 2351.407535] virbr0: port 1(t0-soO1GR) entered learning state
[ 2353.423477] virbr0: port 1(t0-soO1GR) entered forwarding state
[ 2353.429318] virbr0: topology change detected, propagating
[ 2360.635151] virbr0: port 1(t0-soO1GR) entered disabled state
[ 2360.641917] t0-soO1GR (unregistering): left allmulticast mode
[ 2360.647675] t0-soO1GR (unregistering): left promiscuous mode
[ 2360.653349] virbr0: port 1(t0-soO1GR) entered disabled state
[ 2361.427618] virbr0: port 1(t0-gunnuG) entered blocking state
[ 2361.433287] virbr0: port 1(t0-gunnuG) entered disabled state
[ 2361.439013] t0-gunnuG: entered allmulticast mode
[ 2361.443710] t0-gunnuG: entered promiscuous mode
[ 2361.452689] virbr0: port 1(t0-gunnuG) entered blocking state
[ 2361.458357] virbr0: port 1(t0-gunnuG) entered listening state
[ 2363.471254] virbr0: port 1(t0-gunnuG) entered learning state
[ 2365.487212] virbr0: port 1(t0-gunnuG) entered forwarding state
[ 2365.493068] virbr0: topology change detected, propagating
[ 2372.722796] virbr0: port 1(t0-gunnuG) entered disabled state
[ 2372.729627] t0-gunnuG (unregistering): left allmulticast mode
[ 2372.735392] t0-gunnuG (unregistering): left promiscuous mode
[ 2372.741068] virbr0: port 1(t0-gunnuG) entered disabled state
[ 2373.499600] virbr0: port 1(t0-Jhp1qK) entered blocking state
[ 2373.505275] virbr0: port 1(t0-Jhp1qK) entered disabled state
[ 2373.510969] t0-Jhp1qK: entered allmulticast mode
[ 2373.515669] t0-Jhp1qK: entered promiscuous mode
[ 2373.524899] virbr0: port 1(t0-Jhp1qK) entered blocking state
[ 2373.530563] virbr0: port 1(t0-Jhp1qK) entered listening state
[ 2375.566976] virbr0: port 1(t0-Jhp1qK) entered learning state
[ 2377.582918] virbr0: port 1(t0-Jhp1qK) entered forwarding state
[ 2377.588768] virbr0: topology change detected, propagating
[ 2384.798730] virbr0: port 1(t0-Jhp1qK) entered disabled state
[ 2384.805394] t0-Jhp1qK (unregistering): left allmulticast mode
[ 2384.811158] t0-Jhp1qK (unregistering): left promiscuous mode
[ 2384.816824] virbr0: port 1(t0-Jhp1qK) entered disabled state
[ 2385.581649] virbr0: port 1(t0-KLEcF2) entered blocking state
[ 2385.587330] virbr0: port 1(t0-KLEcF2) entered disabled state
[ 2385.593056] t0-KLEcF2: entered allmulticast mode
[ 2385.597757] t0-KLEcF2: entered promiscuous mode
[ 2385.607343] virbr0: port 1(t0-KLEcF2) entered blocking state
[ 2385.613011] virbr0: port 1(t0-KLEcF2) entered listening state
[ 2387.630679] virbr0: port 1(t0-KLEcF2) entered learning state
[ 2389.646636] virbr0: port 1(t0-KLEcF2) entered forwarding state
[ 2389.652474] virbr0: topology change detected, propagating
[ 2396.886418] virbr0: port 1(t0-KLEcF2) entered disabled state
[ 2396.893082] t0-KLEcF2 (unregistering): left allmulticast mode
[ 2396.898834] t0-KLEcF2 (unregistering): left promiscuous mode
[ 2396.904507] virbr0: port 1(t0-KLEcF2) entered disabled state
[ 2397.672055] virbr0: port 1(t0-Jh9ahj) entered blocking state
[ 2397.677729] virbr0: port 1(t0-Jh9ahj) entered disabled state
[ 2397.683415] t0-Jh9ahj: entered allmulticast mode
[ 2397.688112] t0-Jh9ahj: entered promiscuous mode
[ 2397.697332] virbr0: port 1(t0-Jh9ahj) entered blocking state
[ 2397.703002] virbr0: port 1(t0-Jh9ahj) entered listening state
[ 2399.726410] virbr0: port 1(t0-Jh9ahj) entered learning state
[ 2401.742373] virbr0: port 1(t0-Jh9ahj) entered forwarding state
[ 2401.748221] virbr0: topology change detected, propagating
[ 2408.994230] virbr0: port 1(t0-Jh9ahj) entered disabled state
[ 2409.000975] t0-Jh9ahj (unregistering): left allmulticast mode
[ 2409.006748] t0-Jh9ahj (unregistering): left promiscuous mode
[ 2409.012427] virbr0: port 1(t0-Jh9ahj) entered disabled state
[ 2409.791277] virbr0: port 1(t0-cOnTTs) entered blocking state
[ 2409.796942] virbr0: port 1(t0-cOnTTs) entered disabled state
[ 2409.802635] t0-cOnTTs: entered allmulticast mode
[ 2409.807331] t0-cOnTTs: entered promiscuous mode
[ 2409.816473] virbr0: port 1(t0-cOnTTs) entered blocking state
[ 2409.822134] virbr0: port 1(t0-cOnTTs) entered listening state
[ 2411.854127] virbr0: port 1(t0-cOnTTs) entered learning state
[ 2413.870074] virbr0: port 1(t0-cOnTTs) entered forwarding state
[ 2413.875919] virbr0: topology change detected, propagating
[ 2420.558043] virbr0: port 1(t0-cOnTTs) entered disabled state
[ 2420.564843] t0-cOnTTs (unregistering): left allmulticast mode
[ 2420.570597] t0-cOnTTs (unregistering): left promiscuous mode
[ 2420.576269] virbr0: port 1(t0-cOnTTs) entered disabled state
[ 2421.344142] virbr0: port 1(t0-OEvoea) entered blocking state
[ 2421.349821] virbr0: port 1(t0-OEvoea) entered disabled state
[ 2421.355539] t0-OEvoea: entered allmulticast mode
[ 2421.360243] t0-OEvoea: entered promiscuous mode
[ 2421.369562] virbr0: port 1(t0-OEvoea) entered blocking state
[ 2421.375226] virbr0: port 1(t0-OEvoea) entered listening state
[ 2423.409861] virbr0: port 1(t0-OEvoea) entered learning state
[ 2425.421804] virbr0: port 1(t0-OEvoea) entered forwarding state
[ 2425.427650] virbr0: topology change detected, propagating
[ 2432.617402] virbr0: port 1(t0-OEvoea) entered disabled state
[ 2432.624236] t0-OEvoea (unregistering): left allmulticast mode
[ 2432.629992] t0-OEvoea (unregistering): left promiscuous mode
[ 2432.635664] virbr0: port 1(t0-OEvoea) entered disabled state
[ 2437.089641] virbr0: port 1(t0-CIWWHF) entered blocking state
[ 2437.095308] virbr0: port 1(t0-CIWWHF) entered disabled state
[ 2437.101019] t0-CIWWHF: entered allmulticast mode
[ 2437.105719] t0-CIWWHF: entered promiscuous mode
[ 2437.114782] virbr0: port 1(t0-CIWWHF) entered blocking state
[ 2437.120450] virbr0: port 1(t0-CIWWHF) entered listening state
[ 2439.149493] virbr0: port 1(t0-CIWWHF) entered learning state
[ 2441.165435] virbr0: port 1(t0-CIWWHF) entered forwarding state
[ 2441.171274] virbr0: topology change detected, propagating
[ 2642.288071] virbr0: port 1(t0-CIWWHF) entered disabled state
[ 2642.294903] t0-CIWWHF (unregistering): left allmulticast mode
[ 2642.300656] t0-CIWWHF (unregistering): left promiscuous mode
[ 2642.306333] virbr0: port 1(t0-CIWWHF) entered disabled state
[ 2658.187225] virbr0: port 1(t0-Ag3knm) entered blocking state
[ 2658.192905] virbr0: port 1(t0-Ag3knm) entered disabled state
[ 2658.198623] t0-Ag3knm: entered allmulticast mode
[ 2658.203330] t0-Ag3knm: entered promiscuous mode
[ 2658.212660] virbr0: port 1(t0-Ag3knm) entered blocking state
[ 2658.218324] virbr0: port 1(t0-Ag3knm) entered listening state
[ 2660.232319] virbr0: port 1(t0-Ag3knm) entered learning state
[ 2662.248271] virbr0: port 1(t0-Ag3knm) entered forwarding state
[ 2662.254116] virbr0: topology change detected, propagating
[ 2663.469231] virbr0: port 2(t0-34Rj4Q) entered blocking state
[ 2663.474903] virbr0: port 2(t0-34Rj4Q) entered disabled state
[ 2663.480607] t0-34Rj4Q: entered allmulticast mode
[ 2663.485316] t0-34Rj4Q: entered promiscuous mode
[ 2663.493800] virbr0: port 2(t0-34Rj4Q) entered blocking state
[ 2663.499458] virbr0: port 2(t0-34Rj4Q) entered listening state
[ 2665.512195] virbr0: port 2(t0-34Rj4Q) entered learning state
[ 2667.528148] virbr0: port 2(t0-34Rj4Q) entered forwarding state
[ 2667.533997] virbr0: topology change detected, propagating
[ 2669.367309] virbr0: port 3(t0-NvHVRE) entered blocking state
[ 2669.372990] virbr0: port 3(t0-NvHVRE) entered disabled state
[ 2669.378684] t0-NvHVRE: entered allmulticast mode
[ 2669.383553] t0-NvHVRE: entered promiscuous mode
[ 2669.392448] virbr0: port 3(t0-NvHVRE) entered blocking state
[ 2669.398113] virbr0: port 3(t0-NvHVRE) entered listening state
[ 2671.432067] virbr0: port 3(t0-NvHVRE) entered learning state
[ 2673.448013] virbr0: port 3(t0-NvHVRE) entered forwarding state
[ 2673.453856] virbr0: topology change detected, propagating
[ 2676.085479] virbr0: port 4(t0-AYJZxK) entered blocking state
[ 2676.091166] virbr0: port 4(t0-AYJZxK) entered disabled state
[ 2676.096904] t0-AYJZxK: entered allmulticast mode
[ 2676.101634] t0-AYJZxK: entered promiscuous mode
[ 2676.110277] virbr0: port 4(t0-AYJZxK) entered blocking state
[ 2676.115947] virbr0: port 4(t0-AYJZxK) entered listening state
[ 2678.151908] virbr0: port 4(t0-AYJZxK) entered learning state
[ 2680.167858] virbr0: port 4(t0-AYJZxK) entered forwarding state
[ 2680.173730] virbr0: topology change detected, propagating
[ 2682.891413] virbr0: port 5(t0-jzdGij) entered blocking state
[ 2682.897195] virbr0: port 5(t0-jzdGij) entered disabled state
[ 2682.902999] t0-jzdGij: entered allmulticast mode
[ 2682.907937] t0-jzdGij: entered promiscuous mode
[ 2682.917964] virbr0: port 5(t0-jzdGij) entered blocking state
[ 2682.923695] virbr0: port 5(t0-jzdGij) entered listening state
[ 2684.935757] virbr0: port 5(t0-jzdGij) entered learning state
[ 2686.951694] virbr0: port 5(t0-jzdGij) entered forwarding state
[ 2686.957534] virbr0: topology change detected, propagating
[ 2833.395355] hrtimer: interrupt took 9718 ns
[ 3642.814106] BUG: kernel NULL pointer dereference, address: 00000000000004c8
[ 3642.821070] #PF: supervisor read access in kernel mode
[ 3642.826210] #PF: error_code(0x0000) - not-present page
[ 3642.831350] PGD 0 P4D 0 
[ 3642.833889] Oops: Oops: 0000 [#1] SMP NOPTI
[ 3642.838079] CPU: 96 UID: 0 PID: 598 Comm: migration/96 Not tainted 6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3642.850414] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3642.858066] Stopper: multi_cpu_stop+0x0/0x110 <- migrate_swap+0xad/0x120
[ 3642.864776] RIP: 0010:__migrate_swap_task+0x32/0x140
[ 3642.869743] Code: e5 41 55 41 54 49 89 fc 53 48 63 de 48 83 87 a0 03 00 00 01 65 48 ff 05 84 42 ed 01 66 90 4c 8b af 50 09 00 00 e8 de 7a 06 00 <49> 8b bd c8 04 00 00 e8 32 4e 31 00 48 89 c7 48 85 c0 74 0f ba 01
[ 3642.888485] RSP: 0018:ffffaab60df0fdc0 EFLAGS: 00010002
[ 3642.893712] RAX: 0000000000000001 RBX: 0000000000000055 RCX: 0000000000000000
[ 3642.900845] RDX: ffff8f7206f40000 RSI: 0000000000000055 RDI: ffff8f528db099c0
[ 3642.907976] RBP: ffffaab60df0fdd8 R08: 0000035028a3ffa1 R09: ffff8f917e831940
[ 3642.915109] R10: 0000000000000080 R11: 0000000000000001 R12: ffff8f528db099c0
[ 3642.922241] R13: 0000000000000000 R14: ffff8f917e831840 R15: 0000000000000000
[ 3642.929378] FS:  0000000000000000(0000) GS:ffff8f91ec036000(0000) knlGS:0000000000000000
[ 3642.937459] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3642.943206] CR2: 00000000000004c8 CR3: 0000000124912022 CR4: 0000000000770ef0
[ 3642.950340] PKRU: 55555554
[ 3642.953053] Call Trace:
[ 3642.955503]  <TASK>
[ 3642.957614]  migrate_swap_stop+0x14b/0x150
[ 3642.961720]  multi_cpu_stop+0x72/0x110
[ 3642.965471]  ? __pfx_multi_cpu_stop+0x10/0x10
[ 3642.969829]  cpu_stopper_thread+0x97/0x140
[ 3642.973930]  smpboot_thread_fn+0x101/0x230
[ 3642.978030]  kthread+0x10b/0x220
[ 3642.981261]  ? __pfx_smpboot_thread_fn+0x10/0x10
[ 3642.985879]  ? __pfx_kthread+0x10/0x10
[ 3642.989632]  ret_from_fork+0x8e/0x100
[ 3642.993299]  ? __pfx_kthread+0x10/0x10
[ 3642.997052]  ret_from_fork_asm+0x1a/0x30
[ 3643.000981]  </TASK>
[ 3643.003170] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3643.078534] CR2: 00000000000004c8
[ 3643.081852] ---[ end trace 0000000000000000 ]---
[ 3643.135270] pstore: backend (erst) writing error (-28)
[ 3643.140412] RIP: 0010:__migrate_swap_task+0x32/0x140
[ 3643.145376] Code: e5 41 55 41 54 49 89 fc 53 48 63 de 48 83 87 a0 03 00 00 01 65 48 ff 05 84 42 ed 01 66 90 4c 8b af 50 09 00 00 e8 de 7a 06 00 <49> 8b bd c8 04 00 00 e8 32 4e 31 00 48 89 c7 48 85 c0 74 0f ba 01
[ 3643.164123] RSP: 0018:ffffaab60df0fdc0 EFLAGS: 00010002
[ 3643.169349] RAX: 0000000000000001 RBX: 0000000000000055 RCX: 0000000000000000
[ 3643.176480] RDX: ffff8f7206f40000 RSI: 0000000000000055 RDI: ffff8f528db099c0
[ 3643.183614] RBP: ffffaab60df0fdd8 R08: 0000035028a3ffa1 R09: ffff8f917e831940
[ 3643.190746] R10: 0000000000000080 R11: 0000000000000001 R12: ffff8f528db099c0
[ 3643.197879] R13: 0000000000000000 R14: ffff8f917e831840 R15: 0000000000000000
[ 3643.205010] FS:  0000000000000000(0000) GS:ffff8f91ec036000(0000) knlGS:0000000000000000
[ 3643.213096] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3643.218842] CR2: 00000000000004c8 CR3: 0000000124912022 CR4: 0000000000770ef0
[ 3643.225975] PKRU: 55555554
[ 3643.228687] note: migration/96[598] exited with irqs disabled
perf: interrupt took too long (9034 > 5467), lowering kernel.perf_event_max_sample_rate to 22000
[ 3655.522102] watchdog: CPU118: Watchdog detected hard LOCKUP on cpu 118
[ 3655.522108] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3655.522193] CPU: 118 UID: 0 PID: 31419 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3655.522198] Tainted: [D]=DIE
[ 3655.522199] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3655.522201] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3655.522209] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3655.522211] RSP: 0018:ffffaab62b637c20 EFLAGS: 00000046
[ 3655.522214] RAX: 0000000000000000 RBX: ffff8f917edb2700 RCX: 000000000000002a
[ 3655.522215] RDX: ffff8f917edb2700 RSI: 0000000000ac0100 RDI: ffff8f7aeeeca68c
[ 3655.522217] RBP: ffffaab62b637c40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3655.522218] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3655.522219] R13: 0000000001dc0000 R14: 0000000001dc0000 R15: 0000000000000077
[ 3655.522221] FS:  00007f58457fa640(0000) GS:ffff8f91ec5b6000(0000) knlGS:0000000000000000
[ 3655.522223] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3655.522224] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3655.522226] PKRU: 55555554
[ 3655.522227] Call Trace:
[ 3655.522229]  <TASK>
[ 3655.522235]  _raw_spin_lock_irqsave+0x46/0x60
[ 3655.522239]  yield_to+0x36/0x1b0
[ 3655.522246]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3655.522300]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3655.522354]  pause_interception+0x91/0x120 [kvm_amd]
[ 3655.522364]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3655.522372]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3655.522380]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3655.522439]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3655.522493]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3655.522497]  ? do_futex+0xc8/0x1d0
[ 3655.522501]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3655.522503]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3655.522507]  __x64_sys_ioctl+0xa0/0xf0
[ 3655.522513]  x64_sys_call+0x122e/0x2150
[ 3655.522515]  do_syscall_64+0x56/0x1e0
[ 3655.522519]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3655.522521] RIP: 0033:0x7f67bff03b4b
[ 3655.522524] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3655.522526] RSP: 002b:00007f58457f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3655.522528] RAX: ffffffffffffffda RBX: 0000563db66cd3f0 RCX: 00007f67bff03b4b
[ 3655.522530] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000210
[ 3655.522531] RBP: 0000563db66cd3f0 R08: 0000000000000000 R09: 0000000000000000
[ 3655.522532] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3655.522533] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3655.522540]  </TASK>
[ 3655.594707] watchdog: CPU113: Watchdog detected hard LOCKUP on cpu 113
[ 3655.594710] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3655.594770] CPU: 113 UID: 0 PID: 31252 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3655.594774] Tainted: [D]=DIE
[ 3655.594775] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3655.594776] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3655.594781] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3655.594783] RSP: 0018:ffffaab62acdbc20 EFLAGS: 00000046
[ 3655.594785] RAX: 0000000000000000 RBX: ffff8f917ec72700 RCX: 000000000000007b
[ 3655.594787] RDX: ffff8f917ec72700 RSI: 0000000001f00100 RDI: ffff8f7aeeeca68c
[ 3655.594788] RBP: ffffaab62acdbc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3655.594789] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3655.594791] R13: 0000000001c80000 R14: 0000000001c80000 R15: 000000000000002d
[ 3655.594792] FS:  00007f5b44ff9640(0000) GS:ffff8f91ec476000(0000) knlGS:0000000000000000
[ 3655.594794] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3655.594795] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3655.594797] PKRU: 55555554
[ 3655.594798] Call Trace:
[ 3655.594799]  <TASK>
[ 3655.594802]  _raw_spin_lock_irqsave+0x46/0x60
[ 3655.594806]  yield_to+0x36/0x1b0
[ 3655.594811]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3655.594862]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3655.594915]  pause_interception+0x91/0x120 [kvm_amd]
[ 3655.594923]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3655.594931]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3655.594939]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3655.594998]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3655.595051]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3655.595054]  ? do_futex+0xc8/0x1d0
[ 3655.595057]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3655.595059]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3655.595063]  __x64_sys_ioctl+0xa0/0xf0
[ 3655.595068]  x64_sys_call+0x122e/0x2150
[ 3655.595070]  do_syscall_64+0x56/0x1e0
[ 3655.595074]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3655.595076] RIP: 0033:0x7f67bff03b4b
[ 3655.595078] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3655.595080] RSP: 002b:00007f5b44ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3655.595082] RAX: ffffffffffffffda RBX: 0000563db6031a70 RCX: 00007f67bff03b4b
[ 3655.595084] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000c2
[ 3655.595085] RBP: 0000563db6031a70 R08: 0000000000000000 R09: 0000000000000000
[ 3655.595086] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3655.595087] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3655.595093]  </TASK>
[ 3655.774752] watchdog: CPU36: Watchdog detected hard LOCKUP on cpu 36
[ 3655.774758] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3655.774856] CPU: 36 UID: 0 PID: 31393 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3655.774862] Tainted: [D]=DIE
[ 3655.774863] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3655.774865] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3655.774874] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3655.774877] RSP: 0018:ffffaab60d2e4d68 EFLAGS: 00000046
[ 3655.774879] RAX: 0000000000000000 RBX: ffff8f917e132700 RCX: 0000000000000023
[ 3655.774881] RDX: ffff8f917e132700 RSI: 0000000000900100 RDI: ffff8f917e831840
[ 3655.774883] RBP: ffffaab60d2e4d88 R08: 0000000000000080 R09: fffffffe00000000
[ 3655.774885] R10: 0000000000000006 R11: 0000000000000000 R12: ffff8f917e831840
[ 3655.774886] R13: 0000000000940000 R14: 0000000000940000 R15: ffff8f917e831840
[ 3655.774888] FS:  00007f58a7fff640(0000) GS:ffff8f91eb936000(0000) knlGS:0000000000000000
[ 3655.774890] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3655.774892] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3655.774894] PKRU: 55555554
[ 3655.774895] Call Trace:
[ 3655.774897]  <IRQ>
[ 3655.774904]  _raw_spin_lock+0x2d/0x40
[ 3655.774908]  raw_spin_rq_lock_nested+0x19/0x30
[ 3655.774913]  _raw_spin_rq_lock_irqsave+0x1c/0x30
[ 3655.774917]  sched_balance_rq+0x616/0xf80
[ 3655.774927]  sched_balance_domains+0x262/0x370
[ 3655.774933]  sched_balance_softirq+0x5a/0x80
[ 3655.774936]  handle_softirqs+0xc8/0x290
[ 3655.774942]  __irq_exit_rcu+0x96/0xc0
[ 3655.774945]  irq_exit_rcu+0x12/0x20
[ 3655.774948]  sysvec_apic_timer_interrupt+0x83/0x90
[ 3655.774953]  </IRQ>
[ 3655.774954]  <TASK>
[ 3655.774956]  asm_sysvec_apic_timer_interrupt+0x1f/0x30
[ 3655.774960] RIP: 0010:kvm_arch_vcpu_ioctl_run+0xbd4/0x1ba0 [kvm]
[ 3655.775043] Code: b8 03 00 00 4c 89 e7 e8 8a 30 04 00 49 83 bc 24 f8 07 00 00 00 0f 85 8f 03 00 00 41 c6 84 24 92 0a 00 00 01 fb 0f 1f 44 00 00 <49> 83 84 24 e0 15 00 00 01 fa 0f 1f 44 00 00 41 c6 84 24 92 0a 00
[ 3655.775045] RSP: 0018:ffffaab62c1b3da0 EFLAGS: 00000246
[ 3655.775048] RAX: ffff8f7aeee6a000 RBX: ffff8f7853e98000 RCX: 000000008f972858
[ 3655.775049] RDX: 0000000100000000 RSI: 00000002824e8e81 RDI: ffff8f5f7dd20000
[ 3655.775051] RBP: ffffaab62c1b3e08 R08: 0000000000000000 R09: 0000000000000000
[ 3655.775053] R10: 0000000000000000 R11: 0000000000000000 R12: ffff8f5f7dd20000
[ 3655.775054] R13: 0000000000000000 R14: 0000000000000000 R15: ffff8f78fb262000
[ 3655.775065]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3655.775136]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3655.775140]  ? do_futex+0xc8/0x1d0
[ 3655.775144]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3655.775147]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3655.775151]  __x64_sys_ioctl+0xa0/0xf0
[ 3655.775157]  x64_sys_call+0x122e/0x2150
[ 3655.775160]  do_syscall_64+0x56/0x1e0
[ 3655.775165]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3655.775167] RIP: 0033:0x7f67bff03b4b
[ 3655.775171] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3655.775173] RSP: 002b:00007f58a7ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3655.775175] RAX: ffffffffffffffda RBX: 0000563db65c5510 RCX: 00007f67bff03b4b
[ 3655.775177] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001dc
[ 3655.775178] RBP: 0000563db65c5510 R08: 0000000000000000 R09: 0000000000000000
[ 3655.775180] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3655.775181] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3655.775187]  </TASK>
[ 3655.905030] watchdog: CPU93: Watchdog detected hard LOCKUP on cpu 93
[ 3655.905036] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3655.905135] CPU: 93 UID: 0 PID: 31316 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3655.905140] Tainted: [D]=DIE
[ 3655.905142] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3655.905144] RIP: 0010:native_queued_spin_lock_slowpath+0x29a/0x2d0
[ 3655.905153] Code: c1 e9 12 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 <8b> 42 08 85 c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09
[ 3655.905156] RSP: 0018:ffffaab62afdbc20 EFLAGS: 00000046
[ 3655.905159] RAX: 0000000000000000 RBX: ffff8f7180d72700 RCX: 0000000000000009
[ 3655.905161] RDX: ffff8f7180d72700 RSI: 0000000000280100 RDI: ffff8f7aeeeca68c
[ 3655.905163] RBP: ffffaab62afdbc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3655.905164] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3655.905166] R13: 0000000001780000 R14: 0000000001780000 R15: 0000000000000042
[ 3655.905168] FS:  00007f5a07fff640(0000) GS:ffff8f71ee576000(0000) knlGS:0000000000000000
[ 3655.905170] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3655.905172] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3655.905174] PKRU: 55555554
[ 3655.905175] Call Trace:
[ 3655.905177]  <TASK>
[ 3655.905183]  _raw_spin_lock_irqsave+0x46/0x60
[ 3655.905190]  yield_to+0x36/0x1b0
[ 3655.905199]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3655.905272]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3655.905350]  pause_interception+0x91/0x120 [kvm_amd]
[ 3655.905362]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3655.905372]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3655.905383]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3655.905471]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3655.905546]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3655.905551]  ? do_futex+0xc8/0x1d0
[ 3655.905556]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3655.905558]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3655.905562]  __x64_sys_ioctl+0xa0/0xf0
[ 3655.905569]  x64_sys_call+0x122e/0x2150
[ 3655.905572]  do_syscall_64+0x56/0x1e0
[ 3655.905577]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3655.905580] RIP: 0033:0x7f67bff03b4b
[ 3655.905584] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3655.905587] RSP: 002b:00007f5a07ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3655.905592] RAX: ffffffffffffffda RBX: 0000563db62bb090 RCX: 00007f67bff03b4b
[ 3655.905594] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000142
[ 3655.905595] RBP: 0000563db62bb090 R08: 0000000000000000 R09: 0000000000000000
[ 3655.905597] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3655.905598] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3655.905606]  </TASK>
[ 3656.925212] watchdog: CPU53: Watchdog detected hard LOCKUP on cpu 53
[ 3656.925215] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3656.925288] CPU: 53 UID: 0 PID: 31380 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3656.925293] Tainted: [D]=DIE
[ 3656.925294] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3656.925296] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3656.925300] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3656.925302] RSP: 0018:ffffaab62c22fc20 EFLAGS: 00000046
[ 3656.925305] RAX: 0000000000000000 RBX: ffff8f917e572700 RCX: 0000000000000031
[ 3656.925306] RDX: ffff8f917e572700 RSI: 0000000000c80100 RDI: ffff8f7aeeeca68c
[ 3656.925308] RBP: ffffaab62c22fc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3656.925309] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3656.925310] R13: 0000000000d80000 R14: 0000000000d80000 R15: 0000000000000054
[ 3656.925312] FS:  00007f58e77fe640(0000) GS:ffff8f91ebd76000(0000) knlGS:0000000000000000
[ 3656.925314] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3656.925315] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3656.925317] PKRU: 55555554
[ 3656.925317] Call Trace:
[ 3656.925319]  <TASK>
[ 3656.925323]  _raw_spin_lock_irqsave+0x46/0x60
[ 3656.925327]  yield_to+0x36/0x1b0
[ 3656.925332]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3656.925382]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3656.925435]  pause_interception+0x91/0x120 [kvm_amd]
[ 3656.925444]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3656.925452]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3656.925460]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3656.925519]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3656.925571]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3656.925574]  ? do_futex+0xc8/0x1d0
[ 3656.925577]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3656.925579]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3656.925583]  __x64_sys_ioctl+0xa0/0xf0
[ 3656.925587]  x64_sys_call+0x122e/0x2150
[ 3656.925590]  do_syscall_64+0x56/0x1e0
[ 3656.925594]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3656.925596] RIP: 0033:0x7f67bff03b4b
[ 3656.925598] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3656.925600] RSP: 002b:00007f58e77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3656.925602] RAX: ffffffffffffffda RBX: 0000563db65424f0 RCX: 00007f67bff03b4b
[ 3656.925603] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001c2
[ 3656.925605] RBP: 0000563db65424f0 R08: 0000000000000000 R09: 0000000000000000
[ 3656.925606] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3656.925607] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3656.925614]  </TASK>
[ 3657.074103] watchdog: CPU73: Watchdog detected hard LOCKUP on cpu 73
[ 3657.074110] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3657.074196] CPU: 73 UID: 0 PID: 31323 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3657.074201] Tainted: [D]=DIE
[ 3657.074202] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3657.074205] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3657.074213] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3657.074216] RSP: 0018:ffffaab62b01bc20 EFLAGS: 00000046
[ 3657.074218] RAX: 0000000000000000 RBX: ffff8f7180872700 RCX: 0000000000000061
[ 3657.074220] RDX: ffff8f7180872700 RSI: 0000000001880100 RDI: ffff8f7aeeeca68c
[ 3657.074222] RBP: ffffaab62b01bc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3657.074223] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3657.074225] R13: 0000000001280000 R14: 0000000001280000 R15: 0000000000000059
[ 3657.074227] FS:  00007f59e7fff640(0000) GS:ffff8f71ee076000(0000) knlGS:0000000000000000
[ 3657.074228] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3657.074230] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3657.074232] PKRU: 55555554
[ 3657.074233] Call Trace:
[ 3657.074235]  <TASK>
[ 3657.074241]  _raw_spin_lock_irqsave+0x46/0x60
[ 3657.074245]  yield_to+0x36/0x1b0
[ 3657.074253]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3657.074308]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3657.074363]  pause_interception+0x91/0x120 [kvm_amd]
[ 3657.074373]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3657.074381]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3657.074389]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3657.074449]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3657.074504]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3657.074509]  ? do_futex+0xc8/0x1d0
[ 3657.074513]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3657.074515]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3657.074519]  __x64_sys_ioctl+0xa0/0xf0
[ 3657.074526]  x64_sys_call+0x122e/0x2150
[ 3657.074528]  do_syscall_64+0x56/0x1e0
[ 3657.074533]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3657.074535] RIP: 0033:0x7f67bff03b4b
[ 3657.074539] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3657.074540] RSP: 002b:00007f59e7ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3657.074543] RAX: ffffffffffffffda RBX: 0000563db6302130 RCX: 00007f67bff03b4b
[ 3657.074544] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000150
[ 3657.074546] RBP: 0000563db6302130 R08: 0000000000000000 R09: 0000000000000000
[ 3657.074547] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3657.074548] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3657.074555]  </TASK>
[ 3657.094548] watchdog: CPU33: Watchdog detected hard LOCKUP on cpu 33
[ 3657.094552] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3657.094629] CPU: 33 UID: 0 PID: 31401 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3657.094633] Tainted: [D]=DIE
[ 3657.094634] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3657.094636] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3657.094641] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3657.094644] RSP: 0018:ffffaab62bf5fc20 EFLAGS: 00000046
[ 3657.094646] RAX: 0000000000000000 RBX: ffff8f917e072700 RCX: 000000000000005c
[ 3657.094648] RDX: ffff8f917e072700 RSI: 0000000001740100 RDI: ffff8f7aeeeca68c
[ 3657.094649] RBP: ffffaab62bf5fc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3657.094650] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3657.094652] R13: 0000000000880000 R14: 0000000000880000 R15: 0000000000000055
[ 3657.094654] FS:  00007f58877fe640(0000) GS:ffff8f91eb876000(0000) knlGS:0000000000000000
[ 3657.094656] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3657.094657] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3657.094659] PKRU: 55555554
[ 3657.094660] Call Trace:
[ 3657.094662]  <TASK>
[ 3657.094667]  _raw_spin_lock_irqsave+0x46/0x60
[ 3657.094671]  yield_to+0x36/0x1b0
[ 3657.094677]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3657.094728]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3657.094781]  pause_interception+0x91/0x120 [kvm_amd]
[ 3657.094791]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3657.094799]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3657.094807]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3657.094865]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3657.094917]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3657.094921]  ? do_futex+0xc8/0x1d0
[ 3657.094923]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3657.094925]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3657.094929]  __x64_sys_ioctl+0xa0/0xf0
[ 3657.094934]  x64_sys_call+0x122e/0x2150
[ 3657.094936]  do_syscall_64+0x56/0x1e0
[ 3657.094940]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3657.094942] RIP: 0033:0x7f67bff03b4b
[ 3657.094945] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3657.094947] RSP: 002b:00007f58877fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3657.094949] RAX: ffffffffffffffda RBX: 0000563db6616830 RCX: 00007f67bff03b4b
[ 3657.094951] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001ec
[ 3657.094952] RBP: 0000563db6616830 R08: 0000000000000000 R09: 0000000000000000
[ 3657.094953] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3657.094954] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3657.094961]  </TASK>
[ 3657.163215] watchdog: CPU103: Watchdog detected hard LOCKUP on cpu 103
[ 3657.163218] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3657.163279] CPU: 103 UID: 0 PID: 31344 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3657.163283] Tainted: [D]=DIE
[ 3657.163284] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3657.163285] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3657.163290] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3657.163292] RSP: 0018:ffffaab62b237c20 EFLAGS: 00000046
[ 3657.163294] RAX: 0000000000000000 RBX: ffff8f917e9f2700 RCX: 000000000000007e
[ 3657.163296] RDX: ffff8f917e9f2700 RSI: 0000000001fc0100 RDI: ffff8f7aeeeca68c
[ 3657.163297] RBP: ffffaab62b237c40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3657.163298] R10: 0000000000002ee0 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3657.163300] R13: 0000000001a00000 R14: 0000000001a00000 R15: 0000000000000010
[ 3657.163301] FS:  00007f5987fff640(0000) GS:ffff8f91ec1f6000(0000) knlGS:0000000000000000
[ 3657.163303] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3657.163304] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3657.163306] PKRU: 55555554
[ 3657.163307] Call Trace:
[ 3657.163308]  <TASK>
[ 3657.163311]  _raw_spin_lock_irqsave+0x46/0x60
[ 3657.163314]  yield_to+0x36/0x1b0
[ 3657.163319]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3657.163371]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3657.163424]  pause_interception+0x91/0x120 [kvm_amd]
[ 3657.163433]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3657.163441]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3657.163449]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3657.163509]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3657.163562]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3657.163565]  ? do_futex+0xc8/0x1d0
[ 3657.163567]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3657.163570]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3657.163573]  __x64_sys_ioctl+0xa0/0xf0
[ 3657.163578]  x64_sys_call+0x122e/0x2150
[ 3657.163580]  do_syscall_64+0x56/0x1e0
[ 3657.163584]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3657.163586] RIP: 0033:0x7f67bff03b4b
[ 3657.163588] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3657.163590] RSP: 002b:00007f5987ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3657.163593] RAX: ffffffffffffffda RBX: 0000563db63d6c20 RCX: 00007f67bff03b4b
[ 3657.163594] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000017a
[ 3657.163595] RBP: 0000563db63d6c20 R08: 0000000000000000 R09: 0000000000000000
[ 3657.163596] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3657.163598] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3657.163603]  </TASK>
[ 3657.430744] watchdog: CPU117: Watchdog detected hard LOCKUP on cpu 117
[ 3657.430749] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3657.430817] CPU: 117 UID: 0 PID: 31368 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3657.430821] Tainted: [D]=DIE
[ 3657.430822] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3657.430824] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3657.430829] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3657.430831] RSP: 0018:ffffaab62b317c20 EFLAGS: 00000046
[ 3657.430833] RAX: 0000000000000000 RBX: ffff8f917ed72700 RCX: 0000000000000049
[ 3657.430834] RDX: ffff8f917ed72700 RSI: 0000000001280100 RDI: ffff8f7aeeeca68c
[ 3657.430836] RBP: ffffaab62b317c40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3657.430837] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3657.430839] R13: 0000000001d80000 R14: 0000000001d80000 R15: 0000000000000074
[ 3657.430840] FS:  00007f59267fc640(0000) GS:ffff8f91ec576000(0000) knlGS:0000000000000000
[ 3657.430842] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3657.430843] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3657.430845] PKRU: 55555554
[ 3657.430846] Call Trace:
[ 3657.430848]  <TASK>
[ 3657.430851]  _raw_spin_lock_irqsave+0x46/0x60
[ 3657.430855]  yield_to+0x36/0x1b0
[ 3657.430860]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3657.430913]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3657.430967]  pause_interception+0x91/0x120 [kvm_amd]
[ 3657.430976]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3657.430983]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3657.430992]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3657.431047]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3657.431101]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3657.431104]  ? do_futex+0xc8/0x1d0
[ 3657.431107]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3657.431109]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3657.431113]  __x64_sys_ioctl+0xa0/0xf0
[ 3657.431118]  x64_sys_call+0x122e/0x2150
[ 3657.431120]  do_syscall_64+0x56/0x1e0
[ 3657.431124]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3657.431126] RIP: 0033:0x7f67bff03b4b
[ 3657.431128] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3657.431129] RSP: 002b:00007f59267fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3657.431132] RAX: ffffffffffffffda RBX: 0000563db64c94f0 RCX: 00007f67bff03b4b
[ 3657.431133] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001aa
[ 3657.431134] RBP: 0000563db64c94f0 R08: 0000000000000000 R09: 0000000000000000
[ 3657.431135] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3657.431137] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3657.431142]  </TASK>
[ 3657.575494] watchdog: CPU54: Watchdog detected hard LOCKUP on cpu 54
[ 3657.575497] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3657.575558] CPU: 54 UID: 0 PID: 31246 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3657.575561] Tainted: [D]=DIE
[ 3657.575563] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3657.575564] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3657.575570] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3657.575572] RSP: 0018:ffffaab62acabc20 EFLAGS: 00000046
[ 3657.575574] RAX: 0000000000000000 RBX: ffff8f917e5b2700 RCX: 0000000000000071
[ 3657.575575] RDX: ffff8f917e5b2700 RSI: 0000000001c80100 RDI: ffff8f7aeeeca68c
[ 3657.575577] RBP: ffffaab62acabc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3657.575578] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3657.575579] R13: 0000000000dc0000 R14: 0000000000dc0000 R15: 000000000000005b
[ 3657.575581] FS:  00007f5b47fff640(0000) GS:ffff8f91ebdb6000(0000) knlGS:0000000000000000
[ 3657.575582] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3657.575584] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3657.575585] PKRU: 55555554
[ 3657.575586] Call Trace:
[ 3657.575587]  <TASK>
[ 3657.575590]  _raw_spin_lock_irqsave+0x46/0x60
[ 3657.575594]  yield_to+0x36/0x1b0
[ 3657.575599]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3657.575651]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3657.575703]  pause_interception+0x91/0x120 [kvm_amd]
[ 3657.575711]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3657.575719]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3657.575727]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3657.575782]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3657.575834]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3657.575838]  ? do_futex+0xc8/0x1d0
[ 3657.575841]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3657.575843]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3657.575847]  __x64_sys_ioctl+0xa0/0xf0
[ 3657.575853]  x64_sys_call+0x122e/0x2150
[ 3657.575855]  do_syscall_64+0x56/0x1e0
[ 3657.575859]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3657.575861] RIP: 0033:0x7f67bff03b4b
[ 3657.575863] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3657.575865] RSP: 002b:00007f5b47ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3657.575867] RAX: ffffffffffffffda RBX: 0000563db5ff4ca0 RCX: 00007f67bff03b4b
[ 3657.575868] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000b6
[ 3657.575870] RBP: 0000563db5ff4ca0 R08: 0000000000000000 R09: 0000000000000000
[ 3657.575871] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3657.575872] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3657.575877]  </TASK>
[ 3657.710049] watchdog: CPU8: Watchdog detected hard LOCKUP on cpu 8
[ 3657.710055] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3657.710123] CPU: 8 UID: 0 PID: 31265 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3657.710128] Tainted: [D]=DIE
[ 3657.710130] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3657.710131] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3657.710139] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3657.710142] RSP: 0018:ffffaab62ad43c20 EFLAGS: 00000046
[ 3657.710144] RAX: 0000000000000000 RBX: ffff8f7180032700 RCX: 000000000000003f
[ 3657.710146] RDX: ffff8f7180032700 RSI: 0000000001000100 RDI: ffff8f7aeeeca68c
[ 3657.710148] RBP: ffffaab62ad43c40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3657.710149] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3657.710150] R13: 0000000000240000 R14: 0000000000240000 R15: 000000000000001c
[ 3657.710152] FS:  00007f5b057fa640(0000) GS:ffff8f71ed836000(0000) knlGS:0000000000000000
[ 3657.710154] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3657.710156] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3657.710157] PKRU: 55555554
[ 3657.710158] Call Trace:
[ 3657.710160]  <TASK>
[ 3657.710164]  _raw_spin_lock_irqsave+0x46/0x60
[ 3657.710168]  yield_to+0x36/0x1b0
[ 3657.710174]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3657.710227]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3657.710281]  pause_interception+0x91/0x120 [kvm_amd]
[ 3657.710290]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3657.710298]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3657.710306]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3657.710367]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3657.710421]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3657.710425]  ? do_futex+0xc8/0x1d0
[ 3657.710430]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3657.710432]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3657.710436]  __x64_sys_ioctl+0xa0/0xf0
[ 3657.710442]  x64_sys_call+0x122e/0x2150
[ 3657.710444]  do_syscall_64+0x56/0x1e0
[ 3657.710449]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3657.710451] RIP: 0033:0x7f67bff03b4b
[ 3657.710454] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3657.710456] RSP: 002b:00007f5b057f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3657.710458] RAX: ffffffffffffffda RBX: 0000563db60b5810 RCX: 00007f67bff03b4b
[ 3657.710460] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000dc
[ 3657.710461] RBP: 0000563db60b5810 R08: 0000000000000000 R09: 0000000000000000
[ 3657.710462] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3657.710464] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3657.710469]  </TASK>
[ 3657.746225] watchdog: CPU86: Watchdog detected hard LOCKUP on cpu 86
[ 3657.746231] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3657.746318] CPU: 86 UID: 0 PID: 31282 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3657.746323] Tainted: [D]=DIE
[ 3657.746324] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3657.746326] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3657.746336] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3657.746338] RSP: 0018:ffffaab62aeabc20 EFLAGS: 00000046
[ 3657.746341] RAX: 0000000000000000 RBX: ffff8f7180bb2700 RCX: 0000000000000043
[ 3657.746343] RDX: ffff8f7180bb2700 RSI: 0000000001100100 RDI: ffff8f7aeeeca68c
[ 3657.746344] RBP: ffffaab62aeabc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3657.746346] R10: 0000000000002ee0 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3657.746347] R13: 00000000015c0000 R14: 00000000015c0000 R15: 0000000000000061
[ 3657.746349] FS:  00007f5aa77fe640(0000) GS:ffff8f71ee3b6000(0000) knlGS:0000000000000000
[ 3657.746351] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3657.746352] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3657.746354] PKRU: 55555554
[ 3657.746355] Call Trace:
[ 3657.746357]  <TASK>
[ 3657.746363]  _raw_spin_lock_irqsave+0x46/0x60
[ 3657.746368]  yield_to+0x36/0x1b0
[ 3657.746375]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3657.746429]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3657.746483]  pause_interception+0x91/0x120 [kvm_amd]
[ 3657.746492]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3657.746500]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3657.746508]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3657.746568]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3657.746621]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3657.746626]  ? do_futex+0xc8/0x1d0
[ 3657.746630]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3657.746632]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3657.746636]  __x64_sys_ioctl+0xa0/0xf0
[ 3657.746643]  x64_sys_call+0x122e/0x2150
[ 3657.746645]  do_syscall_64+0x56/0x1e0
[ 3657.746650]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3657.746652] RIP: 0033:0x7f67bff03b4b
[ 3657.746656] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3657.746658] RSP: 002b:00007f5aa77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3657.746660] RAX: ffffffffffffffda RBX: 0000563db6161730 RCX: 00007f67bff03b4b
[ 3657.746661] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000fe
[ 3657.746663] RBP: 0000563db6161730 R08: 0000000000000000 R09: 0000000000000000
[ 3657.746664] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3657.746665] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3657.746672]  </TASK>
[ 3657.985143] watchdog: CPU107: Watchdog detected hard LOCKUP on cpu 107
[ 3657.985149] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3657.985237] CPU: 107 UID: 0 PID: 31361 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3657.985242] Tainted: [D]=DIE
[ 3657.985243] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3657.985245] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3657.985254] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3657.985257] RSP: 0018:ffffaab62b2bfc20 EFLAGS: 00000046
[ 3657.985259] RAX: 0000000000000000 RBX: ffff8f917eaf2700 RCX: 0000000000000032
[ 3657.985261] RDX: ffff8f917eaf2700 RSI: 0000000000cc0100 RDI: ffff8f7aeeeca68c
[ 3657.985263] RBP: ffffaab62b2bfc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3657.985264] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3657.985265] R13: 0000000001b00000 R14: 0000000001b00000 R15: 000000000000005e
[ 3657.985267] FS:  00007f59467fc640(0000) GS:ffff8f91ec2f6000(0000) knlGS:0000000000000000
[ 3657.985269] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3657.985271] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3657.985272] PKRU: 55555554
[ 3657.985273] Call Trace:
[ 3657.985275]  <TASK>
[ 3657.985280]  _raw_spin_lock_irqsave+0x46/0x60
[ 3657.985285]  yield_to+0x36/0x1b0
[ 3657.985292]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3657.985348]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3657.985403]  pause_interception+0x91/0x120 [kvm_amd]
[ 3657.985412]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3657.985420]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3657.985429]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3657.985489]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3657.985543]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3657.985548]  ? do_futex+0xc8/0x1d0
[ 3657.985552]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3657.985555]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3657.985558]  __x64_sys_ioctl+0xa0/0xf0
[ 3657.985565]  x64_sys_call+0x122e/0x2150
[ 3657.985567]  do_syscall_64+0x56/0x1e0
[ 3657.985572]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3657.985574] RIP: 0033:0x7f67bff03b4b
[ 3657.985578] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3657.985579] RSP: 002b:00007f59467fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3657.985582] RAX: ffffffffffffffda RBX: 0000563db64822e0 RCX: 00007f67bff03b4b
[ 3657.985583] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000019c
[ 3657.985584] RBP: 0000563db64822e0 R08: 0000000000000000 R09: 0000000000000000
[ 3657.985586] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3657.985587] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3657.985594]  </TASK>
[ 3658.019372] watchdog: CPU49: Watchdog detected hard LOCKUP on cpu 49
[ 3658.019375] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3658.019437] CPU: 49 UID: 0 PID: 31392 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3658.019440] Tainted: [D]=DIE
[ 3658.019441] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3658.019443] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3658.019447] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3658.019449] RSP: 0018:ffffaab62c1bbc20 EFLAGS: 00000046
[ 3658.019451] RAX: 0000000000000000 RBX: ffff8f917e472700 RCX: 0000000000000027
[ 3658.019452] RDX: ffff8f917e472700 RSI: 0000000000a00100 RDI: ffff8f7aeeeca68c
[ 3658.019453] RBP: ffffaab62c1bbc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3658.019455] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3658.019456] R13: 0000000000c80000 R14: 0000000000c80000 R15: 0000000000000074
[ 3658.019458] FS:  00007f58c4ff9640(0000) GS:ffff8f91ebc76000(0000) knlGS:0000000000000000
[ 3658.019459] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3658.019461] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3658.019462] PKRU: 55555554
[ 3658.019463] Call Trace:
[ 3658.019465]  <TASK>
[ 3658.019467]  _raw_spin_lock_irqsave+0x46/0x60
[ 3658.019471]  yield_to+0x36/0x1b0
[ 3658.019475]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3658.019528]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3658.019580]  pause_interception+0x91/0x120 [kvm_amd]
[ 3658.019588]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3658.019596]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3658.019605]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3658.019659]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3658.019711]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.019714]  ? do_futex+0xc8/0x1d0
[ 3658.019716]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.019719]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.019722]  __x64_sys_ioctl+0xa0/0xf0
[ 3658.019727]  x64_sys_call+0x122e/0x2150
[ 3658.019729]  do_syscall_64+0x56/0x1e0
[ 3658.019733]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3658.019735] RIP: 0033:0x7f67bff03b4b
[ 3658.019738] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3658.019739] RSP: 002b:00007f58c4ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3658.019741] RAX: ffffffffffffffda RBX: 0000563db65bb560 RCX: 00007f67bff03b4b
[ 3658.019743] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001da
[ 3658.019744] RBP: 0000563db65bb560 R08: 0000000000000000 R09: 0000000000000000
[ 3658.019745] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3658.019746] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3658.019752]  </TASK>
[ 3658.043688] watchdog: CPU14: Watchdog detected hard LOCKUP on cpu 14
[ 3658.043692] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3658.043751] CPU: 14 UID: 0 PID: 31231 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3658.043756] Tainted: [D]=DIE
[ 3658.043757] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3658.043759] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3658.043764] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3658.043766] RSP: 0018:ffffaab62abc3c20 EFLAGS: 00000046
[ 3658.043768] RAX: 0000000000000000 RBX: ffff8f71801b2700 RCX: 0000000000000010
[ 3658.043770] RDX: ffff8f71801b2700 RSI: 0000000000440100 RDI: ffff8f7aeeeca68c
[ 3658.043771] RBP: ffffaab62abc3c40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3658.043773] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3658.043774] R13: 00000000003c0000 R14: 00000000003c0000 R15: 0000000000000061
[ 3658.043776] FS:  00007f5ba4ff9640(0000) GS:ffff8f71ed9b6000(0000) knlGS:0000000000000000
[ 3658.043778] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3658.043779] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3658.043781] PKRU: 55555554
[ 3658.043782] Call Trace:
[ 3658.043783]  <TASK>
[ 3658.043786]  _raw_spin_lock_irqsave+0x46/0x60
[ 3658.043790]  yield_to+0x36/0x1b0
[ 3658.043795]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3658.043848]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3658.043901]  pause_interception+0x91/0x120 [kvm_amd]
[ 3658.043909]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3658.043917]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3658.043926]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3658.043985]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3658.044037]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.044041]  ? do_futex+0xc8/0x1d0
[ 3658.044043]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.044046]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.044049]  __x64_sys_ioctl+0xa0/0xf0
[ 3658.044054]  x64_sys_call+0x122e/0x2150
[ 3658.044056]  do_syscall_64+0x56/0x1e0
[ 3658.044060]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3658.044063] RIP: 0033:0x7f67bff03b4b
[ 3658.044065] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3658.044067] RSP: 002b:00007f5ba4ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3658.044070] RAX: ffffffffffffffda RBX: 0000563db5f5dd20 RCX: 00007f67bff03b4b
[ 3658.044071] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000098
[ 3658.044072] RBP: 0000563db5f5dd20 R08: 0000000000000000 R09: 0000000000000000
[ 3658.044073] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3658.044075] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3658.044080]  </TASK>
[ 3658.233420] watchdog: CPU42: Watchdog detected hard LOCKUP on cpu 42
[ 3658.233424] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3658.233495] CPU: 42 UID: 0 PID: 31263 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3658.233500] Tainted: [D]=DIE
[ 3658.233501] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3658.233503] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3658.233508] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3658.233510] RSP: 0018:ffffaab62ad33c20 EFLAGS: 00000046
[ 3658.233513] RAX: 0000000000000000 RBX: ffff8f917e2b2700 RCX: 0000000000000075
[ 3658.233515] RDX: ffff8f917e2b2700 RSI: 0000000001d80100 RDI: ffff8f7aeeeca68c
[ 3658.233516] RBP: ffffaab62ad33c40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3658.233518] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3658.233519] R13: 0000000000ac0000 R14: 0000000000ac0000 R15: 000000000000004a
[ 3658.233521] FS:  00007f5b067fc640(0000) GS:ffff8f91ebab6000(0000) knlGS:0000000000000000
[ 3658.233523] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3658.233525] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3658.233527] PKRU: 55555554
[ 3658.233528] Call Trace:
[ 3658.233529]  <TASK>
[ 3658.233532]  _raw_spin_lock_irqsave+0x46/0x60
[ 3658.233539]  yield_to+0x36/0x1b0
[ 3658.233546]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3658.233615]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3658.233693]  pause_interception+0x91/0x120 [kvm_amd]
[ 3658.233704]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3658.233714]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3658.233725]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3658.233810]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3658.233885]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.233889]  ? do_futex+0xc8/0x1d0
[ 3658.233892]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.233895]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.233899]  __x64_sys_ioctl+0xa0/0xf0
[ 3658.233904]  x64_sys_call+0x122e/0x2150
[ 3658.233907]  do_syscall_64+0x56/0x1e0
[ 3658.233911]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3658.233913] RIP: 0033:0x7f67bff03b4b
[ 3658.233916] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3658.233919] RSP: 002b:00007f5b067fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3658.233922] RAX: ffffffffffffffda RBX: 0000563db60a10e0 RCX: 00007f67bff03b4b
[ 3658.233923] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000d8
[ 3658.233925] RBP: 0000563db60a10e0 R08: 0000000000000000 R09: 0000000000000000
[ 3658.233926] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3658.233928] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3658.233934]  </TASK>
[ 3658.472234] watchdog: CPU62: Watchdog detected hard LOCKUP on cpu 62
[ 3658.472240] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3658.472328] CPU: 62 UID: 0 PID: 31297 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3658.472334] Tainted: [D]=DIE
[ 3658.472335] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3658.472337] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3658.472346] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3658.472348] RSP: 0018:ffffaab62af2fc20 EFLAGS: 00000046
[ 3658.472351] RAX: 0000000000000000 RBX: ffff8f917e7b2700 RCX: 000000000000000e
[ 3658.472352] RDX: ffff8f917e7b2700 RSI: 00000000003c0100 RDI: ffff8f7aeeeca68c
[ 3658.472354] RBP: ffffaab62af2fc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3658.472355] R10: 0000000000001770 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3658.472357] R13: 0000000000fc0000 R14: 0000000000fc0000 R15: 000000000000004f
[ 3658.472358] FS:  00007f5a66ffd640(0000) GS:ffff8f91ebfb6000(0000) knlGS:0000000000000000
[ 3658.472360] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3658.472362] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3658.472363] PKRU: 55555554
[ 3658.472365] Call Trace:
[ 3658.472366]  <TASK>
[ 3658.472372]  _raw_spin_lock_irqsave+0x46/0x60
[ 3658.472376]  yield_to+0x36/0x1b0
[ 3658.472383]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3658.472436]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3658.472489]  pause_interception+0x91/0x120 [kvm_amd]
[ 3658.472498]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3658.472506]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3658.472514]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3658.472573]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3658.472625]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.472630]  ? do_futex+0xc8/0x1d0
[ 3658.472634]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.472636]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.472640]  __x64_sys_ioctl+0xa0/0xf0
[ 3658.472646]  x64_sys_call+0x122e/0x2150
[ 3658.472648]  do_syscall_64+0x56/0x1e0
[ 3658.472653]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3658.472655] RIP: 0033:0x7f67bff03b4b
[ 3658.472658] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3658.472660] RSP: 002b:00007f5a66ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3658.472662] RAX: ffffffffffffffda RBX: 0000563db61fac90 RCX: 00007f67bff03b4b
[ 3658.472664] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000011c
[ 3658.472665] RBP: 0000563db61fac90 R08: 0000000000000000 R09: 0000000000000000
[ 3658.472666] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3658.472667] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3658.472674]  </TASK>
[ 3658.485775] watchdog: CPU50: Watchdog detected hard LOCKUP on cpu 50
[ 3658.485779] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3658.485854] CPU: 50 UID: 0 PID: 31281 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3658.485859] Tainted: [D]=DIE
[ 3658.485860] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3658.485862] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3658.485868] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3658.485870] RSP: 0018:ffffaab62aea3c20 EFLAGS: 00000046
[ 3658.485873] RAX: 0000000000000000 RBX: ffff8f917e4b2700 RCX: 000000000000006c
[ 3658.485875] RDX: ffff8f917e4b2700 RSI: 0000000001b40100 RDI: ffff8f7aeeeca68c
[ 3658.485876] RBP: ffffaab62aea3c40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3658.485878] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3658.485880] R13: 0000000000cc0000 R14: 0000000000cc0000 R15: 0000000000000070
[ 3658.485881] FS:  00007f5aa7fff640(0000) GS:ffff8f91ebcb6000(0000) knlGS:0000000000000000
[ 3658.485884] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3658.485885] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3658.485887] PKRU: 55555554
[ 3658.485888] Call Trace:
[ 3658.485890]  <TASK>
[ 3658.485894]  _raw_spin_lock_irqsave+0x46/0x60
[ 3658.485899]  yield_to+0x36/0x1b0
[ 3658.485907]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3658.485977]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3658.486055]  pause_interception+0x91/0x120 [kvm_amd]
[ 3658.486066]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3658.486076]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3658.486087]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3658.486172]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3658.486248]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.486252]  ? do_futex+0xc8/0x1d0
[ 3658.486255]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.486258]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.486262]  __x64_sys_ioctl+0xa0/0xf0
[ 3658.486267]  x64_sys_call+0x122e/0x2150
[ 3658.486270]  do_syscall_64+0x56/0x1e0
[ 3658.486274]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3658.486276] RIP: 0033:0x7f67bff03b4b
[ 3658.486280] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3658.486282] RSP: 002b:00007f5aa7ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3658.486285] RAX: ffffffffffffffda RBX: 0000563db61577e0 RCX: 00007f67bff03b4b
[ 3658.486287] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000fc
[ 3658.486288] RBP: 0000563db61577e0 R08: 0000000000000000 R09: 0000000000000000
[ 3658.486290] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3658.486291] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3658.486298]  </TASK>
[ 3658.646404] watchdog: CPU41: Watchdog detected hard LOCKUP on cpu 41
[ 3658.646407] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3658.646470] CPU: 41 UID: 0 PID: 31421 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3658.646475] Tainted: [D]=DIE
[ 3658.646476] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3658.646477] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3658.646482] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3658.646484] RSP: 0018:ffffaab62b64bc20 EFLAGS: 00000046
[ 3658.646486] RAX: 0000000000000000 RBX: ffff8f917e272700 RCX: 0000000000000059
[ 3658.646488] RDX: ffff8f917e272700 RSI: 0000000001680100 RDI: ffff8f7aeeeca68c
[ 3658.646490] RBP: ffffaab62b64bc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3658.646491] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3658.646492] R13: 0000000000a80000 R14: 0000000000a80000 R15: 000000000000003a
[ 3658.646494] FS:  00007f5827fff640(0000) GS:ffff8f91eba76000(0000) knlGS:0000000000000000
[ 3658.646496] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3658.646497] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3658.646499] PKRU: 55555554
[ 3658.646500] Call Trace:
[ 3658.646501]  <TASK>
[ 3658.646504]  _raw_spin_lock_irqsave+0x46/0x60
[ 3658.646508]  yield_to+0x36/0x1b0
[ 3658.646513]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3658.646564]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3658.646616]  pause_interception+0x91/0x120 [kvm_amd]
[ 3658.646624]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3658.646632]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3658.646640]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3658.646699]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3658.646751]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.646754]  ? do_futex+0xc8/0x1d0
[ 3658.646756]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.646759]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.646762]  __x64_sys_ioctl+0xa0/0xf0
[ 3658.646767]  x64_sys_call+0x122e/0x2150
[ 3658.646769]  do_syscall_64+0x56/0x1e0
[ 3658.646773]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3658.646775] RIP: 0033:0x7f67bff03b4b
[ 3658.646778] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3658.646779] RSP: 002b:00007f5827ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3658.646782] RAX: ffffffffffffffda RBX: 0000563db66e1ba0 RCX: 00007f67bff03b4b
[ 3658.646783] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000214
[ 3658.646784] RBP: 0000563db66e1ba0 R08: 0000000000000000 R09: 0000000000000000
[ 3658.646786] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3658.646787] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3658.646793]  </TASK>
[ 3658.708964] watchdog: CPU37: Watchdog detected hard LOCKUP on cpu 37
[ 3658.708969] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3658.709040] CPU: 37 UID: 0 PID: 31320 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3658.709045] Tainted: [D]=DIE
[ 3658.709046] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3658.709048] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3658.709055] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3658.709058] RSP: 0018:ffffaab60d318d68 EFLAGS: 00000046
[ 3658.709060] RAX: 0000000000000000 RBX: ffff8f917e172700 RCX: 0000000000000060
[ 3658.709062] RDX: ffff8f917e172700 RSI: 0000000001840100 RDI: ffff8f917e831840
[ 3658.709064] RBP: ffffaab60d318d88 R08: 0000000000000080 R09: fffffffe00000000
[ 3658.709065] R10: 0000000000000006 R11: 0000000000000000 R12: ffff8f917e831840
[ 3658.709066] R13: 0000000000980000 R14: 0000000000980000 R15: ffff8f917e831840
[ 3658.709068] FS:  00007f5a05ffb640(0000) GS:ffff8f91eb976000(0000) knlGS:0000000000000000
[ 3658.709070] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3658.709071] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3658.709073] PKRU: 55555554
[ 3658.709074] Call Trace:
[ 3658.709075]  <IRQ>
[ 3658.709080]  _raw_spin_lock+0x2d/0x40
[ 3658.709083]  raw_spin_rq_lock_nested+0x19/0x30
[ 3658.709087]  _raw_spin_rq_lock_irqsave+0x1c/0x30
[ 3658.709090]  sched_balance_rq+0x616/0xf80
[ 3658.709099]  sched_balance_domains+0x262/0x370
[ 3658.709104]  sched_balance_softirq+0x5a/0x80
[ 3658.709106]  handle_softirqs+0xc8/0x290
[ 3658.709112]  __irq_exit_rcu+0x96/0xc0
[ 3658.709115]  irq_exit_rcu+0x12/0x20
[ 3658.709118]  sysvec_apic_timer_interrupt+0x83/0x90
[ 3658.709123]  </IRQ>
[ 3658.709124]  <TASK>
[ 3658.709126]  asm_sysvec_apic_timer_interrupt+0x1f/0x30
[ 3658.709128] RIP: 0010:kvm_arch_vcpu_ioctl_run+0xbd4/0x1ba0 [kvm]
[ 3658.709189] Code: b8 03 00 00 4c 89 e7 e8 8a 30 04 00 49 83 bc 24 f8 07 00 00 00 0f 85 8f 03 00 00 41 c6 84 24 92 0a 00 00 01 fb 0f 1f 44 00 00 <49> 83 84 24 e0 15 00 00 01 fa 0f 1f 44 00 00 41 c6 84 24 92 0a 00
[ 3658.709191] RSP: 0018:ffffaab62affbda0 EFLAGS: 00000246
[ 3658.709193] RAX: ffff8f5293708000 RBX: ffff8f7aef20cd40 RCX: 00000000cb8ed3b0
[ 3658.709195] RDX: 0000000100000000 RSI: 00000002be4639d9 RDI: ffff8f8351760000
[ 3658.709196] RBP: ffffaab62affbe08 R08: 0000000000000000 R09: 0000000000000000
[ 3658.709197] R10: 0000000000000000 R11: 0000000000000000 R12: ffff8f8351760000
[ 3658.709198] R13: 0000000000000000 R14: 0000000000000000 R15: ffff8f52a073f000
[ 3658.709208]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3658.709261]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.709264]  ? do_futex+0xc8/0x1d0
[ 3658.709268]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.709271]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.709274]  __x64_sys_ioctl+0xa0/0xf0
[ 3658.709280]  x64_sys_call+0x122e/0x2150
[ 3658.709283]  do_syscall_64+0x56/0x1e0
[ 3658.709287]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3658.709289] RIP: 0033:0x7f67bff03b4b
[ 3658.709292] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3658.709294] RSP: 002b:00007f5a05ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3658.709296] RAX: ffffffffffffffda RBX: 0000563db62e39a0 RCX: 00007f67bff03b4b
[ 3658.709297] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000014a
[ 3658.709299] RBP: 0000563db62e39a0 R08: 0000000000000000 R09: 0000000000000000
[ 3658.709300] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3658.709301] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3658.709306]  </TASK>
[ 3658.863975] watchdog: CPU127: Watchdog detected hard LOCKUP on cpu 127
[ 3658.863979] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3658.864042] CPU: 127 UID: 0 PID: 31383 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3658.864046] Tainted: [D]=DIE
[ 3658.864047] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3658.864049] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3658.864054] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3658.864056] RSP: 0018:ffffaab62c217c20 EFLAGS: 00000046
[ 3658.864058] RAX: 0000000000000000 RBX: ffff8f917eff2700 RCX: 0000000000000021
[ 3658.864060] RDX: ffff8f917eff2700 RSI: 0000000000880100 RDI: ffff8f7aeeeca68c
[ 3658.864061] RBP: ffffaab62c217c40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3658.864063] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3658.864064] R13: 0000000002000000 R14: 0000000002000000 R15: 0000000000000060
[ 3658.864066] FS:  00007f58e5ffb640(0000) GS:ffff8f91ec7f6000(0000) knlGS:0000000000000000
[ 3658.864068] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3658.864069] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3658.864071] PKRU: 55555554
[ 3658.864072] Call Trace:
[ 3658.864073]  <TASK>
[ 3658.864077]  _raw_spin_lock_irqsave+0x46/0x60
[ 3658.864081]  yield_to+0x36/0x1b0
[ 3658.864086]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3658.864139]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3658.864193]  pause_interception+0x91/0x120 [kvm_amd]
[ 3658.864202]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3658.864210]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3658.864218]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3658.864279]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3658.864333]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.864336]  ? do_futex+0xc8/0x1d0
[ 3658.864339]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.864341]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.864345]  __x64_sys_ioctl+0xa0/0xf0
[ 3658.864350]  x64_sys_call+0x122e/0x2150
[ 3658.864352]  do_syscall_64+0x56/0x1e0
[ 3658.864356]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3658.864358] RIP: 0033:0x7f67bff03b4b
[ 3658.864361] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3658.864362] RSP: 002b:00007f58e5ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3658.864365] RAX: ffffffffffffffda RBX: 0000563db65607e0 RCX: 00007f67bff03b4b
[ 3658.864366] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001c8
[ 3658.864367] RBP: 0000563db65607e0 R08: 0000000000000000 R09: 0000000000000000
[ 3658.864369] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3658.864370] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3658.864376]  </TASK>
[ 3658.881634] watchdog: CPU123: Watchdog detected hard LOCKUP on cpu 123
[ 3658.881637] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3658.881697] CPU: 123 UID: 0 PID: 31329 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3658.881701] Tainted: [D]=DIE
[ 3658.881702] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3658.881704] RIP: 0010:native_queued_spin_lock_slowpath+0x29a/0x2d0
[ 3658.881708] Code: c1 e9 12 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 <8b> 42 08 85 c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09
[ 3658.881710] RSP: 0018:ffffaab62b04bc20 EFLAGS: 00000046
[ 3658.881712] RAX: 0000000000000000 RBX: ffff8f917eef2700 RCX: 0000000000000068
[ 3658.881714] RDX: ffff8f917eef2700 RSI: 0000000001a40100 RDI: ffff8f7aeeeca68c
[ 3658.881715] RBP: ffffaab62b04bc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3658.881717] R10: 0000000000002ee0 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3658.881718] R13: 0000000001f00000 R14: 0000000001f00000 R15: 0000000000000047
[ 3658.881719] FS:  00007f59e4ff9640(0000) GS:ffff8f91ec6f6000(0000) knlGS:0000000000000000
[ 3658.881721] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3658.881723] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3658.881724] PKRU: 55555554
[ 3658.881725] Call Trace:
[ 3658.881726]  <TASK>
[ 3658.881729]  _raw_spin_lock_irqsave+0x46/0x60
[ 3658.881733]  yield_to+0x36/0x1b0
[ 3658.881738]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3658.881789]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3658.881843]  pause_interception+0x91/0x120 [kvm_amd]
[ 3658.881851]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3658.881859]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3658.881867]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3658.881926]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3658.881979]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.881982]  ? do_futex+0xc8/0x1d0
[ 3658.881985]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.881987]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.881991]  __x64_sys_ioctl+0xa0/0xf0
[ 3658.881996]  x64_sys_call+0x122e/0x2150
[ 3658.881998]  do_syscall_64+0x56/0x1e0
[ 3658.882002]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3658.882004] RIP: 0033:0x7f67bff03b4b
[ 3658.882006] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3658.882008] RSP: 002b:00007f59e4ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3658.882011] RAX: ffffffffffffffda RBX: 0000563db633ecd0 RCX: 00007f67bff03b4b
[ 3658.882012] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000015c
[ 3658.882013] RBP: 0000563db633ecd0 R08: 0000000000000000 R09: 0000000000000000
[ 3658.882014] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3658.882016] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3658.882021]  </TASK>
[ 3658.985988] watchdog: CPU122: Watchdog detected hard LOCKUP on cpu 122
[ 3658.985991] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3658.986050] CPU: 122 UID: 0 PID: 31227 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3658.986054] Tainted: [D]=DIE
[ 3658.986055] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3658.986057] RIP: 0010:native_queued_spin_lock_slowpath+0x81/0x2d0
[ 3658.986062] Code: c2 41 8b 04 24 0f b6 d2 c1 e2 08 30 e4 09 d0 a9 00 01 ff ff 75 63 85 c0 74 14 41 0f b6 04 24 84 c0 74 0b f3 90 41 0f b6 04 24 <84> c0 75 f5 b8 01 00 00 00 66 41 89 04 24 5b 41 5c 41 5d 41 5e 5d
[ 3658.986064] RSP: 0018:ffffaab62ab97a60 EFLAGS: 00000002
[ 3658.986066] RAX: 0000000000000001 RBX: ffffffff927fb840 RCX: 0000000000000068
[ 3658.986067] RDX: 0000000000000000 RSI: 0000000000000000 RDI: ffff8f917e831840
[ 3658.986069] RBP: ffffaab62ab97a80 R08: 0000000000000080 R09: ffffff0000000000
[ 3658.986070] R10: 0000000000000002 R11: 00000000001c2012 R12: ffff8f917e831840
[ 3658.986071] R13: 0000000000000080 R14: ffff8f7208110d28 R15: ffff8f917e831840
[ 3658.986073] FS:  00007f5ba6ffd640(0000) GS:ffff8f91ec6b6000(0000) knlGS:0000000000000000
[ 3658.986075] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3658.986076] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3658.986078] PKRU: 55555554
[ 3658.986078] Call Trace:
[ 3658.986080]  <TASK>
[ 3658.986082]  _raw_spin_lock+0x2d/0x40
[ 3658.986086]  raw_spin_rq_lock_nested+0x19/0x30
[ 3658.986090]  _raw_spin_rq_lock_irqsave+0x1c/0x30
[ 3658.986093]  sched_balance_rq+0x616/0xf80
[ 3658.986103]  sched_balance_newidle+0x19b/0x3f0
[ 3658.986107]  pick_next_task_fair+0x39/0x490
[ 3658.986109]  ? sched_clock_cpu+0x14/0x1a0
[ 3658.986114]  __schedule+0x1de/0xb30
[ 3658.986117]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.986120]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.986123]  ? kvm_vcpu_has_events+0x18d/0x1b0 [kvm]
[ 3658.986182]  schedule+0x2e/0x100
[ 3658.986186]  kvm_vcpu_block+0x52/0xd0 [kvm]
[ 3658.986238]  kvm_vcpu_halt+0x72/0x470 [kvm]
[ 3658.986289]  ? kvm_cpu_has_interrupt+0x49/0x80 [kvm]
[ 3658.986345]  kvm_arch_vcpu_ioctl_run+0xd70/0x1ba0 [kvm]
[ 3658.986402]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3658.986454]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.986457]  ? do_futex+0xc8/0x1d0
[ 3658.986459]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.986462]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3658.986465]  __x64_sys_ioctl+0xa0/0xf0
[ 3658.986470]  x64_sys_call+0x122e/0x2150
[ 3658.986472]  do_syscall_64+0x56/0x1e0
[ 3658.986476]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3658.986478] RIP: 0033:0x7f67bff03b4b
[ 3658.986481] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3658.986482] RSP: 002b:00007f5ba6ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3658.986485] RAX: ffffffffffffffda RBX: 0000563db5f35410 RCX: 00007f67bff03b4b
[ 3658.986486] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000090
[ 3658.986487] RBP: 0000563db5f35410 R08: 0000000000000000 R09: 0000000000000000
[ 3658.986489] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3658.986490] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3658.986496]  </TASK>
[ 3659.062164] watchdog: CPU25: Watchdog detected hard LOCKUP on cpu 25
[ 3659.062170] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3659.062256] CPU: 25 UID: 0 PID: 31328 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3659.062261] Tainted: [D]=DIE
[ 3659.062262] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3659.062264] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3659.062273] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3659.062275] RSP: 0018:ffffaab62b043c20 EFLAGS: 00000046
[ 3659.062278] RAX: 0000000000000000 RBX: ffff8f7180472700 RCX: 0000000000000056
[ 3659.062280] RDX: ffff8f7180472700 RSI: 00000000015c0100 RDI: ffff8f7aeeeca68c
[ 3659.062281] RBP: ffffaab62b043c40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3659.062283] R10: 0000000000001770 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3659.062285] R13: 0000000000680000 R14: 0000000000680000 R15: 0000000000000059
[ 3659.062286] FS:  00007f59e57fa640(0000) GS:ffff8f71edc76000(0000) knlGS:0000000000000000
[ 3659.062288] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3659.062290] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3659.062292] PKRU: 55555554
[ 3659.062293] Call Trace:
[ 3659.062295]  <TASK>
[ 3659.062301]  _raw_spin_lock_irqsave+0x46/0x60
[ 3659.062305]  yield_to+0x36/0x1b0
[ 3659.062312]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3659.062366]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3659.062420]  pause_interception+0x91/0x120 [kvm_amd]
[ 3659.062429]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3659.062437]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3659.062446]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3659.062505]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3659.062559]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.062564]  ? do_futex+0xc8/0x1d0
[ 3659.062568]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.062570]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.062574]  __x64_sys_ioctl+0xa0/0xf0
[ 3659.062580]  x64_sys_call+0x122e/0x2150
[ 3659.062583]  do_syscall_64+0x56/0x1e0
[ 3659.062587]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3659.062589] RIP: 0033:0x7f67bff03b4b
[ 3659.062593] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3659.062594] RSP: 002b:00007f59e57f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3659.062597] RAX: ffffffffffffffda RBX: 0000563db6334ce0 RCX: 00007f67bff03b4b
[ 3659.062598] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000015a
[ 3659.062599] RBP: 0000563db6334ce0 R08: 0000000000000000 R09: 0000000000000000
[ 3659.062601] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3659.062602] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3659.062608]  </TASK>
[ 3659.310645] watchdog: CPU105: Watchdog detected hard LOCKUP on cpu 105
[ 3659.310649] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3659.310716] CPU: 105 UID: 0 PID: 31262 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3659.310720] Tainted: [D]=DIE
[ 3659.310721] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3659.310723] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3659.310730] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3659.310732] RSP: 0018:ffffaab62ad2bc20 EFLAGS: 00000046
[ 3659.310734] RAX: 0000000000000000 RBX: ffff8f917ea72700 RCX: 000000000000002b
[ 3659.310735] RDX: ffff8f917ea72700 RSI: 0000000000b00100 RDI: ffff8f7aeeeca68c
[ 3659.310737] RBP: ffffaab62ad2bc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3659.310738] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3659.310740] R13: 0000000001a80000 R14: 0000000001a80000 R15: 000000000000003d
[ 3659.310742] FS:  00007f5b06ffd640(0000) GS:ffff8f91ec276000(0000) knlGS:0000000000000000
[ 3659.310743] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3659.310745] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3659.310746] PKRU: 55555554
[ 3659.310748] Call Trace:
[ 3659.310749]  <TASK>
[ 3659.310752]  _raw_spin_lock_irqsave+0x46/0x60
[ 3659.310755]  yield_to+0x36/0x1b0
[ 3659.310761]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3659.310814]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3659.310867]  pause_interception+0x91/0x120 [kvm_amd]
[ 3659.310876]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3659.310884]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3659.310892]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3659.310947]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3659.311001]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.311005]  ? do_futex+0xc8/0x1d0
[ 3659.311009]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.311011]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.311015]  __x64_sys_ioctl+0xa0/0xf0
[ 3659.311021]  x64_sys_call+0x122e/0x2150
[ 3659.311023]  do_syscall_64+0x56/0x1e0
[ 3659.311027]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3659.311029] RIP: 0033:0x7f67bff03b4b
[ 3659.311031] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3659.311033] RSP: 002b:00007f5b06ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3659.311035] RAX: ffffffffffffffda RBX: 0000563db60970f0 RCX: 00007f67bff03b4b
[ 3659.311037] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000d6
[ 3659.311038] RBP: 0000563db60970f0 R08: 0000000000000000 R09: 0000000000000000
[ 3659.311039] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3659.311040] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3659.311045]  </TASK>
[ 3659.334026] watchdog: CPU23: Watchdog detected hard LOCKUP on cpu 23
[ 3659.334032] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3659.334103] CPU: 23 UID: 0 PID: 32221 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3659.334108] Tainted: [D]=DIE
[ 3659.334110] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3659.334112] RIP: 0010:native_queued_spin_lock_slowpath+0x81/0x2d0
[ 3659.334120] Code: c2 41 8b 04 24 0f b6 d2 c1 e2 08 30 e4 09 d0 a9 00 01 ff ff 75 63 85 c0 74 14 41 0f b6 04 24 84 c0 74 0b f3 90 41 0f b6 04 24 <84> c0 75 f5 b8 01 00 00 00 66 41 89 04 24 5b 41 5c 41 5d 41 5e 5d
[ 3659.334123] RSP: 0018:ffffaab628023890 EFLAGS: 00000002
[ 3659.334125] RAX: 0000000000000001 RBX: ffff8f7af99b0000 RCX: ffffffff927e6e34
[ 3659.334127] RDX: 0000000000000000 RSI: 0000000000000000 RDI: ffff8f7180b71840
[ 3659.334128] RBP: ffffaab6280238b0 R08: 0000000000000002 R09: 0000000000000055
[ 3659.334130] R10: 0000000000000002 R11: 0000000000000002 R12: ffff8f7180b71840
[ 3659.334131] R13: ffff8f71ee376000 R14: 0000000000000088 R15: ffff8f7af99b0ccc
[ 3659.334133] FS:  00007f3ecb5fe640(0000) GS:ffff8f71edbf6000(0000) knlGS:0000000000000000
[ 3659.334135] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3659.334136] CR2: 00007f7f665e3170 CR3: 0000000124912022 CR4: 0000000000770ef0
[ 3659.334138] PKRU: 55555554
[ 3659.334139] Call Trace:
[ 3659.334141]  <TASK>
[ 3659.334145]  _raw_spin_lock+0x2d/0x40
[ 3659.334148]  try_to_wake_up+0x21a/0x730
[ 3659.334155]  wake_up_process+0x19/0x20
[ 3659.334157]  rcuwait_wake_up+0x2e/0x50
[ 3659.334162]  __kvm_vcpu_kick+0x23/0x130 [kvm]
[ 3659.334215]  svm_complete_interrupt_delivery+0xac/0xc0 [kvm_amd]
[ 3659.334224]  svm_deliver_interrupt+0x42/0x50 [kvm_amd]
[ 3659.334231]  __apic_accept_irq+0x17f/0x2c0 [kvm]
[ 3659.334290]  kvm_irq_delivery_to_apic_fast+0x157/0x1c0 [kvm]
[ 3659.334343]  kvm_irq_delivery_to_apic+0x50/0x320 [kvm]
[ 3659.334396]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.334400]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.334402]  ? native_apic_msr_write+0x32/0x40
[ 3659.334406]  ? lapic_next_event+0x19/0x30
[ 3659.334410]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.334412]  ? clockevents_program_min_delta+0x4f/0x100
[ 3659.334417]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.334420]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.334422]  ? native_apic_msr_write+0x32/0x40
[ 3659.334424]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.334426]  ? lapic_next_event+0x19/0x30
[ 3659.334429]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.334431]  ? clockevents_program_event+0x9c/0x100
[ 3659.334434]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.334436]  ? tick_program_event+0x45/0x90
[ 3659.334440]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.334442]  ? hrtimer_reprogram+0x7b/0xb0
[ 3659.334446]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.334448]  ? hrtimer_start_range_ns+0x137/0x430
[ 3659.334451]  ? update_curr+0x1d2/0x250
[ 3659.334454]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.334458]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.334460]  ? start_sw_timer+0x88/0x1d0 [kvm]
[ 3659.334510]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.334514]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.334517]  ? kvm_lapic_reg_write+0x82/0x7d0 [kvm]
[ 3659.334566]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.334569]  ? kvm_x2apic_msr_write+0x64/0x80 [kvm]
[ 3659.334619]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.334621]  ? kvm_set_msr_common+0x673/0x1160 [kvm]
[ 3659.334677]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.334680]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.334683]  ? svm_set_msr+0x63b/0x7d0 [kvm_amd]
[ 3659.334692]  kvm_apic_send_ipi+0x9b/0x110 [kvm]
[ 3659.334745]  kvm_x2apic_icr_write.part.0+0x2c/0xc0 [kvm]
[ 3659.334795]  kvm_x2apic_icr_write+0x24/0x30 [kvm]
[ 3659.334845]  handle_fastpath_set_msr_irqoff+0x13a/0x1a0 [kvm]
[ 3659.334900]  svm_vcpu_run+0x5ad/0x830 [kvm_amd]
[ 3659.334909]  kvm_arch_vcpu_ioctl_run+0xb14/0x1ba0 [kvm]
[ 3659.334963]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.334967]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3659.335020]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.335022]  ? do_futex+0xc8/0x1d0
[ 3659.335025]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.335028]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.335031]  __x64_sys_ioctl+0xa0/0xf0
[ 3659.335038]  x64_sys_call+0x122e/0x2150
[ 3659.335040]  do_syscall_64+0x56/0x1e0
[ 3659.335045]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3659.335047] RIP: 0033:0x7f49dab03b4b
[ 3659.335051] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3659.335052] RSP: 002b:00007f3ecb5fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3659.335055] RAX: ffffffffffffffda RBX: 0000556bc0d04550 RCX: 00007f49dab03b4b
[ 3659.335056] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000019
[ 3659.335058] RBP: 0000556bc0d04550 R08: 0000000000000000 R09: 0000000000000000
[ 3659.335059] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3659.335060] R13: 0000000000000000 R14: 0000000000000001 R15: 0000000000000000
[ 3659.335065]  </TASK>
[ 3659.343478] INFO: NMI handler (perf_event_nmi_handler) took too long to run: 9.454 msecs
[ 3659.560933] watchdog: CPU34: Watchdog detected hard LOCKUP on cpu 34
[ 3659.560939] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3659.561007] CPU: 34 UID: 0 PID: 31391 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3659.561012] Tainted: [D]=DIE
[ 3659.561014] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3659.561015] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3659.561024] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3659.561027] RSP: 0018:ffffaab60d27cd68 EFLAGS: 00000046
[ 3659.561029] RAX: 0000000000000000 RBX: ffff8f917e0b2700 RCX: 0000000000000024
[ 3659.561031] RDX: ffff8f917e0b2700 RSI: 0000000000940100 RDI: ffff8f917e831840
[ 3659.561032] RBP: ffffaab60d27cd88 R08: 0000000000000080 R09: fffffffe00000000
[ 3659.561034] R10: 0000000000000006 R11: 000000000003a78b R12: ffff8f917e831840
[ 3659.561035] R13: 00000000008c0000 R14: 00000000008c0000 R15: ffff8f917e831840
[ 3659.561037] FS:  00007f58c57fa640(0000) GS:ffff8f91eb8b6000(0000) knlGS:0000000000000000
[ 3659.561039] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3659.561040] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3659.561042] PKRU: 55555554
[ 3659.561043] Call Trace:
[ 3659.561044]  <IRQ>
[ 3659.561049]  _raw_spin_lock+0x2d/0x40
[ 3659.561052]  raw_spin_rq_lock_nested+0x19/0x30
[ 3659.561056]  _raw_spin_rq_lock_irqsave+0x1c/0x30
[ 3659.561059]  sched_balance_rq+0x616/0xf80
[ 3659.561069]  sched_balance_domains+0x262/0x370
[ 3659.561073]  sched_balance_softirq+0x5a/0x80
[ 3659.561076]  handle_softirqs+0xc8/0x290
[ 3659.561082]  __irq_exit_rcu+0x96/0xc0
[ 3659.561085]  irq_exit_rcu+0x12/0x20
[ 3659.561088]  sysvec_apic_timer_interrupt+0x83/0x90
[ 3659.561092]  </IRQ>
[ 3659.561093]  <TASK>
[ 3659.561095]  asm_sysvec_apic_timer_interrupt+0x1f/0x30
[ 3659.561098] RIP: 0010:kvm_arch_vcpu_ioctl_run+0xbd4/0x1ba0 [kvm]
[ 3659.561158] Code: b8 03 00 00 4c 89 e7 e8 8a 30 04 00 49 83 bc 24 f8 07 00 00 00 0f 85 8f 03 00 00 41 c6 84 24 92 0a 00 00 01 fb 0f 1f 44 00 00 <49> 83 84 24 e0 15 00 00 01 fa 0f 1f 44 00 00 41 c6 84 24 92 0a 00
[ 3659.561160] RSP: 0018:ffffaab62c1c3da0 EFLAGS: 00000246
[ 3659.561162] RAX: ffff8f7aeee30000 RBX: ffff8f7853e9b380 RCX: 00000000af007ff0
[ 3659.561164] RDX: 0000000100000000 RSI: 00000002a1b7e619 RDI: ffff8f5f750a3410
[ 3659.561165] RBP: ffffaab62c1c3e08 R08: 0000000000000000 R09: 0000000000000000
[ 3659.561166] R10: 0000000000000000 R11: 0000000000000000 R12: ffff8f5f750a3410
[ 3659.561167] R13: 0000000000000000 R14: 0000000000000000 R15: ffff8f8bd7983000
[ 3659.561176]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3659.561230]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.561233]  ? do_futex+0xc8/0x1d0
[ 3659.561237]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.561239]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.561243]  __x64_sys_ioctl+0xa0/0xf0
[ 3659.561249]  x64_sys_call+0x122e/0x2150
[ 3659.561252]  do_syscall_64+0x56/0x1e0
[ 3659.561256]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3659.561258] RIP: 0033:0x7f67bff03b4b
[ 3659.561261] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3659.561263] RSP: 002b:00007f58c57f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3659.561265] RAX: ffffffffffffffda RBX: 0000563db65b15a0 RCX: 00007f67bff03b4b
[ 3659.561266] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001d8
[ 3659.561268] RBP: 0000563db65b15a0 R08: 0000000000000000 R09: 0000000000000000
[ 3659.561269] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3659.561270] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3659.561275]  </TASK>
[ 3659.732014] watchdog: CPU35: Watchdog detected hard LOCKUP on cpu 35
[ 3659.732017] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3659.732081] CPU: 35 UID: 0 PID: 31372 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3659.732085] Tainted: [D]=DIE
[ 3659.732086] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3659.732087] RIP: 0010:native_queued_spin_lock_slowpath+0x29a/0x2d0
[ 3659.732092] Code: c1 e9 12 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 <8b> 42 08 85 c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09
[ 3659.732094] RSP: 0018:ffffaab60d2b0d68 EFLAGS: 00000046
[ 3659.732096] RAX: 0000000000000000 RBX: ffff8f917e0f2700 RCX: 0000000000000026
[ 3659.732098] RDX: ffff8f917e0f2700 RSI: 00000000009c0100 RDI: ffff8f917e831840
[ 3659.732099] RBP: ffffaab60d2b0d88 R08: 0000000000000080 R09: fffffffe00000000
[ 3659.732100] R10: 0000000000000006 R11: 0000000000000000 R12: ffff8f917e831840
[ 3659.732102] R13: 0000000000900000 R14: 0000000000900000 R15: ffff8f917e831840
[ 3659.732103] FS:  00007f5907fff640(0000) GS:ffff8f91eb8f6000(0000) knlGS:0000000000000000
[ 3659.732105] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3659.732106] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3659.732108] PKRU: 55555554
[ 3659.732109] Call Trace:
[ 3659.732110]  <IRQ>
[ 3659.732113]  _raw_spin_lock+0x2d/0x40
[ 3659.732117]  raw_spin_rq_lock_nested+0x19/0x30
[ 3659.732119]  _raw_spin_rq_lock_irqsave+0x1c/0x30
[ 3659.732122]  sched_balance_rq+0x616/0xf80
[ 3659.732131]  sched_balance_domains+0x262/0x370
[ 3659.732135]  sched_balance_softirq+0x5a/0x80
[ 3659.732138]  handle_softirqs+0xc8/0x290
[ 3659.732142]  __irq_exit_rcu+0x96/0xc0
[ 3659.732145]  irq_exit_rcu+0x12/0x20
[ 3659.732148]  sysvec_apic_timer_interrupt+0x83/0x90
[ 3659.732152]  </IRQ>
[ 3659.732153]  <TASK>
[ 3659.732154]  asm_sysvec_apic_timer_interrupt+0x1f/0x30
[ 3659.732157] RIP: 0010:kvm_arch_vcpu_ioctl_run+0xbd4/0x1ba0 [kvm]
[ 3659.732216] Code: b8 03 00 00 4c 89 e7 e8 8a 30 04 00 49 83 bc 24 f8 07 00 00 00 0f 85 8f 03 00 00 41 c6 84 24 92 0a 00 00 01 fb 0f 1f 44 00 00 <49> 83 84 24 e0 15 00 00 01 fa 0f 1f 44 00 00 41 c6 84 24 92 0a 00
[ 3659.732218] RSP: 0018:ffffaab62b5abda0 EFLAGS: 00000246
[ 3659.732220] RAX: ffff8f7aef362000 RBX: ffff8f7aef33cd40 RCX: 000000008f972150
[ 3659.732221] RDX: 0000000100000000 RSI: 00000002824e8779 RDI: ffff8f7aef250000
[ 3659.732223] RBP: ffffaab62b5abe08 R08: 0000000000000000 R09: 0000000000000000
[ 3659.732224] R10: 0000000000000000 R11: 0000000000000000 R12: ffff8f7aef250000
[ 3659.732225] R13: 0000000000000000 R14: 0000000000000000 R15: ffff8f770cf8c000
[ 3659.732234]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3659.732287]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.732290]  ? do_futex+0xc8/0x1d0
[ 3659.732293]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.732295]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.732299]  __x64_sys_ioctl+0xa0/0xf0
[ 3659.732303]  x64_sys_call+0x122e/0x2150
[ 3659.732306]  do_syscall_64+0x56/0x1e0
[ 3659.732310]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3659.732312] RIP: 0033:0x7f67bff03b4b
[ 3659.732314] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3659.732316] RSP: 002b:00007f5907ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3659.732318] RAX: ffffffffffffffda RBX: 0000563db64f1790 RCX: 00007f67bff03b4b
[ 3659.732320] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001b2
[ 3659.732321] RBP: 0000563db64f1790 R08: 0000000000000000 R09: 0000000000000000
[ 3659.732322] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3659.732323] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3659.732328]  </TASK>
[ 3659.846578] watchdog: CPU43: Watchdog detected hard LOCKUP on cpu 43
[ 3659.846581] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3659.846652] CPU: 43 UID: 0 PID: 31398 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3659.846655] Tainted: [D]=DIE
[ 3659.846656] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3659.846658] RIP: 0010:native_queued_spin_lock_slowpath+0x29a/0x2d0
[ 3659.846662] Code: c1 e9 12 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 <8b> 42 08 85 c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09
[ 3659.846664] RSP: 0018:ffffaab62c18bc20 EFLAGS: 00000046
[ 3659.846666] RAX: 0000000000000000 RBX: ffff8f917e2f2700 RCX: 0000000000000019
[ 3659.846668] RDX: ffff8f917e2f2700 RSI: 0000000000680100 RDI: ffff8f7aeeeca68c
[ 3659.846669] RBP: ffffaab62c18bc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3659.846671] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3659.846672] R13: 0000000000b00000 R14: 0000000000b00000 R15: 0000000000000050
[ 3659.846674] FS:  00007f58a57fa640(0000) GS:ffff8f91ebaf6000(0000) knlGS:0000000000000000
[ 3659.846675] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3659.846677] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3659.846678] PKRU: 55555554
[ 3659.846679] Call Trace:
[ 3659.846681]  <TASK>
[ 3659.846684]  _raw_spin_lock_irqsave+0x46/0x60
[ 3659.846688]  yield_to+0x36/0x1b0
[ 3659.846692]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3659.846746]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3659.846799]  pause_interception+0x91/0x120 [kvm_amd]
[ 3659.846808]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3659.846815]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3659.846824]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3659.846879]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3659.846932]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.846935]  ? do_futex+0xc8/0x1d0
[ 3659.846938]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.846940]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3659.846944]  __x64_sys_ioctl+0xa0/0xf0
[ 3659.846948]  x64_sys_call+0x122e/0x2150
[ 3659.846951]  do_syscall_64+0x56/0x1e0
[ 3659.846955]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3659.846957] RIP: 0033:0x7f67bff03b4b
[ 3659.846959] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3659.846961] RSP: 002b:00007f58a57f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3659.846963] RAX: ffffffffffffffda RBX: 0000563db65f7d60 RCX: 00007f67bff03b4b
[ 3659.846964] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001e6
[ 3659.846965] RBP: 0000563db65f7d60 R08: 0000000000000000 R09: 0000000000000000
[ 3659.846966] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3659.846968] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3659.846973]  </TASK>
[ 3660.233119] watchdog: CPU16: Watchdog detected hard LOCKUP on cpu 16
[ 3660.233123] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3660.233194] CPU: 16 UID: 0 PID: 31399 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3660.233199] Tainted: [D]=DIE
[ 3660.233200] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3660.233202] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3660.233207] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3660.233209] RSP: 0018:ffffaab62c183c20 EFLAGS: 00000046
[ 3660.233212] RAX: 0000000000000000 RBX: ffff8f7180232700 RCX: 000000000000007f
[ 3660.233213] RDX: ffff8f7180232700 RSI: 0000000002000100 RDI: ffff8f7aeeeca68c
[ 3660.233215] RBP: ffffaab62c183c40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3660.233217] R10: 0000000000001770 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3660.233218] R13: 0000000000440000 R14: 0000000000440000 R15: 0000000000000040
[ 3660.233220] FS:  00007f58a4ff9640(0000) GS:ffff8f71eda36000(0000) knlGS:0000000000000000
[ 3660.233222] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3660.233223] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3660.233225] PKRU: 55555554
[ 3660.233226] Call Trace:
[ 3660.233227]  <TASK>
[ 3660.233232]  _raw_spin_lock_irqsave+0x46/0x60
[ 3660.233236]  yield_to+0x36/0x1b0
[ 3660.233242]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3660.233295]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3660.233347]  pause_interception+0x91/0x120 [kvm_amd]
[ 3660.233357]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3660.233365]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3660.233373]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3660.233434]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3660.233486]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3660.233490]  ? do_futex+0xc8/0x1d0
[ 3660.233492]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3660.233494]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3660.233498]  __x64_sys_ioctl+0xa0/0xf0
[ 3660.233503]  x64_sys_call+0x122e/0x2150
[ 3660.233505]  do_syscall_64+0x56/0x1e0
[ 3660.233509]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3660.233511] RIP: 0033:0x7f67bff03b4b
[ 3660.233515] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3660.233516] RSP: 002b:00007f58a4ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3660.233519] RAX: ffffffffffffffda RBX: 0000563db6601d50 RCX: 00007f67bff03b4b
[ 3660.233520] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001e8
[ 3660.233522] RBP: 0000563db6601d50 R08: 0000000000000000 R09: 0000000000000000
[ 3660.233523] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3660.233524] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3660.233530]  </TASK>
[ 3660.702182] watchdog: CPU104: Watchdog detected hard LOCKUP on cpu 104
[ 3660.702186] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3660.702254] CPU: 104 UID: 0 PID: 31279 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3660.702258] Tainted: [D]=DIE
[ 3660.702259] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3660.702261] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3660.702266] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3660.702268] RSP: 0018:ffffaab62ae93c20 EFLAGS: 00000046
[ 3660.702271] RAX: 0000000000000000 RBX: ffff8f917ea32700 RCX: 000000000000000a
[ 3660.702272] RDX: ffff8f917ea32700 RSI: 00000000002c0100 RDI: ffff8f7aeeeca68c
[ 3660.702274] RBP: ffffaab62ae93c40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3660.702275] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3660.702277] R13: 0000000001a40000 R14: 0000000001a40000 R15: 000000000000007b
[ 3660.702278] FS:  00007f5ac57fa640(0000) GS:ffff8f91ec236000(0000) knlGS:0000000000000000
[ 3660.702280] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3660.702282] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3660.702284] PKRU: 55555554
[ 3660.702285] Call Trace:
[ 3660.702286]  <TASK>
[ 3660.702290]  _raw_spin_lock_irqsave+0x46/0x60
[ 3660.702294]  yield_to+0x36/0x1b0
[ 3660.702299]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3660.702350]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3660.702404]  pause_interception+0x91/0x120 [kvm_amd]
[ 3660.702413]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3660.702421]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3660.702429]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3660.702488]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3660.702541]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3660.702544]  ? do_futex+0xc8/0x1d0
[ 3660.702547]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3660.702549]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3660.702553]  __x64_sys_ioctl+0xa0/0xf0
[ 3660.702558]  x64_sys_call+0x122e/0x2150
[ 3660.702560]  do_syscall_64+0x56/0x1e0
[ 3660.702564]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3660.702566] RIP: 0033:0x7f67bff03b4b
[ 3660.702569] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3660.702571] RSP: 002b:00007f5ac57f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3660.702573] RAX: ffffffffffffffda RBX: 0000563db6143030 RCX: 00007f67bff03b4b
[ 3660.702574] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000f8
[ 3660.702576] RBP: 0000563db6143030 R08: 0000000000000000 R09: 0000000000000000
[ 3660.702577] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3660.702578] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3660.702585]  </TASK>
[ 3660.967737] watchdog: CPU27: Watchdog detected hard LOCKUP on cpu 27
[ 3660.967742] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3660.967831] CPU: 27 UID: 0 PID: 31236 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3660.967836] Tainted: [D]=DIE
[ 3660.967838] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3660.967840] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3660.967848] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3660.967851] RSP: 0018:ffffaab62ac5bc20 EFLAGS: 00000046
[ 3660.967853] RAX: 0000000000000000 RBX: ffff8f71804f2700 RCX: 0000000000000074
[ 3660.967856] RDX: ffff8f71804f2700 RSI: 0000000001d40100 RDI: ffff8f7aeeeca68c
[ 3660.967857] RBP: ffffaab62ac5bc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3660.967859] R10: 0000000000001770 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3660.967860] R13: 0000000000700000 R14: 0000000000700000 R15: 0000000000000053
[ 3660.967862] FS:  00007f5b85ffb640(0000) GS:ffff8f71edcf6000(0000) knlGS:0000000000000000
[ 3660.967865] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3660.967867] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3660.967870] PKRU: 55555554
[ 3660.967872] Call Trace:
[ 3660.967875]  <TASK>
[ 3660.967880]  _raw_spin_lock_irqsave+0x46/0x60
[ 3660.967885]  yield_to+0x36/0x1b0
[ 3660.967892]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3660.967963]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3660.968040]  pause_interception+0x91/0x120 [kvm_amd]
[ 3660.968051]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3660.968061]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3660.968071]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3660.968157]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3660.968231]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3660.968236]  ? do_futex+0xc8/0x1d0
[ 3660.968241]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3660.968243]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3660.968248]  __x64_sys_ioctl+0xa0/0xf0
[ 3660.968254]  x64_sys_call+0x122e/0x2150
[ 3660.968257]  do_syscall_64+0x56/0x1e0
[ 3660.968262]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3660.968265] RIP: 0033:0x7f67bff03b4b
[ 3660.968268] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3660.968271] RSP: 002b:00007f5b85ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3660.968274] RAX: ffffffffffffffda RBX: 0000563db5f90390 RCX: 00007f67bff03b4b
[ 3660.968276] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000a2
[ 3660.968277] RBP: 0000563db5f90390 R08: 0000000000000000 R09: 0000000000000000
[ 3660.968279] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3660.968280] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3660.968288]  </TASK>
[ 3661.062865] watchdog: CPU7: Watchdog detected hard LOCKUP on cpu 7
[ 3661.062871] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3661.062958] CPU: 7 UID: 0 PID: 31232 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3661.062964] Tainted: [D]=DIE
[ 3661.062965] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3661.062967] RIP: 0010:native_queued_spin_lock_slowpath+0x81/0x2d0
[ 3661.062976] Code: c2 41 8b 04 24 0f b6 d2 c1 e2 08 30 e4 09 d0 a9 00 01 ff ff 75 63 85 c0 74 14 41 0f b6 04 24 84 c0 74 0b f3 90 41 0f b6 04 24 <84> c0 75 f5 b8 01 00 00 00 66 41 89 04 24 5b 41 5c 41 5d 41 5e 5d
[ 3661.062979] RSP: 0018:ffffaab62ac07c20 EFLAGS: 00000002
[ 3661.062981] RAX: 0000000000000001 RBX: ffffffff927fb840 RCX: 0000000000000000
[ 3661.062983] RDX: 0000000000000000 RSI: 0000000000000000 RDI: ffff8f7aeeeca68c
[ 3661.062985] RBP: ffffaab62ac07c40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3661.062986] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3661.062987] R13: ffff8f7aeeeca68c R14: ffffaab629a2a128 R15: 0000000000000036
[ 3661.062989] FS:  00007f5b87fff640(0000) GS:ffff8f71ed7f6000(0000) knlGS:0000000000000000
[ 3661.062991] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3661.062993] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3661.062994] PKRU: 55555554
[ 3661.062995] Call Trace:
[ 3661.062997]  <TASK>
[ 3661.063003]  _raw_spin_lock_irqsave+0x46/0x60
[ 3661.063007]  yield_to+0x36/0x1b0
[ 3661.063013]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3661.063067]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3661.063120]  pause_interception+0x91/0x120 [kvm_amd]
[ 3661.063129]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3661.063137]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3661.063145]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3661.063205]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3661.063257]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3661.063262]  ? do_futex+0xc8/0x1d0
[ 3661.063267]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3661.063269]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3661.063273]  __x64_sys_ioctl+0xa0/0xf0
[ 3661.063279]  x64_sys_call+0x122e/0x2150
[ 3661.063282]  do_syscall_64+0x56/0x1e0
[ 3661.063286]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3661.063288] RIP: 0033:0x7f67bff03b4b
[ 3661.063292] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3661.063293] RSP: 002b:00007f5b87ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3661.063296] RAX: ffffffffffffffda RBX: 0000563db5f67cd0 RCX: 00007f67bff03b4b
[ 3661.063297] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000009a
[ 3661.063299] RBP: 0000563db5f67cd0 R08: 0000000000000000 R09: 0000000000000000
[ 3661.063300] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3661.063301] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3661.063308]  </TASK>
[ 3661.120326] watchdog: CPU108: Watchdog detected hard LOCKUP on cpu 108
[ 3661.120330] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3661.120391] CPU: 108 UID: 0 PID: 31290 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3661.120396] Tainted: [D]=DIE
[ 3661.120397] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3661.120398] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3661.120403] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3661.120405] RSP: 0018:ffffaab62aef7c20 EFLAGS: 00000046
[ 3661.120408] RAX: 0000000000000000 RBX: ffff8f917eb32700 RCX: 000000000000006e
[ 3661.120409] RDX: ffff8f917eb32700 RSI: 0000000001bc0100 RDI: ffff8f7aeeeca68c
[ 3661.120411] RBP: ffffaab62aef7c40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3661.120412] R10: 0000000000002ee0 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3661.120414] R13: 0000000001b40000 R14: 0000000001b40000 R15: 0000000000000063
[ 3661.120415] FS:  00007f5a86ffd640(0000) GS:ffff8f91ec336000(0000) knlGS:0000000000000000
[ 3661.120417] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3661.120419] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3661.120421] PKRU: 55555554
[ 3661.120422] Call Trace:
[ 3661.120423]  <TASK>
[ 3661.120426]  _raw_spin_lock_irqsave+0x46/0x60
[ 3661.120430]  yield_to+0x36/0x1b0
[ 3661.120435]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3661.120489]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3661.120544]  pause_interception+0x91/0x120 [kvm_amd]
[ 3661.120552]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3661.120560]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3661.120569]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3661.120629]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3661.120684]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3661.120687]  ? do_futex+0xc8/0x1d0
[ 3661.120690]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3661.120692]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3661.120695]  __x64_sys_ioctl+0xa0/0xf0
[ 3661.120700]  x64_sys_call+0x122e/0x2150
[ 3661.120703]  do_syscall_64+0x56/0x1e0
[ 3661.120706]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3661.120709] RIP: 0033:0x7f67bff03b4b
[ 3661.120711] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3661.120713] RSP: 002b:00007f5a86ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3661.120715] RAX: ffffffffffffffda RBX: 0000563db61b3490 RCX: 00007f67bff03b4b
[ 3661.120717] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000010e
[ 3661.120718] RBP: 0000563db61b3490 R08: 0000000000000000 R09: 0000000000000000
[ 3661.120719] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3661.120720] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3661.120726]  </TASK>
[ 3661.163950] watchdog: CPU44: Watchdog detected hard LOCKUP on cpu 44
[ 3661.163952] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3661.164011] CPU: 44 UID: 0 PID: 31235 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3661.164014] Tainted: [D]=DIE
[ 3661.164015] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3661.164016] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3661.164020] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3661.164022] RSP: 0018:ffffaab62ac53c20 EFLAGS: 00000046
[ 3661.164023] RAX: 0000000000000000 RBX: ffff8f917e332700 RCX: 0000000000000069
[ 3661.164025] RDX: ffff8f917e332700 RSI: 0000000001a80100 RDI: ffff8f7aeeeca68c
[ 3661.164026] RBP: ffffaab62ac53c40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3661.164027] R10: 0000000000001770 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3661.164029] R13: 0000000000b40000 R14: 0000000000b40000 R15: 0000000000000067
[ 3661.164030] FS:  00007f5b867fc640(0000) GS:ffff8f91ebb36000(0000) knlGS:0000000000000000
[ 3661.164032] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3661.164033] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3661.164034] PKRU: 55555554
[ 3661.164035] Call Trace:
[ 3661.164036]  <TASK>
[ 3661.164038]  _raw_spin_lock_irqsave+0x46/0x60
[ 3661.164042]  yield_to+0x36/0x1b0
[ 3661.164046]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3661.164099]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3661.164152]  pause_interception+0x91/0x120 [kvm_amd]
[ 3661.164161]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3661.164168]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3661.164176]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3661.164232]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3661.164285]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3661.164288]  ? do_futex+0xc8/0x1d0
[ 3661.164290]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3661.164293]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3661.164297]  __x64_sys_ioctl+0xa0/0xf0
[ 3661.164301]  x64_sys_call+0x122e/0x2150
[ 3661.164303]  do_syscall_64+0x56/0x1e0
[ 3661.164307]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3661.164309] RIP: 0033:0x7f67bff03b4b
[ 3661.164311] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3661.164312] RSP: 002b:00007f5b867fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3661.164314] RAX: ffffffffffffffda RBX: 0000563db5f863e0 RCX: 00007f67bff03b4b
[ 3661.164316] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000a0
[ 3661.164317] RBP: 0000563db5f863e0 R08: 0000000000000000 R09: 0000000000000000
[ 3661.164318] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3661.164319] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3661.164325]  </TASK>
[ 3661.345586] watchdog: CPU81: Watchdog detected hard LOCKUP on cpu 81
[ 3661.345590] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3661.345659] CPU: 81 UID: 0 PID: 31261 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3661.345663] Tainted: [D]=DIE
[ 3661.345665] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3661.345666] RIP: 0010:native_queued_spin_lock_slowpath+0x217/0x2d0
[ 3661.345671] Code: ff ff 41 83 c6 01 41 c1 e5 10 41 c1 e6 12 45 09 f5 44 89 e8 c1 e8 10 66 41 87 44 24 02 89 c1 c1 e1 10 75 5f 31 c9 eb 02 f3 90 <41> 8b 04 24 66 85 c0 75 f5 89 c6 66 31 f6 44 39 ee 0f 84 87 00 00
[ 3661.345673] RSP: 0018:ffffaab62ad23c20 EFLAGS: 00000002
[ 3661.345675] RAX: 0000000000580101 RBX: ffff8f7180a72700 RCX: 0000000000000000
[ 3661.345677] RDX: ffff8f7180a72700 RSI: 0000000000000100 RDI: ffff8f7aeeeca68c
[ 3661.345678] RBP: ffffaab62ad23c40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3661.345679] R10: 0000000000002ee0 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3661.345681] R13: 0000000001480000 R14: 0000000001480000 R15: 000000000000004e
[ 3661.345682] FS:  00007f5b077fe640(0000) GS:ffff8f71ee276000(0000) knlGS:0000000000000000
[ 3661.345684] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3661.345685] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3661.345687] PKRU: 55555554
[ 3661.345688] Call Trace:
[ 3661.345689]  <TASK>
[ 3661.345693]  _raw_spin_lock_irqsave+0x46/0x60
[ 3661.345696]  yield_to+0x36/0x1b0
[ 3661.345702]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3661.345754]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3661.345807]  pause_interception+0x91/0x120 [kvm_amd]
[ 3661.345816]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3661.345824]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3661.345832]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3661.345891]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3661.345944]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3661.345947]  ? do_futex+0xc8/0x1d0
[ 3661.345949]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3661.345952]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3661.345955]  __x64_sys_ioctl+0xa0/0xf0
[ 3661.345960]  x64_sys_call+0x122e/0x2150
[ 3661.345962]  do_syscall_64+0x56/0x1e0
[ 3661.345966]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3661.345968] RIP: 0033:0x7f67bff03b4b
[ 3661.345971] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3661.345973] RSP: 002b:00007f5b077fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3661.345975] RAX: ffffffffffffffda RBX: 0000563db608d140 RCX: 00007f67bff03b4b
[ 3661.345977] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000d4
[ 3661.345978] RBP: 0000563db608d140 R08: 0000000000000000 R09: 0000000000000000
[ 3661.345979] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3661.345980] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3661.345986]  </TASK>
[ 3661.355362] watchdog: CPU110: Watchdog detected hard LOCKUP on cpu 110
[ 3661.355366] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3661.355427] CPU: 110 UID: 0 PID: 31340 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3661.355431] Tainted: [D]=DIE
[ 3661.355432] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3661.355434] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3661.355438] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3661.355441] RSP: 0018:ffffaab62b217c20 EFLAGS: 00000046
[ 3661.355443] RAX: 0000000000000000 RBX: ffff8f917ebb2700 RCX: 000000000000006d
[ 3661.355445] RDX: ffff8f917ebb2700 RSI: 0000000001b80100 RDI: ffff8f7aeeeca68c
[ 3661.355446] RBP: ffffaab62b217c40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3661.355447] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3661.355449] R13: 0000000001bc0000 R14: 0000000001bc0000 R15: 0000000000000050
[ 3661.355450] FS:  00007f59a67fc640(0000) GS:ffff8f91ec3b6000(0000) knlGS:0000000000000000
[ 3661.355452] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3661.355454] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3661.355456] PKRU: 55555554
[ 3661.355457] Call Trace:
[ 3661.355458]  <TASK>
[ 3661.355461]  _raw_spin_lock_irqsave+0x46/0x60
[ 3661.355464]  yield_to+0x36/0x1b0
[ 3661.355469]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3661.355521]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3661.355575]  pause_interception+0x91/0x120 [kvm_amd]
[ 3661.355583]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3661.355591]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3661.355599]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3661.355659]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3661.355712]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3661.355715]  ? do_futex+0xc8/0x1d0
[ 3661.355717]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3661.355720]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3661.355724]  __x64_sys_ioctl+0xa0/0xf0
[ 3661.355728]  x64_sys_call+0x122e/0x2150
[ 3661.355731]  do_syscall_64+0x56/0x1e0
[ 3661.355735]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3661.355737] RIP: 0033:0x7f67bff03b4b
[ 3661.355739] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3661.355741] RSP: 002b:00007f59a67fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3661.355743] RAX: ffffffffffffffda RBX: 0000563db63ae5b0 RCX: 00007f67bff03b4b
[ 3661.355745] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000172
[ 3661.355746] RBP: 0000563db63ae5b0 R08: 0000000000000000 R09: 0000000000000000
[ 3661.355747] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3661.355748] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3661.355754]  </TASK>
[ 3661.429683] watchdog: CPU20: Watchdog detected hard LOCKUP on cpu 20
[ 3661.429686] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3661.429746] CPU: 20 UID: 0 PID: 31288 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3661.429750] Tainted: [D]=DIE
[ 3661.429752] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3661.429753] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3661.429758] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3661.429760] RSP: 0018:ffffaab62aee7c08 EFLAGS: 00000046
[ 3661.429762] RAX: 0000000000000000 RBX: ffff8f7180332700 RCX: 0000000000000020
[ 3661.429764] RDX: ffff8f7180332700 RSI: 0000000000840100 RDI: ffff8f917e831840
[ 3661.429766] RBP: ffffaab62aee7c28 R08: 0000000000000001 R09: 0000000000000bb8
[ 3661.429767] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f917e831840
[ 3661.429768] R13: 0000000000540000 R14: 0000000000540000 R15: ffff8f7180331840
[ 3661.429770] FS:  00007f5a87fff640(0000) GS:ffff8f71edb36000(0000) knlGS:0000000000000000
[ 3661.429772] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3661.429773] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3661.429775] PKRU: 55555554
[ 3661.429776] Call Trace:
[ 3661.429777]  <TASK>
[ 3661.429780]  _raw_spin_lock+0x2d/0x40
[ 3661.429784]  double_rq_lock+0x54/0x80
[ 3661.429787]  yield_to+0x76/0x1b0
[ 3661.429792]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3661.429843]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3661.429897]  pause_interception+0x91/0x120 [kvm_amd]
[ 3661.429905]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3661.429913]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3661.429921]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3661.429981]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3661.430034]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3661.430037]  ? do_futex+0xc8/0x1d0
[ 3661.430039]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3661.430041]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3661.430045]  __x64_sys_ioctl+0xa0/0xf0
[ 3661.430050]  x64_sys_call+0x122e/0x2150
[ 3661.430052]  do_syscall_64+0x56/0x1e0
[ 3661.430056]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3661.430058] RIP: 0033:0x7f67bff03b4b
[ 3661.430061] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3661.430062] RSP: 002b:00007f5a87ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3661.430065] RAX: ffffffffffffffda RBX: 0000563db619ed40 RCX: 00007f67bff03b4b
[ 3661.430066] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000010a
[ 3661.430068] RBP: 0000563db619ed40 R08: 0000000000000000 R09: 0000000000000000
[ 3661.430069] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3661.430070] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3661.430076]  </TASK>
[ 3661.437477] watchdog: CPU109: Watchdog detected hard LOCKUP on cpu 109
[ 3661.437481] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3661.437548] CPU: 109 UID: 0 PID: 31239 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3661.437553] Tainted: [D]=DIE
[ 3661.437554] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3661.437556] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3661.437561] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3661.437565] RSP: 0018:ffffaab62ac73c20 EFLAGS: 00000046
[ 3661.437569] RAX: 0000000000000000 RBX: ffff8f917eb72700 RCX: 0000000000000076
[ 3661.437572] RDX: ffff8f917eb72700 RSI: 0000000001dc0100 RDI: ffff8f7aeeeca68c
[ 3661.437574] RBP: ffffaab62ac73c40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3661.437575] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3661.437577] R13: 0000000001b80000 R14: 0000000001b80000 R15: 0000000000000044
[ 3661.437579] FS:  00007f5b67fff640(0000) GS:ffff8f91ec376000(0000) knlGS:0000000000000000
[ 3661.437581] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3661.437583] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3661.437585] PKRU: 55555554
[ 3661.437586] Call Trace:
[ 3661.437587]  <TASK>
[ 3661.437591]  _raw_spin_lock_irqsave+0x46/0x60
[ 3661.437595]  yield_to+0x36/0x1b0
[ 3661.437601]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3661.437670]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3661.437741]  pause_interception+0x91/0x120 [kvm_amd]
[ 3661.437751]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3661.437762]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3661.437773]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3661.437856]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3661.437930]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3661.437934]  ? do_futex+0xc8/0x1d0
[ 3661.437937]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3661.437940]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3661.437944]  __x64_sys_ioctl+0xa0/0xf0
[ 3661.437949]  x64_sys_call+0x122e/0x2150
[ 3661.437951]  do_syscall_64+0x56/0x1e0
[ 3661.437956]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3661.437958] RIP: 0033:0x7f67bff03b4b
[ 3661.437961] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3661.437963] RSP: 002b:00007f5b67ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3661.437966] RAX: ffffffffffffffda RBX: 0000563db5faeab0 RCX: 00007f67bff03b4b
[ 3661.437968] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000a8
[ 3661.437969] RBP: 0000563db5faeab0 R08: 0000000000000000 R09: 0000000000000000
[ 3661.437971] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3661.437972] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3661.437978]  </TASK>
[ 3661.608908] watchdog: CPU116: Watchdog detected hard LOCKUP on cpu 116
[ 3661.608914] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3661.608998] CPU: 116 UID: 0 PID: 31325 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3661.609003] Tainted: [D]=DIE
[ 3661.609004] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3661.609006] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3661.609014] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3661.609017] RSP: 0018:ffffaab62b02bc20 EFLAGS: 00000046
[ 3661.609019] RAX: 0000000000000000 RBX: ffff8f917ed32700 RCX: 0000000000000035
[ 3661.609021] RDX: ffff8f917ed32700 RSI: 0000000000d80100 RDI: ffff8f7aeeeca68c
[ 3661.609022] RBP: ffffaab62b02bc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3661.609024] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3661.609025] R13: 0000000001d40000 R14: 0000000001d40000 R15: 0000000000000020
[ 3661.609026] FS:  00007f59e6ffd640(0000) GS:ffff8f91ec536000(0000) knlGS:0000000000000000
[ 3661.609028] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3661.609030] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3661.609032] PKRU: 55555554
[ 3661.609033] Call Trace:
[ 3661.609034]  <TASK>
[ 3661.609039]  _raw_spin_lock_irqsave+0x46/0x60
[ 3661.609043]  yield_to+0x36/0x1b0
[ 3661.609050]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3661.609103]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3661.609157]  pause_interception+0x91/0x120 [kvm_amd]
[ 3661.609166]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3661.609174]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3661.609183]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3661.609242]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3661.609295]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3661.609299]  ? do_futex+0xc8/0x1d0
[ 3661.609304]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3661.609306]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3661.609310]  __x64_sys_ioctl+0xa0/0xf0
[ 3661.609316]  x64_sys_call+0x122e/0x2150
[ 3661.609319]  do_syscall_64+0x56/0x1e0
[ 3661.609323]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3661.609325] RIP: 0033:0x7f67bff03b4b
[ 3661.609329] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3661.609331] RSP: 002b:00007f59e6ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3661.609333] RAX: ffffffffffffffda RBX: 0000563db6316040 RCX: 00007f67bff03b4b
[ 3661.609335] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000154
[ 3661.609336] RBP: 0000563db6316040 R08: 0000000000000000 R09: 0000000000000000
[ 3661.609337] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3661.609338] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3661.609345]  </TASK>
[ 3666.263924] watchdog: BUG: soft lockup - CPU#1 stuck for 22s! [qemu-system-x86:31314]
[ 3666.263930] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3666.264015] CPU: 1 UID: 0 PID: 31314 Comm: qemu-system-x86 Tainted: G      D             6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3666.264019] Tainted: [D]=DIE
[ 3666.264020] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3666.264022] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3666.264030] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3666.264032] RSP: 0018:ffffaab62afb78b8 EFLAGS: 00000202
[ 3666.264035] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3666.264037] RDX: 0000000000000001 RSI: ffff8f717fff8fe0 RDI: ffff8f5280a32cf0
[ 3666.264038] RBP: ffffaab62afb7918 R08: 0000000000000007 R09: ffff8f5280a326e0
[ 3666.264039] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3666.264040] R13: 0000000000000202 R14: ffff8f717fe72a40 R15: 0000000000000080
[ 3666.264042] FS:  00007f5a257fa640(0000) GS:ffff8f71ed676000(0000) knlGS:0000000000000000
[ 3666.264044] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3666.264046] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3666.264047] PKRU: 55555554
[ 3666.264048] Call Trace:
[ 3666.264050]  <TASK>
[ 3666.264055]  ? __pfx___wbinvd+0x10/0x10
[ 3666.264063]  on_each_cpu_cond_mask+0x28/0x50
[ 3666.264066]  wbinvd_on_all_cpus+0x29/0x40
[ 3666.264072]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3666.264082]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3666.264142]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3666.264200]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3666.264206]  change_protection+0xfc9/0x1200
[ 3666.264213]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.264217]  ? update_load_avg+0x84/0x780
[ 3666.264222]  ? write_ibpb+0x21/0x40
[ 3666.264227]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3666.264282]  change_prot_numa+0x5b/0xe0
[ 3666.264287]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.264289]  ? update_load_avg+0x84/0x780
[ 3666.264292]  ? __dequeue_entity+0x3cd/0x4a0
[ 3666.264296]  task_numa_work+0x3c5/0x9b0
[ 3666.264304]  task_work_run+0x64/0xa0
[ 3666.264309]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3666.264314]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3666.264368]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3666.264420]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.264423]  ? do_futex+0xc8/0x1d0
[ 3666.264425]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.264428]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.264431]  __x64_sys_ioctl+0xa0/0xf0
[ 3666.264437]  x64_sys_call+0x122e/0x2150
[ 3666.264439]  do_syscall_64+0x56/0x1e0
[ 3666.264443]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3666.264445] RIP: 0033:0x7f67bff03b4b
[ 3666.264448] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3666.264450] RSP: 002b:00007f5a257f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3666.264452] RAX: ffffffffffffffda RBX: 0000563db62a68f0 RCX: 00007f67bff03b4b
[ 3666.264454] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000013e
[ 3666.264455] RBP: 0000563db62a68f0 R08: 0000000000000000 R09: 0000000000000000
[ 3666.264456] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3666.264457] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3666.264463]  </TASK>
[ 3666.275922] watchdog: BUG: soft lockup - CPU#6 stuck for 22s! [qemu-system-x86:31395]
[ 3666.275926] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3666.275986] CPU: 6 UID: 0 PID: 31395 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3666.275990] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3666.275991] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3666.275993] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3666.275997] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3666.275999] RSP: 0018:ffffaab62c1a38b8 EFLAGS: 00000202
[ 3666.276001] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3666.276003] RDX: 0000000000000001 RSI: ffff8f717fff9080 RDI: ffff8f5280a320c0
[ 3666.276004] RBP: ffffaab62c1a3918 R08: 0000000000000007 R09: ffff8f5280a32bb0
[ 3666.276006] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3666.276007] R13: 0000000000000202 R14: ffff8f717ffb2a40 R15: 0000000000000080
[ 3666.276008] FS:  00007f58a6ffd640(0000) GS:ffff8f71ed7b6000(0000) knlGS:0000000000000000
[ 3666.276010] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3666.276012] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3666.276013] PKRU: 55555554
[ 3666.276014] Call Trace:
[ 3666.276015]  <TASK>
[ 3666.276018]  ? __pfx___wbinvd+0x10/0x10
[ 3666.276023]  on_each_cpu_cond_mask+0x28/0x50
[ 3666.276026]  wbinvd_on_all_cpus+0x29/0x40
[ 3666.276030]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3666.276040]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3666.276097]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3666.276154]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3666.276158]  change_protection+0xfc9/0x1200
[ 3666.276163]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.276167]  ? update_curr_dl_se+0x3b/0x1e0
[ 3666.276171]  ? dl_server_update+0x2e/0x40
[ 3666.276175]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.276179]  ? pick_next_task_fair+0x4f/0x490
[ 3666.276182]  change_prot_numa+0x5b/0xe0
[ 3666.276187]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3666.276193]  task_numa_work+0x3c5/0x9b0
[ 3666.276200]  task_work_run+0x64/0xa0
[ 3666.276204]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3666.276208]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3666.276263]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3666.276316]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.276318]  ? do_futex+0xc8/0x1d0
[ 3666.276320]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.276323]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.276326]  __x64_sys_ioctl+0xa0/0xf0
[ 3666.276331]  x64_sys_call+0x122e/0x2150
[ 3666.276333]  do_syscall_64+0x56/0x1e0
[ 3666.276337]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3666.276339] RIP: 0033:0x7f67bff03b4b
[ 3666.276342] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3666.276344] RSP: 002b:00007f58a6ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3666.276346] RAX: ffffffffffffffda RBX: 0000563db65d9840 RCX: 00007f67bff03b4b
[ 3666.276347] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001e0
[ 3666.276349] RBP: 0000563db65d9840 R08: 0000000000000000 R09: 0000000000000000
[ 3666.276350] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3666.276351] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3666.276356]  </TASK>
[ 3666.287924] watchdog: BUG: soft lockup - CPU#12 stuck for 22s! [qemu-system-x86:31256]
[ 3666.287932] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3666.288019] CPU: 12 UID: 0 PID: 31256 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3666.288025] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3666.288026] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3666.288028] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3666.288036] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3666.288039] RSP: 0018:ffffaab62acfb8b8 EFLAGS: 00000202
[ 3666.288042] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3666.288043] RDX: 0000000000000001 RSI: ffff8f717fff9140 RDI: ffff8f5280a32920
[ 3666.288045] RBP: ffffaab62acfb918 R08: 0000000000000007 R09: ffff8f5280a320d0
[ 3666.288046] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3666.288047] R13: 0000000000000202 R14: ffff8f7180132a40 R15: 0000000000000080
[ 3666.288049] FS:  00007f5b267fc640(0000) GS:ffff8f71ed936000(0000) knlGS:0000000000000000
[ 3666.288051] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3666.288053] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3666.288055] PKRU: 55555554
[ 3666.288056] Call Trace:
[ 3666.288058]  <TASK>
[ 3666.288063]  ? __pfx___wbinvd+0x10/0x10
[ 3666.288072]  on_each_cpu_cond_mask+0x28/0x50
[ 3666.288075]  wbinvd_on_all_cpus+0x29/0x40
[ 3666.288080]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3666.288091]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3666.288152]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3666.288210]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3666.288217]  change_protection+0xfc9/0x1200
[ 3666.288223]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.288228]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.288231]  ? update_load_avg+0x84/0x780
[ 3666.288236]  ? write_ibpb+0x21/0x40
[ 3666.288242]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3666.288296]  change_prot_numa+0x5b/0xe0
[ 3666.288304]  task_numa_work+0x3c5/0x9b0
[ 3666.288312]  task_work_run+0x64/0xa0
[ 3666.288317]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3666.288323]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3666.288377]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3666.288430]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.288432]  ? do_futex+0xc8/0x1d0
[ 3666.288435]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.288437]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.288441]  __x64_sys_ioctl+0xa0/0xf0
[ 3666.288447]  x64_sys_call+0x122e/0x2150
[ 3666.288449]  do_syscall_64+0x56/0x1e0
[ 3666.288453]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3666.288455] RIP: 0033:0x7f67bff03b4b
[ 3666.288459] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3666.288461] RSP: 002b:00007f5b267fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3666.288463] RAX: ffffffffffffffda RBX: 0000563db6059ff0 RCX: 00007f67bff03b4b
[ 3666.288464] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000ca
[ 3666.288466] RBP: 0000563db6059ff0 R08: 0000000000000000 R09: 0000000000000000
[ 3666.288467] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3666.288468] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3666.288474]  </TASK>
[ 3666.299923] watchdog: BUG: soft lockup - CPU#17 stuck for 22s! [qemu-system-x86:31404]
[ 3666.299929] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3666.300015] CPU: 17 UID: 0 PID: 31404 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3666.300020] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3666.300021] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3666.300024] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3666.300032] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3666.300034] RSP: 0018:ffffaab62bf3f8b8 EFLAGS: 00000202
[ 3666.300037] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3666.300039] RDX: 0000000000000001 RSI: ffff8f717fff91e0 RDI: ffff8f52872d0b00
[ 3666.300040] RBP: ffffaab62bf3f918 R08: 0000000000000007 R09: ffff8f52872d0850
[ 3666.300041] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3666.300043] R13: 0000000000000202 R14: ffff8f7180272a40 R15: 0000000000000080
[ 3666.300044] FS:  00007f5885ffb640(0000) GS:ffff8f71eda76000(0000) knlGS:0000000000000000
[ 3666.300046] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3666.300048] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3666.300049] PKRU: 55555554
[ 3666.300050] Call Trace:
[ 3666.300052]  <TASK>
[ 3666.300057]  ? __pfx___wbinvd+0x10/0x10
[ 3666.300065]  on_each_cpu_cond_mask+0x28/0x50
[ 3666.300068]  wbinvd_on_all_cpus+0x29/0x40
[ 3666.300073]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3666.300082]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3666.300138]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3666.300194]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3666.300201]  change_protection+0xfc9/0x1200
[ 3666.300206]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.300211]  ? update_curr_dl_se+0x3b/0x1e0
[ 3666.300216]  ? dl_server_update+0x2e/0x40
[ 3666.300220]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.300223]  ? pick_next_task_fair+0x4f/0x490
[ 3666.300228]  change_prot_numa+0x5b/0xe0
[ 3666.300233]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3666.300240]  task_numa_work+0x3c5/0x9b0
[ 3666.300248]  task_work_run+0x64/0xa0
[ 3666.300253]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3666.300259]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3666.300311]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3666.300363]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.300365]  ? do_futex+0xc8/0x1d0
[ 3666.300368]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.300370]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.300374]  __x64_sys_ioctl+0xa0/0xf0
[ 3666.300380]  x64_sys_call+0x122e/0x2150
[ 3666.300382]  do_syscall_64+0x56/0x1e0
[ 3666.300388]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3666.300390] RIP: 0033:0x7f67bff03b4b
[ 3666.300393] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3666.300395] RSP: 002b:00007f5885ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3666.300397] RAX: ffffffffffffffda RBX: 0000563db6636340 RCX: 00007f67bff03b4b
[ 3666.300399] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001f2
[ 3666.300400] RBP: 0000563db6636340 R08: 0000000000000000 R09: 0000000000000000
[ 3666.300401] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3666.300402] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3666.300408]  </TASK>
[ 3666.303922] watchdog: BUG: soft lockup - CPU#19 stuck for 22s! [qemu-system-x86:31326]
[ 3666.303926] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3666.303993] CPU: 19 UID: 0 PID: 31326 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3666.303999] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3666.304000] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3666.304002] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3666.304009] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3666.304011] RSP: 0018:ffffaab62b0338b8 EFLAGS: 00000202
[ 3666.304014] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3666.304015] RDX: 0000000000000001 RSI: ffff8f717fff9220 RDI: ffff8f52872d0a50
[ 3666.304017] RBP: ffffaab62b033918 R08: 0000000000000007 R09: ffff8f52872d0b70
[ 3666.304019] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3666.304020] R13: 0000000000000202 R14: ffff8f71802f2a40 R15: 0000000000000080
[ 3666.304022] FS:  00007f59e67fc640(0000) GS:ffff8f71edaf6000(0000) knlGS:0000000000000000
[ 3666.304025] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3666.304027] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3666.304030] PKRU: 55555554
[ 3666.304031] Call Trace:
[ 3666.304033]  <TASK>
[ 3666.304035]  ? __pfx___wbinvd+0x10/0x10
[ 3666.304041]  on_each_cpu_cond_mask+0x28/0x50
[ 3666.304045]  wbinvd_on_all_cpus+0x29/0x40
[ 3666.304049]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3666.304061]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3666.304142]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3666.304222]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3666.304227]  change_protection+0xfc9/0x1200
[ 3666.304232]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.304236]  ? update_curr_dl_se+0x3b/0x1e0
[ 3666.304240]  ? dl_server_update+0x2e/0x40
[ 3666.304244]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.304248]  ? pick_next_task_fair+0x4f/0x490
[ 3666.304252]  change_prot_numa+0x5b/0xe0
[ 3666.304258]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3666.304266]  task_numa_work+0x3c5/0x9b0
[ 3666.304275]  task_work_run+0x64/0xa0
[ 3666.304279]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3666.304284]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3666.304361]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3666.304433]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.304437]  ? do_futex+0xc8/0x1d0
[ 3666.304439]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.304442]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.304446]  __x64_sys_ioctl+0xa0/0xf0
[ 3666.304451]  x64_sys_call+0x122e/0x2150
[ 3666.304454]  do_syscall_64+0x56/0x1e0
[ 3666.304458]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3666.304461] RIP: 0033:0x7f67bff03b4b
[ 3666.304464] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3666.304467] RSP: 002b:00007f59e67fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3666.304470] RAX: ffffffffffffffda RBX: 0000563db6320030 RCX: 00007f67bff03b4b
[ 3666.304473] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000156
[ 3666.304476] RBP: 0000563db6320030 R08: 0000000000000000 R09: 0000000000000000
[ 3666.304478] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3666.304479] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3666.304485]  </TASK>
[ 3666.327922] watchdog: BUG: soft lockup - CPU#30 stuck for 22s! [qemu-system-x86:31241]
[ 3666.327928] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3666.328012] CPU: 30 UID: 0 PID: 31241 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3666.328017] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3666.328018] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3666.328020] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3666.328029] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3666.328031] RSP: 0018:ffffaab62ac838b8 EFLAGS: 00000202
[ 3666.328033] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3666.328035] RDX: 0000000000000001 RSI: ffff8f717fff9380 RDI: ffff8f52872d0570
[ 3666.328036] RBP: ffffaab62ac83918 R08: 0000000000000007 R09: ffff8f52872d0ae0
[ 3666.328038] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3666.328039] R13: 0000000000000202 R14: ffff8f71805b2a40 R15: 0000000000000080
[ 3666.328040] FS:  00007f5b66ffd640(0000) GS:ffff8f71eddb6000(0000) knlGS:0000000000000000
[ 3666.328042] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3666.328044] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3666.328046] PKRU: 55555554
[ 3666.328047] Call Trace:
[ 3666.328049]  <TASK>
[ 3666.328054]  ? __pfx___wbinvd+0x10/0x10
[ 3666.328062]  on_each_cpu_cond_mask+0x28/0x50
[ 3666.328066]  wbinvd_on_all_cpus+0x29/0x40
[ 3666.328071]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3666.328082]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3666.328140]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3666.328197]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3666.328204]  change_protection+0xfc9/0x1200
[ 3666.328210]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.328215]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.328217]  ? update_load_avg+0x84/0x780
[ 3666.328223]  ? write_ibpb+0x21/0x40
[ 3666.328229]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3666.328283]  change_prot_numa+0x5b/0xe0
[ 3666.328290]  task_numa_work+0x3c5/0x9b0
[ 3666.328298]  task_work_run+0x64/0xa0
[ 3666.328303]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3666.328308]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3666.328361]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3666.328413]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.328416]  ? do_futex+0xc8/0x1d0
[ 3666.328418]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.328421]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.328424]  __x64_sys_ioctl+0xa0/0xf0
[ 3666.328430]  x64_sys_call+0x122e/0x2150
[ 3666.328432]  do_syscall_64+0x56/0x1e0
[ 3666.328436]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3666.328438] RIP: 0033:0x7f67bff03b4b
[ 3666.328441] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3666.328443] RSP: 002b:00007f5b66ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3666.328446] RAX: ffffffffffffffda RBX: 0000563db5fc29d0 RCX: 00007f67bff03b4b
[ 3666.328447] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000ac
[ 3666.328448] RBP: 0000563db5fc29d0 R08: 0000000000000000 R09: 0000000000000000
[ 3666.328449] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3666.328451] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3666.328456]  </TASK>
[ 3666.351921] watchdog: BUG: soft lockup - CPU#40 stuck for 22s! [qemu-system-x86:31268]
[ 3666.351928] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3666.352014] CPU: 40 UID: 0 PID: 31268 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3666.352019] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3666.352020] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3666.352023] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3666.352031] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3666.352033] RSP: 0018:ffffaab62ad5b8b8 EFLAGS: 00000202
[ 3666.352035] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3666.352037] RDX: 0000000000000001 RSI: ffff8f717fff94c0 RDI: ffff8f72066e39e0
[ 3666.352039] RBP: ffffaab62ad5b918 R08: 0000000000000007 R09: ffff8f72066e3c40
[ 3666.352040] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3666.352041] R13: 0000000000000202 R14: ffff8f917e232a40 R15: 0000000000000080
[ 3666.352043] FS:  00007f5ae77fe640(0000) GS:ffff8f91eba36000(0000) knlGS:0000000000000000
[ 3666.352045] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3666.352046] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3666.352048] PKRU: 55555554
[ 3666.352049] Call Trace:
[ 3666.352051]  <TASK>
[ 3666.352056]  ? __pfx___wbinvd+0x10/0x10
[ 3666.352064]  on_each_cpu_cond_mask+0x28/0x50
[ 3666.352067]  wbinvd_on_all_cpus+0x29/0x40
[ 3666.352072]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3666.352082]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3666.352138]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3666.352194]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3666.352201]  change_protection+0xfc9/0x1200
[ 3666.352208]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.352212]  ? update_load_avg+0x84/0x780
[ 3666.352218]  ? write_ibpb+0x21/0x40
[ 3666.352224]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3666.352277]  change_prot_numa+0x5b/0xe0
[ 3666.352285]  task_numa_work+0x3c5/0x9b0
[ 3666.352293]  task_work_run+0x64/0xa0
[ 3666.352298]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3666.352303]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3666.352356]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3666.352408]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.352410]  ? do_futex+0xc8/0x1d0
[ 3666.352413]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.352415]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.352419]  __x64_sys_ioctl+0xa0/0xf0
[ 3666.352425]  x64_sys_call+0x122e/0x2150
[ 3666.352427]  do_syscall_64+0x56/0x1e0
[ 3666.352431]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3666.352433] RIP: 0033:0x7f67bff03b4b
[ 3666.352436] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3666.352437] RSP: 002b:00007f5ae77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3666.352439] RAX: ffffffffffffffda RBX: 0000563db60d3df0 RCX: 00007f67bff03b4b
[ 3666.352441] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000e2
[ 3666.352442] RBP: 0000563db60d3df0 R08: 0000000000000000 R09: 0000000000000000
[ 3666.352443] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3666.352444] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3666.352450]  </TASK>
[ 3666.391921] watchdog: BUG: soft lockup - CPU#57 stuck for 22s! [qemu-system-x86:31333]
[ 3666.391927] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3666.392013] CPU: 57 UID: 0 PID: 31333 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3666.392019] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3666.392020] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3666.392022] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3666.392030] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3666.392032] RSP: 0018:ffffaab62b1df8b8 EFLAGS: 00000202
[ 3666.392034] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3666.392036] RDX: 0000000000000001 RSI: ffff8f717fff96e0 RDI: ffff8f72000babf0
[ 3666.392038] RBP: ffffaab62b1df918 R08: 0000000000000007 R09: ffff8f72000bab00
[ 3666.392039] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3666.392041] R13: 0000000000000202 R14: ffff8f917e672a40 R15: 0000000000000080
[ 3666.392042] FS:  00007f59c67fc640(0000) GS:ffff8f91ebe76000(0000) knlGS:0000000000000000
[ 3666.392044] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3666.392046] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3666.392047] PKRU: 55555554
[ 3666.392048] Call Trace:
[ 3666.392050]  <TASK>
[ 3666.392055]  ? __pfx___wbinvd+0x10/0x10
[ 3666.392063]  on_each_cpu_cond_mask+0x28/0x50
[ 3666.392066]  wbinvd_on_all_cpus+0x29/0x40
[ 3666.392072]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3666.392083]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3666.392143]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3666.392202]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3666.392208]  change_protection+0xfc9/0x1200
[ 3666.392214]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.392218]  ? update_curr_dl_se+0x3b/0x1e0
[ 3666.392223]  ? dl_server_update+0x2e/0x40
[ 3666.392227]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.392231]  ? pick_next_task_fair+0x4f/0x490
[ 3666.392235]  change_prot_numa+0x5b/0xe0
[ 3666.392240]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3666.392246]  task_numa_work+0x3c5/0x9b0
[ 3666.392254]  task_work_run+0x64/0xa0
[ 3666.392259]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3666.392264]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3666.392319]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3666.392372]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.392374]  ? do_futex+0xc8/0x1d0
[ 3666.392376]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.392379]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.392382]  __x64_sys_ioctl+0xa0/0xf0
[ 3666.392388]  x64_sys_call+0x122e/0x2150
[ 3666.392390]  do_syscall_64+0x56/0x1e0
[ 3666.392396]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3666.392398] RIP: 0033:0x7f67bff03b4b
[ 3666.392401] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3666.392403] RSP: 002b:00007f59c67fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3666.392406] RAX: ffffffffffffffda RBX: 0000563db63677d0 RCX: 00007f67bff03b4b
[ 3666.392407] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000164
[ 3666.392408] RBP: 0000563db63677d0 R08: 0000000000000000 R09: 0000000000000000
[ 3666.392410] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3666.392411] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3666.392416]  </TASK>
[ 3666.395920] watchdog: BUG: soft lockup - CPU#60 stuck for 22s! [qemu-system-x86:31338]
[ 3666.395924] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3666.395995] CPU: 60 UID: 0 PID: 31338 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3666.396000] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3666.396001] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3666.396003] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3666.396007] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3666.396010] RSP: 0018:ffffaab62b2078b8 EFLAGS: 00000202
[ 3666.396012] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3666.396014] RDX: 0000000000000001 RSI: ffff8f717fff9740 RDI: ffff8f72000ba610
[ 3666.396015] RBP: ffffaab62b207918 R08: 0000000000000007 R09: ffff8f72000ba170
[ 3666.396017] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3666.396018] R13: 0000000000000202 R14: ffff8f917e732a40 R15: 0000000000000080
[ 3666.396020] FS:  00007f59a77fe640(0000) GS:ffff8f91ebf36000(0000) knlGS:0000000000000000
[ 3666.396022] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3666.396024] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3666.396026] PKRU: 55555554
[ 3666.396027] Call Trace:
[ 3666.396028]  <TASK>
[ 3666.396031]  ? __pfx___wbinvd+0x10/0x10
[ 3666.396037]  on_each_cpu_cond_mask+0x28/0x50
[ 3666.396040]  wbinvd_on_all_cpus+0x29/0x40
[ 3666.396045]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3666.396061]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3666.396139]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3666.396219]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3666.396224]  change_protection+0xfc9/0x1200
[ 3666.396230]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.396234]  ? update_curr_dl_se+0x3b/0x1e0
[ 3666.396237]  ? dl_server_update+0x2e/0x40
[ 3666.396242]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.396245]  ? pick_next_task_fair+0x4f/0x490
[ 3666.396249]  change_prot_numa+0x5b/0xe0
[ 3666.396257]  task_numa_work+0x3c5/0x9b0
[ 3666.396268]  task_work_run+0x64/0xa0
[ 3666.396274]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3666.396279]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3666.396358]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3666.396438]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.396441]  ? do_futex+0xc8/0x1d0
[ 3666.396444]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.396447]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.396451]  __x64_sys_ioctl+0xa0/0xf0
[ 3666.396456]  x64_sys_call+0x122e/0x2150
[ 3666.396458]  do_syscall_64+0x56/0x1e0
[ 3666.396463]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3666.396465] RIP: 0033:0x7f67bff03b4b
[ 3666.396469] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3666.396471] RSP: 002b:00007f59a77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3666.396474] RAX: ffffffffffffffda RBX: 0000563db6399de0 RCX: 00007f67bff03b4b
[ 3666.396476] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000016e
[ 3666.396477] RBP: 0000563db6399de0 R08: 0000000000000000 R09: 0000000000000000
[ 3666.396479] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3666.396480] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3666.396486]  </TASK>
[ 3666.423920] watchdog: BUG: soft lockup - CPU#64 stuck for 22s! [qemu-system-x86:30221]
[ 3666.423923] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3666.423984] CPU: 64 UID: 0 PID: 30221 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3666.423989] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3666.423990] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3666.423992] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3666.423996] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3666.423998] RSP: 0000:ffffaab62c787a40 EFLAGS: 00000202
[ 3666.424001] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3666.424002] RDX: 0000000000000001 RSI: ffff8f717fff97c0 RDI: ffff8f5287658460
[ 3666.424004] RBP: ffffaab62c787aa0 R08: 0000000000000007 R09: ffff8f5287658f30
[ 3666.424005] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3666.424006] R13: 0000000000000202 R14: ffff8f7180632a40 R15: 0000000000000080
[ 3666.424008] FS:  00007fe43be09c80(0000) GS:ffff8f71ede36000(0000) knlGS:0000000000000000
[ 3666.424010] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3666.424011] CR2: 0000000000000000 CR3: 000000208b92101d CR4: 0000000000770ef0
[ 3666.424013] PKRU: 55555554
[ 3666.424014] Call Trace:
[ 3666.424015]  <TASK>
[ 3666.424018]  ? __pfx___wbinvd+0x10/0x10
[ 3666.424023]  on_each_cpu_cond_mask+0x28/0x50
[ 3666.424026]  wbinvd_on_all_cpus+0x29/0x40
[ 3666.424030]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3666.424040]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3666.424097]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3666.424152]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3666.424157]  change_protection+0xfc9/0x1200
[ 3666.424166]  ? sched_balance_rq+0x214/0xf80
[ 3666.424170]  change_prot_numa+0x5b/0xe0
[ 3666.424176]  task_numa_work+0x3c5/0x9b0
[ 3666.424184]  task_work_run+0x64/0xa0
[ 3666.424188]  irqentry_exit_to_user_mode+0x15d/0x170
[ 3666.424192]  irqentry_exit+0x3f/0x50
[ 3666.424195]  sysvec_apic_timer_interrupt+0x51/0x90
[ 3666.424199]  asm_sysvec_apic_timer_interrupt+0x1f/0x30
[ 3666.424202] RIP: 0033:0x555f731496f0
[ 3666.424205] Code: 5f 31 d2 31 f6 31 ff 45 31 c0 c3 0f 1f 80 00 00 00 00 8b 05 6a 71 07 01 85 c0 74 0a 48 8b 45 00 83 78 08 01 74 64 48 8b 43 20 <ba> 31 02 00 00 4c 89 fe 4c 89 e7 48 89 45 38 4c 8b 73 10 48 c7 43
[ 3666.424207] RSP: 002b:00007fff0a821250 EFLAGS: 00000246
[ 3666.424209] RAX: 0000000000000000 RBX: 0000555f86a813c0 RCX: 0000000000000000
[ 3666.424210] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
[ 3666.424211] RBP: 0000555f85541f10 R08: 0000000000000000 R09: 0000000000000000
[ 3666.424212] R10: 00007fe43c625000 R11: 00007fe43c625010 R12: 0000555f85541f18
[ 3666.424214] R13: 0000000000000001 R14: 0000555f741dfff0 R15: 0000555f7335b2af
[ 3666.424219]  </TASK>
[ 3666.431919] watchdog: BUG: soft lockup - CPU#65 stuck for 22s! [qemu-system-x86:31406]
[ 3666.431922] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3666.431988] CPU: 65 UID: 0 PID: 31406 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3666.431992] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3666.431993] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3666.431994] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3666.431998] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3666.432000] RSP: 0018:ffffaab62bf2f8b8 EFLAGS: 00000202
[ 3666.432002] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3666.432003] RDX: 0000000000000001 RSI: ffff8f717fff97e0 RDI: ffff8f5287658e40
[ 3666.432005] RBP: ffffaab62bf2f918 R08: 0000000000000007 R09: ffff8f5287658ed0
[ 3666.432006] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3666.432007] R13: 0000000000000202 R14: ffff8f7180672a40 R15: 0000000000000080
[ 3666.432009] FS:  00007f5884ff9640(0000) GS:ffff8f71ede76000(0000) knlGS:0000000000000000
[ 3666.432011] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3666.432012] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3666.432014] PKRU: 55555554
[ 3666.432015] Call Trace:
[ 3666.432016]  <TASK>
[ 3666.432018]  ? __pfx___wbinvd+0x10/0x10
[ 3666.432024]  on_each_cpu_cond_mask+0x28/0x50
[ 3666.432027]  wbinvd_on_all_cpus+0x29/0x40
[ 3666.432031]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3666.432039]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3666.432093]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3666.432149]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3666.432154]  change_protection+0xfc9/0x1200
[ 3666.432159]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.432162]  ? update_curr_dl_se+0x3b/0x1e0
[ 3666.432166]  ? dl_server_update+0x2e/0x40
[ 3666.432170]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.432174]  ? pick_next_task_fair+0x4f/0x490
[ 3666.432178]  change_prot_numa+0x5b/0xe0
[ 3666.432182]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.432185]  ? update_load_avg+0x84/0x780
[ 3666.432188]  ? __dequeue_entity+0x3cd/0x4a0
[ 3666.432192]  task_numa_work+0x3c5/0x9b0
[ 3666.432200]  task_work_run+0x64/0xa0
[ 3666.432204]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3666.432209]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3666.432262]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3666.432315]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.432317]  ? do_futex+0xc8/0x1d0
[ 3666.432320]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.432322]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.432326]  __x64_sys_ioctl+0xa0/0xf0
[ 3666.432331]  x64_sys_call+0x122e/0x2150
[ 3666.432334]  do_syscall_64+0x56/0x1e0
[ 3666.432338]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3666.432340] RIP: 0033:0x7f67bff03b4b
[ 3666.432342] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3666.432344] RSP: 002b:00007f5884ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3666.432346] RAX: ffffffffffffffda RBX: 0000563db664a2e0 RCX: 00007f67bff03b4b
[ 3666.432348] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001f6
[ 3666.432349] RBP: 0000563db664a2e0 R08: 0000000000000000 R09: 0000000000000000
[ 3666.432351] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3666.432352] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3666.432358]  </TASK>
[ 3666.439920] watchdog: BUG: soft lockup - CPU#68 stuck for 22s! [qemu-system-x86:31300]
[ 3666.439924] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3666.439991] CPU: 68 UID: 0 PID: 31300 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3666.439996] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3666.439997] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3666.439999] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3666.440006] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3666.440009] RSP: 0018:ffffaab62af478b8 EFLAGS: 00000202
[ 3666.440011] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3666.440013] RDX: 0000000000000001 RSI: ffff8f717fff9840 RDI: ffff8f5287658670
[ 3666.440015] RBP: ffffaab62af47918 R08: 0000000000000007 R09: ffff8f5287658210
[ 3666.440016] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3666.440018] R13: 0000000000000202 R14: ffff8f7180732a40 R15: 0000000000000080
[ 3666.440020] FS:  00007f5a657fa640(0000) GS:ffff8f71edf36000(0000) knlGS:0000000000000000
[ 3666.440022] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3666.440025] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3666.440027] PKRU: 55555554
[ 3666.440029] Call Trace:
[ 3666.440030]  <TASK>
[ 3666.440033]  ? __pfx___wbinvd+0x10/0x10
[ 3666.440041]  on_each_cpu_cond_mask+0x28/0x50
[ 3666.440045]  wbinvd_on_all_cpus+0x29/0x40
[ 3666.440051]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3666.440067]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3666.440176]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3666.440261]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3666.440266]  change_protection+0xfc9/0x1200
[ 3666.440271]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.440276]  ? pick_eevdf+0x7c/0x1a0
[ 3666.440281]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.440284]  ? pick_next_task_fair+0x4f/0x490
[ 3666.440288]  change_prot_numa+0x5b/0xe0
[ 3666.440293]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3666.440298]  task_numa_work+0x3c5/0x9b0
[ 3666.440307]  task_work_run+0x64/0xa0
[ 3666.440313]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3666.440320]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3666.440395]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3666.440472]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.440476]  ? do_futex+0xc8/0x1d0
[ 3666.440478]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.440481]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.440485]  __x64_sys_ioctl+0xa0/0xf0
[ 3666.440490]  x64_sys_call+0x122e/0x2150
[ 3666.440493]  do_syscall_64+0x56/0x1e0
[ 3666.440497]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3666.440499] RIP: 0033:0x7f67bff03b4b
[ 3666.440502] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3666.440504] RSP: 002b:00007f5a657f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3666.440507] RAX: ffffffffffffffda RBX: 0000563db62190f0 RCX: 00007f67bff03b4b
[ 3666.440509] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000122
[ 3666.440510] RBP: 0000563db62190f0 R08: 0000000000000000 R09: 0000000000000000
[ 3666.440512] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3666.440513] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3666.440519]  </TASK>
[ 3666.447919] watchdog: BUG: soft lockup - CPU#71 stuck for 22s! [qemu-system-x86:31278]
[ 3666.447922] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3666.447981] CPU: 71 UID: 0 PID: 31278 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3666.447985] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3666.447986] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3666.447987] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3666.447991] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3666.447992] RSP: 0018:ffffaab62ae8b8b8 EFLAGS: 00000202
[ 3666.447994] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3666.447995] RDX: 0000000000000001 RSI: ffff8f717fff98a0 RDI: ffff8f5287658880
[ 3666.447997] RBP: ffffaab62ae8b918 R08: 0000000000000007 R09: ffff8f52876588a0
[ 3666.447998] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3666.447999] R13: 0000000000000202 R14: ffff8f71807f2a40 R15: 0000000000000080
[ 3666.448001] FS:  00007f5ac5ffb640(0000) GS:ffff8f71edff6000(0000) knlGS:0000000000000000
[ 3666.448003] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3666.448004] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3666.448005] PKRU: 55555554
[ 3666.448006] Call Trace:
[ 3666.448007]  <TASK>
[ 3666.448009]  ? __pfx___wbinvd+0x10/0x10
[ 3666.448014]  on_each_cpu_cond_mask+0x28/0x50
[ 3666.448017]  wbinvd_on_all_cpus+0x29/0x40
[ 3666.448021]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3666.448029]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3666.448083]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3666.448138]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3666.448142]  change_protection+0xfc9/0x1200
[ 3666.448147]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.448151]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.448153]  ? update_load_avg+0x84/0x780
[ 3666.448157]  ? write_ibpb+0x21/0x40
[ 3666.448161]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3666.448214]  change_prot_numa+0x5b/0xe0
[ 3666.448221]  task_numa_work+0x3c5/0x9b0
[ 3666.448228]  task_work_run+0x64/0xa0
[ 3666.448232]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3666.448236]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3666.448289]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3666.448341]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.448343]  ? do_futex+0xc8/0x1d0
[ 3666.448345]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.448348]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.448351]  __x64_sys_ioctl+0xa0/0xf0
[ 3666.448356]  x64_sys_call+0x122e/0x2150
[ 3666.448358]  do_syscall_64+0x56/0x1e0
[ 3666.448362]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3666.448364] RIP: 0033:0x7f67bff03b4b
[ 3666.448366] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3666.448367] RSP: 002b:00007f5ac5ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3666.448370] RAX: ffffffffffffffda RBX: 0000563db61390c0 RCX: 00007f67bff03b4b
[ 3666.448371] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000f6
[ 3666.448372] RBP: 0000563db61390c0 R08: 0000000000000000 R09: 0000000000000000
[ 3666.448373] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3666.448375] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3666.448380]  </TASK>
[ 3666.459919] watchdog: BUG: soft lockup - CPU#76 stuck for 22s! [qemu-system-x86:31260]
[ 3666.459922] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3666.459983] CPU: 76 UID: 0 PID: 31260 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3666.459987] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3666.459988] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3666.459989] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3666.459993] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3666.459995] RSP: 0018:ffffaab62ad1b8b8 EFLAGS: 00000202
[ 3666.459997] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3666.459999] RDX: 0000000000000001 RSI: ffff8f717fff9940 RDI: ffff8f5287658010
[ 3666.460001] RBP: ffffaab62ad1b918 R08: 0000000000000007 R09: ffff8f52876589f0
[ 3666.460002] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3666.460003] R13: 0000000000000202 R14: ffff8f7180932a40 R15: 0000000000000080
[ 3666.460005] FS:  00007f5b07fff640(0000) GS:ffff8f71ee136000(0000) knlGS:0000000000000000
[ 3666.460007] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3666.460009] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3666.460010] PKRU: 55555554
[ 3666.460011] Call Trace:
[ 3666.460012]  <TASK>
[ 3666.460015]  ? __pfx___wbinvd+0x10/0x10
[ 3666.460020]  on_each_cpu_cond_mask+0x28/0x50
[ 3666.460023]  wbinvd_on_all_cpus+0x29/0x40
[ 3666.460026]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3666.460035]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3666.460088]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3666.460142]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3666.460147]  change_protection+0xfc9/0x1200
[ 3666.460151]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.460155]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.460158]  ? update_load_avg+0x84/0x780
[ 3666.460162]  ? write_ibpb+0x21/0x40
[ 3666.460165]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3666.460218]  change_prot_numa+0x5b/0xe0
[ 3666.460225]  task_numa_work+0x3c5/0x9b0
[ 3666.460232]  task_work_run+0x64/0xa0
[ 3666.460236]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3666.460240]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3666.460293]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3666.460344]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.460347]  ? do_futex+0xc8/0x1d0
[ 3666.460349]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.460352]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.460355]  __x64_sys_ioctl+0xa0/0xf0
[ 3666.460360]  x64_sys_call+0x122e/0x2150
[ 3666.460362]  do_syscall_64+0x56/0x1e0
[ 3666.460366]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3666.460367] RIP: 0033:0x7f67bff03b4b
[ 3666.460370] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3666.460371] RSP: 002b:00007f5b07ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3666.460373] RAX: ffffffffffffffda RBX: 0000563db60831d0 RCX: 00007f67bff03b4b
[ 3666.460375] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000d2
[ 3666.460376] RBP: 0000563db60831d0 R08: 0000000000000000 R09: 0000000000000000
[ 3666.460377] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3666.460378] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3666.460383]  </TASK>
[ 3666.460385] watchdog: BUG: soft lockup - CPU#77 stuck for 22s! [qemu-system-x86:31293]
[ 3666.460388] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3666.460447] CPU: 77 UID: 0 PID: 31293 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3666.460452] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3666.460453] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3666.460454] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3666.460459] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3666.460461] RSP: 0018:ffffaab62af0f8b8 EFLAGS: 00000202
[ 3666.460463] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3666.460465] RDX: 0000000000000001 RSI: ffff8f717fff9960 RDI: ffff8f5287658b10
[ 3666.460466] RBP: ffffaab62af0f918 R08: 0000000000000007 R09: ffff8f52876589e0
[ 3666.460467] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3666.460468] R13: 0000000000000202 R14: ffff8f7180972a40 R15: 0000000000000080
[ 3666.460470] FS:  00007f5a857fa640(0000) GS:ffff8f71ee176000(0000) knlGS:0000000000000000
[ 3666.460472] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3666.460473] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3666.460475] PKRU: 55555554
[ 3666.460476] Call Trace:
[ 3666.460477]  <TASK>
[ 3666.460479]  ? __pfx___wbinvd+0x10/0x10
[ 3666.460485]  on_each_cpu_cond_mask+0x28/0x50
[ 3666.460488]  wbinvd_on_all_cpus+0x29/0x40
[ 3666.460492]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3666.460501]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3666.460559]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3666.460615]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3666.460619]  change_protection+0xfc9/0x1200
[ 3666.460624]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.460628]  ? pick_eevdf+0x7c/0x1a0
[ 3666.460632]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.460636]  ? pick_next_task_fair+0x4f/0x490
[ 3666.460639]  change_prot_numa+0x5b/0xe0
[ 3666.460644]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.460646]  ? update_load_avg+0x84/0x780
[ 3666.460651]  task_numa_work+0x3c5/0x9b0
[ 3666.460658]  task_work_run+0x64/0xa0
[ 3666.460662]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3666.460666]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3666.460720]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3666.460772]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.460775]  ? do_futex+0xc8/0x1d0
[ 3666.460777]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.460780]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.460783]  __x64_sys_ioctl+0xa0/0xf0
[ 3666.460788]  x64_sys_call+0x122e/0x2150
[ 3666.460790]  do_syscall_64+0x56/0x1e0
[ 3666.460794]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3666.460796] RIP: 0033:0x7f67bff03b4b
[ 3666.460799] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3666.460800] RSP: 002b:00007f5a857f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3666.460803] RAX: ffffffffffffffda RBX: 0000563db61d1ba0 RCX: 00007f67bff03b4b
[ 3666.460804] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000114
[ 3666.460805] RBP: 0000563db61d1ba0 R08: 0000000000000000 R09: 0000000000000000
[ 3666.460807] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3666.460808] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3666.460813]  </TASK>
[ 3666.463919] watchdog: BUG: soft lockup - CPU#79 stuck for 22s! [qemu-system-x86:31405]
[ 3666.463922] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3666.463981] CPU: 79 UID: 0 PID: 31405 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3666.463986] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3666.463987] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3666.463988] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3666.463992] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3666.463995] RSP: 0018:ffffaab62bf378b8 EFLAGS: 00000202
[ 3666.463997] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3666.463998] RDX: 0000000000000001 RSI: ffff8f717fff99a0 RDI: ffff8f5287658600
[ 3666.464000] RBP: ffffaab62bf37918 R08: 0000000000000007 R09: ffff8f5287658dc0
[ 3666.464001] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3666.464002] R13: 0000000000000202 R14: ffff8f71809f2a40 R15: 0000000000000080
[ 3666.464004] FS:  00007f58857fa640(0000) GS:ffff8f71ee1f6000(0000) knlGS:0000000000000000
[ 3666.464006] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3666.464007] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3666.464009] PKRU: 55555554
[ 3666.464010] Call Trace:
[ 3666.464011]  <TASK>
[ 3666.464013]  ? __pfx___wbinvd+0x10/0x10
[ 3666.464019]  on_each_cpu_cond_mask+0x28/0x50
[ 3666.464022]  wbinvd_on_all_cpus+0x29/0x40
[ 3666.464025]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3666.464035]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3666.464092]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3666.464148]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3666.464152]  change_protection+0xfc9/0x1200
[ 3666.464157]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.464161]  ? update_curr_dl_se+0x3b/0x1e0
[ 3666.464165]  ? dl_server_update+0x2e/0x40
[ 3666.464169]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.464172]  ? pick_next_task_fair+0x4f/0x490
[ 3666.464176]  change_prot_numa+0x5b/0xe0
[ 3666.464180]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.464183]  ? update_load_avg+0x84/0x780
[ 3666.464185]  ? __dequeue_entity+0x3cd/0x4a0
[ 3666.464190]  task_numa_work+0x3c5/0x9b0
[ 3666.464197]  task_work_run+0x64/0xa0
[ 3666.464201]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3666.464205]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3666.464259]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3666.464312]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.464314]  ? do_futex+0xc8/0x1d0
[ 3666.464317]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.464319]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.464322]  __x64_sys_ioctl+0xa0/0xf0
[ 3666.464327]  x64_sys_call+0x122e/0x2150
[ 3666.464329]  do_syscall_64+0x56/0x1e0
[ 3666.464333]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3666.464335] RIP: 0033:0x7f67bff03b4b
[ 3666.464338] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3666.464340] RSP: 002b:00007f58857f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3666.464342] RAX: ffffffffffffffda RBX: 0000563db66402f0 RCX: 00007f67bff03b4b
[ 3666.464343] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001f4
[ 3666.464345] RBP: 0000563db66402f0 R08: 0000000000000000 R09: 0000000000000000
[ 3666.464346] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3666.464347] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3666.464352]  </TASK>
[ 3666.464354] watchdog: BUG: soft lockup - CPU#78 stuck for 22s! [qemu-system-x86:31355]
[ 3666.464357] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3666.464416] CPU: 78 UID: 0 PID: 31355 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3666.464420] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3666.464420] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3666.464422] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3666.464425] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3666.464427] RSP: 0018:ffffaab62b28f8b8 EFLAGS: 00000202
[ 3666.464429] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3666.464430] RDX: 0000000000000001 RSI: ffff8f717fff9980 RDI: ffff8f5287658f10
[ 3666.464432] RBP: ffffaab62b28f918 R08: 0000000000000007 R09: ffff8f5287658d90
[ 3666.464433] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3666.464434] R13: 0000000000000202 R14: ffff8f71809b2a40 R15: 0000000000000080
[ 3666.464435] FS:  00007f5965ffb640(0000) GS:ffff8f71ee1b6000(0000) knlGS:0000000000000000
[ 3666.464437] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3666.464439] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3666.464440] PKRU: 55555554
[ 3666.464441] Call Trace:
[ 3666.464442]  <TASK>
[ 3666.464444]  ? __pfx___wbinvd+0x10/0x10
[ 3666.464449]  on_each_cpu_cond_mask+0x28/0x50
[ 3666.464452]  wbinvd_on_all_cpus+0x29/0x40
[ 3666.464456]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3666.464464]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3666.464519]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3666.464574]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3666.464578]  change_protection+0xfc9/0x1200
[ 3666.464582]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.464587]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.464589]  ? update_load_avg+0x84/0x780
[ 3666.464593]  ? write_ibpb+0x21/0x40
[ 3666.464596]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3666.464650]  change_prot_numa+0x5b/0xe0
[ 3666.464657]  task_numa_work+0x3c5/0x9b0
[ 3666.464664]  task_work_run+0x64/0xa0
[ 3666.464668]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3666.464672]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3666.464725]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3666.464777]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.464779]  ? do_futex+0xc8/0x1d0
[ 3666.464781]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.464784]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.464787]  __x64_sys_ioctl+0xa0/0xf0
[ 3666.464792]  x64_sys_call+0x122e/0x2150
[ 3666.464794]  do_syscall_64+0x56/0x1e0
[ 3666.464798]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3666.464800] RIP: 0033:0x7f67bff03b4b
[ 3666.464802] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3666.464803] RSP: 002b:00007f5965ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3666.464806] RAX: ffffffffffffffda RBX: 0000563db64454a0 RCX: 00007f67bff03b4b
[ 3666.464807] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000190
[ 3666.464808] RBP: 0000563db64454a0 R08: 0000000000000000 R09: 0000000000000000
[ 3666.464809] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3666.464811] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3666.464816]  </TASK>
[ 3666.483918] watchdog: BUG: soft lockup - CPU#87 stuck for 22s! [qemu-system-x86:31402]
[ 3666.483922] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3666.483982] CPU: 87 UID: 0 PID: 31402 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3666.483986] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3666.483987] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3666.483989] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3666.483993] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3666.483995] RSP: 0018:ffffaab62bf578b8 EFLAGS: 00000202
[ 3666.483997] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3666.483998] RDX: 0000000000000001 RSI: ffff8f717fff9aa0 RDI: ffff8f52889c6230
[ 3666.484000] RBP: ffffaab62bf57918 R08: 0000000000000007 R09: ffff8f52889c6420
[ 3666.484001] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3666.484002] R13: 0000000000000202 R14: ffff8f7180bf2a40 R15: 0000000000000080
[ 3666.484004] FS:  00007f5886ffd640(0000) GS:ffff8f71ee3f6000(0000) knlGS:0000000000000000
[ 3666.484006] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3666.484007] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3666.484009] PKRU: 55555554
[ 3666.484010] Call Trace:
[ 3666.484011]  <TASK>
[ 3666.484013]  ? __pfx___wbinvd+0x10/0x10
[ 3666.484019]  on_each_cpu_cond_mask+0x28/0x50
[ 3666.484022]  wbinvd_on_all_cpus+0x29/0x40
[ 3666.484026]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3666.484034]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3666.484088]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3666.484143]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3666.484148]  change_protection+0xfc9/0x1200
[ 3666.484152]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.484156]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.484159]  ? update_load_avg+0x84/0x780
[ 3666.484163]  ? write_ibpb+0x21/0x40
[ 3666.484166]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3666.484220]  change_prot_numa+0x5b/0xe0
[ 3666.484227]  task_numa_work+0x3c5/0x9b0
[ 3666.484234]  task_work_run+0x64/0xa0
[ 3666.484238]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3666.484242]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3666.484295]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3666.484347]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.484349]  ? do_futex+0xc8/0x1d0
[ 3666.484352]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.484354]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.484357]  __x64_sys_ioctl+0xa0/0xf0
[ 3666.484362]  x64_sys_call+0x122e/0x2150
[ 3666.484364]  do_syscall_64+0x56/0x1e0
[ 3666.484368]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3666.484370] RIP: 0033:0x7f67bff03b4b
[ 3666.484372] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3666.484374] RSP: 002b:00007f5886ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3666.484376] RAX: ffffffffffffffda RBX: 0000563db66207e0 RCX: 00007f67bff03b4b
[ 3666.484377] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001ee
[ 3666.484378] RBP: 0000563db66207e0 R08: 0000000000000000 R09: 0000000000000000
[ 3666.484380] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3666.484381] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3666.484386]  </TASK>
[ 3666.487919] watchdog: BUG: soft lockup - CPU#90 stuck for 22s! [qemu-system-x86:31229]
[ 3666.487923] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3666.487992] CPU: 90 UID: 0 PID: 31229 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3666.487997] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3666.487999] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3666.488000] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3666.488006] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3666.488011] RSP: 0018:ffffaab62abb38b8 EFLAGS: 00000202
[ 3666.488014] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3666.488016] RDX: 0000000000000001 RSI: ffff8f717fff9b00 RDI: ffff8f52889c6c20
[ 3666.488018] RBP: ffffaab62abb3918 R08: 0000000000000007 R09: ffff8f52889c6d70
[ 3666.488019] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3666.488021] R13: 0000000000000202 R14: ffff8f7180cb2a40 R15: 0000000000000080
[ 3666.488023] FS:  00007f5ba5ffb640(0000) GS:ffff8f71ee4b6000(0000) knlGS:0000000000000000
[ 3666.488025] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3666.488027] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3666.488028] PKRU: 55555554
[ 3666.488030] Call Trace:
[ 3666.488031]  <TASK>
[ 3666.488034]  ? __pfx___wbinvd+0x10/0x10
[ 3666.488040]  on_each_cpu_cond_mask+0x28/0x50
[ 3666.488044]  wbinvd_on_all_cpus+0x29/0x40
[ 3666.488048]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3666.488060]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3666.488141]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3666.488217]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3666.488226]  change_protection+0xfc9/0x1200
[ 3666.488231]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.488235]  ? update_curr_dl_se+0x3b/0x1e0
[ 3666.488240]  ? dl_server_update+0x2e/0x40
[ 3666.488245]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.488249]  ? pick_next_task_fair+0x4f/0x490
[ 3666.488253]  change_prot_numa+0x5b/0xe0
[ 3666.488258]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3666.488264]  task_numa_work+0x3c5/0x9b0
[ 3666.488273]  task_work_run+0x64/0xa0
[ 3666.488277]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3666.488282]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3666.488360]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3666.488435]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.488438]  ? do_futex+0xc8/0x1d0
[ 3666.488441]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.488444]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.488448]  __x64_sys_ioctl+0xa0/0xf0
[ 3666.488453]  x64_sys_call+0x122e/0x2150
[ 3666.488455]  do_syscall_64+0x56/0x1e0
[ 3666.488460]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3666.488462] RIP: 0033:0x7f67bff03b4b
[ 3666.488465] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3666.488467] RSP: 002b:00007f5ba5ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3666.488470] RAX: ffffffffffffffda RBX: 0000563db5f493b0 RCX: 00007f67bff03b4b
[ 3666.488472] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000094
[ 3666.488474] RBP: 0000563db5f493b0 R08: 0000000000000000 R09: 0000000000000000
[ 3666.488476] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3666.488478] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3666.488486]  </TASK>
[ 3666.499918] watchdog: BUG: soft lockup - CPU#94 stuck for 22s! [qemu-system-x86:31408]
[ 3666.499920] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3666.499979] CPU: 94 UID: 0 PID: 31408 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3666.499983] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3666.499984] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3666.499985] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3666.499988] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3666.499990] RSP: 0018:ffffaab6270878b8 EFLAGS: 00000202
[ 3666.499992] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3666.499993] RDX: 0000000000000001 RSI: ffff8f717fff9b80 RDI: ffff8f52889c6630
[ 3666.499995] RBP: ffffaab627087918 R08: 0000000000000007 R09: ffff8f52889c6dd0
[ 3666.499996] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3666.499997] R13: 0000000000000202 R14: ffff8f7180db2a40 R15: 0000000000000080
[ 3666.499998] FS:  00007f58677fe640(0000) GS:ffff8f71ee5b6000(0000) knlGS:0000000000000000
[ 3666.500000] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3666.500002] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3666.500003] PKRU: 55555554
[ 3666.500004] Call Trace:
[ 3666.500005]  <TASK>
[ 3666.500007]  ? __pfx___wbinvd+0x10/0x10
[ 3666.500012]  on_each_cpu_cond_mask+0x28/0x50
[ 3666.500015]  wbinvd_on_all_cpus+0x29/0x40
[ 3666.500018]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3666.500026]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3666.500079]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3666.500134]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3666.500138]  change_protection+0xfc9/0x1200
[ 3666.500144]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.500147]  ? update_load_avg+0x84/0x780
[ 3666.500151]  ? write_ibpb+0x21/0x40
[ 3666.500154]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3666.500207]  change_prot_numa+0x5b/0xe0
[ 3666.500213]  task_numa_work+0x3c5/0x9b0
[ 3666.500221]  task_work_run+0x64/0xa0
[ 3666.500225]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3666.500229]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3666.500281]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3666.500333]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.500336]  ? do_futex+0xc8/0x1d0
[ 3666.500338]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.500340]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.500344]  __x64_sys_ioctl+0xa0/0xf0
[ 3666.500348]  x64_sys_call+0x122e/0x2150
[ 3666.500351]  do_syscall_64+0x56/0x1e0
[ 3666.500354]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3666.500356] RIP: 0033:0x7f67bff03b4b
[ 3666.500358] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3666.500360] RSP: 002b:00007f58677fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3666.500362] RAX: ffffffffffffffda RBX: 0000563db665ee40 RCX: 00007f67bff03b4b
[ 3666.500363] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001fa
[ 3666.500365] RBP: 0000563db665ee40 R08: 0000000000000000 R09: 0000000000000000
[ 3666.500366] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3666.500367] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3666.500372]  </TASK>
[ 3666.511918] watchdog: BUG: soft lockup - CPU#99 stuck for 22s! [qemu-system-x86:31305]
[ 3666.511924] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3666.512012] CPU: 99 UID: 0 PID: 31305 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3666.512018] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3666.512019] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3666.512021] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3666.512028] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3666.512031] RSP: 0018:ffffaab62af6f8b8 EFLAGS: 00000202
[ 3666.512033] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3666.512035] RDX: 0000000000000001 RSI: ffff8f717fff9c20 RDI: ffff8f7206c6a900
[ 3666.512036] RBP: ffffaab62af6f918 R08: 0000000000000007 R09: ffff8f7206c6a960
[ 3666.512038] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3666.512040] R13: 0000000000000202 R14: ffff8f917e8f2a40 R15: 0000000000000080
[ 3666.512042] FS:  00007f5a467fc640(0000) GS:ffff8f91ec0f6000(0000) knlGS:0000000000000000
[ 3666.512044] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3666.512045] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3666.512047] PKRU: 55555554
[ 3666.512048] Call Trace:
[ 3666.512050]  <TASK>
[ 3666.512055]  ? __pfx___wbinvd+0x10/0x10
[ 3666.512062]  on_each_cpu_cond_mask+0x28/0x50
[ 3666.512066]  wbinvd_on_all_cpus+0x29/0x40
[ 3666.512071]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3666.512081]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3666.512137]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3666.512194]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3666.512200]  change_protection+0xfc9/0x1200
[ 3666.512206]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.512210]  ? update_curr_dl_se+0x3b/0x1e0
[ 3666.512215]  ? dl_server_update+0x2e/0x40
[ 3666.512219]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.512222]  ? pick_next_task_fair+0x4f/0x490
[ 3666.512227]  change_prot_numa+0x5b/0xe0
[ 3666.512234]  task_numa_work+0x3c5/0x9b0
[ 3666.512242]  task_work_run+0x64/0xa0
[ 3666.512247]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3666.512252]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3666.512305]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3666.512357]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.512360]  ? do_futex+0xc8/0x1d0
[ 3666.512362]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.512364]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.512368]  __x64_sys_ioctl+0xa0/0xf0
[ 3666.512373]  x64_sys_call+0x122e/0x2150
[ 3666.512376]  do_syscall_64+0x56/0x1e0
[ 3666.512381]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3666.512383] RIP: 0033:0x7f67bff03b4b
[ 3666.512386] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3666.512388] RSP: 002b:00007f5a467fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3666.512390] RAX: ffffffffffffffda RBX: 0000563db624bbb0 RCX: 00007f67bff03b4b
[ 3666.512391] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000012c
[ 3666.512393] RBP: 0000563db624bbb0 R08: 0000000000000000 R09: 0000000000000000
[ 3666.512394] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3666.512395] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3666.512400]  </TASK>
[ 3666.539918] watchdog: BUG: soft lockup - CPU#112 stuck for 22s! [qemu-system-x86:31254]
[ 3666.539925] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3666.540010] CPU: 112 UID: 0 PID: 31254 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3666.540015] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3666.540016] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3666.540018] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3666.540026] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3666.540028] RSP: 0018:ffffaab62aceb8b8 EFLAGS: 00000202
[ 3666.540031] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3666.540033] RDX: 0000000000000001 RSI: ffff8f717fff9dc0 RDI: ffff8f7206c6a1e0
[ 3666.540034] RBP: ffffaab62aceb918 R08: 0000000000000007 R09: ffff8f7206c6a910
[ 3666.540036] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3666.540037] R13: 0000000000000202 R14: ffff8f917ec32a40 R15: 0000000000000080
[ 3666.540038] FS:  00007f5b277fe640(0000) GS:ffff8f91ec436000(0000) knlGS:0000000000000000
[ 3666.540040] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3666.540042] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3666.540043] PKRU: 55555554
[ 3666.540045] Call Trace:
[ 3666.540046]  <TASK>
[ 3666.540052]  ? __pfx___wbinvd+0x10/0x10
[ 3666.540060]  on_each_cpu_cond_mask+0x28/0x50
[ 3666.540063]  wbinvd_on_all_cpus+0x29/0x40
[ 3666.540068]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3666.540079]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3666.540138]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3666.540195]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3666.540201]  change_protection+0xfc9/0x1200
[ 3666.540206]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.540211]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.540214]  ? update_load_avg+0x84/0x780
[ 3666.540219]  ? write_ibpb+0x21/0x40
[ 3666.540224]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3666.540278]  change_prot_numa+0x5b/0xe0
[ 3666.540286]  task_numa_work+0x3c5/0x9b0
[ 3666.540293]  task_work_run+0x64/0xa0
[ 3666.540298]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3666.540303]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3666.540356]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3666.540408]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.540411]  ? do_futex+0xc8/0x1d0
[ 3666.540413]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.540416]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.540419]  __x64_sys_ioctl+0xa0/0xf0
[ 3666.540425]  x64_sys_call+0x122e/0x2150
[ 3666.540427]  do_syscall_64+0x56/0x1e0
[ 3666.540431]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3666.540433] RIP: 0033:0x7f67bff03b4b
[ 3666.540436] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3666.540438] RSP: 002b:00007f5b277fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3666.540441] RAX: ffffffffffffffda RBX: 0000563db60459d0 RCX: 00007f67bff03b4b
[ 3666.540442] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000c6
[ 3666.540443] RBP: 0000563db60459d0 R08: 0000000000000000 R09: 0000000000000000
[ 3666.540445] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3666.540446] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3666.540451]  </TASK>
[ 3666.567917] watchdog: BUG: soft lockup - CPU#125 stuck for 22s! [qemu-system-x86:31339]
[ 3666.567922] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3666.567992] CPU: 125 UID: 0 PID: 31339 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3666.567998] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3666.567999] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3666.568001] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3666.568005] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3666.568008] RSP: 0018:ffffaab62b20f8b8 EFLAGS: 00000202
[ 3666.568010] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3666.568012] RDX: 0000000000000001 RSI: ffff8f717fff9f60 RDI: ffff8f7207fa2fc0
[ 3666.568014] RBP: ffffaab62b20f918 R08: 0000000000000007 R09: ffff8f7207fa22a0
[ 3666.568016] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3666.568018] R13: 0000000000000202 R14: ffff8f917ef72a40 R15: 0000000000000080
[ 3666.568020] FS:  00007f59a6ffd640(0000) GS:ffff8f91ec776000(0000) knlGS:0000000000000000
[ 3666.568023] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3666.568025] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3666.568027] PKRU: 55555554
[ 3666.568029] Call Trace:
[ 3666.568030]  <TASK>
[ 3666.568033]  ? __pfx___wbinvd+0x10/0x10
[ 3666.568039]  on_each_cpu_cond_mask+0x28/0x50
[ 3666.568043]  wbinvd_on_all_cpus+0x29/0x40
[ 3666.568047]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3666.568059]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3666.568134]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3666.568207]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3666.568212]  change_protection+0xfc9/0x1200
[ 3666.568217]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.568222]  ? update_curr_dl_se+0x3b/0x1e0
[ 3666.568226]  ? dl_server_update+0x2e/0x40
[ 3666.568230]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.568234]  ? pick_next_task_fair+0x4f/0x490
[ 3666.568238]  change_prot_numa+0x5b/0xe0
[ 3666.568246]  task_numa_work+0x3c5/0x9b0
[ 3666.568254]  task_work_run+0x64/0xa0
[ 3666.568259]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3666.568263]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3666.568333]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3666.568402]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.568405]  ? do_futex+0xc8/0x1d0
[ 3666.568408]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.568410]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3666.568414]  __x64_sys_ioctl+0xa0/0xf0
[ 3666.568419]  x64_sys_call+0x122e/0x2150
[ 3666.568422]  do_syscall_64+0x56/0x1e0
[ 3666.568426]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3666.568428] RIP: 0033:0x7f67bff03b4b
[ 3666.568431] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3666.568434] RSP: 002b:00007f59a6ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3666.568436] RAX: ffffffffffffffda RBX: 0000563db63a3d90 RCX: 00007f67bff03b4b
[ 3666.568438] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000170
[ 3666.568439] RBP: 0000563db63a3d90 R08: 0000000000000000 R09: 0000000000000000
[ 3666.568441] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3666.568442] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3666.568448]  </TASK>
[ 3668.300104] watchdog: CPU21: Watchdog detected hard LOCKUP on cpu 21
[ 3668.300110] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3668.300194] CPU: 21 UID: 0 PID: 31250 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3668.300200] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3668.300201] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3668.300203] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3668.300212] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3668.300215] RSP: 0018:ffffaab62accbc20 EFLAGS: 00000046
[ 3668.300217] RAX: 0000000000000000 RBX: ffff8f7180372700 RCX: 000000000000002c
[ 3668.300219] RDX: ffff8f7180372700 RSI: 0000000000b40100 RDI: ffff8f7aeeeca68c
[ 3668.300221] RBP: ffffaab62accbc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3668.300222] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3668.300224] R13: 0000000000580000 R14: 0000000000580000 R15: 0000000000000064
[ 3668.300226] FS:  00007f5b45ffb640(0000) GS:ffff8f71edb76000(0000) knlGS:0000000000000000
[ 3668.300228] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3668.300230] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3668.300232] PKRU: 55555554
[ 3668.300233] Call Trace:
[ 3668.300235]  <TASK>
[ 3668.300239]  _raw_spin_lock_irqsave+0x46/0x60
[ 3668.300244]  yield_to+0x36/0x1b0
[ 3668.300251]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3668.300325]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3668.300401]  pause_interception+0x91/0x120 [kvm_amd]
[ 3668.300413]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3668.300424]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3668.300435]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3668.300518]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3668.300592]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3668.300597]  ? do_futex+0xc8/0x1d0
[ 3668.300601]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3668.300604]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3668.300608]  __x64_sys_ioctl+0xa0/0xf0
[ 3668.300614]  x64_sys_call+0x122e/0x2150
[ 3668.300617]  do_syscall_64+0x56/0x1e0
[ 3668.300621]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3668.300624] RIP: 0033:0x7f67bff03b4b
[ 3668.300627] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3668.300629] RSP: 002b:00007f5b45ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3668.300632] RAX: ffffffffffffffda RBX: 0000563db601d350 RCX: 00007f67bff03b4b
[ 3668.300634] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000be
[ 3668.300635] RBP: 0000563db601d350 R08: 0000000000000000 R09: 0000000000000000
[ 3668.300637] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3668.300638] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3668.300645]  </TASK>
[ 3668.339459] watchdog: CPU126: Watchdog detected hard LOCKUP on cpu 126
[ 3668.339465] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3668.339546] CPU: 126 UID: 0 PID: 31396 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3668.339552] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3668.339553] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3668.339554] RIP: 0010:native_queued_spin_lock_slowpath+0x29a/0x2d0
[ 3668.339563] Code: c1 e9 12 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 <8b> 42 08 85 c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09
[ 3668.339565] RSP: 0018:ffffaab62c19bc20 EFLAGS: 00000046
[ 3668.339567] RAX: 0000000000000000 RBX: ffff8f917efb2700 RCX: 0000000000000029
[ 3668.339569] RDX: ffff8f917efb2700 RSI: 0000000000a80100 RDI: ffff8f7aeeeca68c
[ 3668.339570] RBP: ffffaab62c19bc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3668.339572] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3668.339573] R13: 0000000001fc0000 R14: 0000000001fc0000 R15: 0000000000000057
[ 3668.339575] FS:  00007f58a67fc640(0000) GS:ffff8f91ec7b6000(0000) knlGS:0000000000000000
[ 3668.339577] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3668.339578] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3668.339579] PKRU: 55555554
[ 3668.339581] Call Trace:
[ 3668.339583]  <TASK>
[ 3668.339587]  _raw_spin_lock_irqsave+0x46/0x60
[ 3668.339591]  yield_to+0x36/0x1b0
[ 3668.339598]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3668.339654]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3668.339707]  pause_interception+0x91/0x120 [kvm_amd]
[ 3668.339716]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3668.339724]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3668.339732]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3668.339787]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3668.339841]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3668.339845]  ? do_futex+0xc8/0x1d0
[ 3668.339849]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3668.339851]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3668.339855]  __x64_sys_ioctl+0xa0/0xf0
[ 3668.339861]  x64_sys_call+0x122e/0x2150
[ 3668.339864]  do_syscall_64+0x56/0x1e0
[ 3668.339868]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3668.339870] RIP: 0033:0x7f67bff03b4b
[ 3668.339873] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3668.339875] RSP: 002b:00007f58a67fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3668.339877] RAX: ffffffffffffffda RBX: 0000563db65e3e40 RCX: 00007f67bff03b4b
[ 3668.339878] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001e2
[ 3668.339879] RBP: 0000563db65e3e40 R08: 0000000000000000 R09: 0000000000000000
[ 3668.339881] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3668.339882] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3668.339888]  </TASK>
[ 3668.891811] watchdog: CPU67: Watchdog detected hard LOCKUP on cpu 67
[ 3668.891816] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3668.891897] CPU: 67 UID: 0 PID: 31289 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3668.891903] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3668.891904] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3668.891906] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3668.891915] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3668.891917] RSP: 0018:ffffaab62aeefc20 EFLAGS: 00000046
[ 3668.891919] RAX: 0000000000000000 RBX: ffff8f71806f2700 RCX: 000000000000006b
[ 3668.891921] RDX: ffff8f71806f2700 RSI: 0000000001b00100 RDI: ffff8f7aeeeca68c
[ 3668.891923] RBP: ffffaab62aeefc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3668.891924] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3668.891926] R13: 0000000001100000 R14: 0000000001100000 R15: 0000000000000017
[ 3668.891927] FS:  00007f5a877fe640(0000) GS:ffff8f71edef6000(0000) knlGS:0000000000000000
[ 3668.891929] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3668.891931] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3668.891932] PKRU: 55555554
[ 3668.891933] Call Trace:
[ 3668.891935]  <TASK>
[ 3668.891940]  _raw_spin_lock_irqsave+0x46/0x60
[ 3668.891944]  yield_to+0x36/0x1b0
[ 3668.891951]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3668.892005]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3668.892058]  pause_interception+0x91/0x120 [kvm_amd]
[ 3668.892067]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3668.892075]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3668.892083]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3668.892142]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3668.892195]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3668.892199]  ? do_futex+0xc8/0x1d0
[ 3668.892204]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3668.892206]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3668.892209]  __x64_sys_ioctl+0xa0/0xf0
[ 3668.892216]  x64_sys_call+0x122e/0x2150
[ 3668.892218]  do_syscall_64+0x56/0x1e0
[ 3668.892223]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3668.892225] RIP: 0033:0x7f67bff03b4b
[ 3668.892229] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3668.892231] RSP: 002b:00007f5a877fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3668.892233] RAX: ffffffffffffffda RBX: 0000563db61a9530 RCX: 00007f67bff03b4b
[ 3668.892234] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000010c
[ 3668.892236] RBP: 0000563db61a9530 R08: 0000000000000000 R09: 0000000000000000
[ 3668.892237] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3668.892238] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3668.892245]  </TASK>
[ 3669.359884] watchdog: CPU39: Watchdog detected hard LOCKUP on cpu 39
[ 3669.359889] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3669.359974] CPU: 39 UID: 0 PID: 31287 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3669.359979] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3669.359980] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3669.359982] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3669.359991] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3669.359993] RSP: 0018:ffffaab62aedfc20 EFLAGS: 00000046
[ 3669.359995] RAX: 0000000000000000 RBX: ffff8f917e1f2700 RCX: 0000000000000038
[ 3669.359997] RDX: ffff8f917e1f2700 RSI: 0000000000e40100 RDI: ffff8f7aeeeca68c
[ 3669.359998] RBP: ffffaab62aedfc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3669.359999] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3669.360001] R13: 0000000000a00000 R14: 0000000000a00000 R15: 0000000000000010
[ 3669.360002] FS:  00007f5aa4ff9640(0000) GS:ffff8f91eb9f6000(0000) knlGS:0000000000000000
[ 3669.360004] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3669.360006] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3669.360007] PKRU: 55555554
[ 3669.360008] Call Trace:
[ 3669.360010]  <TASK>
[ 3669.360015]  _raw_spin_lock_irqsave+0x46/0x60
[ 3669.360019]  yield_to+0x36/0x1b0
[ 3669.360026]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3669.360080]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3669.360134]  pause_interception+0x91/0x120 [kvm_amd]
[ 3669.360143]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3669.360151]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3669.360159]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3669.360214]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3669.360267]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3669.360272]  ? do_futex+0xc8/0x1d0
[ 3669.360276]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3669.360278]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3669.360282]  __x64_sys_ioctl+0xa0/0xf0
[ 3669.360288]  x64_sys_call+0x122e/0x2150
[ 3669.360290]  do_syscall_64+0x56/0x1e0
[ 3669.360295]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3669.360297] RIP: 0033:0x7f67bff03b4b
[ 3669.360300] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3669.360302] RSP: 002b:00007f5aa4ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3669.360304] RAX: ffffffffffffffda RBX: 0000563db6194d50 RCX: 00007f67bff03b4b
[ 3669.360306] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000108
[ 3669.360307] RBP: 0000563db6194d50 R08: 0000000000000000 R09: 0000000000000000
[ 3669.360308] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3669.360309] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3669.360316]  </TASK>
[ 3670.231843] watchdog: BUG: soft lockup - CPU#0 stuck for 26s! [qemu-system-x86:31247]
[ 3670.231846] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3670.231915] CPU: 0 UID: 0 PID: 31247 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3670.231919] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3670.231920] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3670.231921] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3670.231925] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3670.231927] RSP: 0018:ffffaab62acb38b8 EFLAGS: 00000202
[ 3670.231928] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3670.231930] RDX: 0000000000000001 RSI: ffff8f717fff7be0 RDI: ffff8f5280265790
[ 3670.231931] RBP: ffffaab62acb3918 R08: 0000000000000007 R09: ffff8f52802654d0
[ 3670.231932] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3670.231934] R13: 0000000000000202 R14: ffff8f717fe32a40 R15: 0000000000000080
[ 3670.231935] FS:  00007f5b477fe640(0000) GS:ffff8f71ed636000(0000) knlGS:0000000000000000
[ 3670.231937] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3670.231938] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3670.231940] PKRU: 55555554
[ 3670.231941] Call Trace:
[ 3670.231942]  <TASK>
[ 3670.231945]  ? __pfx___wbinvd+0x10/0x10
[ 3670.231951]  on_each_cpu_cond_mask+0x28/0x50
[ 3670.231954]  wbinvd_on_all_cpus+0x29/0x40
[ 3670.231959]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3670.231968]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3670.232024]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3670.232079]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3670.232085]  change_protection+0xfc9/0x1200
[ 3670.232090]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.232094]  ? update_curr_dl_se+0x3b/0x1e0
[ 3670.232098]  ? dl_server_update+0x2e/0x40
[ 3670.232102]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.232106]  ? pick_next_task_fair+0x4f/0x490
[ 3670.232110]  change_prot_numa+0x5b/0xe0
[ 3670.232117]  task_numa_work+0x3c5/0x9b0
[ 3670.232125]  task_work_run+0x64/0xa0
[ 3670.232129]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3670.232135]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3670.232188]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3670.232239]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.232242]  ? do_futex+0xc8/0x1d0
[ 3670.232244]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.232247]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.232250]  __x64_sys_ioctl+0xa0/0xf0
[ 3670.232255]  x64_sys_call+0x122e/0x2150
[ 3670.232257]  do_syscall_64+0x56/0x1e0
[ 3670.232261]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3670.232263] RIP: 0033:0x7f67bff03b4b
[ 3670.232266] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3670.232268] RSP: 002b:00007f5b477fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3670.232270] RAX: ffffffffffffffda RBX: 0000563db5fff400 RCX: 00007f67bff03b4b
[ 3670.232271] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000b8
[ 3670.232272] RBP: 0000563db5fff400 R08: 0000000000000000 R09: 0000000000000000
[ 3670.232273] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3670.232275] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3670.232280]  </TASK>
[ 3670.263843] watchdog: BUG: soft lockup - CPU#2 stuck for 23s! [qemu-system-x86:31389]
[ 3670.263846] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3670.263905] CPU: 2 UID: 0 PID: 31389 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3670.263910] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3670.263911] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3670.263912] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3670.263916] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3670.263918] RSP: 0018:ffffaab62c1d38b8 EFLAGS: 00000202
[ 3670.263921] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3670.263922] RDX: 0000000000000001 RSI: ffff8f717fff9000 RDI: ffff8f5280a32a50
[ 3670.263924] RBP: ffffaab62c1d3918 R08: 0000000000000007 R09: ffff8f5280a32b70
[ 3670.263925] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3670.263926] R13: 0000000000000202 R14: ffff8f717feb2a40 R15: 0000000000000080
[ 3670.263928] FS:  00007f58c67fc640(0000) GS:ffff8f71ed6b6000(0000) knlGS:0000000000000000
[ 3670.263929] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3670.263931] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3670.263932] PKRU: 55555554
[ 3670.263933] Call Trace:
[ 3670.263935]  <TASK>
[ 3670.263937]  ? __pfx___wbinvd+0x10/0x10
[ 3670.263942]  on_each_cpu_cond_mask+0x28/0x50
[ 3670.263945]  wbinvd_on_all_cpus+0x29/0x40
[ 3670.263949]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3670.263959]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3670.264016]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3670.264071]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3670.264076]  change_protection+0xfc9/0x1200
[ 3670.264080]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.264084]  ? update_curr_dl_se+0x3b/0x1e0
[ 3670.264087]  ? dl_server_update+0x2e/0x40
[ 3670.264091]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.264095]  ? pick_next_task_fair+0x4f/0x490
[ 3670.264098]  change_prot_numa+0x5b/0xe0
[ 3670.264103]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.264105]  ? update_load_avg+0x84/0x780
[ 3670.264108]  ? __dequeue_entity+0x3cd/0x4a0
[ 3670.264112]  task_numa_work+0x3c5/0x9b0
[ 3670.264119]  task_work_run+0x64/0xa0
[ 3670.264123]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3670.264127]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3670.264181]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3670.264233]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.264235]  ? do_futex+0xc8/0x1d0
[ 3670.264238]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.264240]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.264243]  __x64_sys_ioctl+0xa0/0xf0
[ 3670.264248]  x64_sys_call+0x122e/0x2150
[ 3670.264250]  do_syscall_64+0x56/0x1e0
[ 3670.264254]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3670.264256] RIP: 0033:0x7f67bff03b4b
[ 3670.264259] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3670.264261] RSP: 002b:00007f58c67fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3670.264263] RAX: ffffffffffffffda RBX: 0000563db659ce40 RCX: 00007f67bff03b4b
[ 3670.264264] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001d4
[ 3670.264266] RBP: 0000563db659ce40 R08: 0000000000000000 R09: 0000000000000000
[ 3670.264267] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3670.264268] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3670.264273]  </TASK>
[ 3670.267842] watchdog: BUG: soft lockup - CPU#3 stuck for 23s! [qemu-system-x86:31397]
[ 3670.267845] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3670.267904] CPU: 3 UID: 0 PID: 31397 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3670.267908] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3670.267909] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3670.267910] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3670.267913] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3670.267915] RSP: 0018:ffffaab62c1938b8 EFLAGS: 00000202
[ 3670.267917] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3670.267918] RDX: 0000000000000001 RSI: ffff8f717fff9020 RDI: ffff8f5280a32490
[ 3670.267919] RBP: ffffaab62c193918 R08: 0000000000000007 R09: ffff8f5280a32d40
[ 3670.267921] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3670.267922] R13: 0000000000000202 R14: ffff8f717fef2a40 R15: 0000000000000080
[ 3670.267923] FS:  00007f58a5ffb640(0000) GS:ffff8f71ed6f6000(0000) knlGS:0000000000000000
[ 3670.267925] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3670.267926] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3670.267928] PKRU: 55555554
[ 3670.267929] Call Trace:
[ 3670.267930]  <TASK>
[ 3670.267932]  ? __pfx___wbinvd+0x10/0x10
[ 3670.267937]  on_each_cpu_cond_mask+0x28/0x50
[ 3670.267940]  wbinvd_on_all_cpus+0x29/0x40
[ 3670.267944]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3670.267952]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3670.268007]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3670.268063]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3670.268067]  change_protection+0xfc9/0x1200
[ 3670.268073]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.268076]  ? update_load_avg+0x84/0x780
[ 3670.268080]  ? write_ibpb+0x21/0x40
[ 3670.268083]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3670.268137]  change_prot_numa+0x5b/0xe0
[ 3670.268144]  task_numa_work+0x3c5/0x9b0
[ 3670.268152]  task_work_run+0x64/0xa0
[ 3670.268156]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3670.268160]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3670.268213]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3670.268266]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.268268]  ? do_futex+0xc8/0x1d0
[ 3670.268270]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.268273]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.268276]  __x64_sys_ioctl+0xa0/0xf0
[ 3670.268281]  x64_sys_call+0x122e/0x2150
[ 3670.268283]  do_syscall_64+0x56/0x1e0
[ 3670.268287]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3670.268289] RIP: 0033:0x7f67bff03b4b
[ 3670.268291] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3670.268293] RSP: 002b:00007f58a5ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3670.268295] RAX: ffffffffffffffda RBX: 0000563db65eddb0 RCX: 00007f67bff03b4b
[ 3670.268296] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001e4
[ 3670.268297] RBP: 0000563db65eddb0 R08: 0000000000000000 R09: 0000000000000000
[ 3670.268299] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3670.268300] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3670.268305]  </TASK>
[ 3670.271842] watchdog: BUG: soft lockup - CPU#5 stuck for 23s! [qemu-system-x86:31362]
[ 3670.271845] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3670.271904] CPU: 5 UID: 0 PID: 31362 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3670.271909] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3670.271910] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3670.271911] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3670.271916] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3670.271918] RSP: 0018:ffffaab62b2c78b8 EFLAGS: 00000202
[ 3670.271920] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3670.271922] RDX: 0000000000000001 RSI: ffff8f717fff9060 RDI: ffff8f5280a32260
[ 3670.271923] RBP: ffffaab62b2c7918 R08: 0000000000000007 R09: ffff8f5280a32eb0
[ 3670.271924] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3670.271925] R13: 0000000000000202 R14: ffff8f717ff72a40 R15: 0000000000000080
[ 3670.271927] FS:  00007f5945ffb640(0000) GS:ffff8f71ed776000(0000) knlGS:0000000000000000
[ 3670.271929] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3670.271930] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3670.271932] PKRU: 55555554
[ 3670.271933] Call Trace:
[ 3670.271934]  <TASK>
[ 3670.271936]  ? __pfx___wbinvd+0x10/0x10
[ 3670.271942]  on_each_cpu_cond_mask+0x28/0x50
[ 3670.271945]  wbinvd_on_all_cpus+0x29/0x40
[ 3670.271949]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3670.271958]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3670.272016]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3670.272072]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3670.272077]  change_protection+0xfc9/0x1200
[ 3670.272083]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.272086]  ? update_load_avg+0x84/0x780
[ 3670.272090]  ? write_ibpb+0x21/0x40
[ 3670.272093]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3670.272148]  change_prot_numa+0x5b/0xe0
[ 3670.272155]  task_numa_work+0x3c5/0x9b0
[ 3670.272162]  task_work_run+0x64/0xa0
[ 3670.272166]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3670.272170]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3670.272224]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3670.272277]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.272279]  ? do_futex+0xc8/0x1d0
[ 3670.272282]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.272284]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.272288]  __x64_sys_ioctl+0xa0/0xf0
[ 3670.272292]  x64_sys_call+0x122e/0x2150
[ 3670.272294]  do_syscall_64+0x56/0x1e0
[ 3670.272298]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3670.272300] RIP: 0033:0x7f67bff03b4b
[ 3670.272303] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3670.272305] RSP: 002b:00007f5945ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3670.272307] RAX: ffffffffffffffda RBX: 0000563db648caa0 RCX: 00007f67bff03b4b
[ 3670.272308] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000019e
[ 3670.272310] RBP: 0000563db648caa0 R08: 0000000000000000 R09: 0000000000000000
[ 3670.272311] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3670.272312] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3670.272317]  </TASK>
[ 3670.287843] watchdog: BUG: soft lockup - CPU#11 stuck for 23s! [qemu-system-x86:31294]
[ 3670.287850] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3670.287936] CPU: 11 UID: 0 PID: 31294 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3670.287941] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3670.287943] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3670.287945] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3670.287954] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3670.287956] RSP: 0018:ffffaab62af178b8 EFLAGS: 00000202
[ 3670.287958] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3670.287960] RDX: 0000000000000001 RSI: ffff8f717fff9120 RDI: ffff8f5280a32cc0
[ 3670.287962] RBP: ffffaab62af17918 R08: 0000000000000007 R09: ffff8f5280a32500
[ 3670.287963] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3670.287965] R13: 0000000000000202 R14: ffff8f71800f2a40 R15: 0000000000000080
[ 3670.287967] FS:  00007f5a84ff9640(0000) GS:ffff8f71ed8f6000(0000) knlGS:0000000000000000
[ 3670.287968] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3670.287970] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3670.287972] PKRU: 55555554
[ 3670.287973] Call Trace:
[ 3670.287975]  <TASK>
[ 3670.287980]  ? __pfx___wbinvd+0x10/0x10
[ 3670.287988]  on_each_cpu_cond_mask+0x28/0x50
[ 3670.287992]  wbinvd_on_all_cpus+0x29/0x40
[ 3670.287997]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3670.288008]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3670.288068]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3670.288126]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3670.288133]  change_protection+0xfc9/0x1200
[ 3670.288140]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.288144]  ? update_load_avg+0x84/0x780
[ 3670.288149]  ? write_ibpb+0x21/0x40
[ 3670.288154]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3670.288209]  change_prot_numa+0x5b/0xe0
[ 3670.288217]  task_numa_work+0x3c5/0x9b0
[ 3670.288224]  task_work_run+0x64/0xa0
[ 3670.288230]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3670.288235]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3670.288289]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3670.288342]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.288344]  ? do_futex+0xc8/0x1d0
[ 3670.288347]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.288349]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.288353]  __x64_sys_ioctl+0xa0/0xf0
[ 3670.288358]  x64_sys_call+0x122e/0x2150
[ 3670.288360]  do_syscall_64+0x56/0x1e0
[ 3670.288364]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3670.288366] RIP: 0033:0x7f67bff03b4b
[ 3670.288370] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3670.288372] RSP: 002b:00007f5a84ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3670.288374] RAX: ffffffffffffffda RBX: 0000563db61dc570 RCX: 00007f67bff03b4b
[ 3670.288375] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000116
[ 3670.288377] RBP: 0000563db61dc570 R08: 0000000000000000 R09: 0000000000000000
[ 3670.288378] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3670.288379] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3670.288384]  </TASK>
[ 3670.291841] watchdog: BUG: soft lockup - CPU#13 stuck for 23s! [qemu-system-x86:31324]
[ 3670.291844] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3670.291904] CPU: 13 UID: 0 PID: 31324 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3670.291908] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3670.291909] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3670.291910] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3670.291914] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3670.291915] RSP: 0018:ffffaab62b0238b8 EFLAGS: 00000202
[ 3670.291917] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3670.291918] RDX: 0000000000000001 RSI: ffff8f717fff9160 RDI: ffff8f5280a32f70
[ 3670.291920] RBP: ffffaab62b023918 R08: 0000000000000007 R09: ffff8f5280a32c00
[ 3670.291921] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3670.291922] R13: 0000000000000202 R14: ffff8f7180172a40 R15: 0000000000000080
[ 3670.291924] FS:  00007f59e77fe640(0000) GS:ffff8f71ed976000(0000) knlGS:0000000000000000
[ 3670.291925] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3670.291927] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3670.291928] PKRU: 55555554
[ 3670.291929] Call Trace:
[ 3670.291930]  <TASK>
[ 3670.291932]  ? __pfx___wbinvd+0x10/0x10
[ 3670.291937]  on_each_cpu_cond_mask+0x28/0x50
[ 3670.291940]  wbinvd_on_all_cpus+0x29/0x40
[ 3670.291944]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3670.291952]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3670.292006]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3670.292062]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3670.292066]  change_protection+0xfc9/0x1200
[ 3670.292071]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.292075]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.292077]  ? update_load_avg+0x84/0x780
[ 3670.292081]  ? write_ibpb+0x21/0x40
[ 3670.292085]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3670.292139]  change_prot_numa+0x5b/0xe0
[ 3670.292146]  task_numa_work+0x3c5/0x9b0
[ 3670.292154]  task_work_run+0x64/0xa0
[ 3670.292158]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3670.292162]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3670.292215]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3670.292268]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.292270]  ? do_futex+0xc8/0x1d0
[ 3670.292272]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.292275]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.292278]  __x64_sys_ioctl+0xa0/0xf0
[ 3670.292283]  x64_sys_call+0x122e/0x2150
[ 3670.292285]  do_syscall_64+0x56/0x1e0
[ 3670.292289]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3670.292291] RIP: 0033:0x7f67bff03b4b
[ 3670.292293] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3670.292294] RSP: 002b:00007f59e77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3670.292297] RAX: ffffffffffffffda RBX: 0000563db630c090 RCX: 00007f67bff03b4b
[ 3670.292298] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000152
[ 3670.292299] RBP: 0000563db630c090 R08: 0000000000000000 R09: 0000000000000000
[ 3670.292300] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3670.292302] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3670.292307]  </TASK>
[ 3670.295841] watchdog: BUG: soft lockup - CPU#15 stuck for 23s! [qemu-system-x86:31363]
[ 3670.295844] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3670.295903] CPU: 15 UID: 0 PID: 31363 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3670.295907] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3670.295908] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3670.295909] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3670.295913] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3670.295914] RSP: 0018:ffffaab62b2cf8b8 EFLAGS: 00000202
[ 3670.295916] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3670.295917] RDX: 0000000000000001 RSI: ffff8f717fff91a0 RDI: ffff8f52872d07c0
[ 3670.295919] RBP: ffffaab62b2cf918 R08: 0000000000000007 R09: ffff8f52872d0930
[ 3670.295920] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3670.295921] R13: 0000000000000202 R14: ffff8f71801f2a40 R15: 0000000000000080
[ 3670.295923] FS:  00007f59457fa640(0000) GS:ffff8f71ed9f6000(0000) knlGS:0000000000000000
[ 3670.295924] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3670.295926] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3670.295927] PKRU: 55555554
[ 3670.295928] Call Trace:
[ 3670.295929]  <TASK>
[ 3670.295931]  ? __pfx___wbinvd+0x10/0x10
[ 3670.295936]  on_each_cpu_cond_mask+0x28/0x50
[ 3670.295939]  wbinvd_on_all_cpus+0x29/0x40
[ 3670.295943]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3670.295951]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3670.296004]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3670.296059]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3670.296063]  change_protection+0xfc9/0x1200
[ 3670.296070]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.296072]  ? update_load_avg+0x84/0x780
[ 3670.296076]  ? write_ibpb+0x21/0x40
[ 3670.296080]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3670.296133]  change_prot_numa+0x5b/0xe0
[ 3670.296140]  task_numa_work+0x3c5/0x9b0
[ 3670.296147]  task_work_run+0x64/0xa0
[ 3670.296151]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3670.296156]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3670.296208]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3670.296260]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.296262]  ? do_futex+0xc8/0x1d0
[ 3670.296265]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.296267]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.296270]  __x64_sys_ioctl+0xa0/0xf0
[ 3670.296275]  x64_sys_call+0x122e/0x2150
[ 3670.296277]  do_syscall_64+0x56/0x1e0
[ 3670.296281]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3670.296283] RIP: 0033:0x7f67bff03b4b
[ 3670.296285] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3670.296287] RSP: 002b:00007f59457f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3670.296289] RAX: ffffffffffffffda RBX: 0000563db6496a50 RCX: 00007f67bff03b4b
[ 3670.296290] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001a0
[ 3670.296292] RBP: 0000563db6496a50 R08: 0000000000000000 R09: 0000000000000000
[ 3670.296293] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3670.296294] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3670.296299]  </TASK>
[ 3670.299842] watchdog: BUG: soft lockup - CPU#18 stuck for 23s! [qemu-system-x86:31310]
[ 3670.299847] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3670.299920] CPU: 18 UID: 0 PID: 31310 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3670.299925] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3670.299926] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3670.299927] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3670.299932] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3670.299935] RSP: 0018:ffffaab62af978b8 EFLAGS: 00000202
[ 3670.299937] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3670.299939] RDX: 0000000000000001 RSI: ffff8f717fff9200 RDI: ffff8f52872d06e0
[ 3670.299940] RBP: ffffaab62af97918 R08: 0000000000000007 R09: ffff8f52872d0800
[ 3670.299942] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3670.299943] R13: 0000000000000202 R14: ffff8f71802b2a40 R15: 0000000000000080
[ 3670.299944] FS:  00007f5a277fe640(0000) GS:ffff8f71edab6000(0000) knlGS:0000000000000000
[ 3670.299946] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3670.299948] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3670.299949] PKRU: 55555554
[ 3670.299950] Call Trace:
[ 3670.299952]  <TASK>
[ 3670.299955]  ? __pfx___wbinvd+0x10/0x10
[ 3670.299963]  on_each_cpu_cond_mask+0x28/0x50
[ 3670.299966]  wbinvd_on_all_cpus+0x29/0x40
[ 3670.299971]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3670.299981]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3670.300040]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3670.300097]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3670.300103]  change_protection+0xfc9/0x1200
[ 3670.300109]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.300112]  ? update_curr_dl_se+0x3b/0x1e0
[ 3670.300117]  ? dl_server_update+0x2e/0x40
[ 3670.300121]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.300125]  ? pick_next_task_fair+0x4f/0x490
[ 3670.300129]  change_prot_numa+0x5b/0xe0
[ 3670.300134]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.300136]  ? update_load_avg+0x84/0x780
[ 3670.300139]  ? __dequeue_entity+0x3cd/0x4a0
[ 3670.300144]  task_numa_work+0x3c5/0x9b0
[ 3670.300151]  task_work_run+0x64/0xa0
[ 3670.300156]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3670.300162]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3670.300215]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3670.300267]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.300270]  ? do_futex+0xc8/0x1d0
[ 3670.300272]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.300274]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.300278]  __x64_sys_ioctl+0xa0/0xf0
[ 3670.300282]  x64_sys_call+0x122e/0x2150
[ 3670.300285]  do_syscall_64+0x56/0x1e0
[ 3670.300289]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3670.300291] RIP: 0033:0x7f67bff03b4b
[ 3670.300294] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3670.300296] RSP: 002b:00007f5a277fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3670.300298] RAX: ffffffffffffffda RBX: 0000563db627ea30 RCX: 00007f67bff03b4b
[ 3670.300299] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000136
[ 3670.300301] RBP: 0000563db627ea30 R08: 0000000000000000 R09: 0000000000000000
[ 3670.300302] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3670.300303] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3670.300308]  </TASK>
[ 3670.311841] watchdog: BUG: soft lockup - CPU#22 stuck for 23s! [qemu-system-x86:31334]
[ 3670.311844] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3670.311903] CPU: 22 UID: 0 PID: 31334 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3670.311907] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3670.311908] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3670.311909] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3670.311913] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3670.311915] RSP: 0018:ffffaab62b1e78b8 EFLAGS: 00000202
[ 3670.311917] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3670.311918] RDX: 0000000000000001 RSI: ffff8f717fff9280 RDI: ffff8f52872d0480
[ 3670.311919] RBP: ffffaab62b1e7918 R08: 0000000000000007 R09: ffff8f52872d08d0
[ 3670.311921] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3670.311922] R13: 0000000000000202 R14: ffff8f71803b2a40 R15: 0000000000000080
[ 3670.311923] FS:  00007f59c5ffb640(0000) GS:ffff8f71edbb6000(0000) knlGS:0000000000000000
[ 3670.311925] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3670.311926] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3670.311928] PKRU: 55555554
[ 3670.311929] Call Trace:
[ 3670.311930]  <TASK>
[ 3670.311932]  ? __pfx___wbinvd+0x10/0x10
[ 3670.311937]  on_each_cpu_cond_mask+0x28/0x50
[ 3670.311940]  wbinvd_on_all_cpus+0x29/0x40
[ 3670.311944]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3670.311953]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3670.312007]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3670.312062]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3670.312066]  change_protection+0xfc9/0x1200
[ 3670.312071]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.312074]  ? update_curr_dl_se+0x3b/0x1e0
[ 3670.312077]  ? dl_server_update+0x2e/0x40
[ 3670.312081]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.312085]  ? pick_next_task_fair+0x4f/0x490
[ 3670.312088]  change_prot_numa+0x5b/0xe0
[ 3670.312095]  task_numa_work+0x3c5/0x9b0
[ 3670.312103]  task_work_run+0x64/0xa0
[ 3670.312107]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3670.312111]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3670.312164]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3670.312215]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.312218]  ? do_futex+0xc8/0x1d0
[ 3670.312220]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.312223]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.312226]  __x64_sys_ioctl+0xa0/0xf0
[ 3670.312231]  x64_sys_call+0x122e/0x2150
[ 3670.312233]  do_syscall_64+0x56/0x1e0
[ 3670.312237]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3670.312239] RIP: 0033:0x7f67bff03b4b
[ 3670.312241] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3670.312243] RSP: 002b:00007f59c5ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3670.312245] RAX: ffffffffffffffda RBX: 0000563db6371720 RCX: 00007f67bff03b4b
[ 3670.312247] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000166
[ 3670.312248] RBP: 0000563db6371720 R08: 0000000000000000 R09: 0000000000000000
[ 3670.312249] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3670.312250] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3670.312255]  </TASK>
[ 3670.363840] watchdog: BUG: soft lockup - CPU#46 stuck for 23s! [qemu-system-x86:31353]
[ 3670.363847] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3670.363932] CPU: 46 UID: 0 PID: 31353 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3670.363937] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3670.363938] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3670.363940] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3670.363948] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3670.363950] RSP: 0018:ffffaab62b27f8b8 EFLAGS: 00000202
[ 3670.363952] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3670.363954] RDX: 0000000000000001 RSI: ffff8f717fff9580 RDI: ffff8f72066e3a60
[ 3670.363955] RBP: ffffaab62b27f918 R08: 0000000000000007 R09: ffff8f72066e3360
[ 3670.363957] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3670.363958] R13: 0000000000000202 R14: ffff8f917e3b2a40 R15: 0000000000000080
[ 3670.363960] FS:  00007f5966ffd640(0000) GS:ffff8f91ebbb6000(0000) knlGS:0000000000000000
[ 3670.363962] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3670.363963] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3670.363965] PKRU: 55555554
[ 3670.363966] Call Trace:
[ 3670.363968]  <TASK>
[ 3670.363972]  ? __pfx___wbinvd+0x10/0x10
[ 3670.363980]  on_each_cpu_cond_mask+0x28/0x50
[ 3670.363984]  wbinvd_on_all_cpus+0x29/0x40
[ 3670.363988]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3670.363998]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3670.364055]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3670.364112]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3670.364119]  change_protection+0xfc9/0x1200
[ 3670.364126]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.364130]  ? update_load_avg+0x84/0x780
[ 3670.364135]  ? write_ibpb+0x21/0x40
[ 3670.364140]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3670.364195]  change_prot_numa+0x5b/0xe0
[ 3670.364202]  task_numa_work+0x3c5/0x9b0
[ 3670.364210]  task_work_run+0x64/0xa0
[ 3670.364215]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3670.364221]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3670.364274]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3670.364327]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.364329]  ? do_futex+0xc8/0x1d0
[ 3670.364332]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.364334]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.364338]  __x64_sys_ioctl+0xa0/0xf0
[ 3670.364343]  x64_sys_call+0x122e/0x2150
[ 3670.364345]  do_syscall_64+0x56/0x1e0
[ 3670.364349]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3670.364351] RIP: 0033:0x7f67bff03b4b
[ 3670.364354] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3670.364356] RSP: 002b:00007f5966ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3670.364358] RAX: ffffffffffffffda RBX: 0000563db6431560 RCX: 00007f67bff03b4b
[ 3670.364360] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000018c
[ 3670.364361] RBP: 0000563db6431560 R08: 0000000000000000 R09: 0000000000000000
[ 3670.364362] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3670.364364] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3670.364369]  </TASK>
[ 3670.367840] watchdog: BUG: soft lockup - CPU#47 stuck for 23s! [qemu-system-x86:31257]
[ 3670.367844] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3670.367903] CPU: 47 UID: 0 PID: 31257 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3670.367907] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3670.367908] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3670.367909] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3670.367914] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3670.367916] RSP: 0018:ffffaab62ad038b8 EFLAGS: 00000202
[ 3670.367918] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3670.367919] RDX: 0000000000000001 RSI: ffff8f717fff95a0 RDI: ffff8f72066e36c0
[ 3670.367921] RBP: ffffaab62ad03918 R08: 0000000000000007 R09: ffff8f72066e3e10
[ 3670.367922] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3670.367923] R13: 0000000000000202 R14: ffff8f917e3f2a40 R15: 0000000000000080
[ 3670.367925] FS:  00007f5b25ffb640(0000) GS:ffff8f91ebbf6000(0000) knlGS:0000000000000000
[ 3670.367927] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3670.367928] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3670.367930] PKRU: 55555554
[ 3670.367931] Call Trace:
[ 3670.367932]  <TASK>
[ 3670.367934]  ? __pfx___wbinvd+0x10/0x10
[ 3670.367940]  on_each_cpu_cond_mask+0x28/0x50
[ 3670.367943]  wbinvd_on_all_cpus+0x29/0x40
[ 3670.367947]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3670.367956]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3670.368013]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3670.368069]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3670.368073]  change_protection+0xfc9/0x1200
[ 3670.368078]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.368082]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.368084]  ? update_load_avg+0x84/0x780
[ 3670.368088]  ? write_ibpb+0x21/0x40
[ 3670.368092]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3670.368146]  change_prot_numa+0x5b/0xe0
[ 3670.368153]  task_numa_work+0x3c5/0x9b0
[ 3670.368160]  task_work_run+0x64/0xa0
[ 3670.368164]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3670.368169]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3670.368222]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3670.368274]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.368276]  ? do_futex+0xc8/0x1d0
[ 3670.368278]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.368281]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.368284]  __x64_sys_ioctl+0xa0/0xf0
[ 3670.368289]  x64_sys_call+0x122e/0x2150
[ 3670.368291]  do_syscall_64+0x56/0x1e0
[ 3670.368295]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3670.368297] RIP: 0033:0x7f67bff03b4b
[ 3670.368299] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3670.368301] RSP: 002b:00007f5b25ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3670.368304] RAX: ffffffffffffffda RBX: 0000563db6063fa0 RCX: 00007f67bff03b4b
[ 3670.368305] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000cc
[ 3670.368306] RBP: 0000563db6063fa0 R08: 0000000000000000 R09: 0000000000000000
[ 3670.368307] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3670.368309] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3670.368314]  </TASK>
[ 3670.374603] watchdog: CPU92: Watchdog detected hard LOCKUP on cpu 92
[ 3670.374608] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3670.374705] CPU: 92 UID: 0 PID: 31377 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3670.374712] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3670.374713] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3670.374716] RIP: 0010:native_queued_spin_lock_slowpath+0x29a/0x2d0
[ 3670.374726] Code: c1 e9 12 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 <8b> 42 08 85 c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09
[ 3670.374731] RSP: 0018:ffffaab62b5bbc20 EFLAGS: 00000046
[ 3670.374734] RAX: 0000000000000000 RBX: ffff8f7180d32700 RCX: 0000000000000008
[ 3670.374737] RDX: ffff8f7180d32700 RSI: 0000000000240100 RDI: ffff8f7aeeeca68c
[ 3670.374738] RBP: ffffaab62b5bbc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3670.374740] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3670.374742] R13: 0000000001740000 R14: 0000000001740000 R15: 0000000000000071
[ 3670.374744] FS:  00007f59057fa640(0000) GS:ffff8f71ee536000(0000) knlGS:0000000000000000
[ 3670.374746] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3670.374748] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3670.374750] PKRU: 55555554
[ 3670.374752] Call Trace:
[ 3670.374754]  <TASK>
[ 3670.374760]  _raw_spin_lock_irqsave+0x46/0x60
[ 3670.374764]  yield_to+0x36/0x1b0
[ 3670.374772]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3670.374847]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3670.374921]  pause_interception+0x91/0x120 [kvm_amd]
[ 3670.374932]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3670.374948]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3670.374959]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3670.375038]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3670.375112]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.375118]  ? do_futex+0xc8/0x1d0
[ 3670.375123]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.375125]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.375129]  __x64_sys_ioctl+0xa0/0xf0
[ 3670.375136]  x64_sys_call+0x122e/0x2150
[ 3670.375139]  do_syscall_64+0x56/0x1e0
[ 3670.375144]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3670.375146] RIP: 0033:0x7f67bff03b4b
[ 3670.375151] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3670.375153] RSP: 002b:00007f59057f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3670.375158] RAX: ffffffffffffffda RBX: 0000563db6523dd0 RCX: 00007f67bff03b4b
[ 3670.375161] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001bc
[ 3670.375163] RBP: 0000563db6523dd0 R08: 0000000000000000 R09: 0000000000000000
[ 3670.375164] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3670.375166] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3670.375173]  </TASK>
[ 3670.379840] watchdog: BUG: soft lockup - CPU#52 stuck for 23s! [qemu-system-x86:31251]
[ 3670.379846] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3670.379932] CPU: 52 UID: 0 PID: 31251 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3670.379937] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3670.379939] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3670.379940] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3670.379948] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3670.379951] RSP: 0018:ffffaab62acd38b8 EFLAGS: 00000202
[ 3670.379953] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3670.379954] RDX: 0000000000000001 RSI: ffff8f717fff9640 RDI: ffff8f72000bacd0
[ 3670.379956] RBP: ffffaab62acd3918 R08: 0000000000000007 R09: ffff8f72000bab90
[ 3670.379957] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3670.379959] R13: 0000000000000202 R14: ffff8f917e532a40 R15: 0000000000000080
[ 3670.379960] FS:  00007f5b457fa640(0000) GS:ffff8f91ebd36000(0000) knlGS:0000000000000000
[ 3670.379962] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3670.379964] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3670.379965] PKRU: 55555554
[ 3670.379966] Call Trace:
[ 3670.379968]  <TASK>
[ 3670.379973]  ? __pfx___wbinvd+0x10/0x10
[ 3670.379980]  on_each_cpu_cond_mask+0x28/0x50
[ 3670.379984]  wbinvd_on_all_cpus+0x29/0x40
[ 3670.379988]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3670.379998]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3670.380054]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3670.380111]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3670.380117]  change_protection+0xfc9/0x1200
[ 3670.380123]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.380128]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.380130]  ? update_load_avg+0x84/0x780
[ 3670.380135]  ? write_ibpb+0x21/0x40
[ 3670.380140]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3670.380194]  change_prot_numa+0x5b/0xe0
[ 3670.380201]  task_numa_work+0x3c5/0x9b0
[ 3670.380208]  task_work_run+0x64/0xa0
[ 3670.380213]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3670.380219]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3670.380271]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3670.380323]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.380325]  ? do_futex+0xc8/0x1d0
[ 3670.380328]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.380330]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.380334]  __x64_sys_ioctl+0xa0/0xf0
[ 3670.380339]  x64_sys_call+0x122e/0x2150
[ 3670.380342]  do_syscall_64+0x56/0x1e0
[ 3670.380345]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3670.380347] RIP: 0033:0x7f67bff03b4b
[ 3670.380350] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3670.380352] RSP: 002b:00007f5b457f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3670.380354] RAX: ffffffffffffffda RBX: 0000563db6027ac0 RCX: 00007f67bff03b4b
[ 3670.380356] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000c0
[ 3670.380357] RBP: 0000563db6027ac0 R08: 0000000000000000 R09: 0000000000000000
[ 3670.380358] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3670.380359] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3670.380364]  </TASK>
[ 3670.391839] watchdog: BUG: soft lockup - CPU#58 stuck for 23s! [qemu-system-x86:31335]
[ 3670.391843] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3670.391920] CPU: 58 UID: 0 PID: 31335 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3670.391924] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3670.391925] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3670.391926] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3670.391931] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3670.391933] RSP: 0018:ffffaab62b1ef8b8 EFLAGS: 00000202
[ 3670.391935] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3670.391936] RDX: 0000000000000001 RSI: ffff8f717fff9700 RDI: ffff8f72000bacf0
[ 3670.391937] RBP: ffffaab62b1ef918 R08: 0000000000000007 R09: ffff8f72000ba6e0
[ 3670.391939] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3670.391940] R13: 0000000000000202 R14: ffff8f917e6b2a40 R15: 0000000000000080
[ 3670.391942] FS:  00007f59c57fa640(0000) GS:ffff8f91ebeb6000(0000) knlGS:0000000000000000
[ 3670.391944] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3670.391945] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3670.391947] PKRU: 55555554
[ 3670.391947] Call Trace:
[ 3670.391949]  <TASK>
[ 3670.391952]  ? __pfx___wbinvd+0x10/0x10
[ 3670.391959]  on_each_cpu_cond_mask+0x28/0x50
[ 3670.391962]  wbinvd_on_all_cpus+0x29/0x40
[ 3670.391967]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3670.391976]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3670.392033]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3670.392090]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3670.392096]  change_protection+0xfc9/0x1200
[ 3670.392102]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.392105]  ? update_curr_dl_se+0x3b/0x1e0
[ 3670.392110]  ? dl_server_update+0x2e/0x40
[ 3670.392114]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.392117]  ? pick_next_task_fair+0x4f/0x490
[ 3670.392121]  change_prot_numa+0x5b/0xe0
[ 3670.392129]  task_numa_work+0x3c5/0x9b0
[ 3670.392136]  task_work_run+0x64/0xa0
[ 3670.392141]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3670.392146]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3670.392200]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3670.392253]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.392255]  ? do_futex+0xc8/0x1d0
[ 3670.392257]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.392260]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.392263]  __x64_sys_ioctl+0xa0/0xf0
[ 3670.392268]  x64_sys_call+0x122e/0x2150
[ 3670.392270]  do_syscall_64+0x56/0x1e0
[ 3670.392274]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3670.392276] RIP: 0033:0x7f67bff03b4b
[ 3670.392279] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3670.392280] RSP: 002b:00007f59c57f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3670.392282] RAX: ffffffffffffffda RBX: 0000563db637b6d0 RCX: 00007f67bff03b4b
[ 3670.392284] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000168
[ 3670.392285] RBP: 0000563db637b6d0 R08: 0000000000000000 R09: 0000000000000000
[ 3670.392286] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3670.392287] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3670.392293]  </TASK>
[ 3670.395839] watchdog: BUG: soft lockup - CPU#59 stuck for 23s! [qemu-system-x86:31330]
[ 3670.395842] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3670.395902] CPU: 59 UID: 0 PID: 31330 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3670.395906] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3670.395906] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3670.395908] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3670.395911] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3670.395913] RSP: 0018:ffffaab62b06b8b8 EFLAGS: 00000202
[ 3670.395915] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3670.395916] RDX: 0000000000000001 RSI: ffff8f717fff9720 RDI: ffff8f72000ba770
[ 3670.395918] RBP: ffffaab62b06b918 R08: 0000000000000007 R09: ffff8f72000baa50
[ 3670.395919] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3670.395920] R13: 0000000000000202 R14: ffff8f917e6f2a40 R15: 0000000000000080
[ 3670.395921] FS:  00007f59c7fff640(0000) GS:ffff8f91ebef6000(0000) knlGS:0000000000000000
[ 3670.395923] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3670.395925] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3670.395926] PKRU: 55555554
[ 3670.395927] Call Trace:
[ 3670.395928]  <TASK>
[ 3670.395930]  ? __pfx___wbinvd+0x10/0x10
[ 3670.395935]  on_each_cpu_cond_mask+0x28/0x50
[ 3670.395938]  wbinvd_on_all_cpus+0x29/0x40
[ 3670.395942]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3670.395950]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3670.396005]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3670.396061]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3670.396065]  change_protection+0xfc9/0x1200
[ 3670.396070]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.396073]  ? update_curr_dl_se+0x3b/0x1e0
[ 3670.396077]  ? dl_server_update+0x2e/0x40
[ 3670.396081]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.396084]  ? pick_next_task_fair+0x4f/0x490
[ 3670.396088]  change_prot_numa+0x5b/0xe0
[ 3670.396094]  task_numa_work+0x3c5/0x9b0
[ 3670.396102]  task_work_run+0x64/0xa0
[ 3670.396106]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3670.396110]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3670.396164]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3670.396216]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.396219]  ? do_futex+0xc8/0x1d0
[ 3670.396221]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.396223]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.396227]  __x64_sys_ioctl+0xa0/0xf0
[ 3670.396232]  x64_sys_call+0x122e/0x2150
[ 3670.396234]  do_syscall_64+0x56/0x1e0
[ 3670.396238]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3670.396240] RIP: 0033:0x7f67bff03b4b
[ 3670.396242] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3670.396244] RSP: 002b:00007f59c7ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3670.396246] RAX: ffffffffffffffda RBX: 0000563db6348c80 RCX: 00007f67bff03b4b
[ 3670.396247] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000015e
[ 3670.396248] RBP: 0000563db6348c80 R08: 0000000000000000 R09: 0000000000000000
[ 3670.396250] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3670.396251] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3670.396256]  </TASK>
[ 3670.443838] watchdog: BUG: soft lockup - CPU#70 stuck for 22s! [qemu-system-x86:31275]
[ 3670.443841] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3670.443906] CPU: 70 UID: 0 PID: 31275 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3670.443910] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3670.443911] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3670.443912] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3670.443916] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3670.443918] RSP: 0018:ffffaab62ade78b8 EFLAGS: 00000202
[ 3670.443920] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3670.443922] RDX: 0000000000000001 RSI: ffff8f717fff9880 RDI: ffff8f5287658fd0
[ 3670.443923] RBP: ffffaab62ade7918 R08: 0000000000000007 R09: ffff8f5287658700
[ 3670.443925] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3670.443926] R13: 0000000000000202 R14: ffff8f71807b2a40 R15: 0000000000000080
[ 3670.443928] FS:  00007f5ac77fe640(0000) GS:ffff8f71edfb6000(0000) knlGS:0000000000000000
[ 3670.443929] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3670.443931] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3670.443933] PKRU: 55555554
[ 3670.443934] Call Trace:
[ 3670.443935]  <TASK>
[ 3670.443937]  ? __pfx___wbinvd+0x10/0x10
[ 3670.443942]  on_each_cpu_cond_mask+0x28/0x50
[ 3670.443945]  wbinvd_on_all_cpus+0x29/0x40
[ 3670.443949]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3670.443958]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3670.444011]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3670.444066]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3670.444071]  change_protection+0xfc9/0x1200
[ 3670.444078]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.444080]  ? update_load_avg+0x84/0x780
[ 3670.444085]  ? write_ibpb+0x21/0x40
[ 3670.444088]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3670.444142]  change_prot_numa+0x5b/0xe0
[ 3670.444149]  task_numa_work+0x3c5/0x9b0
[ 3670.444156]  task_work_run+0x64/0xa0
[ 3670.444160]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3670.444164]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3670.444217]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3670.444269]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.444271]  ? do_futex+0xc8/0x1d0
[ 3670.444274]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.444276]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.444279]  __x64_sys_ioctl+0xa0/0xf0
[ 3670.444284]  x64_sys_call+0x122e/0x2150
[ 3670.444286]  do_syscall_64+0x56/0x1e0
[ 3670.444290]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3670.444292] RIP: 0033:0x7f67bff03b4b
[ 3670.444294] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3670.444296] RSP: 002b:00007f5ac77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3670.444298] RAX: ffffffffffffffda RBX: 0000563db611a960 RCX: 00007f67bff03b4b
[ 3670.444299] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000f0
[ 3670.444300] RBP: 0000563db611a960 R08: 0000000000000000 R09: 0000000000000000
[ 3670.444301] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3670.444303] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3670.444308]  </TASK>
[ 3670.444309] watchdog: BUG: soft lockup - CPU#69 stuck for 22s! [qemu-system-x86:31238]
[ 3670.444312] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3670.444370] CPU: 69 UID: 0 PID: 31238 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3670.444374] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3670.444375] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3670.444376] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3670.444379] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3670.444381] RSP: 0018:ffffaab62ac6b8b8 EFLAGS: 00000202
[ 3670.444383] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3670.444384] RDX: 0000000000000001 RSI: ffff8f717fff9860 RDI: ffff8f52876583e0
[ 3670.444386] RBP: ffffaab62ac6b918 R08: 0000000000000007 R09: ffff8f52876585e0
[ 3670.444387] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3670.444388] R13: 0000000000000202 R14: ffff8f7180772a40 R15: 0000000000000080
[ 3670.444390] FS:  00007f5b84ff9640(0000) GS:ffff8f71edf76000(0000) knlGS:0000000000000000
[ 3670.444391] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3670.444393] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3670.444394] PKRU: 55555554
[ 3670.444395] Call Trace:
[ 3670.444396]  <TASK>
[ 3670.444398]  ? __pfx___wbinvd+0x10/0x10
[ 3670.444403]  on_each_cpu_cond_mask+0x28/0x50
[ 3670.444406]  wbinvd_on_all_cpus+0x29/0x40
[ 3670.444410]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3670.444418]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3670.444470]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3670.444525]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3670.444529]  change_protection+0xfc9/0x1200
[ 3670.444534]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.444537]  ? asm_sysvec_apic_timer_interrupt+0x1f/0x30
[ 3670.444542]  ? write_ibpb+0x21/0x40
[ 3670.444545]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3670.444597]  change_prot_numa+0x5b/0xe0
[ 3670.444604]  task_numa_work+0x3c5/0x9b0
[ 3670.444612]  task_work_run+0x64/0xa0
[ 3670.444616]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3670.444620]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3670.444672]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3670.444724]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.444726]  ? do_futex+0xc8/0x1d0
[ 3670.444728]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.444731]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.444734]  __x64_sys_ioctl+0xa0/0xf0
[ 3670.444739]  x64_sys_call+0x122e/0x2150
[ 3670.444741]  do_syscall_64+0x56/0x1e0
[ 3670.444744]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3670.444746] RIP: 0033:0x7f67bff03b4b
[ 3670.444748] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3670.444750] RSP: 002b:00007f5b84ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3670.444752] RAX: ffffffffffffffda RBX: 0000563db5fa4ac0 RCX: 00007f67bff03b4b
[ 3670.444753] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000a6
[ 3670.444755] RBP: 0000563db5fa4ac0 R08: 0000000000000000 R09: 0000000000000000
[ 3670.444756] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3670.444757] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3670.444762]  </TASK>
[ 3670.447838] watchdog: BUG: soft lockup - CPU#72 stuck for 22s! [qemu-system-x86:31298]
[ 3670.447841] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3670.447906] CPU: 72 UID: 0 PID: 31298 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3670.447910] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3670.447911] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3670.447913] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3670.447916] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3670.447918] RSP: 0018:ffffaab62af378b8 EFLAGS: 00000202
[ 3670.447920] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3670.447922] RDX: 0000000000000001 RSI: ffff8f717fff98c0 RDI: ffff8f5287658550
[ 3670.447923] RBP: ffffaab62af37918 R08: 0000000000000007 R09: ffff8f5287658ca0
[ 3670.447924] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3670.447926] R13: 0000000000000202 R14: ffff8f7180832a40 R15: 0000000000000080
[ 3670.447927] FS:  00007f5a667fc640(0000) GS:ffff8f71ee036000(0000) knlGS:0000000000000000
[ 3670.447929] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3670.447931] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3670.447932] PKRU: 55555554
[ 3670.447933] Call Trace:
[ 3670.447934]  <TASK>
[ 3670.447936]  ? __pfx___wbinvd+0x10/0x10
[ 3670.447942]  on_each_cpu_cond_mask+0x28/0x50
[ 3670.447945]  wbinvd_on_all_cpus+0x29/0x40
[ 3670.447949]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3670.447957]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3670.448011]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3670.448067]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3670.448071]  change_protection+0xfc9/0x1200
[ 3670.448076]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.448080]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.448082]  ? update_load_avg+0x84/0x780
[ 3670.448086]  ? write_ibpb+0x21/0x40
[ 3670.448090]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3670.448144]  change_prot_numa+0x5b/0xe0
[ 3670.448151]  task_numa_work+0x3c5/0x9b0
[ 3670.448158]  task_work_run+0x64/0xa0
[ 3670.448162]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3670.448166]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3670.448219]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3670.448271]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.448273]  ? do_futex+0xc8/0x1d0
[ 3670.448276]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.448278]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.448282]  __x64_sys_ioctl+0xa0/0xf0
[ 3670.448286]  x64_sys_call+0x122e/0x2150
[ 3670.448288]  do_syscall_64+0x56/0x1e0
[ 3670.448292]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3670.448294] RIP: 0033:0x7f67bff03b4b
[ 3670.448296] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3670.448298] RSP: 002b:00007f5a667fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3670.448300] RAX: ffffffffffffffda RBX: 0000563db62051d0 RCX: 00007f67bff03b4b
[ 3670.448301] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000011e
[ 3670.448303] RBP: 0000563db62051d0 R08: 0000000000000000 R09: 0000000000000000
[ 3670.448304] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3670.448305] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3670.448310]  </TASK>
[ 3670.451838] watchdog: BUG: soft lockup - CPU#74 stuck for 22s! [qemu-system-x86:31394]
[ 3670.451842] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3670.451901] CPU: 74 UID: 0 PID: 31394 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3670.451905] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3670.451906] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3670.451908] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3670.451912] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3670.451914] RSP: 0018:ffffaab62c1ab8b8 EFLAGS: 00000202
[ 3670.451916] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3670.451918] RDX: 0000000000000001 RSI: ffff8f717fff9900 RDI: ffff8f5287658a20
[ 3670.451919] RBP: ffffaab62c1ab918 R08: 0000000000000007 R09: ffff8f5287658a30
[ 3670.451920] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3670.451921] R13: 0000000000000202 R14: ffff8f71808b2a40 R15: 0000000000000080
[ 3670.451923] FS:  00007f58a77fe640(0000) GS:ffff8f71ee0b6000(0000) knlGS:0000000000000000
[ 3670.451925] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3670.451926] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3670.451928] PKRU: 55555554
[ 3670.451929] Call Trace:
[ 3670.451930]  <TASK>
[ 3670.451932]  ? __pfx___wbinvd+0x10/0x10
[ 3670.451938]  on_each_cpu_cond_mask+0x28/0x50
[ 3670.451941]  wbinvd_on_all_cpus+0x29/0x40
[ 3670.451945]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3670.451954]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3670.452011]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3670.452067]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3670.452071]  change_protection+0xfc9/0x1200
[ 3670.452076]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.452080]  ? pick_eevdf+0x7c/0x1a0
[ 3670.452084]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.452088]  ? pick_next_task_fair+0x4f/0x490
[ 3670.452091]  change_prot_numa+0x5b/0xe0
[ 3670.452096]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.452098]  ? update_load_avg+0x84/0x780
[ 3670.452101]  ? __dequeue_entity+0x3cd/0x4a0
[ 3670.452105]  task_numa_work+0x3c5/0x9b0
[ 3670.452112]  task_work_run+0x64/0xa0
[ 3670.452116]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3670.452120]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3670.452174]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3670.452226]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.452228]  ? do_futex+0xc8/0x1d0
[ 3670.452231]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.452233]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.452237]  __x64_sys_ioctl+0xa0/0xf0
[ 3670.452241]  x64_sys_call+0x122e/0x2150
[ 3670.452244]  do_syscall_64+0x56/0x1e0
[ 3670.452248]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3670.452250] RIP: 0033:0x7f67bff03b4b
[ 3670.452252] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3670.452254] RSP: 002b:00007f58a77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3670.452256] RAX: ffffffffffffffda RBX: 0000563db65cf480 RCX: 00007f67bff03b4b
[ 3670.452258] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001de
[ 3670.452259] RBP: 0000563db65cf480 R08: 0000000000000000 R09: 0000000000000000
[ 3670.452260] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3670.452262] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3670.452267]  </TASK>
[ 3670.475838] watchdog: BUG: soft lockup - CPU#84 stuck for 22s! [qemu-system-x86:31416]
[ 3670.475842] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3670.475907] CPU: 84 UID: 0 PID: 31416 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3670.475912] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3670.475913] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3670.475914] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3670.475919] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3670.475921] RSP: 0018:ffffaab62b6078b8 EFLAGS: 00000202
[ 3670.475923] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3670.475925] RDX: 0000000000000001 RSI: ffff8f717fff9a40 RDI: ffff8f52889c6360
[ 3670.475926] RBP: ffffaab62b607918 R08: 0000000000000007 R09: ffff8f52889c68c0
[ 3670.475928] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3670.475929] R13: 0000000000000202 R14: ffff8f7180b32a40 R15: 0000000000000080
[ 3670.475931] FS:  00007f5846ffd640(0000) GS:ffff8f71ee336000(0000) knlGS:0000000000000000
[ 3670.475933] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3670.475935] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3670.475937] PKRU: 55555554
[ 3670.475938] Call Trace:
[ 3670.475939]  <TASK>
[ 3670.475941]  ? __pfx___wbinvd+0x10/0x10
[ 3670.475946]  on_each_cpu_cond_mask+0x28/0x50
[ 3670.475949]  wbinvd_on_all_cpus+0x29/0x40
[ 3670.475953]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3670.475962]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3670.476016]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3670.476071]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3670.476076]  change_protection+0xfc9/0x1200
[ 3670.476081]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.476084]  ? update_curr_dl_se+0x3b/0x1e0
[ 3670.476087]  ? dl_server_update+0x2e/0x40
[ 3670.476091]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.476095]  ? pick_next_task_fair+0x4f/0x490
[ 3670.476099]  change_prot_numa+0x5b/0xe0
[ 3670.476103]  ? sched_clock_cpu+0x14/0x1a0
[ 3670.476108]  task_numa_work+0x3c5/0x9b0
[ 3670.476116]  task_work_run+0x64/0xa0
[ 3670.476120]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3670.476124]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3670.476177]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3670.476228]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.476231]  ? do_futex+0xc8/0x1d0
[ 3670.476233]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.476236]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.476240]  __x64_sys_ioctl+0xa0/0xf0
[ 3670.476244]  x64_sys_call+0x122e/0x2150
[ 3670.476246]  do_syscall_64+0x56/0x1e0
[ 3670.476250]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3670.476252] RIP: 0033:0x7f67bff03b4b
[ 3670.476255] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3670.476256] RSP: 002b:00007f5846ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3670.476259] RAX: ffffffffffffffda RBX: 0000563db66aed00 RCX: 00007f67bff03b4b
[ 3670.476260] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000020a
[ 3670.476261] RBP: 0000563db66aed00 R08: 0000000000000000 R09: 0000000000000000
[ 3670.476262] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3670.476264] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3670.476269]  </TASK>
[ 3670.499838] watchdog: BUG: soft lockup - CPU#95 stuck for 22s! [qemu-system-x86:31343]
[ 3670.499844] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3670.499915] CPU: 95 UID: 0 PID: 31343 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3670.499921] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3670.499922] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3670.499924] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3670.499930] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3670.499933] RSP: 0018:ffffaab62b22f8b8 EFLAGS: 00000202
[ 3670.499939] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3670.499941] RDX: 0000000000000001 RSI: ffff8f717fff9ba0 RDI: ffff8f52889c6900
[ 3670.499943] RBP: ffffaab62b22f918 R08: 0000000000000007 R09: ffff8f52889c6960
[ 3670.499944] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3670.499946] R13: 0000000000000202 R14: ffff8f7180df2a40 R15: 0000000000000080
[ 3670.499948] FS:  00007f59a4ff9640(0000) GS:ffff8f71ee5f6000(0000) knlGS:0000000000000000
[ 3670.499950] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3670.499952] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3670.499954] PKRU: 55555554
[ 3670.499955] Call Trace:
[ 3670.499957]  <TASK>
[ 3670.499959]  ? __pfx___wbinvd+0x10/0x10
[ 3670.499968]  on_each_cpu_cond_mask+0x28/0x50
[ 3670.499972]  wbinvd_on_all_cpus+0x29/0x40
[ 3670.499976]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3670.499988]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3670.500071]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3670.500156]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3670.500163]  change_protection+0xfc9/0x1200
[ 3670.500170]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.500174]  ? pick_eevdf+0x7c/0x1a0
[ 3670.500180]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.500184]  ? pick_next_task_fair+0x4f/0x490
[ 3670.500187]  change_prot_numa+0x5b/0xe0
[ 3670.500193]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.500196]  ? dl_server_update+0x2e/0x40
[ 3670.500200]  ? update_curr+0x1d2/0x250
[ 3670.500205]  task_numa_work+0x3c5/0x9b0
[ 3670.500214]  task_work_run+0x64/0xa0
[ 3670.500221]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3670.500230]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3670.500305]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3670.500380]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.500384]  ? do_futex+0xc8/0x1d0
[ 3670.500386]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.500389]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.500393]  __x64_sys_ioctl+0xa0/0xf0
[ 3670.500398]  x64_sys_call+0x122e/0x2150
[ 3670.500400]  do_syscall_64+0x56/0x1e0
[ 3670.500405]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3670.500407] RIP: 0033:0x7f67bff03b4b
[ 3670.500410] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3670.500412] RSP: 002b:00007f59a4ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3670.500415] RAX: ffffffffffffffda RBX: 0000563db63cc4a0 RCX: 00007f67bff03b4b
[ 3670.500417] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000178
[ 3670.500418] RBP: 0000563db63cc4a0 R08: 0000000000000000 R09: 0000000000000000
[ 3670.500420] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3670.500421] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3670.500428]  </TASK>
[ 3670.507838] watchdog: BUG: soft lockup - CPU#98 stuck for 26s! [qemu-system-x86:31373]
[ 3670.507843] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3670.507917] CPU: 98 UID: 0 PID: 31373 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3670.507922] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3670.507923] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3670.507925] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3670.507930] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3670.507932] RSP: 0018:ffffaab6274978b8 EFLAGS: 00000202
[ 3670.507933] RAX: 0000000000000055 RBX: 0000000000000001 RCX: 0000000000000011
[ 3670.507935] RDX: 0000000000000001 RSI: ffff8f7180b79c00 RDI: ffff8f7206c6a630
[ 3670.507936] RBP: ffffaab627497918 R08: 0000000000000055 R09: ffff8f7206c6add0
[ 3670.507938] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3670.507939] R13: 0000000000000202 R14: ffff8f917e8b2a40 R15: 0000000000000080
[ 3670.507940] FS:  00007f59077fe640(0000) GS:ffff8f91ec0b6000(0000) knlGS:0000000000000000
[ 3670.507942] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3670.507943] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3670.507945] PKRU: 55555554
[ 3670.507946] Call Trace:
[ 3670.507947]  <TASK>
[ 3670.507950]  ? __pfx___wbinvd+0x10/0x10
[ 3670.507958]  on_each_cpu_cond_mask+0x28/0x50
[ 3670.507961]  wbinvd_on_all_cpus+0x29/0x40
[ 3670.507965]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3670.507975]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3670.508031]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3670.508087]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3670.508093]  change_protection+0xfc9/0x1200
[ 3670.508100]  ? update_cfs_group+0xb0/0xc0
[ 3670.508106]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.508110]  ? pick_next_task_fair+0x4f/0x490
[ 3670.508113]  change_prot_numa+0x5b/0xe0
[ 3670.508118]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3670.508124]  task_numa_work+0x3c5/0x9b0
[ 3670.508132]  task_work_run+0x64/0xa0
[ 3670.508137]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3670.508142]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3670.508195]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3670.508247]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.508249]  ? do_futex+0xc8/0x1d0
[ 3670.508251]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.508254]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.508257]  __x64_sys_ioctl+0xa0/0xf0
[ 3670.508262]  x64_sys_call+0x122e/0x2150
[ 3670.508264]  do_syscall_64+0x56/0x1e0
[ 3670.508268]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3670.508270] RIP: 0033:0x7f67bff03b4b
[ 3670.508273] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3670.508275] RSP: 002b:00007f59077fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3670.508277] RAX: ffffffffffffffda RBX: 0000563db64fb700 RCX: 00007f67bff03b4b
[ 3670.508278] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001b4
[ 3670.508279] RBP: 0000563db64fb700 R08: 0000000000000000 R09: 0000000000000000
[ 3670.508280] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3670.508282] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3670.508287]  </TASK>
[ 3670.547837] watchdog: BUG: soft lockup - CPU#115 stuck for 22s! [qemu-system-x86:31385]
[ 3670.547841] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3670.547903] CPU: 115 UID: 0 PID: 31385 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3670.547908] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3670.547909] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3670.547910] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3670.547916] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3670.547918] RSP: 0018:ffffaab62c2078b8 EFLAGS: 00000202
[ 3670.547920] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3670.547922] RDX: 0000000000000001 RSI: ffff8f717fff9e20 RDI: ffff8f72000ba950
[ 3670.547923] RBP: ffffaab62c207918 R08: 0000000000000007 R09: ffff8f72000ba010
[ 3670.547925] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3670.547926] R13: 0000000000000202 R14: ffff8f917ecf2a40 R15: 0000000000000080
[ 3670.547928] FS:  00007f58e4ff9640(0000) GS:ffff8f91ec4f6000(0000) knlGS:0000000000000000
[ 3670.547930] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3670.547931] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3670.547933] PKRU: 55555554
[ 3670.547934] Call Trace:
[ 3670.547935]  <TASK>
[ 3670.547938]  ? __pfx___wbinvd+0x10/0x10
[ 3670.547943]  on_each_cpu_cond_mask+0x28/0x50
[ 3670.547946]  wbinvd_on_all_cpus+0x29/0x40
[ 3670.547950]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3670.547960]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3670.548018]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3670.548075]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3670.548079]  change_protection+0xfc9/0x1200
[ 3670.548085]  ? update_cfs_group+0xb0/0xc0
[ 3670.548090]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.548094]  ? pick_next_task_fair+0x4f/0x490
[ 3670.548098]  change_prot_numa+0x5b/0xe0
[ 3670.548102]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.548105]  ? update_load_avg+0x84/0x780
[ 3670.548107]  ? __dequeue_entity+0x3cd/0x4a0
[ 3670.548112]  task_numa_work+0x3c5/0x9b0
[ 3670.548119]  task_work_run+0x64/0xa0
[ 3670.548123]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3670.548128]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3670.548182]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3670.548236]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.548238]  ? do_futex+0xc8/0x1d0
[ 3670.548240]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.548243]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.548246]  __x64_sys_ioctl+0xa0/0xf0
[ 3670.548251]  x64_sys_call+0x122e/0x2150
[ 3670.548253]  do_syscall_64+0x56/0x1e0
[ 3670.548258]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3670.548260] RIP: 0033:0x7f67bff03b4b
[ 3670.548263] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3670.548265] RSP: 002b:00007f58e4ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3670.548267] RAX: ffffffffffffffda RBX: 0000563db6574780 RCX: 00007f67bff03b4b
[ 3670.548268] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001cc
[ 3670.548270] RBP: 0000563db6574780 R08: 0000000000000000 R09: 0000000000000000
[ 3670.548271] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3670.548272] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3670.548277]  </TASK>
[ 3670.559836] watchdog: BUG: soft lockup - CPU#121 stuck for 22s! [qemu-system-x86:31230]
[ 3670.559841] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3670.559902] CPU: 121 UID: 0 PID: 31230 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3670.559907] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3670.559908] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3670.559909] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3670.559914] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3670.559916] RSP: 0018:ffffaab62abbb8b8 EFLAGS: 00000202
[ 3670.559918] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3670.559919] RDX: 0000000000000001 RSI: ffff8f717fff9ee0 RDI: ffff8f7207fa2f60
[ 3670.559921] RBP: ffffaab62abbb918 R08: 0000000000000007 R09: ffff8f7207fa2ab0
[ 3670.559922] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3670.559924] R13: 0000000000000202 R14: ffff8f917ee72a40 R15: 0000000000000080
[ 3670.559926] FS:  00007f5ba57fa640(0000) GS:ffff8f91ec676000(0000) knlGS:0000000000000000
[ 3670.559927] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3670.559929] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3670.559931] PKRU: 55555554
[ 3670.559932] Call Trace:
[ 3670.559933]  <TASK>
[ 3670.559935]  ? __pfx___wbinvd+0x10/0x10
[ 3670.559940]  on_each_cpu_cond_mask+0x28/0x50
[ 3670.559943]  wbinvd_on_all_cpus+0x29/0x40
[ 3670.559947]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3670.559956]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3670.560011]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3670.560067]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3670.560071]  change_protection+0xfc9/0x1200
[ 3670.560078]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.560081]  ? update_load_avg+0x84/0x780
[ 3670.560085]  ? write_ibpb+0x21/0x40
[ 3670.560089]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3670.560143]  change_prot_numa+0x5b/0xe0
[ 3670.560150]  task_numa_work+0x3c5/0x9b0
[ 3670.560158]  task_work_run+0x64/0xa0
[ 3670.560162]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3670.560166]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3670.560220]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3670.560273]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.560275]  ? do_futex+0xc8/0x1d0
[ 3670.560277]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.560280]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3670.560283]  __x64_sys_ioctl+0xa0/0xf0
[ 3670.560288]  x64_sys_call+0x122e/0x2150
[ 3670.560290]  do_syscall_64+0x56/0x1e0
[ 3670.560294]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3670.560296] RIP: 0033:0x7f67bff03b4b
[ 3670.560298] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3670.560300] RSP: 002b:00007f5ba57f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3670.560302] RAX: ffffffffffffffda RBX: 0000563db5f53b20 RCX: 00007f67bff03b4b
[ 3670.560303] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000096
[ 3670.560304] RBP: 0000563db5f53b20 R08: 0000000000000000 R09: 0000000000000000
[ 3670.560306] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3670.560307] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3670.560312]  </TASK>
[ 3671.124117] watchdog: CPU10: Watchdog detected hard LOCKUP on cpu 10
[ 3671.124123] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3671.124190] CPU: 10 UID: 0 PID: 31234 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3671.124195] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3671.124196] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3671.124198] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3671.124206] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3671.124208] RSP: 0018:ffffaab62ac43c20 EFLAGS: 00000046
[ 3671.124210] RAX: 0000000000000000 RBX: ffff8f71800b2700 RCX: 0000000000000065
[ 3671.124211] RDX: ffff8f71800b2700 RSI: 0000000001980100 RDI: ffff8f7aeeeca68c
[ 3671.124213] RBP: ffffaab62ac43c40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3671.124214] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3671.124216] R13: 00000000002c0000 R14: 00000000002c0000 R15: 0000000000000044
[ 3671.124217] FS:  00007f5b86ffd640(0000) GS:ffff8f71ed8b6000(0000) knlGS:0000000000000000
[ 3671.124219] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3671.124221] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3671.124222] PKRU: 55555554
[ 3671.124223] Call Trace:
[ 3671.124225]  <TASK>
[ 3671.124229]  _raw_spin_lock_irqsave+0x46/0x60
[ 3671.124233]  yield_to+0x36/0x1b0
[ 3671.124239]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3671.124293]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3671.124346]  pause_interception+0x91/0x120 [kvm_amd]
[ 3671.124355]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3671.124363]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3671.124371]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3671.124426]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3671.124479]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3671.124483]  ? do_futex+0xc8/0x1d0
[ 3671.124487]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3671.124489]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3671.124493]  __x64_sys_ioctl+0xa0/0xf0
[ 3671.124500]  x64_sys_call+0x122e/0x2150
[ 3671.124502]  do_syscall_64+0x56/0x1e0
[ 3671.124506]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3671.124508] RIP: 0033:0x7f67bff03b4b
[ 3671.124511] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3671.124513] RSP: 002b:00007f5b86ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3671.124515] RAX: ffffffffffffffda RBX: 0000563db5f7c430 RCX: 00007f67bff03b4b
[ 3671.124516] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000009e
[ 3671.124518] RBP: 0000563db5f7c430 R08: 0000000000000000 R09: 0000000000000000
[ 3671.124519] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3671.124520] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3671.124525]  </TASK>
[ 3671.236179] watchdog: CPU89: Watchdog detected hard LOCKUP on cpu 89
[ 3671.236183] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3671.236250] CPU: 89 UID: 0 PID: 31309 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3671.236256] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3671.236257] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3671.236259] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3671.236267] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3671.236269] RSP: 0018:ffffaab62af8fc20 EFLAGS: 00000046
[ 3671.236271] RAX: 0000000000000000 RBX: ffff8f7180c72700 RCX: 0000000000000036
[ 3671.236273] RDX: ffff8f7180c72700 RSI: 0000000000dc0100 RDI: ffff8f7aeeeca68c
[ 3671.236275] RBP: ffffaab62af8fc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3671.236276] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3671.236278] R13: 0000000001680000 R14: 0000000001680000 R15: 0000000000000065
[ 3671.236280] FS:  00007f5a27fff640(0000) GS:ffff8f71ee476000(0000) knlGS:0000000000000000
[ 3671.236282] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3671.236283] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3671.236285] PKRU: 55555554
[ 3671.236286] Call Trace:
[ 3671.236288]  <TASK>
[ 3671.236291]  _raw_spin_lock_irqsave+0x46/0x60
[ 3671.236296]  yield_to+0x36/0x1b0
[ 3671.236302]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3671.236355]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3671.236407]  pause_interception+0x91/0x120 [kvm_amd]
[ 3671.236415]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3671.236423]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3671.236431]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3671.236486]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3671.236538]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3671.236542]  ? do_futex+0xc8/0x1d0
[ 3671.236546]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3671.236549]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3671.236552]  __x64_sys_ioctl+0xa0/0xf0
[ 3671.236559]  x64_sys_call+0x122e/0x2150
[ 3671.236562]  do_syscall_64+0x56/0x1e0
[ 3671.236566]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3671.236568] RIP: 0033:0x7f67bff03b4b
[ 3671.236571] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3671.236572] RSP: 002b:00007f5a27ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3671.236574] RAX: ffffffffffffffda RBX: 0000563db62746c0 RCX: 00007f67bff03b4b
[ 3671.236576] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000134
[ 3671.236577] RBP: 0000563db62746c0 R08: 0000000000000000 R09: 0000000000000000
[ 3671.236578] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3671.236579] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3671.236585]  </TASK>
[ 3671.521636] watchdog: CPU101: Watchdog detected hard LOCKUP on cpu 101
[ 3671.521640] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3671.521708] CPU: 101 UID: 0 PID: 31413 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3671.521713] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3671.521714] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3671.521716] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3671.521723] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3671.521725] RSP: 0018:ffffaab62b5dbc20 EFLAGS: 00000046
[ 3671.521727] RAX: 0000000000000000 RBX: ffff8f917e972700 RCX: 000000000000003e
[ 3671.521728] RDX: ffff8f917e972700 RSI: 0000000000fc0100 RDI: ffff8f7aeeeca68c
[ 3671.521730] RBP: ffffaab62b5dbc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3671.521731] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3671.521732] R13: 0000000001980000 R14: 0000000001980000 R15: 0000000000000058
[ 3671.521734] FS:  00007f5864ff9640(0000) GS:ffff8f91ec176000(0000) knlGS:0000000000000000
[ 3671.521735] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3671.521737] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3671.521738] PKRU: 55555554
[ 3671.521739] Call Trace:
[ 3671.521741]  <TASK>
[ 3671.521744]  _raw_spin_lock_irqsave+0x46/0x60
[ 3671.521748]  yield_to+0x36/0x1b0
[ 3671.521754]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3671.521807]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3671.521860]  pause_interception+0x91/0x120 [kvm_amd]
[ 3671.521869]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3671.521876]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3671.521885]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3671.521941]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3671.521993]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3671.521997]  ? do_futex+0xc8/0x1d0
[ 3671.522001]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3671.522003]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3671.522007]  __x64_sys_ioctl+0xa0/0xf0
[ 3671.522013]  x64_sys_call+0x122e/0x2150
[ 3671.522015]  do_syscall_64+0x56/0x1e0
[ 3671.522020]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3671.522022] RIP: 0033:0x7f67bff03b4b
[ 3671.522024] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3671.522026] RSP: 002b:00007f5864ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3671.522028] RAX: ffffffffffffffda RBX: 0000563db6690e30 RCX: 00007f67bff03b4b
[ 3671.522030] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000204
[ 3671.522031] RBP: 0000563db6690e30 R08: 0000000000000000 R09: 0000000000000000
[ 3671.522032] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3671.522033] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3671.522039]  </TASK>
[ 3671.642527] watchdog: CPU56: Watchdog detected hard LOCKUP on cpu 56
[ 3671.642532] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3671.642611] CPU: 56 UID: 0 PID: 31242 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3671.642617] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3671.642618] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3671.642620] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3671.642628] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3671.642631] RSP: 0018:ffffaab62ac8bc20 EFLAGS: 00000046
[ 3671.642633] RAX: 0000000000000000 RBX: ffff8f917e632700 RCX: 000000000000005d
[ 3671.642635] RDX: ffff8f917e632700 RSI: 0000000001780100 RDI: ffff8f7aeeeca68c
[ 3671.642637] RBP: ffffaab62ac8bc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3671.642639] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3671.642640] R13: 0000000000e40000 R14: 0000000000e40000 R15: 000000000000002a
[ 3671.642642] FS:  00007f5b667fc640(0000) GS:ffff8f91ebe36000(0000) knlGS:0000000000000000
[ 3671.642645] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3671.642647] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3671.642651] PKRU: 55555554
[ 3671.642653] Call Trace:
[ 3671.642655]  <TASK>
[ 3671.642659]  _raw_spin_lock_irqsave+0x46/0x60
[ 3671.642664]  yield_to+0x36/0x1b0
[ 3671.642671]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3671.642742]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3671.642818]  pause_interception+0x91/0x120 [kvm_amd]
[ 3671.642829]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3671.642839]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3671.642849]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3671.642935]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3671.643009]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3671.643014]  ? do_futex+0xc8/0x1d0
[ 3671.643018]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3671.643020]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3671.643024]  __x64_sys_ioctl+0xa0/0xf0
[ 3671.643031]  x64_sys_call+0x122e/0x2150
[ 3671.643033]  do_syscall_64+0x56/0x1e0
[ 3671.643038]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3671.643041] RIP: 0033:0x7f67bff03b4b
[ 3671.643044] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3671.643047] RSP: 002b:00007f5b667fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3671.643050] RAX: ffffffffffffffda RBX: 0000563db5fcce10 RCX: 00007f67bff03b4b
[ 3671.643051] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000ae
[ 3671.643053] RBP: 0000563db5fcce10 R08: 0000000000000000 R09: 0000000000000000
[ 3671.643054] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3671.643056] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3671.643062]  </TASK>
[ 3672.095488] watchdog: CPU32: Watchdog detected hard LOCKUP on cpu 32
[ 3672.095491] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3672.095555] CPU: 32 UID: 0 PID: 31415 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3672.095560] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3672.095561] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3672.095562] RIP: 0010:native_queued_spin_lock_slowpath+0x21b/0x2d0
[ 3672.095567] Code: c6 01 41 c1 e5 10 41 c1 e6 12 45 09 f5 44 89 e8 c1 e8 10 66 41 87 44 24 02 89 c1 c1 e1 10 75 5f 31 c9 eb 02 f3 90 41 8b 04 24 <66> 85 c0 75 f5 89 c6 66 31 f6 44 39 ee 0f 84 87 00 00 00 41 c6 04
[ 3672.095569] RSP: 0018:ffffaab60d214d68 EFLAGS: 00000002
[ 3672.095571] RAX: 0000000000980101 RBX: ffff8f917e032700 RCX: 0000000000000000
[ 3672.095572] RDX: ffff8f917e032700 RSI: 0000000000000100 RDI: ffff8f917e831840
[ 3672.095573] RBP: ffffaab60d214d88 R08: 0000000000000080 R09: fffffffe00000000
[ 3672.095575] R10: 0000000000000006 R11: 000000000001b800 R12: ffff8f917e831840
[ 3672.095576] R13: 0000000000840000 R14: 0000000000840000 R15: ffff8f917e831840
[ 3672.095578] FS:  00007f58477fe640(0000) GS:ffff8f91eb836000(0000) knlGS:0000000000000000
[ 3672.095580] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3672.095581] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3672.095583] PKRU: 55555554
[ 3672.095584] Call Trace:
[ 3672.095585]  <IRQ>
[ 3672.095589]  _raw_spin_lock+0x2d/0x40
[ 3672.095592]  raw_spin_rq_lock_nested+0x19/0x30
[ 3672.095596]  _raw_spin_rq_lock_irqsave+0x1c/0x30
[ 3672.095599]  sched_balance_rq+0x616/0xf80
[ 3672.095608]  sched_balance_domains+0x262/0x370
[ 3672.095612]  sched_balance_softirq+0x5a/0x80
[ 3672.095615]  handle_softirqs+0xc8/0x290
[ 3672.095620]  __irq_exit_rcu+0x96/0xc0
[ 3672.095623]  irq_exit_rcu+0x12/0x20
[ 3672.095626]  sysvec_apic_timer_interrupt+0x83/0x90
[ 3672.095630]  </IRQ>
[ 3672.095631]  <TASK>
[ 3672.095633]  asm_sysvec_apic_timer_interrupt+0x1f/0x30
[ 3672.095635] RIP: 0010:kvm_arch_vcpu_ioctl_run+0xbd4/0x1ba0 [kvm]
[ 3672.095694] Code: b8 03 00 00 4c 89 e7 e8 8a 30 04 00 49 83 bc 24 f8 07 00 00 00 0f 85 8f 03 00 00 41 c6 84 24 92 0a 00 00 01 fb 0f 1f 44 00 00 <49> 83 84 24 e0 15 00 00 01 fa 0f 1f 44 00 00 41 c6 84 24 92 0a 00
[ 3672.095696] RSP: 0018:ffffaab62b5f3da0 EFLAGS: 00000246
[ 3672.095698] RAX: ffff8f7aeea2c000 RBX: ffff8f7aef974d40 RCX: 00000000868c3578
[ 3672.095699] RDX: 0000000100000000 RSI: 0000000279439ba1 RDI: ffff8f5c7ac8ce18
[ 3672.095701] RBP: ffffaab62b5f3e08 R08: 0000000000000000 R09: 0000000000000000
[ 3672.095702] R10: 0000000000000000 R11: 0000000000000000 R12: ffff8f5c7ac8ce18
[ 3672.095703] R13: 0000000000000000 R14: 0000000000000000 R15: ffff8f7248db8000
[ 3672.095712]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3672.095765]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3672.095768]  ? do_futex+0xc8/0x1d0
[ 3672.095770]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3672.095773]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3672.095776]  __x64_sys_ioctl+0xa0/0xf0
[ 3672.095781]  x64_sys_call+0x122e/0x2150
[ 3672.095783]  do_syscall_64+0x56/0x1e0
[ 3672.095787]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3672.095789] RIP: 0033:0x7f67bff03b4b
[ 3672.095792] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3672.095793] RSP: 002b:00007f58477fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3672.095795] RAX: ffffffffffffffda RBX: 0000563db66a4d50 RCX: 00007f67bff03b4b
[ 3672.095797] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000208
[ 3672.095798] RBP: 0000563db66a4d50 R08: 0000000000000000 R09: 0000000000000000
[ 3672.095799] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3672.095800] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3672.095806]  </TASK>
[ 3672.408217] watchdog: CPU38: Watchdog detected hard LOCKUP on cpu 38
[ 3672.408220] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3672.408285] CPU: 38 UID: 0 PID: 31374 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3672.408290] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3672.408291] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3672.408293] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3672.408298] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3672.408300] RSP: 0018:ffffaab60d34cd68 EFLAGS: 00000046
[ 3672.408302] RAX: 0000000000000000 RBX: ffff8f917e1b2700 RCX: 0000000000000014
[ 3672.408304] RDX: ffff8f917e1b2700 RSI: 0000000000540100 RDI: ffff8f917e831840
[ 3672.408305] RBP: ffffaab60d34cd88 R08: 0000000000000080 R09: fffffffe00000000
[ 3672.408307] R10: 0000000000000006 R11: 0000000000037803 R12: ffff8f917e831840
[ 3672.408308] R13: 00000000009c0000 R14: 00000000009c0000 R15: ffff8f917e831840
[ 3672.408310] FS:  00007f5906ffd640(0000) GS:ffff8f91eb9b6000(0000) knlGS:0000000000000000
[ 3672.408312] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3672.408313] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3672.408315] PKRU: 55555554
[ 3672.408316] Call Trace:
[ 3672.408317]  <IRQ>
[ 3672.408320]  _raw_spin_lock+0x2d/0x40
[ 3672.408324]  raw_spin_rq_lock_nested+0x19/0x30
[ 3672.408327]  _raw_spin_rq_lock_irqsave+0x1c/0x30
[ 3672.408330]  sched_balance_rq+0x616/0xf80
[ 3672.408333]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3672.408342]  sched_balance_domains+0x262/0x370
[ 3672.408347]  sched_balance_softirq+0x5a/0x80
[ 3672.408350]  handle_softirqs+0xc8/0x290
[ 3672.408354]  __irq_exit_rcu+0x96/0xc0
[ 3672.408357]  irq_exit_rcu+0x12/0x20
[ 3672.408361]  sysvec_apic_timer_interrupt+0x83/0x90
[ 3672.408364]  </IRQ>
[ 3672.408365]  <TASK>
[ 3672.408367]  asm_sysvec_apic_timer_interrupt+0x1f/0x30
[ 3672.408369] RIP: 0010:kvm_arch_vcpu_ioctl_run+0xbd4/0x1ba0 [kvm]
[ 3672.408437] Code: b8 03 00 00 4c 89 e7 e8 8a 30 04 00 49 83 bc 24 f8 07 00 00 00 0f 85 8f 03 00 00 41 c6 84 24 92 0a 00 00 01 fb 0f 1f 44 00 00 <49> 83 84 24 e0 15 00 00 01 fa 0f 1f 44 00 00 41 c6 84 24 92 0a 00
[ 3672.408439] RSP: 0018:ffffaab627433da0 EFLAGS: 00000246
[ 3672.408441] RAX: ffff8f7aeebb0000 RBX: ffff8f7209b64d40 RCX: 000000008f1d4b50
[ 3672.408443] RDX: 0000000100000000 RSI: 0000000281d4b179 RDI: ffff8f721c551a08
[ 3672.408444] RBP: ffffaab627433e08 R08: 0000000000000000 R09: 0000000000000000
[ 3672.408445] R10: 0000000000000000 R11: 0000000000000000 R12: ffff8f721c551a08
[ 3672.408447] R13: 0000000000000000 R14: 0000000000000000 R15: ffff8f8ada1c4000
[ 3672.408456]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3672.408520]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3672.408523]  ? do_futex+0xc8/0x1d0
[ 3672.408526]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3672.408528]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3672.408532]  __x64_sys_ioctl+0xa0/0xf0
[ 3672.408537]  x64_sys_call+0x122e/0x2150
[ 3672.408539]  do_syscall_64+0x56/0x1e0
[ 3672.408543]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3672.408545] RIP: 0033:0x7f67bff03b4b
[ 3672.408548] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3672.408550] RSP: 002b:00007f5906ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3672.408552] RAX: ffffffffffffffda RBX: 0000563db6505ec0 RCX: 00007f67bff03b4b
[ 3672.408554] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001b6
[ 3672.408555] RBP: 0000563db6505ec0 R08: 0000000000000000 R09: 0000000000000000
[ 3672.408556] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3672.408558] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3672.408563]  </TASK>
[ 3673.081855] watchdog: CPU96: Watchdog detected hard LOCKUP on cpu 96
[ 3673.081857] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3673.081924] CPU: 96 UID: 0 PID: 598 Comm: migration/96 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3673.081928] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3673.081929] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3673.081930] Stopper: multi_cpu_stop+0x0/0x110 <- migrate_swap+0xad/0x120
[ 3673.081936] RIP: 0010:native_queued_spin_lock_slowpath+0x29a/0x2d0
[ 3673.081940] Code: c1 e9 12 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 <8b> 42 08 85 c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09
[ 3673.081942] RSP: 0018:ffffaab60df34dd0 EFLAGS: 00000046
[ 3673.081943] RAX: 0000000000000000 RBX: ffff8f917e832700 RCX: 0000000000000022
[ 3673.081945] RDX: ffff8f917e832700 RSI: 00000000008c0100 RDI: ffff8f917e831840
[ 3673.081946] RBP: ffffaab60df34df0 R08: 0000000000000006 R09: 0000000000000060
[ 3673.081947] R10: 0000000000000002 R11: 0000000000000002 R12: ffff8f917e831840
[ 3673.081949] R13: 0000000001840000 R14: 0000000001840000 R15: ffff8f73570f0ccc
[ 3673.081950] FS:  0000000000000000(0000) GS:ffff8f91ec036000(0000) knlGS:0000000000000000
[ 3673.081952] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3673.081954] CR2: 00000000000004c8 CR3: 0000000124912022 CR4: 0000000000770ef0
[ 3673.081955] PKRU: 55555554
[ 3673.081956] Call Trace:
[ 3673.081957]  <IRQ>
[ 3673.081959]  _raw_spin_lock+0x2d/0x40
[ 3673.081962]  try_to_wake_up+0x21a/0x730
[ 3673.081964]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3673.081967]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3673.081970]  ? sched_clock_cpu+0x14/0x1a0
[ 3673.081974]  wake_up_process+0x19/0x20
[ 3673.081977]  rcuwait_wake_up+0x2e/0x50
[ 3673.081980]  __kvm_vcpu_kick+0x23/0x130 [kvm]
[ 3673.082032]  apic_timer_expired+0x85/0x100 [kvm]
[ 3673.082088]  apic_timer_fn+0x24/0x60 [kvm]
[ 3673.082137]  ? __pfx_apic_timer_fn+0x10/0x10 [kvm]
[ 3673.082186]  __hrtimer_run_queues+0x12b/0x2c0
[ 3673.082192]  hrtimer_interrupt+0x10d/0x250
[ 3673.082197]  __sysvec_apic_timer_interrupt+0x5a/0x120
[ 3673.082202]  sysvec_apic_timer_interrupt+0x7e/0x90
[ 3673.082205]  </IRQ>
[ 3673.082206]  <TASK>
[ 3673.082207]  asm_sysvec_apic_timer_interrupt+0x1f/0x30
[ 3673.082210] RIP: 0010:make_task_dead+0x102/0x160
[ 3673.082212] Code: f0 01 0f 84 73 ff ff ff eb e8 41 8b 95 d0 09 00 00 49 8d b5 b8 0b 00 00 48 c7 c7 38 9a d9 91 e8 84 34 09 00 fb 0f 1f 44 00 00 <e9> 3d ff ff ff 48 c7 c7 c8 9a d9 91 e8 6d 34 09 00 4c 89 ef e8 15
[ 3673.082214] RSP: 0018:ffffaab60df0ff30 EFLAGS: 00000246
[ 3673.082215] RAX: 0000000000000031 RBX: 0000000000000046 RCX: 0000000000000027
[ 3673.082217] RDX: 0000000000000000 RSI: 0000000000000001 RDI: ffff8f917e81ce80
[ 3673.082218] RBP: ffffaab60df0ff48 R08: 0000000000000000 R09: ffffaab60df0fdb0
[ 3673.082219] R10: ffffaab60df0fda8 R11: ffff8f917dffffe8 R12: 0000000000000009
[ 3673.082220] R13: ffff8f7206f40000 R14: 0000000000000009 R15: 0000000000000046
[ 3673.082227]  rewind_stack_and_make_dead+0x16/0x20
[ 3673.082233]  </TASK>
[ 3673.206098] watchdog: CPU97: Watchdog detected hard LOCKUP on cpu 97
[ 3673.206102] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3673.206163] CPU: 97 UID: 0 PID: 31418 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3673.206167] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3673.206168] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3673.206169] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3673.206173] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3673.206175] RSP: 0018:ffffaab62b61fc20 EFLAGS: 00000046
[ 3673.206177] RAX: 0000000000000000 RBX: ffff8f917e872700 RCX: 000000000000001b
[ 3673.206178] RDX: ffff8f917e872700 RSI: 0000000000700100 RDI: ffff8f7aeeeca68c
[ 3673.206180] RBP: ffffaab62b61fc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3673.206181] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3673.206182] R13: 0000000001880000 R14: 0000000001880000 R15: 0000000000000051
[ 3673.206184] FS:  00007f5845ffb640(0000) GS:ffff8f91ec076000(0000) knlGS:0000000000000000
[ 3673.206185] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3673.206187] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3673.206188] PKRU: 55555554
[ 3673.206189] Call Trace:
[ 3673.206190]  <TASK>
[ 3673.206192]  _raw_spin_lock_irqsave+0x46/0x60
[ 3673.206196]  yield_to+0x36/0x1b0
[ 3673.206200]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3673.206251]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3673.206303]  pause_interception+0x91/0x120 [kvm_amd]
[ 3673.206312]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3673.206320]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3673.206328]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3673.206383]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3673.206435]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3673.206438]  ? do_futex+0xc8/0x1d0
[ 3673.206440]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3673.206442]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3673.206446]  __x64_sys_ioctl+0xa0/0xf0
[ 3673.206451]  x64_sys_call+0x122e/0x2150
[ 3673.206453]  do_syscall_64+0x56/0x1e0
[ 3673.206457]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3673.206459] RIP: 0033:0x7f67bff03b4b
[ 3673.206461] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3673.206462] RSP: 002b:00007f5845ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3673.206464] RAX: ffffffffffffffda RBX: 0000563db66c3440 RCX: 00007f67bff03b4b
[ 3673.206466] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000020e
[ 3673.206467] RBP: 0000563db66c3440 R08: 0000000000000000 R09: 0000000000000000
[ 3673.206468] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3673.206469] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3673.206475]  </TASK>
[ 3673.310293] watchdog: CPU9: Watchdog detected hard LOCKUP on cpu 9
[ 3673.310297] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3673.310379] CPU: 9 UID: 0 PID: 31411 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3673.310384] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3673.310385] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3673.310386] RIP: 0010:native_queued_spin_lock_slowpath+0x29a/0x2d0
[ 3673.310393] Code: c1 e9 12 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 <8b> 42 08 85 c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09
[ 3673.310395] RSP: 0018:ffffaab62b5cbc20 EFLAGS: 00000046
[ 3673.310397] RAX: 0000000000000000 RBX: ffff8f7180072700 RCX: 0000000000000067
[ 3673.310399] RDX: ffff8f7180072700 RSI: 0000000001a00100 RDI: ffff8f7aeeeca68c
[ 3673.310400] RBP: ffffaab62b5cbc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3673.310402] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3673.310403] R13: 0000000000280000 R14: 0000000000280000 R15: 0000000000000039
[ 3673.310405] FS:  00007f5865ffb640(0000) GS:ffff8f71ed876000(0000) knlGS:0000000000000000
[ 3673.310406] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3673.310408] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3673.310409] PKRU: 55555554
[ 3673.310411] Call Trace:
[ 3673.310412]  <TASK>
[ 3673.310416]  _raw_spin_lock_irqsave+0x46/0x60
[ 3673.310420]  yield_to+0x36/0x1b0
[ 3673.310427]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3673.310479]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3673.310531]  pause_interception+0x91/0x120 [kvm_amd]
[ 3673.310541]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3673.310548]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3673.310556]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3673.310611]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3673.310663]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3673.310668]  ? do_futex+0xc8/0x1d0
[ 3673.310671]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3673.310673]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3673.310677]  __x64_sys_ioctl+0xa0/0xf0
[ 3673.310683]  x64_sys_call+0x122e/0x2150
[ 3673.310685]  do_syscall_64+0x56/0x1e0
[ 3673.310690]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3673.310692] RIP: 0033:0x7f67bff03b4b
[ 3673.310695] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3673.310696] RSP: 002b:00007f5865ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3673.310698] RAX: ffffffffffffffda RBX: 0000563db667ca90 RCX: 00007f67bff03b4b
[ 3673.310700] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000200
[ 3673.310701] RBP: 0000563db667ca90 R08: 0000000000000000 R09: 0000000000000000
[ 3673.310702] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3673.310703] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3673.310710]  </TASK>
[ 3673.442255] watchdog: CPU63: Watchdog detected hard LOCKUP on cpu 63
[ 3673.442259] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3673.442338] CPU: 63 UID: 0 PID: 31244 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3673.442343] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3673.442344] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3673.442346] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3673.442354] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3673.442356] RSP: 0018:ffffaab62ac9bc20 EFLAGS: 00000046
[ 3673.442358] RAX: 0000000000000000 RBX: ffff8f917e7f2700 RCX: 0000000000000030
[ 3673.442360] RDX: ffff8f917e7f2700 RSI: 0000000000c40100 RDI: ffff8f7aeeeca68c
[ 3673.442361] RBP: ffffaab62ac9bc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3673.442363] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3673.442364] R13: 0000000001000000 R14: 0000000001000000 R15: 0000000000000028
[ 3673.442366] FS:  00007f5b657fa640(0000) GS:ffff8f91ebff6000(0000) knlGS:0000000000000000
[ 3673.442368] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3673.442369] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3673.442371] PKRU: 55555554
[ 3673.442372] Call Trace:
[ 3673.442373]  <TASK>
[ 3673.442377]  _raw_spin_lock_irqsave+0x46/0x60
[ 3673.442381]  yield_to+0x36/0x1b0
[ 3673.442387]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3673.442439]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3673.442491]  pause_interception+0x91/0x120 [kvm_amd]
[ 3673.442500]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3673.442508]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3673.442516]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3673.442571]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3673.442623]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3673.442628]  ? do_futex+0xc8/0x1d0
[ 3673.442632]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3673.442634]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3673.442638]  __x64_sys_ioctl+0xa0/0xf0
[ 3673.442644]  x64_sys_call+0x122e/0x2150
[ 3673.442647]  do_syscall_64+0x56/0x1e0
[ 3673.442652]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3673.442654] RIP: 0033:0x7f67bff03b4b
[ 3673.442657] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3673.442658] RSP: 002b:00007f5b657f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3673.442661] RAX: ffffffffffffffda RBX: 0000563db5fe0d00 RCX: 00007f67bff03b4b
[ 3673.442662] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000b2
[ 3673.442663] RBP: 0000563db5fe0d00 R08: 0000000000000000 R09: 0000000000000000
[ 3673.442664] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3673.442665] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3673.442672]  </TASK>
[ 3673.516641] watchdog: CPU48: Watchdog detected hard LOCKUP on cpu 48
[ 3673.516646] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3673.516733] CPU: 48 UID: 0 PID: 31420 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3673.516738] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3673.516739] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3673.516741] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3673.516749] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3673.516751] RSP: 0018:ffffaab62b63fc20 EFLAGS: 00000046
[ 3673.516753] RAX: 0000000000000000 RBX: ffff8f917e432700 RCX: 0000000000000051
[ 3673.516755] RDX: ffff8f917e432700 RSI: 0000000001480100 RDI: ffff8f7aeeeca68c
[ 3673.516756] RBP: ffffaab62b63fc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3673.516757] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3673.516759] R13: 0000000000c40000 R14: 0000000000c40000 R15: 000000000000005c
[ 3673.516760] FS:  00007f5844ff9640(0000) GS:ffff8f91ebc36000(0000) knlGS:0000000000000000
[ 3673.516762] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3673.516764] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3673.516765] PKRU: 55555554
[ 3673.516766] Call Trace:
[ 3673.516768]  <TASK>
[ 3673.516773]  _raw_spin_lock_irqsave+0x46/0x60
[ 3673.516776]  yield_to+0x36/0x1b0
[ 3673.516783]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3673.516838]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3673.516891]  pause_interception+0x91/0x120 [kvm_amd]
[ 3673.516900]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3673.516909]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3673.516917]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3673.516972]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3673.517025]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3673.517030]  ? do_futex+0xc8/0x1d0
[ 3673.517033]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3673.517036]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3673.517039]  __x64_sys_ioctl+0xa0/0xf0
[ 3673.517046]  x64_sys_call+0x122e/0x2150
[ 3673.517048]  do_syscall_64+0x56/0x1e0
[ 3673.517052]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3673.517054] RIP: 0033:0x7f67bff03b4b
[ 3673.517058] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3673.517059] RSP: 002b:00007f5844ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3673.517062] RAX: ffffffffffffffda RBX: 0000563db66d73e0 RCX: 00007f67bff03b4b
[ 3673.517063] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000212
[ 3673.517064] RBP: 0000563db66d73e0 R08: 0000000000000000 R09: 0000000000000000
[ 3673.517065] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3673.517066] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3673.517073]  </TASK>
[ 3674.375759] watchdog: BUG: soft lockup - CPU#51 stuck for 23s! [qemu-system-x86:31370]
[ 3674.375764] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3674.375831] CPU: 51 UID: 0 PID: 31370 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3674.375835] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3674.375836] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3674.375838] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3674.375842] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3674.375844] RSP: 0018:ffffaab62b4878b8 EFLAGS: 00000202
[ 3674.375846] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3674.375848] RDX: 0000000000000001 RSI: ffff8f717fff9620 RDI: ffff8f72000baf00
[ 3674.375849] RBP: ffffaab62b487918 R08: 0000000000000007 R09: ffff8f72000bade0
[ 3674.375850] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3674.375851] R13: 0000000000000202 R14: ffff8f917e4f2a40 R15: 0000000000000080
[ 3674.375853] FS:  00007f59257fa640(0000) GS:ffff8f91ebcf6000(0000) knlGS:0000000000000000
[ 3674.375854] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3674.375856] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3674.375857] PKRU: 55555554
[ 3674.375858] Call Trace:
[ 3674.375860]  <TASK>
[ 3674.375863]  ? __pfx___wbinvd+0x10/0x10
[ 3674.375870]  on_each_cpu_cond_mask+0x28/0x50
[ 3674.375873]  wbinvd_on_all_cpus+0x29/0x40
[ 3674.375877]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3674.375886]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3674.375941]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3674.375997]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3674.376002]  change_protection+0xfc9/0x1200
[ 3674.376009]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.376012]  ? update_load_avg+0x84/0x780
[ 3674.376017]  ? write_ibpb+0x21/0x40
[ 3674.376020]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3674.376074]  change_prot_numa+0x5b/0xe0
[ 3674.376079]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.376081]  ? update_load_avg+0x84/0x780
[ 3674.376084]  ? __dequeue_entity+0x3cd/0x4a0
[ 3674.376088]  task_numa_work+0x3c5/0x9b0
[ 3674.376095]  task_work_run+0x64/0xa0
[ 3674.376100]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3674.376105]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3674.376157]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3674.376209]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.376212]  ? do_futex+0xc8/0x1d0
[ 3674.376214]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.376216]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.376220]  __x64_sys_ioctl+0xa0/0xf0
[ 3674.376224]  x64_sys_call+0x122e/0x2150
[ 3674.376226]  do_syscall_64+0x56/0x1e0
[ 3674.376230]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3674.376232] RIP: 0033:0x7f67bff03b4b
[ 3674.376235] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3674.376236] RSP: 002b:00007f59257f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3674.376238] RAX: ffffffffffffffda RBX: 0000563db64dd830 RCX: 00007f67bff03b4b
[ 3674.376240] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001ae
[ 3674.376241] RBP: 0000563db64dd830 R08: 0000000000000000 R09: 0000000000000000
[ 3674.376242] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3674.376243] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3674.376248]  </TASK>
[ 3674.435758] watchdog: BUG: soft lockup - CPU#66 stuck for 23s! [qemu-system-x86:31354]
[ 3674.435762] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3674.435849] CPU: 66 UID: 0 PID: 31354 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3674.435853] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3674.435855] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3674.435857] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3674.435864] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3674.435866] RSP: 0018:ffffaab62b2878b8 EFLAGS: 00000202
[ 3674.435868] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3674.435870] RDX: 0000000000000001 RSI: ffff8f717fff9800 RDI: ffff8f52876581f0
[ 3674.435872] RBP: ffffaab62b287918 R08: 0000000000000007 R09: ffff8f5287658390
[ 3674.435873] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3674.435874] R13: 0000000000000202 R14: ffff8f71806b2a40 R15: 0000000000000080
[ 3674.435876] FS:  00007f59667fc640(0000) GS:ffff8f71edeb6000(0000) knlGS:0000000000000000
[ 3674.435878] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3674.435879] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3674.435881] PKRU: 55555554
[ 3674.435882] Call Trace:
[ 3674.435884]  <TASK>
[ 3674.435888]  ? __pfx___wbinvd+0x10/0x10
[ 3674.435896]  on_each_cpu_cond_mask+0x28/0x50
[ 3674.435900]  wbinvd_on_all_cpus+0x29/0x40
[ 3674.435905]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3674.435915]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3674.435972]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3674.436029]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3674.436035]  change_protection+0xfc9/0x1200
[ 3674.436043]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.436047]  ? update_load_avg+0x84/0x780
[ 3674.436052]  ? write_ibpb+0x21/0x40
[ 3674.436058]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3674.436112]  change_prot_numa+0x5b/0xe0
[ 3674.436119]  task_numa_work+0x3c5/0x9b0
[ 3674.436127]  task_work_run+0x64/0xa0
[ 3674.436132]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3674.436137]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3674.436190]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3674.436242]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.436245]  ? do_futex+0xc8/0x1d0
[ 3674.436247]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.436250]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.436253]  __x64_sys_ioctl+0xa0/0xf0
[ 3674.436259]  x64_sys_call+0x122e/0x2150
[ 3674.436261]  do_syscall_64+0x56/0x1e0
[ 3674.436265]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3674.436267] RIP: 0033:0x7f67bff03b4b
[ 3674.436270] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3674.436272] RSP: 002b:00007f59667fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3674.436274] RAX: ffffffffffffffda RBX: 0000563db643b550 RCX: 00007f67bff03b4b
[ 3674.436275] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000018e
[ 3674.436276] RBP: 0000563db643b550 R08: 0000000000000000 R09: 0000000000000000
[ 3674.436278] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3674.436279] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3674.436284]  </TASK>
[ 3674.455758] watchdog: BUG: soft lockup - CPU#75 stuck for 23s! [qemu-system-x86:31407]
[ 3674.455763] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3674.455833] CPU: 75 UID: 0 PID: 31407 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3674.455837] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3674.455838] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3674.455840] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3674.455845] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3674.455847] RSP: 0018:ffffaab62bf278b8 EFLAGS: 00000202
[ 3674.455849] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3674.455851] RDX: 0000000000000001 RSI: ffff8f717fff9920 RDI: ffff8f52876580a0
[ 3674.455852] RBP: ffffaab62bf27918 R08: 0000000000000007 R09: ffff8f5287658b80
[ 3674.455853] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3674.455855] R13: 0000000000000202 R14: ffff8f71808f2a40 R15: 0000000000000080
[ 3674.455856] FS:  00007f5867fff640(0000) GS:ffff8f71ee0f6000(0000) knlGS:0000000000000000
[ 3674.455858] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3674.455860] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3674.455861] PKRU: 55555554
[ 3674.455862] Call Trace:
[ 3674.455864]  <TASK>
[ 3674.455868]  ? __pfx___wbinvd+0x10/0x10
[ 3674.455875]  on_each_cpu_cond_mask+0x28/0x50
[ 3674.455878]  wbinvd_on_all_cpus+0x29/0x40
[ 3674.455882]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3674.455892]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3674.455947]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3674.456002]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3674.456008]  change_protection+0xfc9/0x1200
[ 3674.456014]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.456018]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.456021]  ? update_load_avg+0x84/0x780
[ 3674.456026]  ? write_ibpb+0x21/0x40
[ 3674.456029]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3674.456082]  change_prot_numa+0x5b/0xe0
[ 3674.456089]  task_numa_work+0x3c5/0x9b0
[ 3674.456097]  task_work_run+0x64/0xa0
[ 3674.456102]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3674.456108]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3674.456160]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3674.456212]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.456214]  ? do_futex+0xc8/0x1d0
[ 3674.456216]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.456219]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.456222]  __x64_sys_ioctl+0xa0/0xf0
[ 3674.456227]  x64_sys_call+0x122e/0x2150
[ 3674.456229]  do_syscall_64+0x56/0x1e0
[ 3674.456233]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3674.456235] RIP: 0033:0x7f67bff03b4b
[ 3674.456237] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3674.456239] RSP: 002b:00007f5867ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3674.456241] RAX: ffffffffffffffda RBX: 0000563db6654290 RCX: 00007f67bff03b4b
[ 3674.456243] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001f8
[ 3674.456244] RBP: 0000563db6654290 R08: 0000000000000000 R09: 0000000000000000
[ 3674.456245] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3674.456246] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3674.456251]  </TASK>
[ 3674.467757] watchdog: BUG: soft lockup - CPU#80 stuck for 23s! [qemu-system-x86:31301]
[ 3674.467763] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3674.467849] CPU: 80 UID: 0 PID: 31301 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3674.467854] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3674.467855] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3674.467857] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3674.467865] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3674.467868] RSP: 0018:ffffaab62af4f8b8 EFLAGS: 00000202
[ 3674.467870] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3674.467872] RDX: 0000000000000001 RSI: ffff8f717fff99c0 RDI: ffff8f5287658500
[ 3674.467874] RBP: ffffaab62af4f918 R08: 0000000000000007 R09: ffff8f52876581c0
[ 3674.467875] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3674.467877] R13: 0000000000000202 R14: ffff8f7180a32a40 R15: 0000000000000080
[ 3674.467879] FS:  00007f5a64ff9640(0000) GS:ffff8f71ee236000(0000) knlGS:0000000000000000
[ 3674.467881] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3674.467882] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3674.467884] PKRU: 55555554
[ 3674.467885] Call Trace:
[ 3674.467887]  <TASK>
[ 3674.467891]  ? __pfx___wbinvd+0x10/0x10
[ 3674.467899]  on_each_cpu_cond_mask+0x28/0x50
[ 3674.467902]  wbinvd_on_all_cpus+0x29/0x40
[ 3674.467908]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3674.467917]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3674.467974]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3674.468030]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3674.468037]  change_protection+0xfc9/0x1200
[ 3674.468042]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.468047]  ? update_curr_dl_se+0x3b/0x1e0
[ 3674.468052]  ? dl_server_update+0x2e/0x40
[ 3674.468056]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.468059]  ? pick_next_task_fair+0x4f/0x490
[ 3674.468064]  change_prot_numa+0x5b/0xe0
[ 3674.468071]  task_numa_work+0x3c5/0x9b0
[ 3674.468079]  task_work_run+0x64/0xa0
[ 3674.468085]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3674.468090]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3674.468143]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3674.468195]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.468197]  ? do_futex+0xc8/0x1d0
[ 3674.468200]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.468202]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.468206]  __x64_sys_ioctl+0xa0/0xf0
[ 3674.468212]  x64_sys_call+0x122e/0x2150
[ 3674.468214]  do_syscall_64+0x56/0x1e0
[ 3674.468220]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3674.468222] RIP: 0033:0x7f67bff03b4b
[ 3674.468225] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3674.468227] RSP: 002b:00007f5a64ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3674.468229] RAX: ffffffffffffffda RBX: 0000563db62230e0 RCX: 00007f67bff03b4b
[ 3674.468231] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000124
[ 3674.468232] RBP: 0000563db62230e0 R08: 0000000000000000 R09: 0000000000000000
[ 3674.468233] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3674.468234] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3674.468239]  </TASK>
[ 3674.471757] watchdog: BUG: soft lockup - CPU#82 stuck for 23s! [qemu-system-x86:31267]
[ 3674.471759] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3674.471819] CPU: 82 UID: 0 PID: 31267 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3674.471823] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3674.471824] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3674.471825] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3674.471829] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3674.471831] RSP: 0018:ffffaab62ad538b8 EFLAGS: 00000202
[ 3674.471832] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3674.471834] RDX: 0000000000000001 RSI: ffff8f717fff9a00 RDI: ffff8f5287658c00
[ 3674.471835] RBP: ffffaab62ad53918 R08: 0000000000000007 R09: ffff8f5287658750
[ 3674.471836] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3674.471838] R13: 0000000000000202 R14: ffff8f7180ab2a40 R15: 0000000000000080
[ 3674.471839] FS:  00007f5ae7fff640(0000) GS:ffff8f71ee2b6000(0000) knlGS:0000000000000000
[ 3674.471841] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3674.471842] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3674.471844] PKRU: 55555554
[ 3674.471845] Call Trace:
[ 3674.471846]  <TASK>
[ 3674.471848]  ? __pfx___wbinvd+0x10/0x10
[ 3674.471853]  on_each_cpu_cond_mask+0x28/0x50
[ 3674.471856]  wbinvd_on_all_cpus+0x29/0x40
[ 3674.471859]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3674.471868]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3674.471922]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3674.471977]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3674.471981]  change_protection+0xfc9/0x1200
[ 3674.471988]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.471991]  ? update_load_avg+0x84/0x780
[ 3674.471995]  ? write_ibpb+0x21/0x40
[ 3674.471998]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3674.472052]  change_prot_numa+0x5b/0xe0
[ 3674.472059]  task_numa_work+0x3c5/0x9b0
[ 3674.472066]  task_work_run+0x64/0xa0
[ 3674.472071]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3674.472075]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3674.472128]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3674.472180]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.472183]  ? do_futex+0xc8/0x1d0
[ 3674.472185]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.472187]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.472191]  __x64_sys_ioctl+0xa0/0xf0
[ 3674.472196]  x64_sys_call+0x122e/0x2150
[ 3674.472198]  do_syscall_64+0x56/0x1e0
[ 3674.472201]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3674.472203] RIP: 0033:0x7f67bff03b4b
[ 3674.472205] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3674.472207] RSP: 002b:00007f5ae7ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3674.472209] RAX: ffffffffffffffda RBX: 0000563db60c97b0 RCX: 00007f67bff03b4b
[ 3674.472211] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000e0
[ 3674.472212] RBP: 0000563db60c97b0 R08: 0000000000000000 R09: 0000000000000000
[ 3674.472213] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3674.472214] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3674.472219]  </TASK>
[ 3674.535756] watchdog: BUG: soft lockup - CPU#111 stuck for 23s! [qemu-system-x86:31376]
[ 3674.535762] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3674.535848] CPU: 111 UID: 0 PID: 31376 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3674.535853] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3674.535854] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3674.535856] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3674.535864] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3674.535866] RSP: 0018:ffffaab62b5b38b8 EFLAGS: 00000202
[ 3674.535868] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3674.535870] RDX: 0000000000000001 RSI: ffff8f717fff9da0 RDI: ffff8f7206c6ac70
[ 3674.535872] RBP: ffffaab62b5b3918 R08: 0000000000000007 R09: ffff8f7206c6adf0
[ 3674.535873] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3674.535874] R13: 0000000000000202 R14: ffff8f917ebf2a40 R15: 0000000000000080
[ 3674.535876] FS:  00007f5905ffb640(0000) GS:ffff8f91ec3f6000(0000) knlGS:0000000000000000
[ 3674.535878] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3674.535879] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3674.535881] PKRU: 55555554
[ 3674.535882] Call Trace:
[ 3674.535884]  <TASK>
[ 3674.535889]  ? __pfx___wbinvd+0x10/0x10
[ 3674.535896]  on_each_cpu_cond_mask+0x28/0x50
[ 3674.535900]  wbinvd_on_all_cpus+0x29/0x40
[ 3674.535904]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3674.535914]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3674.535969]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3674.536026]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3674.536032]  change_protection+0xfc9/0x1200
[ 3674.536038]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.536043]  ? update_curr_dl_se+0x3b/0x1e0
[ 3674.536047]  ? dl_server_update+0x2e/0x40
[ 3674.536052]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.536055]  ? pick_next_task_fair+0x4f/0x490
[ 3674.536060]  change_prot_numa+0x5b/0xe0
[ 3674.536067]  task_numa_work+0x3c5/0x9b0
[ 3674.536075]  task_work_run+0x64/0xa0
[ 3674.536080]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3674.536086]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3674.536138]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3674.536190]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.536193]  ? do_futex+0xc8/0x1d0
[ 3674.536195]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.536197]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3674.536201]  __x64_sys_ioctl+0xa0/0xf0
[ 3674.536207]  x64_sys_call+0x122e/0x2150
[ 3674.536209]  do_syscall_64+0x56/0x1e0
[ 3674.536215]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3674.536217] RIP: 0033:0x7f67bff03b4b
[ 3674.536220] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3674.536222] RSP: 002b:00007f5905ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3674.536224] RAX: ffffffffffffffda RBX: 0000563db6519e20 RCX: 00007f67bff03b4b
[ 3674.536225] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001ba
[ 3674.536227] RBP: 0000563db6519e20 R08: 0000000000000000 R09: 0000000000000000
[ 3674.536228] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3674.536229] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3674.536234]  </TASK>
[ 3684.847426] watchdog: CPU45: Watchdog detected hard LOCKUP on cpu 45
[ 3684.847432] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3684.847516] CPU: 45 UID: 0 PID: 15 Comm: rcu_preempt Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3684.847521] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3684.847522] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3684.847523] RIP: 0010:native_queued_spin_lock_slowpath+0x81/0x2d0
[ 3684.847531] Code: c2 41 8b 04 24 0f b6 d2 c1 e2 08 30 e4 09 d0 a9 00 01 ff ff 75 63 85 c0 74 14 41 0f b6 04 24 84 c0 74 0b f3 90 41 0f b6 04 24 <84> c0 75 f5 b8 01 00 00 00 66 41 89 04 24 5b 41 5c 41 5d 41 5e 5d
[ 3684.847533] RSP: 0018:ffffaab60024fd78 EFLAGS: 00000002
[ 3684.847535] RAX: 0000000000000001 RBX: 0000000000000014 RCX: 0000000000000001
[ 3684.847537] RDX: 0000000000000000 RSI: 0000000000000000 RDI: ffff8f7180331840
[ 3684.847538] RBP: ffffaab60024fd98 R08: 0000000000000800 R09: 0000000000000000
[ 3684.847539] R10: 0000000000000000 R11: 0000000000000001 R12: ffff8f7180331840
[ 3684.847541] R13: ffffffff9214e980 R14: 0000000000000001 R15: 0000000000000014
[ 3684.847542] FS:  0000000000000000(0000) GS:ffff8f91ebb76000(0000) knlGS:0000000000000000
[ 3684.847544] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3684.847545] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3684.847547] PKRU: 55555554
[ 3684.847548] Call Trace:
[ 3684.847550]  <TASK>
[ 3684.847555]  _raw_spin_lock+0x2d/0x40
[ 3684.847559]  _raw_spin_rq_lock_irqsave+0x21/0x40
[ 3684.847564]  resched_cpu+0x2f/0x80
[ 3684.847567]  force_qs_rnp+0x270/0x300
[ 3684.847571]  ? __pfx_rcu_watching_snap_recheck+0x10/0x10
[ 3684.847576]  rcu_gp_fqs_loop+0x344/0x4d0
[ 3684.847579]  rcu_gp_kthread+0xd6/0x160
[ 3684.847583]  kthread+0x10b/0x220
[ 3684.847586]  ? __pfx_rcu_gp_kthread+0x10/0x10
[ 3684.847589]  ? __pfx_kthread+0x10/0x10
[ 3684.847592]  ret_from_fork+0x8e/0x100
[ 3684.847596]  ? __pfx_kthread+0x10/0x10
[ 3684.847599]  ret_from_fork_asm+0x1a/0x30
[ 3684.847605]  </TASK>
[ 3694.275357] watchdog: BUG: soft lockup - CPU#6 stuck for 48s! [qemu-system-x86:31395]
[ 3694.275361] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3694.275430] CPU: 6 UID: 0 PID: 31395 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3694.275434] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3694.275435] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3694.275437] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3694.275444] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3694.275446] RSP: 0018:ffffaab62c1a38b8 EFLAGS: 00000202
[ 3694.275448] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3694.275449] RDX: 0000000000000001 RSI: ffff8f717fff9080 RDI: ffff8f5280a320c0
[ 3694.275451] RBP: ffffaab62c1a3918 R08: 0000000000000007 R09: ffff8f5280a32bb0
[ 3694.275452] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3694.275453] R13: 0000000000000202 R14: ffff8f717ffb2a40 R15: 0000000000000080
[ 3694.275455] FS:  00007f58a6ffd640(0000) GS:ffff8f71ed7b6000(0000) knlGS:0000000000000000
[ 3694.275456] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3694.275458] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3694.275459] PKRU: 55555554
[ 3694.275460] Call Trace:
[ 3694.275462]  <TASK>
[ 3694.275465]  ? __pfx___wbinvd+0x10/0x10
[ 3694.275472]  on_each_cpu_cond_mask+0x28/0x50
[ 3694.275475]  wbinvd_on_all_cpus+0x29/0x40
[ 3694.275480]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3694.275489]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3694.275544]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3694.275599]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3694.275605]  change_protection+0xfc9/0x1200
[ 3694.275611]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.275615]  ? update_curr_dl_se+0x3b/0x1e0
[ 3694.275619]  ? dl_server_update+0x2e/0x40
[ 3694.275624]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.275627]  ? pick_next_task_fair+0x4f/0x490
[ 3694.275632]  change_prot_numa+0x5b/0xe0
[ 3694.275637]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3694.275643]  task_numa_work+0x3c5/0x9b0
[ 3694.275651]  task_work_run+0x64/0xa0
[ 3694.275656]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3694.275661]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3694.275714]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3694.275765]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.275768]  ? do_futex+0xc8/0x1d0
[ 3694.275770]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.275772]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.275776]  __x64_sys_ioctl+0xa0/0xf0
[ 3694.275781]  x64_sys_call+0x122e/0x2150
[ 3694.275783]  do_syscall_64+0x56/0x1e0
[ 3694.275789]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3694.275791] RIP: 0033:0x7f67bff03b4b
[ 3694.275793] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3694.275795] RSP: 002b:00007f58a6ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3694.275797] RAX: ffffffffffffffda RBX: 0000563db65d9840 RCX: 00007f67bff03b4b
[ 3694.275798] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001e0
[ 3694.275799] RBP: 0000563db65d9840 R08: 0000000000000000 R09: 0000000000000000
[ 3694.275801] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3694.275802] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3694.275807]  </TASK>
[ 3694.287359] watchdog: BUG: soft lockup - CPU#12 stuck for 48s! [qemu-system-x86:31256]
[ 3694.287365] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3694.287439] CPU: 12 UID: 0 PID: 31256 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3694.287445] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3694.287446] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3694.287448] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3694.287456] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3694.287459] RSP: 0018:ffffaab62acfb8b8 EFLAGS: 00000202
[ 3694.287461] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3694.287463] RDX: 0000000000000001 RSI: ffff8f717fff9140 RDI: ffff8f5280a32920
[ 3694.287465] RBP: ffffaab62acfb918 R08: 0000000000000007 R09: ffff8f5280a320d0
[ 3694.287467] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3694.287468] R13: 0000000000000202 R14: ffff8f7180132a40 R15: 0000000000000080
[ 3694.287470] FS:  00007f5b267fc640(0000) GS:ffff8f71ed936000(0000) knlGS:0000000000000000
[ 3694.287472] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3694.287473] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3694.287475] PKRU: 55555554
[ 3694.287476] Call Trace:
[ 3694.287478]  <TASK>
[ 3694.287482]  ? __pfx___wbinvd+0x10/0x10
[ 3694.287490]  on_each_cpu_cond_mask+0x28/0x50
[ 3694.287493]  wbinvd_on_all_cpus+0x29/0x40
[ 3694.287498]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3694.287507]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3694.287564]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3694.287621]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3694.287628]  change_protection+0xfc9/0x1200
[ 3694.287634]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.287639]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.287641]  ? update_load_avg+0x84/0x780
[ 3694.287647]  ? write_ibpb+0x21/0x40
[ 3694.287652]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3694.287706]  change_prot_numa+0x5b/0xe0
[ 3694.287714]  task_numa_work+0x3c5/0x9b0
[ 3694.287721]  task_work_run+0x64/0xa0
[ 3694.287727]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3694.287732]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3694.287785]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3694.287838]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.287840]  ? do_futex+0xc8/0x1d0
[ 3694.287843]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.287845]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.287849]  __x64_sys_ioctl+0xa0/0xf0
[ 3694.287855]  x64_sys_call+0x122e/0x2150
[ 3694.287857]  do_syscall_64+0x56/0x1e0
[ 3694.287860]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3694.287862] RIP: 0033:0x7f67bff03b4b
[ 3694.287865] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3694.287867] RSP: 002b:00007f5b267fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3694.287869] RAX: ffffffffffffffda RBX: 0000563db6059ff0 RCX: 00007f67bff03b4b
[ 3694.287870] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000ca
[ 3694.287872] RBP: 0000563db6059ff0 R08: 0000000000000000 R09: 0000000000000000
[ 3694.287873] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3694.287874] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3694.287879]  </TASK>
[ 3694.299357] watchdog: BUG: soft lockup - CPU#17 stuck for 48s! [qemu-system-x86:31404]
[ 3694.299363] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3694.299432] CPU: 17 UID: 0 PID: 31404 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3694.299436] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3694.299438] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3694.299439] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3694.299447] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3694.299450] RSP: 0018:ffffaab62bf3f8b8 EFLAGS: 00000202
[ 3694.299452] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3694.299453] RDX: 0000000000000001 RSI: ffff8f717fff91e0 RDI: ffff8f52872d0b00
[ 3694.299455] RBP: ffffaab62bf3f918 R08: 0000000000000007 R09: ffff8f52872d0850
[ 3694.299456] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3694.299457] R13: 0000000000000202 R14: ffff8f7180272a40 R15: 0000000000000080
[ 3694.299459] FS:  00007f5885ffb640(0000) GS:ffff8f71eda76000(0000) knlGS:0000000000000000
[ 3694.299461] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3694.299462] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3694.299464] PKRU: 55555554
[ 3694.299465] Call Trace:
[ 3694.299467]  <TASK>
[ 3694.299470]  ? __pfx___wbinvd+0x10/0x10
[ 3694.299478]  on_each_cpu_cond_mask+0x28/0x50
[ 3694.299481]  wbinvd_on_all_cpus+0x29/0x40
[ 3694.299486]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3694.299494]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3694.299549]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3694.299605]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3694.299611]  change_protection+0xfc9/0x1200
[ 3694.299617]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.299622]  ? update_curr_dl_se+0x3b/0x1e0
[ 3694.299627]  ? dl_server_update+0x2e/0x40
[ 3694.299631]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.299634]  ? pick_next_task_fair+0x4f/0x490
[ 3694.299639]  change_prot_numa+0x5b/0xe0
[ 3694.299644]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3694.299651]  task_numa_work+0x3c5/0x9b0
[ 3694.299659]  task_work_run+0x64/0xa0
[ 3694.299664]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3694.299670]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3694.299722]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3694.299774]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.299776]  ? do_futex+0xc8/0x1d0
[ 3694.299779]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.299781]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.299785]  __x64_sys_ioctl+0xa0/0xf0
[ 3694.299791]  x64_sys_call+0x122e/0x2150
[ 3694.299793]  do_syscall_64+0x56/0x1e0
[ 3694.299799]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3694.299801] RIP: 0033:0x7f67bff03b4b
[ 3694.299804] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3694.299805] RSP: 002b:00007f5885ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3694.299808] RAX: ffffffffffffffda RBX: 0000563db6636340 RCX: 00007f67bff03b4b
[ 3694.299809] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001f2
[ 3694.299810] RBP: 0000563db6636340 R08: 0000000000000000 R09: 0000000000000000
[ 3694.299812] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3694.299813] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3694.299818]  </TASK>
[ 3694.303358] watchdog: BUG: soft lockup - CPU#19 stuck for 48s! [qemu-system-x86:31326]
[ 3694.303362] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3694.303454] CPU: 19 UID: 0 PID: 31326 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3694.303460] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3694.303461] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3694.303462] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3694.303467] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3694.303469] RSP: 0018:ffffaab62b0338b8 EFLAGS: 00000202
[ 3694.303472] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3694.303473] RDX: 0000000000000001 RSI: ffff8f717fff9220 RDI: ffff8f52872d0a50
[ 3694.303475] RBP: ffffaab62b033918 R08: 0000000000000007 R09: ffff8f52872d0b70
[ 3694.303477] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3694.303478] R13: 0000000000000202 R14: ffff8f71802f2a40 R15: 0000000000000080
[ 3694.303480] FS:  00007f59e67fc640(0000) GS:ffff8f71edaf6000(0000) knlGS:0000000000000000
[ 3694.303482] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3694.303483] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3694.303485] PKRU: 55555554
[ 3694.303486] Call Trace:
[ 3694.303488]  <TASK>
[ 3694.303491]  ? __pfx___wbinvd+0x10/0x10
[ 3694.303498]  on_each_cpu_cond_mask+0x28/0x50
[ 3694.303501]  wbinvd_on_all_cpus+0x29/0x40
[ 3694.303505]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3694.303518]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3694.303602]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3694.303679]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3694.303684]  change_protection+0xfc9/0x1200
[ 3694.303690]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.303693]  ? update_curr_dl_se+0x3b/0x1e0
[ 3694.303697]  ? dl_server_update+0x2e/0x40
[ 3694.303701]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.303705]  ? pick_next_task_fair+0x4f/0x490
[ 3694.303709]  change_prot_numa+0x5b/0xe0
[ 3694.303714]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3694.303719]  task_numa_work+0x3c5/0x9b0
[ 3694.303728]  task_work_run+0x64/0xa0
[ 3694.303732]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3694.303737]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3694.303810]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3694.303885]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.303888]  ? do_futex+0xc8/0x1d0
[ 3694.303891]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.303893]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.303897]  __x64_sys_ioctl+0xa0/0xf0
[ 3694.303902]  x64_sys_call+0x122e/0x2150
[ 3694.303905]  do_syscall_64+0x56/0x1e0
[ 3694.303911]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3694.303915] RIP: 0033:0x7f67bff03b4b
[ 3694.303921] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3694.303923] RSP: 002b:00007f59e67fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3694.303927] RAX: ffffffffffffffda RBX: 0000563db6320030 RCX: 00007f67bff03b4b
[ 3694.303929] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000156
[ 3694.303931] RBP: 0000563db6320030 R08: 0000000000000000 R09: 0000000000000000
[ 3694.303933] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3694.303935] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3694.303943]  </TASK>
[ 3694.327356] watchdog: BUG: soft lockup - CPU#30 stuck for 48s! [qemu-system-x86:31241]
[ 3694.327362] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3694.327431] CPU: 30 UID: 0 PID: 31241 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3694.327436] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3694.327437] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3694.327439] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3694.327446] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3694.327449] RSP: 0018:ffffaab62ac838b8 EFLAGS: 00000202
[ 3694.327451] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3694.327452] RDX: 0000000000000001 RSI: ffff8f717fff9380 RDI: ffff8f52872d0570
[ 3694.327454] RBP: ffffaab62ac83918 R08: 0000000000000007 R09: ffff8f52872d0ae0
[ 3694.327455] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3694.327456] R13: 0000000000000202 R14: ffff8f71805b2a40 R15: 0000000000000080
[ 3694.327458] FS:  00007f5b66ffd640(0000) GS:ffff8f71eddb6000(0000) knlGS:0000000000000000
[ 3694.327459] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3694.327461] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3694.327462] PKRU: 55555554
[ 3694.327463] Call Trace:
[ 3694.327465]  <TASK>
[ 3694.327468]  ? __pfx___wbinvd+0x10/0x10
[ 3694.327476]  on_each_cpu_cond_mask+0x28/0x50
[ 3694.327479]  wbinvd_on_all_cpus+0x29/0x40
[ 3694.327484]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3694.327494]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3694.327549]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3694.327605]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3694.327611]  change_protection+0xfc9/0x1200
[ 3694.327617]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.327623]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.327625]  ? update_load_avg+0x84/0x780
[ 3694.327630]  ? write_ibpb+0x21/0x40
[ 3694.327636]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3694.327689]  change_prot_numa+0x5b/0xe0
[ 3694.327697]  task_numa_work+0x3c5/0x9b0
[ 3694.327704]  task_work_run+0x64/0xa0
[ 3694.327709]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3694.327715]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3694.327768]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3694.327821]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.327823]  ? do_futex+0xc8/0x1d0
[ 3694.327826]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.327828]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.327832]  __x64_sys_ioctl+0xa0/0xf0
[ 3694.327838]  x64_sys_call+0x122e/0x2150
[ 3694.327840]  do_syscall_64+0x56/0x1e0
[ 3694.327843]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3694.327845] RIP: 0033:0x7f67bff03b4b
[ 3694.327848] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3694.327849] RSP: 002b:00007f5b66ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3694.327852] RAX: ffffffffffffffda RBX: 0000563db5fc29d0 RCX: 00007f67bff03b4b
[ 3694.327853] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000ac
[ 3694.327854] RBP: 0000563db5fc29d0 R08: 0000000000000000 R09: 0000000000000000
[ 3694.327855] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3694.327857] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3694.327862]  </TASK>
[ 3694.327863] watchdog: BUG: soft lockup - CPU#29 stuck for 22s! [kworker/u516:3:39511]
[ 3694.327867] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3694.327939] CPU: 29 UID: 0 PID: 39511 Comm: kworker/u516:3 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3694.327943] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3694.327944] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3694.327946] Workqueue: writeback wb_workfn (flush-253:1)
[ 3694.327953] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3694.327956] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3694.327958] RSP: 0018:ffffaab6926c35d8 EFLAGS: 00000202
[ 3694.327960] RAX: 0000000000000056 RBX: 0000000000000001 RCX: 0000000000000011
[ 3694.327962] RDX: 0000000000000001 RSI: ffff8f7180bb9360 RDI: ffff8f52872d07a0
[ 3694.327963] RBP: ffffaab6926c3638 R08: 0000000000000056 R09: ffff8f52872d0970
[ 3694.327964] R10: 0000000000000002 R11: 0000000000000002 R12: ffff8f7180570b00
[ 3694.327966] R13: ffff8f52872d0e00 R14: ffff8f7180572a40 R15: 0000000000000080
[ 3694.327967] FS:  0000000000000000(0000) GS:ffff8f71edd76000(0000) knlGS:0000000000000000
[ 3694.327969] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3694.327970] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3694.327972] PKRU: 55555554
[ 3694.327973] Call Trace:
[ 3694.327974]  <TASK>
[ 3694.327977]  ? __pfx_flush_tlb_func+0x10/0x10
[ 3694.327984]  on_each_cpu_cond_mask+0x28/0x50
[ 3694.327987]  native_flush_tlb_multi+0xec/0x140
[ 3694.327990]  ? __pte_offset_map_lock+0x9a/0x110
[ 3694.327993]  flush_tlb_mm_range+0x1d6/0x5d0
[ 3694.327996]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.327999]  ? page_vma_mapped_walk+0x7bb/0xac0
[ 3694.328003]  ptep_clear_flush+0x64/0x80
[ 3694.328006]  page_vma_mkclean_one.constprop.0+0x113/0x270
[ 3694.328011]  page_mkclean_one+0x8c/0xb0
[ 3694.328015]  __rmap_walk_file+0xe3/0x190
[ 3694.328020]  rmap_walk+0x49/0x70
[ 3694.328023]  folio_mkclean+0xb0/0xc0
[ 3694.328026]  ? __pfx_page_mkclean_one+0x10/0x10
[ 3694.328029]  ? __pfx_invalid_mkclean_vma+0x10/0x10
[ 3694.328031]  folio_clear_dirty_for_io+0x60/0x190
[ 3694.328037]  writeback_iter+0x10b/0x310
[ 3694.328040]  iomap_writepages+0x6d/0x990
[ 3694.328045]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.328048]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.328051]  ? mpt3sas_scsih_scsi_lookup_get+0x4f/0xe0 [mpt3sas]
[ 3694.328064]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.328069]  xfs_vm_writepages+0x88/0x100 [xfs]
[ 3694.328193]  do_writepages+0xc8/0x160
[ 3694.328198]  __writeback_single_inode+0x44/0x340
[ 3694.328202]  writeback_sb_inodes+0x249/0x540
[ 3694.328216]  __writeback_inodes_wb+0x56/0xf0
[ 3694.328220]  wb_writeback+0x192/0x300
[ 3694.328226]  wb_workfn+0x26a/0x410
[ 3694.328232]  process_one_work+0x19f/0x3e0
[ 3694.328236]  worker_thread+0x2ad/0x3c0
[ 3694.328239]  kthread+0x10b/0x220
[ 3694.328242]  ? __pfx_worker_thread+0x10/0x10
[ 3694.328245]  ? __pfx_kthread+0x10/0x10
[ 3694.328248]  ret_from_fork+0x8e/0x100
[ 3694.328252]  ? __pfx_kthread+0x10/0x10
[ 3694.328255]  ret_from_fork_asm+0x1a/0x30
[ 3694.328261]  </TASK>
[ 3694.351356] watchdog: BUG: soft lockup - CPU#40 stuck for 48s! [qemu-system-x86:31268]
[ 3694.351362] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3694.351430] CPU: 40 UID: 0 PID: 31268 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3694.351434] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3694.351435] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3694.351437] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3694.351445] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3694.351447] RSP: 0018:ffffaab62ad5b8b8 EFLAGS: 00000202
[ 3694.351449] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3694.351451] RDX: 0000000000000001 RSI: ffff8f717fff94c0 RDI: ffff8f72066e39e0
[ 3694.351452] RBP: ffffaab62ad5b918 R08: 0000000000000007 R09: ffff8f72066e3c40
[ 3694.351454] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3694.351455] R13: 0000000000000202 R14: ffff8f917e232a40 R15: 0000000000000080
[ 3694.351457] FS:  00007f5ae77fe640(0000) GS:ffff8f91eba36000(0000) knlGS:0000000000000000
[ 3694.351458] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3694.351460] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3694.351461] PKRU: 55555554
[ 3694.351462] Call Trace:
[ 3694.351464]  <TASK>
[ 3694.351468]  ? __pfx___wbinvd+0x10/0x10
[ 3694.351475]  on_each_cpu_cond_mask+0x28/0x50
[ 3694.351478]  wbinvd_on_all_cpus+0x29/0x40
[ 3694.351483]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3694.351491]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3694.351545]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3694.351601]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3694.351607]  change_protection+0xfc9/0x1200
[ 3694.351615]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.351618]  ? update_load_avg+0x84/0x780
[ 3694.351624]  ? write_ibpb+0x21/0x40
[ 3694.351629]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3694.351682]  change_prot_numa+0x5b/0xe0
[ 3694.351689]  task_numa_work+0x3c5/0x9b0
[ 3694.351697]  task_work_run+0x64/0xa0
[ 3694.351702]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3694.351707]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3694.351759]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3694.351811]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.351814]  ? do_futex+0xc8/0x1d0
[ 3694.351816]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.351819]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.351823]  __x64_sys_ioctl+0xa0/0xf0
[ 3694.351828]  x64_sys_call+0x122e/0x2150
[ 3694.351831]  do_syscall_64+0x56/0x1e0
[ 3694.351834]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3694.351836] RIP: 0033:0x7f67bff03b4b
[ 3694.351839] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3694.351840] RSP: 002b:00007f5ae77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3694.351843] RAX: ffffffffffffffda RBX: 0000563db60d3df0 RCX: 00007f67bff03b4b
[ 3694.351844] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000e2
[ 3694.351845] RBP: 0000563db60d3df0 R08: 0000000000000000 R09: 0000000000000000
[ 3694.351846] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3694.351847] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3694.351853]  </TASK>
[ 3694.391356] watchdog: BUG: soft lockup - CPU#57 stuck for 48s! [qemu-system-x86:31333]
[ 3694.391361] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3694.391430] CPU: 57 UID: 0 PID: 31333 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3694.391435] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3694.391436] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3694.391437] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3694.391444] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3694.391446] RSP: 0018:ffffaab62b1df8b8 EFLAGS: 00000202
[ 3694.391448] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3694.391450] RDX: 0000000000000001 RSI: ffff8f717fff96e0 RDI: ffff8f72000babf0
[ 3694.391452] RBP: ffffaab62b1df918 R08: 0000000000000007 R09: ffff8f72000bab00
[ 3694.391453] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3694.391454] R13: 0000000000000202 R14: ffff8f917e672a40 R15: 0000000000000080
[ 3694.391456] FS:  00007f59c67fc640(0000) GS:ffff8f91ebe76000(0000) knlGS:0000000000000000
[ 3694.391458] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3694.391459] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3694.391461] PKRU: 55555554
[ 3694.391462] Call Trace:
[ 3694.391464]  <TASK>
[ 3694.391467]  ? __pfx___wbinvd+0x10/0x10
[ 3694.391474]  on_each_cpu_cond_mask+0x28/0x50
[ 3694.391477]  wbinvd_on_all_cpus+0x29/0x40
[ 3694.391482]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3694.391491]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3694.391548]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3694.391604]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3694.391610]  change_protection+0xfc9/0x1200
[ 3694.391616]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.391621]  ? update_curr_dl_se+0x3b/0x1e0
[ 3694.391625]  ? dl_server_update+0x2e/0x40
[ 3694.391629]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.391632]  ? pick_next_task_fair+0x4f/0x490
[ 3694.391637]  change_prot_numa+0x5b/0xe0
[ 3694.391642]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3694.391648]  task_numa_work+0x3c5/0x9b0
[ 3694.391656]  task_work_run+0x64/0xa0
[ 3694.391661]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3694.391667]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3694.391720]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3694.391773]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.391776]  ? do_futex+0xc8/0x1d0
[ 3694.391779]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.391781]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.391785]  __x64_sys_ioctl+0xa0/0xf0
[ 3694.391790]  x64_sys_call+0x122e/0x2150
[ 3694.391793]  do_syscall_64+0x56/0x1e0
[ 3694.391798]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3694.391800] RIP: 0033:0x7f67bff03b4b
[ 3694.391803] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3694.391805] RSP: 002b:00007f59c67fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3694.391807] RAX: ffffffffffffffda RBX: 0000563db63677d0 RCX: 00007f67bff03b4b
[ 3694.391808] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000164
[ 3694.391810] RBP: 0000563db63677d0 R08: 0000000000000000 R09: 0000000000000000
[ 3694.391811] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3694.391812] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3694.391817]  </TASK>
[ 3694.395356] watchdog: BUG: soft lockup - CPU#60 stuck for 48s! [qemu-system-x86:31338]
[ 3694.395360] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3694.395436] CPU: 60 UID: 0 PID: 31338 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3694.395442] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3694.395443] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3694.395444] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3694.395449] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3694.395451] RSP: 0018:ffffaab62b2078b8 EFLAGS: 00000202
[ 3694.395453] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3694.395455] RDX: 0000000000000001 RSI: ffff8f717fff9740 RDI: ffff8f72000ba610
[ 3694.395457] RBP: ffffaab62b207918 R08: 0000000000000007 R09: ffff8f72000ba170
[ 3694.395458] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3694.395459] R13: 0000000000000202 R14: ffff8f917e732a40 R15: 0000000000000080
[ 3694.395461] FS:  00007f59a77fe640(0000) GS:ffff8f91ebf36000(0000) knlGS:0000000000000000
[ 3694.395463] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3694.395465] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3694.395467] PKRU: 55555554
[ 3694.395468] Call Trace:
[ 3694.395469]  <TASK>
[ 3694.395473]  ? __pfx___wbinvd+0x10/0x10
[ 3694.395481]  on_each_cpu_cond_mask+0x28/0x50
[ 3694.395485]  wbinvd_on_all_cpus+0x29/0x40
[ 3694.395489]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3694.395501]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3694.395579]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3694.395656]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3694.395661]  change_protection+0xfc9/0x1200
[ 3694.395666]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.395670]  ? update_curr_dl_se+0x3b/0x1e0
[ 3694.395673]  ? dl_server_update+0x2e/0x40
[ 3694.395678]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.395682]  ? pick_next_task_fair+0x4f/0x490
[ 3694.395688]  change_prot_numa+0x5b/0xe0
[ 3694.395698]  task_numa_work+0x3c5/0x9b0
[ 3694.395706]  task_work_run+0x64/0xa0
[ 3694.395710]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3694.395715]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3694.395794]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3694.395865]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.395869]  ? do_futex+0xc8/0x1d0
[ 3694.395871]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.395874]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.395878]  __x64_sys_ioctl+0xa0/0xf0
[ 3694.395883]  x64_sys_call+0x122e/0x2150
[ 3694.395885]  do_syscall_64+0x56/0x1e0
[ 3694.395890]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3694.395892] RIP: 0033:0x7f67bff03b4b
[ 3694.395895] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3694.395898] RSP: 002b:00007f59a77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3694.395903] RAX: ffffffffffffffda RBX: 0000563db6399de0 RCX: 00007f67bff03b4b
[ 3694.395905] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000016e
[ 3694.395906] RBP: 0000563db6399de0 R08: 0000000000000000 R09: 0000000000000000
[ 3694.395908] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3694.395909] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3694.395915]  </TASK>
[ 3694.423354] watchdog: BUG: soft lockup - CPU#64 stuck for 48s! [qemu-system-x86:30221]
[ 3694.423357] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3694.423417] CPU: 64 UID: 0 PID: 30221 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3694.423422] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3694.423423] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3694.423424] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3694.423427] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3694.423429] RSP: 0000:ffffaab62c787a40 EFLAGS: 00000202
[ 3694.423431] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3694.423432] RDX: 0000000000000001 RSI: ffff8f717fff97c0 RDI: ffff8f5287658460
[ 3694.423434] RBP: ffffaab62c787aa0 R08: 0000000000000007 R09: ffff8f5287658f30
[ 3694.423435] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3694.423436] R13: 0000000000000202 R14: ffff8f7180632a40 R15: 0000000000000080
[ 3694.423438] FS:  00007fe43be09c80(0000) GS:ffff8f71ede36000(0000) knlGS:0000000000000000
[ 3694.423440] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3694.423441] CR2: 0000000000000000 CR3: 000000208b92101d CR4: 0000000000770ef0
[ 3694.423443] PKRU: 55555554
[ 3694.423444] Call Trace:
[ 3694.423445]  <TASK>
[ 3694.423447]  ? __pfx___wbinvd+0x10/0x10
[ 3694.423452]  on_each_cpu_cond_mask+0x28/0x50
[ 3694.423455]  wbinvd_on_all_cpus+0x29/0x40
[ 3694.423459]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3694.423467]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3694.423520]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3694.423576]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3694.423580]  change_protection+0xfc9/0x1200
[ 3694.423589]  ? sched_balance_rq+0x214/0xf80
[ 3694.423593]  change_prot_numa+0x5b/0xe0
[ 3694.423599]  task_numa_work+0x3c5/0x9b0
[ 3694.423607]  task_work_run+0x64/0xa0
[ 3694.423611]  irqentry_exit_to_user_mode+0x15d/0x170
[ 3694.423615]  irqentry_exit+0x3f/0x50
[ 3694.423618]  sysvec_apic_timer_interrupt+0x51/0x90
[ 3694.423622]  asm_sysvec_apic_timer_interrupt+0x1f/0x30
[ 3694.423624] RIP: 0033:0x555f731496f0
[ 3694.423626] Code: 5f 31 d2 31 f6 31 ff 45 31 c0 c3 0f 1f 80 00 00 00 00 8b 05 6a 71 07 01 85 c0 74 0a 48 8b 45 00 83 78 08 01 74 64 48 8b 43 20 <ba> 31 02 00 00 4c 89 fe 4c 89 e7 48 89 45 38 4c 8b 73 10 48 c7 43
[ 3694.423628] RSP: 002b:00007fff0a821250 EFLAGS: 00000246
[ 3694.423630] RAX: 0000000000000000 RBX: 0000555f86a813c0 RCX: 0000000000000000
[ 3694.423631] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
[ 3694.423632] RBP: 0000555f85541f10 R08: 0000000000000000 R09: 0000000000000000
[ 3694.423633] R10: 00007fe43c625000 R11: 00007fe43c625010 R12: 0000555f85541f18
[ 3694.423635] R13: 0000000000000001 R14: 0000555f741dfff0 R15: 0000555f7335b2af
[ 3694.423640]  </TASK>
[ 3694.431354] watchdog: BUG: soft lockup - CPU#65 stuck for 48s! [qemu-system-x86:31406]
[ 3694.431356] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3694.431419] CPU: 65 UID: 0 PID: 31406 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3694.431423] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3694.431424] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3694.431425] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3694.431429] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3694.431431] RSP: 0018:ffffaab62bf2f8b8 EFLAGS: 00000202
[ 3694.431433] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3694.431434] RDX: 0000000000000001 RSI: ffff8f717fff97e0 RDI: ffff8f5287658e40
[ 3694.431436] RBP: ffffaab62bf2f918 R08: 0000000000000007 R09: ffff8f5287658ed0
[ 3694.431437] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3694.431438] R13: 0000000000000202 R14: ffff8f7180672a40 R15: 0000000000000080
[ 3694.431440] FS:  00007f5884ff9640(0000) GS:ffff8f71ede76000(0000) knlGS:0000000000000000
[ 3694.431442] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3694.431443] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3694.431445] PKRU: 55555554
[ 3694.431446] Call Trace:
[ 3694.431447]  <TASK>
[ 3694.431449]  ? __pfx___wbinvd+0x10/0x10
[ 3694.431454]  on_each_cpu_cond_mask+0x28/0x50
[ 3694.431457]  wbinvd_on_all_cpus+0x29/0x40
[ 3694.431461]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3694.431469]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3694.431523]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3694.431579]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3694.431584]  change_protection+0xfc9/0x1200
[ 3694.431589]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.431592]  ? update_curr_dl_se+0x3b/0x1e0
[ 3694.431596]  ? dl_server_update+0x2e/0x40
[ 3694.431600]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.431604]  ? pick_next_task_fair+0x4f/0x490
[ 3694.431608]  change_prot_numa+0x5b/0xe0
[ 3694.431613]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.431615]  ? update_load_avg+0x84/0x780
[ 3694.431618]  ? __dequeue_entity+0x3cd/0x4a0
[ 3694.431622]  task_numa_work+0x3c5/0x9b0
[ 3694.431631]  task_work_run+0x64/0xa0
[ 3694.431635]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3694.431639]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3694.431693]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3694.431746]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.431748]  ? do_futex+0xc8/0x1d0
[ 3694.431751]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.431753]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.431757]  __x64_sys_ioctl+0xa0/0xf0
[ 3694.431762]  x64_sys_call+0x122e/0x2150
[ 3694.431765]  do_syscall_64+0x56/0x1e0
[ 3694.431769]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3694.431771] RIP: 0033:0x7f67bff03b4b
[ 3694.431773] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3694.431775] RSP: 002b:00007f5884ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3694.431777] RAX: ffffffffffffffda RBX: 0000563db664a2e0 RCX: 00007f67bff03b4b
[ 3694.431779] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001f6
[ 3694.431780] RBP: 0000563db664a2e0 R08: 0000000000000000 R09: 0000000000000000
[ 3694.431782] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3694.431783] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3694.431789]  </TASK>
[ 3694.439354] watchdog: BUG: soft lockup - CPU#68 stuck for 48s! [qemu-system-x86:31300]
[ 3694.439359] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3694.439447] CPU: 68 UID: 0 PID: 31300 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3694.439452] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3694.439454] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3694.439455] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3694.439461] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3694.439464] RSP: 0018:ffffaab62af478b8 EFLAGS: 00000202
[ 3694.439466] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3694.439468] RDX: 0000000000000001 RSI: ffff8f717fff9840 RDI: ffff8f5287658670
[ 3694.439470] RBP: ffffaab62af47918 R08: 0000000000000007 R09: ffff8f5287658210
[ 3694.439471] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3694.439472] R13: 0000000000000202 R14: ffff8f7180732a40 R15: 0000000000000080
[ 3694.439474] FS:  00007f5a657fa640(0000) GS:ffff8f71edf36000(0000) knlGS:0000000000000000
[ 3694.439476] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3694.439478] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3694.439480] PKRU: 55555554
[ 3694.439481] Call Trace:
[ 3694.439482]  <TASK>
[ 3694.439486]  ? __pfx___wbinvd+0x10/0x10
[ 3694.439492]  on_each_cpu_cond_mask+0x28/0x50
[ 3694.439495]  wbinvd_on_all_cpus+0x29/0x40
[ 3694.439499]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3694.439511]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3694.439602]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3694.439708]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3694.439715]  change_protection+0xfc9/0x1200
[ 3694.439722]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.439728]  ? pick_eevdf+0x7c/0x1a0
[ 3694.439734]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.439740]  ? pick_next_task_fair+0x4f/0x490
[ 3694.439745]  change_prot_numa+0x5b/0xe0
[ 3694.439752]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3694.439760]  task_numa_work+0x3c5/0x9b0
[ 3694.439772]  task_work_run+0x64/0xa0
[ 3694.439778]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3694.439784]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3694.439865]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3694.439941]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.439944]  ? do_futex+0xc8/0x1d0
[ 3694.439947]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.439950]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.439954]  __x64_sys_ioctl+0xa0/0xf0
[ 3694.439959]  x64_sys_call+0x122e/0x2150
[ 3694.439962]  do_syscall_64+0x56/0x1e0
[ 3694.439966]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3694.439968] RIP: 0033:0x7f67bff03b4b
[ 3694.439972] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3694.439974] RSP: 002b:00007f5a657f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3694.439977] RAX: ffffffffffffffda RBX: 0000563db62190f0 RCX: 00007f67bff03b4b
[ 3694.439979] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000122
[ 3694.439981] RBP: 0000563db62190f0 R08: 0000000000000000 R09: 0000000000000000
[ 3694.439982] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3694.439984] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3694.439990]  </TASK>
[ 3694.447354] watchdog: BUG: soft lockup - CPU#71 stuck for 48s! [qemu-system-x86:31278]
[ 3694.447356] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3694.447413] CPU: 71 UID: 0 PID: 31278 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3694.447416] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3694.447417] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3694.447418] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3694.447421] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3694.447423] RSP: 0018:ffffaab62ae8b8b8 EFLAGS: 00000202
[ 3694.447425] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3694.447426] RDX: 0000000000000001 RSI: ffff8f717fff98a0 RDI: ffff8f5287658880
[ 3694.447427] RBP: ffffaab62ae8b918 R08: 0000000000000007 R09: ffff8f52876588a0
[ 3694.447429] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3694.447430] R13: 0000000000000202 R14: ffff8f71807f2a40 R15: 0000000000000080
[ 3694.447431] FS:  00007f5ac5ffb640(0000) GS:ffff8f71edff6000(0000) knlGS:0000000000000000
[ 3694.447433] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3694.447434] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3694.447436] PKRU: 55555554
[ 3694.447437] Call Trace:
[ 3694.447438]  <TASK>
[ 3694.447439]  ? __pfx___wbinvd+0x10/0x10
[ 3694.447444]  on_each_cpu_cond_mask+0x28/0x50
[ 3694.447447]  wbinvd_on_all_cpus+0x29/0x40
[ 3694.447451]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3694.447459]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3694.447512]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3694.447566]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3694.447570]  change_protection+0xfc9/0x1200
[ 3694.447575]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.447579]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.447581]  ? update_load_avg+0x84/0x780
[ 3694.447585]  ? write_ibpb+0x21/0x40
[ 3694.447588]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3694.447641]  change_prot_numa+0x5b/0xe0
[ 3694.447648]  task_numa_work+0x3c5/0x9b0
[ 3694.447655]  task_work_run+0x64/0xa0
[ 3694.447659]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3694.447663]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3694.447715]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3694.447767]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.447770]  ? do_futex+0xc8/0x1d0
[ 3694.447772]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.447774]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.447778]  __x64_sys_ioctl+0xa0/0xf0
[ 3694.447782]  x64_sys_call+0x122e/0x2150
[ 3694.447785]  do_syscall_64+0x56/0x1e0
[ 3694.447788]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3694.447790] RIP: 0033:0x7f67bff03b4b
[ 3694.447792] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3694.447794] RSP: 002b:00007f5ac5ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3694.447796] RAX: ffffffffffffffda RBX: 0000563db61390c0 RCX: 00007f67bff03b4b
[ 3694.447797] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000f6
[ 3694.447798] RBP: 0000563db61390c0 R08: 0000000000000000 R09: 0000000000000000
[ 3694.447800] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3694.447801] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3694.447806]  </TASK>
[ 3694.459354] watchdog: BUG: soft lockup - CPU#77 stuck for 48s! [qemu-system-x86:31293]
[ 3694.459357] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3694.459416] CPU: 77 UID: 0 PID: 31293 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3694.459420] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3694.459421] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3694.459423] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3694.459426] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3694.459428] RSP: 0018:ffffaab62af0f8b8 EFLAGS: 00000202
[ 3694.459430] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3694.459432] RDX: 0000000000000001 RSI: ffff8f717fff9960 RDI: ffff8f5287658b10
[ 3694.459433] RBP: ffffaab62af0f918 R08: 0000000000000007 R09: ffff8f52876589e0
[ 3694.459435] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3694.459436] R13: 0000000000000202 R14: ffff8f7180972a40 R15: 0000000000000080
[ 3694.459437] FS:  00007f5a857fa640(0000) GS:ffff8f71ee176000(0000) knlGS:0000000000000000
[ 3694.459439] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3694.459440] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3694.459442] PKRU: 55555554
[ 3694.459443] Call Trace:
[ 3694.459444]  <TASK>
[ 3694.459446]  ? __pfx___wbinvd+0x10/0x10
[ 3694.459451]  on_each_cpu_cond_mask+0x28/0x50
[ 3694.459454]  wbinvd_on_all_cpus+0x29/0x40
[ 3694.459458]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3694.459466]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3694.459520]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3694.459575]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3694.459580]  change_protection+0xfc9/0x1200
[ 3694.459584]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.459589]  ? pick_eevdf+0x7c/0x1a0
[ 3694.459593]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.459596]  ? pick_next_task_fair+0x4f/0x490
[ 3694.459600]  change_prot_numa+0x5b/0xe0
[ 3694.459604]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.459607]  ? update_load_avg+0x84/0x780
[ 3694.459611]  task_numa_work+0x3c5/0x9b0
[ 3694.459618]  task_work_run+0x64/0xa0
[ 3694.459622]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3694.459627]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3694.459680]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3694.459732]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.459735]  ? do_futex+0xc8/0x1d0
[ 3694.459737]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.459739]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.459743]  __x64_sys_ioctl+0xa0/0xf0
[ 3694.459748]  x64_sys_call+0x122e/0x2150
[ 3694.459750]  do_syscall_64+0x56/0x1e0
[ 3694.459754]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3694.459756] RIP: 0033:0x7f67bff03b4b
[ 3694.459758] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3694.459760] RSP: 002b:00007f5a857f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3694.459762] RAX: ffffffffffffffda RBX: 0000563db61d1ba0 RCX: 00007f67bff03b4b
[ 3694.459763] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000114
[ 3694.459764] RBP: 0000563db61d1ba0 R08: 0000000000000000 R09: 0000000000000000
[ 3694.459765] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3694.459767] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3694.459772]  </TASK>
[ 3694.459773] watchdog: BUG: soft lockup - CPU#76 stuck for 48s! [qemu-system-x86:31260]
[ 3694.459775] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3694.459832] CPU: 76 UID: 0 PID: 31260 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3694.459836] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3694.459836] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3694.459838] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3694.459841] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3694.459842] RSP: 0018:ffffaab62ad1b8b8 EFLAGS: 00000202
[ 3694.459844] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3694.459845] RDX: 0000000000000001 RSI: ffff8f717fff9940 RDI: ffff8f5287658010
[ 3694.459846] RBP: ffffaab62ad1b918 R08: 0000000000000007 R09: ffff8f52876589f0
[ 3694.459848] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3694.459849] R13: 0000000000000202 R14: ffff8f7180932a40 R15: 0000000000000080
[ 3694.459850] FS:  00007f5b07fff640(0000) GS:ffff8f71ee136000(0000) knlGS:0000000000000000
[ 3694.459852] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3694.459853] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3694.459855] PKRU: 55555554
[ 3694.459856] Call Trace:
[ 3694.459857]  <TASK>
[ 3694.459859]  ? __pfx___wbinvd+0x10/0x10
[ 3694.459864]  on_each_cpu_cond_mask+0x28/0x50
[ 3694.459866]  wbinvd_on_all_cpus+0x29/0x40
[ 3694.459870]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3694.459878]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3694.459931]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3694.459986]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3694.459991]  change_protection+0xfc9/0x1200
[ 3694.459995]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.459999]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.460001]  ? update_load_avg+0x84/0x780
[ 3694.460005]  ? write_ibpb+0x21/0x40
[ 3694.460008]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3694.460061]  change_prot_numa+0x5b/0xe0
[ 3694.460068]  task_numa_work+0x3c5/0x9b0
[ 3694.460075]  task_work_run+0x64/0xa0
[ 3694.460079]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3694.460084]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3694.460136]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3694.460189]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.460192]  ? do_futex+0xc8/0x1d0
[ 3694.460194]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.460196]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.460200]  __x64_sys_ioctl+0xa0/0xf0
[ 3694.460205]  x64_sys_call+0x122e/0x2150
[ 3694.460207]  do_syscall_64+0x56/0x1e0
[ 3694.460210]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3694.460212] RIP: 0033:0x7f67bff03b4b
[ 3694.460214] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3694.460216] RSP: 002b:00007f5b07ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3694.460218] RAX: ffffffffffffffda RBX: 0000563db60831d0 RCX: 00007f67bff03b4b
[ 3694.460219] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000d2
[ 3694.460220] RBP: 0000563db60831d0 R08: 0000000000000000 R09: 0000000000000000
[ 3694.460222] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3694.460223] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3694.460228]  </TASK>
[ 3694.463353] watchdog: BUG: soft lockup - CPU#79 stuck for 48s! [qemu-system-x86:31405]
[ 3694.463356] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3694.463413] CPU: 79 UID: 0 PID: 31405 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3694.463416] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3694.463417] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3694.463418] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3694.463422] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3694.463423] RSP: 0018:ffffaab62bf378b8 EFLAGS: 00000202
[ 3694.463425] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3694.463426] RDX: 0000000000000001 RSI: ffff8f717fff99a0 RDI: ffff8f5287658600
[ 3694.463428] RBP: ffffaab62bf37918 R08: 0000000000000007 R09: ffff8f5287658dc0
[ 3694.463429] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3694.463430] R13: 0000000000000202 R14: ffff8f71809f2a40 R15: 0000000000000080
[ 3694.463432] FS:  00007f58857fa640(0000) GS:ffff8f71ee1f6000(0000) knlGS:0000000000000000
[ 3694.463433] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3694.463435] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3694.463436] PKRU: 55555554
[ 3694.463437] Call Trace:
[ 3694.463438]  <TASK>
[ 3694.463440]  ? __pfx___wbinvd+0x10/0x10
[ 3694.463445]  on_each_cpu_cond_mask+0x28/0x50
[ 3694.463448]  wbinvd_on_all_cpus+0x29/0x40
[ 3694.463451]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3694.463459]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3694.463513]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3694.463569]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3694.463573]  change_protection+0xfc9/0x1200
[ 3694.463578]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.463581]  ? update_curr_dl_se+0x3b/0x1e0
[ 3694.463585]  ? dl_server_update+0x2e/0x40
[ 3694.463589]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.463593]  ? pick_next_task_fair+0x4f/0x490
[ 3694.463596]  change_prot_numa+0x5b/0xe0
[ 3694.463601]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.463603]  ? update_load_avg+0x84/0x780
[ 3694.463606]  ? __dequeue_entity+0x3cd/0x4a0
[ 3694.463610]  task_numa_work+0x3c5/0x9b0
[ 3694.463617]  task_work_run+0x64/0xa0
[ 3694.463621]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3694.463625]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3694.463678]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3694.463731]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.463733]  ? do_futex+0xc8/0x1d0
[ 3694.463735]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.463738]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.463741]  __x64_sys_ioctl+0xa0/0xf0
[ 3694.463746]  x64_sys_call+0x122e/0x2150
[ 3694.463748]  do_syscall_64+0x56/0x1e0
[ 3694.463752]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3694.463754] RIP: 0033:0x7f67bff03b4b
[ 3694.463756] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3694.463758] RSP: 002b:00007f58857f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3694.463760] RAX: ffffffffffffffda RBX: 0000563db66402f0 RCX: 00007f67bff03b4b
[ 3694.463761] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001f4
[ 3694.463762] RBP: 0000563db66402f0 R08: 0000000000000000 R09: 0000000000000000
[ 3694.463763] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3694.463765] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3694.463770]  </TASK>
[ 3694.463771] watchdog: BUG: soft lockup - CPU#78 stuck for 48s! [qemu-system-x86:31355]
[ 3694.463773] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3694.463830] CPU: 78 UID: 0 PID: 31355 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3694.463833] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3694.463834] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3694.463835] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3694.463839] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3694.463840] RSP: 0018:ffffaab62b28f8b8 EFLAGS: 00000202
[ 3694.463842] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3694.463843] RDX: 0000000000000001 RSI: ffff8f717fff9980 RDI: ffff8f5287658f10
[ 3694.463845] RBP: ffffaab62b28f918 R08: 0000000000000007 R09: ffff8f5287658d90
[ 3694.463846] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3694.463847] R13: 0000000000000202 R14: ffff8f71809b2a40 R15: 0000000000000080
[ 3694.463849] FS:  00007f5965ffb640(0000) GS:ffff8f71ee1b6000(0000) knlGS:0000000000000000
[ 3694.463850] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3694.463852] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3694.463853] PKRU: 55555554
[ 3694.463854] Call Trace:
[ 3694.463855]  <TASK>
[ 3694.463857]  ? __pfx___wbinvd+0x10/0x10
[ 3694.463862]  on_each_cpu_cond_mask+0x28/0x50
[ 3694.463865]  wbinvd_on_all_cpus+0x29/0x40
[ 3694.463868]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3694.463876]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3694.463928]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3694.463983]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3694.463987]  change_protection+0xfc9/0x1200
[ 3694.463992]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.463996]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.463998]  ? update_load_avg+0x84/0x780
[ 3694.464002]  ? write_ibpb+0x21/0x40
[ 3694.464006]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3694.464058]  change_prot_numa+0x5b/0xe0
[ 3694.464064]  task_numa_work+0x3c5/0x9b0
[ 3694.464072]  task_work_run+0x64/0xa0
[ 3694.464076]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3694.464080]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3694.464132]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3694.464183]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.464186]  ? do_futex+0xc8/0x1d0
[ 3694.464188]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.464191]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.464194]  __x64_sys_ioctl+0xa0/0xf0
[ 3694.464199]  x64_sys_call+0x122e/0x2150
[ 3694.464201]  do_syscall_64+0x56/0x1e0
[ 3694.464204]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3694.464206] RIP: 0033:0x7f67bff03b4b
[ 3694.464208] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3694.464210] RSP: 002b:00007f5965ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3694.464212] RAX: ffffffffffffffda RBX: 0000563db64454a0 RCX: 00007f67bff03b4b
[ 3694.464213] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000190
[ 3694.464215] RBP: 0000563db64454a0 R08: 0000000000000000 R09: 0000000000000000
[ 3694.464216] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3694.464217] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3694.464222]  </TASK>
[ 3694.483353] watchdog: BUG: soft lockup - CPU#87 stuck for 48s! [qemu-system-x86:31402]
[ 3694.483356] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3694.483415] CPU: 87 UID: 0 PID: 31402 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3694.483418] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3694.483419] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3694.483421] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3694.483424] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3694.483426] RSP: 0018:ffffaab62bf578b8 EFLAGS: 00000202
[ 3694.483428] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3694.483430] RDX: 0000000000000001 RSI: ffff8f717fff9aa0 RDI: ffff8f52889c6230
[ 3694.483431] RBP: ffffaab62bf57918 R08: 0000000000000007 R09: ffff8f52889c6420
[ 3694.483432] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3694.483434] R13: 0000000000000202 R14: ffff8f7180bf2a40 R15: 0000000000000080
[ 3694.483435] FS:  00007f5886ffd640(0000) GS:ffff8f71ee3f6000(0000) knlGS:0000000000000000
[ 3694.483437] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3694.483439] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3694.483440] PKRU: 55555554
[ 3694.483441] Call Trace:
[ 3694.483442]  <TASK>
[ 3694.483444]  ? __pfx___wbinvd+0x10/0x10
[ 3694.483449]  on_each_cpu_cond_mask+0x28/0x50
[ 3694.483452]  wbinvd_on_all_cpus+0x29/0x40
[ 3694.483455]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3694.483463]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3694.483516]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3694.483571]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3694.483576]  change_protection+0xfc9/0x1200
[ 3694.483580]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.483584]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.483587]  ? update_load_avg+0x84/0x780
[ 3694.483591]  ? write_ibpb+0x21/0x40
[ 3694.483594]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3694.483646]  change_prot_numa+0x5b/0xe0
[ 3694.483653]  task_numa_work+0x3c5/0x9b0
[ 3694.483660]  task_work_run+0x64/0xa0
[ 3694.483664]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3694.483668]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3694.483721]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3694.483773]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.483775]  ? do_futex+0xc8/0x1d0
[ 3694.483777]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.483780]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.483783]  __x64_sys_ioctl+0xa0/0xf0
[ 3694.483788]  x64_sys_call+0x122e/0x2150
[ 3694.483790]  do_syscall_64+0x56/0x1e0
[ 3694.483794]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3694.483796] RIP: 0033:0x7f67bff03b4b
[ 3694.483798] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3694.483799] RSP: 002b:00007f5886ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3694.483801] RAX: ffffffffffffffda RBX: 0000563db66207e0 RCX: 00007f67bff03b4b
[ 3694.483803] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001ee
[ 3694.483804] RBP: 0000563db66207e0 R08: 0000000000000000 R09: 0000000000000000
[ 3694.483805] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3694.483806] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3694.483811]  </TASK>
[ 3694.487354] watchdog: BUG: soft lockup - CPU#90 stuck for 48s! [qemu-system-x86:31229]
[ 3694.487358] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3694.487425] CPU: 90 UID: 0 PID: 31229 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3694.487430] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3694.487432] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3694.487433] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3694.487440] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3694.487443] RSP: 0018:ffffaab62abb38b8 EFLAGS: 00000202
[ 3694.487445] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3694.487447] RDX: 0000000000000001 RSI: ffff8f717fff9b00 RDI: ffff8f52889c6c20
[ 3694.487449] RBP: ffffaab62abb3918 R08: 0000000000000007 R09: ffff8f52889c6d70
[ 3694.487451] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3694.487452] R13: 0000000000000202 R14: ffff8f7180cb2a40 R15: 0000000000000080
[ 3694.487454] FS:  00007f5ba5ffb640(0000) GS:ffff8f71ee4b6000(0000) knlGS:0000000000000000
[ 3694.487457] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3694.487458] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3694.487460] PKRU: 55555554
[ 3694.487462] Call Trace:
[ 3694.487463]  <TASK>
[ 3694.487465]  ? __pfx___wbinvd+0x10/0x10
[ 3694.487471]  on_each_cpu_cond_mask+0x28/0x50
[ 3694.487474]  wbinvd_on_all_cpus+0x29/0x40
[ 3694.487479]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3694.487491]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3694.487571]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3694.487646]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3694.487654]  change_protection+0xfc9/0x1200
[ 3694.487660]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.487664]  ? update_curr_dl_se+0x3b/0x1e0
[ 3694.487668]  ? dl_server_update+0x2e/0x40
[ 3694.487673]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.487677]  ? pick_next_task_fair+0x4f/0x490
[ 3694.487681]  change_prot_numa+0x5b/0xe0
[ 3694.487686]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3694.487692]  task_numa_work+0x3c5/0x9b0
[ 3694.487701]  task_work_run+0x64/0xa0
[ 3694.487705]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3694.487710]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3694.487782]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3694.487853]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.487857]  ? do_futex+0xc8/0x1d0
[ 3694.487863]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.487866]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.487870]  __x64_sys_ioctl+0xa0/0xf0
[ 3694.487875]  x64_sys_call+0x122e/0x2150
[ 3694.487877]  do_syscall_64+0x56/0x1e0
[ 3694.487882]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3694.487884] RIP: 0033:0x7f67bff03b4b
[ 3694.487887] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3694.487889] RSP: 002b:00007f5ba5ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3694.487892] RAX: ffffffffffffffda RBX: 0000563db5f493b0 RCX: 00007f67bff03b4b
[ 3694.487893] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000094
[ 3694.487895] RBP: 0000563db5f493b0 R08: 0000000000000000 R09: 0000000000000000
[ 3694.487896] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3694.487898] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3694.487904]  </TASK>
[ 3694.499353] watchdog: BUG: soft lockup - CPU#94 stuck for 48s! [qemu-system-x86:31408]
[ 3694.499355] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3694.499411] CPU: 94 UID: 0 PID: 31408 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3694.499414] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3694.499415] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3694.499416] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3694.499420] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3694.499421] RSP: 0018:ffffaab6270878b8 EFLAGS: 00000202
[ 3694.499423] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3694.499424] RDX: 0000000000000001 RSI: ffff8f717fff9b80 RDI: ffff8f52889c6630
[ 3694.499425] RBP: ffffaab627087918 R08: 0000000000000007 R09: ffff8f52889c6dd0
[ 3694.499427] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3694.499428] R13: 0000000000000202 R14: ffff8f7180db2a40 R15: 0000000000000080
[ 3694.499429] FS:  00007f58677fe640(0000) GS:ffff8f71ee5b6000(0000) knlGS:0000000000000000
[ 3694.499431] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3694.499432] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3694.499434] PKRU: 55555554
[ 3694.499435] Call Trace:
[ 3694.499435]  <TASK>
[ 3694.499437]  ? __pfx___wbinvd+0x10/0x10
[ 3694.499442]  on_each_cpu_cond_mask+0x28/0x50
[ 3694.499445]  wbinvd_on_all_cpus+0x29/0x40
[ 3694.499448]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3694.499456]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3694.499508]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3694.499562]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3694.499566]  change_protection+0xfc9/0x1200
[ 3694.499573]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.499576]  ? update_load_avg+0x84/0x780
[ 3694.499579]  ? write_ibpb+0x21/0x40
[ 3694.499583]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3694.499635]  change_prot_numa+0x5b/0xe0
[ 3694.499641]  task_numa_work+0x3c5/0x9b0
[ 3694.499649]  task_work_run+0x64/0xa0
[ 3694.499653]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3694.499657]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3694.499709]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3694.499760]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.499763]  ? do_futex+0xc8/0x1d0
[ 3694.499765]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.499767]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.499771]  __x64_sys_ioctl+0xa0/0xf0
[ 3694.499775]  x64_sys_call+0x122e/0x2150
[ 3694.499777]  do_syscall_64+0x56/0x1e0
[ 3694.499781]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3694.499783] RIP: 0033:0x7f67bff03b4b
[ 3694.499785] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3694.499786] RSP: 002b:00007f58677fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3694.499788] RAX: ffffffffffffffda RBX: 0000563db665ee40 RCX: 00007f67bff03b4b
[ 3694.499790] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001fa
[ 3694.499791] RBP: 0000563db665ee40 R08: 0000000000000000 R09: 0000000000000000
[ 3694.499792] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3694.499793] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3694.499798]  </TASK>
[ 3694.511353] watchdog: BUG: soft lockup - CPU#99 stuck for 48s! [qemu-system-x86:31305]
[ 3694.511358] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3694.511426] CPU: 99 UID: 0 PID: 31305 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3694.511430] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3694.511431] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3694.511433] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3694.511440] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3694.511442] RSP: 0018:ffffaab62af6f8b8 EFLAGS: 00000202
[ 3694.511444] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3694.511446] RDX: 0000000000000001 RSI: ffff8f717fff9c20 RDI: ffff8f7206c6a900
[ 3694.511447] RBP: ffffaab62af6f918 R08: 0000000000000007 R09: ffff8f7206c6a960
[ 3694.511449] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3694.511450] R13: 0000000000000202 R14: ffff8f917e8f2a40 R15: 0000000000000080
[ 3694.511452] FS:  00007f5a467fc640(0000) GS:ffff8f91ec0f6000(0000) knlGS:0000000000000000
[ 3694.511454] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3694.511455] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3694.511457] PKRU: 55555554
[ 3694.511458] Call Trace:
[ 3694.511459]  <TASK>
[ 3694.511463]  ? __pfx___wbinvd+0x10/0x10
[ 3694.511471]  on_each_cpu_cond_mask+0x28/0x50
[ 3694.511474]  wbinvd_on_all_cpus+0x29/0x40
[ 3694.511479]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3694.511487]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3694.511541]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3694.511597]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3694.511603]  change_protection+0xfc9/0x1200
[ 3694.511609]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.511613]  ? update_curr_dl_se+0x3b/0x1e0
[ 3694.511618]  ? dl_server_update+0x2e/0x40
[ 3694.511622]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.511625]  ? pick_next_task_fair+0x4f/0x490
[ 3694.511630]  change_prot_numa+0x5b/0xe0
[ 3694.511637]  task_numa_work+0x3c5/0x9b0
[ 3694.511645]  task_work_run+0x64/0xa0
[ 3694.511650]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3694.511655]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3694.511708]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3694.511759]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.511762]  ? do_futex+0xc8/0x1d0
[ 3694.511764]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.511767]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.511770]  __x64_sys_ioctl+0xa0/0xf0
[ 3694.511776]  x64_sys_call+0x122e/0x2150
[ 3694.511778]  do_syscall_64+0x56/0x1e0
[ 3694.511784]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3694.511785] RIP: 0033:0x7f67bff03b4b
[ 3694.511788] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3694.511789] RSP: 002b:00007f5a467fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3694.511792] RAX: ffffffffffffffda RBX: 0000563db624bbb0 RCX: 00007f67bff03b4b
[ 3694.511793] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000012c
[ 3694.511794] RBP: 0000563db624bbb0 R08: 0000000000000000 R09: 0000000000000000
[ 3694.511795] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3694.511797] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3694.511802]  </TASK>
[ 3694.515353] watchdog: BUG: soft lockup - CPU#102 stuck for 22s! [migration/102:635]
[ 3694.515356] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3694.515431] CPU: 102 UID: 0 PID: 635 Comm: migration/102 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3694.515435] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3694.515436] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3694.515437] Stopper: multi_cpu_stop+0x0/0x110 <- migrate_swap+0xad/0x120
[ 3694.515444] RIP: 0010:stop_machine_yield+0x6/0x10
[ 3694.515447] Code: ff b8 fe ff ff ff eb e0 e8 57 eb dd 00 0f 1f 80 00 00 00 00 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 66 0f 1f 00 f3 90 <e9> c0 39 d0 ff 0f 1f 44 00 00 90 90 90 90 90 90 90 90 90 90 90 90
[ 3694.515449] RSP: 0018:ffffaab60e04fe20 EFLAGS: 00000246
[ 3694.515451] RAX: 0000000000000286 RBX: ffffaab6920bbb2c RCX: 0000000000000002
[ 3694.515452] RDX: ffffaab6920bbb08 RSI: 0000000000000282 RDI: ffffffff91814360
[ 3694.515453] RBP: ffffaab60e04fe60 R08: 0000000000000001 R09: 000000000000030d
[ 3694.515455] R10: 0000000000000000 R11: 0000000000000001 R12: 0000000000000001
[ 3694.515456] R13: ffffffff91814360 R14: 0000000000000001 R15: ffffaab6920bbb08
[ 3694.515457] FS:  0000000000000000(0000) GS:ffff8f91ec1b6000(0000) knlGS:0000000000000000
[ 3694.515459] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3694.515460] CR2: 00007fac4c502638 CR3: 00000020b12b4006 CR4: 0000000000770ef0
[ 3694.515462] PKRU: 55555554
[ 3694.515463] Call Trace:
[ 3694.515464]  <TASK>
[ 3694.515465]  ? multi_cpu_stop+0x9e/0x110
[ 3694.515471]  ? __pfx_multi_cpu_stop+0x10/0x10
[ 3694.515473]  cpu_stopper_thread+0x97/0x140
[ 3694.515477]  smpboot_thread_fn+0x101/0x230
[ 3694.515482]  kthread+0x10b/0x220
[ 3694.515485]  ? __pfx_smpboot_thread_fn+0x10/0x10
[ 3694.515488]  ? __pfx_kthread+0x10/0x10
[ 3694.515491]  ret_from_fork+0x8e/0x100
[ 3694.515495]  ? __pfx_kthread+0x10/0x10
[ 3694.515498]  ret_from_fork_asm+0x1a/0x30
[ 3694.515504]  </TASK>
[ 3694.539352] watchdog: BUG: soft lockup - CPU#112 stuck for 48s! [qemu-system-x86:31254]
[ 3694.539357] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3694.539425] CPU: 112 UID: 0 PID: 31254 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3694.539430] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3694.539431] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3694.539433] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3694.539440] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3694.539442] RSP: 0018:ffffaab62aceb8b8 EFLAGS: 00000202
[ 3694.539445] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3694.539446] RDX: 0000000000000001 RSI: ffff8f717fff9dc0 RDI: ffff8f7206c6a1e0
[ 3694.539447] RBP: ffffaab62aceb918 R08: 0000000000000007 R09: ffff8f7206c6a910
[ 3694.539449] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3694.539450] R13: 0000000000000202 R14: ffff8f917ec32a40 R15: 0000000000000080
[ 3694.539452] FS:  00007f5b277fe640(0000) GS:ffff8f91ec436000(0000) knlGS:0000000000000000
[ 3694.539454] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3694.539455] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3694.539456] PKRU: 55555554
[ 3694.539457] Call Trace:
[ 3694.539459]  <TASK>
[ 3694.539463]  ? __pfx___wbinvd+0x10/0x10
[ 3694.539470]  on_each_cpu_cond_mask+0x28/0x50
[ 3694.539473]  wbinvd_on_all_cpus+0x29/0x40
[ 3694.539478]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3694.539487]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3694.539540]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3694.539596]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3694.539602]  change_protection+0xfc9/0x1200
[ 3694.539608]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.539613]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.539615]  ? update_load_avg+0x84/0x780
[ 3694.539621]  ? write_ibpb+0x21/0x40
[ 3694.539626]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3694.539679]  change_prot_numa+0x5b/0xe0
[ 3694.539687]  task_numa_work+0x3c5/0x9b0
[ 3694.539694]  task_work_run+0x64/0xa0
[ 3694.539699]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3694.539704]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3694.539757]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3694.539809]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.539811]  ? do_futex+0xc8/0x1d0
[ 3694.539814]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.539816]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.539820]  __x64_sys_ioctl+0xa0/0xf0
[ 3694.539825]  x64_sys_call+0x122e/0x2150
[ 3694.539828]  do_syscall_64+0x56/0x1e0
[ 3694.539831]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3694.539833] RIP: 0033:0x7f67bff03b4b
[ 3694.539836] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3694.539837] RSP: 002b:00007f5b277fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3694.539839] RAX: ffffffffffffffda RBX: 0000563db60459d0 RCX: 00007f67bff03b4b
[ 3694.539841] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000c6
[ 3694.539842] RBP: 0000563db60459d0 R08: 0000000000000000 R09: 0000000000000000
[ 3694.539843] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3694.539844] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3694.539849]  </TASK>
[ 3694.567352] watchdog: BUG: soft lockup - CPU#125 stuck for 48s! [qemu-system-x86:31339]
[ 3694.567356] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3694.567428] CPU: 125 UID: 0 PID: 31339 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3694.567432] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3694.567434] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3694.567435] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3694.567440] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3694.567442] RSP: 0018:ffffaab62b20f8b8 EFLAGS: 00000202
[ 3694.567444] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3694.567446] RDX: 0000000000000001 RSI: ffff8f717fff9f60 RDI: ffff8f7207fa2fc0
[ 3694.567448] RBP: ffffaab62b20f918 R08: 0000000000000007 R09: ffff8f7207fa22a0
[ 3694.567449] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3694.567451] R13: 0000000000000202 R14: ffff8f917ef72a40 R15: 0000000000000080
[ 3694.567453] FS:  00007f59a6ffd640(0000) GS:ffff8f91ec776000(0000) knlGS:0000000000000000
[ 3694.567455] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3694.567456] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3694.567458] PKRU: 55555554
[ 3694.567459] Call Trace:
[ 3694.567461]  <TASK>
[ 3694.567463]  ? __pfx___wbinvd+0x10/0x10
[ 3694.567469]  on_each_cpu_cond_mask+0x28/0x50
[ 3694.567473]  wbinvd_on_all_cpus+0x29/0x40
[ 3694.567477]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3694.567489]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3694.567563]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3694.567637]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3694.567642]  change_protection+0xfc9/0x1200
[ 3694.567647]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.567651]  ? update_curr_dl_se+0x3b/0x1e0
[ 3694.567654]  ? dl_server_update+0x2e/0x40
[ 3694.567659]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.567663]  ? pick_next_task_fair+0x4f/0x490
[ 3694.567667]  change_prot_numa+0x5b/0xe0
[ 3694.567674]  task_numa_work+0x3c5/0x9b0
[ 3694.567683]  task_work_run+0x64/0xa0
[ 3694.567687]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3694.567692]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3694.567762]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3694.567841]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.567845]  ? do_futex+0xc8/0x1d0
[ 3694.567848]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.567851]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3694.567855]  __x64_sys_ioctl+0xa0/0xf0
[ 3694.567860]  x64_sys_call+0x122e/0x2150
[ 3694.567862]  do_syscall_64+0x56/0x1e0
[ 3694.567866]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3694.567869] RIP: 0033:0x7f67bff03b4b
[ 3694.567872] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3694.567874] RSP: 002b:00007f59a6ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3694.567877] RAX: ffffffffffffffda RBX: 0000563db63a3d90 RCX: 00007f67bff03b4b
[ 3694.567879] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000170
[ 3694.567881] RBP: 0000563db63a3d90 R08: 0000000000000000 R09: 0000000000000000
[ 3694.567882] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3694.567884] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3694.567890]  </TASK>
[ 3698.231277] watchdog: BUG: soft lockup - CPU#0 stuck for 52s! [qemu-system-x86:31247]
[ 3698.231282] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3698.231348] CPU: 0 UID: 0 PID: 31247 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3698.231353] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3698.231354] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3698.231356] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3698.231363] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3698.231364] RSP: 0018:ffffaab62acb38b8 EFLAGS: 00000202
[ 3698.231367] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3698.231368] RDX: 0000000000000001 RSI: ffff8f717fff7be0 RDI: ffff8f5280265790
[ 3698.231370] RBP: ffffaab62acb3918 R08: 0000000000000007 R09: ffff8f52802654d0
[ 3698.231371] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3698.231372] R13: 0000000000000202 R14: ffff8f717fe32a40 R15: 0000000000000080
[ 3698.231374] FS:  00007f5b477fe640(0000) GS:ffff8f71ed636000(0000) knlGS:0000000000000000
[ 3698.231375] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3698.231377] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3698.231378] PKRU: 55555554
[ 3698.231379] Call Trace:
[ 3698.231381]  <TASK>
[ 3698.231384]  ? __pfx___wbinvd+0x10/0x10
[ 3698.231391]  on_each_cpu_cond_mask+0x28/0x50
[ 3698.231394]  wbinvd_on_all_cpus+0x29/0x40
[ 3698.231399]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3698.231407]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3698.231461]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3698.231516]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3698.231522]  change_protection+0xfc9/0x1200
[ 3698.231528]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.231532]  ? update_curr_dl_se+0x3b/0x1e0
[ 3698.231536]  ? dl_server_update+0x2e/0x40
[ 3698.231540]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.231544]  ? pick_next_task_fair+0x4f/0x490
[ 3698.231548]  change_prot_numa+0x5b/0xe0
[ 3698.231555]  task_numa_work+0x3c5/0x9b0
[ 3698.231563]  task_work_run+0x64/0xa0
[ 3698.231568]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3698.231573]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3698.231626]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3698.231678]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.231680]  ? do_futex+0xc8/0x1d0
[ 3698.231683]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.231685]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.231689]  __x64_sys_ioctl+0xa0/0xf0
[ 3698.231694]  x64_sys_call+0x122e/0x2150
[ 3698.231696]  do_syscall_64+0x56/0x1e0
[ 3698.231702]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3698.231704] RIP: 0033:0x7f67bff03b4b
[ 3698.231706] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3698.231707] RSP: 002b:00007f5b477fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3698.231710] RAX: ffffffffffffffda RBX: 0000563db5fff400 RCX: 00007f67bff03b4b
[ 3698.231711] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000b8
[ 3698.231712] RBP: 0000563db5fff400 R08: 0000000000000000 R09: 0000000000000000
[ 3698.231714] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3698.231715] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3698.231720]  </TASK>
[ 3698.263276] watchdog: BUG: soft lockup - CPU#2 stuck for 49s! [qemu-system-x86:31389]
[ 3698.263279] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3698.263336] CPU: 2 UID: 0 PID: 31389 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3698.263340] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3698.263341] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3698.263342] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3698.263345] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3698.263347] RSP: 0018:ffffaab62c1d38b8 EFLAGS: 00000202
[ 3698.263349] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3698.263350] RDX: 0000000000000001 RSI: ffff8f717fff9000 RDI: ffff8f5280a32a50
[ 3698.263351] RBP: ffffaab62c1d3918 R08: 0000000000000007 R09: ffff8f5280a32b70
[ 3698.263353] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3698.263354] R13: 0000000000000202 R14: ffff8f717feb2a40 R15: 0000000000000080
[ 3698.263355] FS:  00007f58c67fc640(0000) GS:ffff8f71ed6b6000(0000) knlGS:0000000000000000
[ 3698.263357] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3698.263358] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3698.263360] PKRU: 55555554
[ 3698.263361] Call Trace:
[ 3698.263362]  <TASK>
[ 3698.263364]  ? __pfx___wbinvd+0x10/0x10
[ 3698.263369]  on_each_cpu_cond_mask+0x28/0x50
[ 3698.263372]  wbinvd_on_all_cpus+0x29/0x40
[ 3698.263375]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3698.263383]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3698.263438]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3698.263494]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3698.263498]  change_protection+0xfc9/0x1200
[ 3698.263503]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.263506]  ? update_curr_dl_se+0x3b/0x1e0
[ 3698.263509]  ? dl_server_update+0x2e/0x40
[ 3698.263513]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.263517]  ? pick_next_task_fair+0x4f/0x490
[ 3698.263521]  change_prot_numa+0x5b/0xe0
[ 3698.263525]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.263527]  ? update_load_avg+0x84/0x780
[ 3698.263530]  ? __dequeue_entity+0x3cd/0x4a0
[ 3698.263534]  task_numa_work+0x3c5/0x9b0
[ 3698.263541]  task_work_run+0x64/0xa0
[ 3698.263545]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3698.263550]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3698.263603]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3698.263656]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.263658]  ? do_futex+0xc8/0x1d0
[ 3698.263661]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.263663]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.263666]  __x64_sys_ioctl+0xa0/0xf0
[ 3698.263671]  x64_sys_call+0x122e/0x2150
[ 3698.263673]  do_syscall_64+0x56/0x1e0
[ 3698.263677]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3698.263679] RIP: 0033:0x7f67bff03b4b
[ 3698.263681] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3698.263683] RSP: 002b:00007f58c67fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3698.263685] RAX: ffffffffffffffda RBX: 0000563db659ce40 RCX: 00007f67bff03b4b
[ 3698.263686] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001d4
[ 3698.263687] RBP: 0000563db659ce40 R08: 0000000000000000 R09: 0000000000000000
[ 3698.263689] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3698.263690] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3698.263695]  </TASK>
[ 3698.267276] watchdog: BUG: soft lockup - CPU#3 stuck for 49s! [qemu-system-x86:31397]
[ 3698.267279] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3698.267335] CPU: 3 UID: 0 PID: 31397 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3698.267338] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3698.267339] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3698.267340] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3698.267344] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3698.267345] RSP: 0018:ffffaab62c1938b8 EFLAGS: 00000202
[ 3698.267347] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3698.267348] RDX: 0000000000000001 RSI: ffff8f717fff9020 RDI: ffff8f5280a32490
[ 3698.267350] RBP: ffffaab62c193918 R08: 0000000000000007 R09: ffff8f5280a32d40
[ 3698.267351] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3698.267352] R13: 0000000000000202 R14: ffff8f717fef2a40 R15: 0000000000000080
[ 3698.267354] FS:  00007f58a5ffb640(0000) GS:ffff8f71ed6f6000(0000) knlGS:0000000000000000
[ 3698.267355] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3698.267357] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3698.267358] PKRU: 55555554
[ 3698.267359] Call Trace:
[ 3698.267360]  <TASK>
[ 3698.267362]  ? __pfx___wbinvd+0x10/0x10
[ 3698.267367]  on_each_cpu_cond_mask+0x28/0x50
[ 3698.267370]  wbinvd_on_all_cpus+0x29/0x40
[ 3698.267373]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3698.267381]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3698.267435]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3698.267489]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3698.267493]  change_protection+0xfc9/0x1200
[ 3698.267500]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.267503]  ? update_load_avg+0x84/0x780
[ 3698.267506]  ? write_ibpb+0x21/0x40
[ 3698.267510]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3698.267563]  change_prot_numa+0x5b/0xe0
[ 3698.267570]  task_numa_work+0x3c5/0x9b0
[ 3698.267577]  task_work_run+0x64/0xa0
[ 3698.267581]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3698.267585]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3698.267638]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3698.267689]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.267692]  ? do_futex+0xc8/0x1d0
[ 3698.267694]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.267697]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.267700]  __x64_sys_ioctl+0xa0/0xf0
[ 3698.267705]  x64_sys_call+0x122e/0x2150
[ 3698.267707]  do_syscall_64+0x56/0x1e0
[ 3698.267711]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3698.267713] RIP: 0033:0x7f67bff03b4b
[ 3698.267715] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3698.267717] RSP: 002b:00007f58a5ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3698.267719] RAX: ffffffffffffffda RBX: 0000563db65eddb0 RCX: 00007f67bff03b4b
[ 3698.267720] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001e4
[ 3698.267721] RBP: 0000563db65eddb0 R08: 0000000000000000 R09: 0000000000000000
[ 3698.267722] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3698.267724] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3698.267729]  </TASK>
[ 3698.271276] watchdog: BUG: soft lockup - CPU#5 stuck for 49s! [qemu-system-x86:31362]
[ 3698.271279] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3698.271335] CPU: 5 UID: 0 PID: 31362 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3698.271339] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3698.271340] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3698.271341] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3698.271344] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3698.271346] RSP: 0018:ffffaab62b2c78b8 EFLAGS: 00000202
[ 3698.271348] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3698.271349] RDX: 0000000000000001 RSI: ffff8f717fff9060 RDI: ffff8f5280a32260
[ 3698.271350] RBP: ffffaab62b2c7918 R08: 0000000000000007 R09: ffff8f5280a32eb0
[ 3698.271352] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3698.271353] R13: 0000000000000202 R14: ffff8f717ff72a40 R15: 0000000000000080
[ 3698.271354] FS:  00007f5945ffb640(0000) GS:ffff8f71ed776000(0000) knlGS:0000000000000000
[ 3698.271356] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3698.271358] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3698.271359] PKRU: 55555554
[ 3698.271360] Call Trace:
[ 3698.271361]  <TASK>
[ 3698.271363]  ? __pfx___wbinvd+0x10/0x10
[ 3698.271368]  on_each_cpu_cond_mask+0x28/0x50
[ 3698.271371]  wbinvd_on_all_cpus+0x29/0x40
[ 3698.271374]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3698.271382]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3698.271436]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3698.271491]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3698.271495]  change_protection+0xfc9/0x1200
[ 3698.271501]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.271504]  ? update_load_avg+0x84/0x780
[ 3698.271508]  ? write_ibpb+0x21/0x40
[ 3698.271511]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3698.271564]  change_prot_numa+0x5b/0xe0
[ 3698.271571]  task_numa_work+0x3c5/0x9b0
[ 3698.271578]  task_work_run+0x64/0xa0
[ 3698.271582]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3698.271586]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3698.271639]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3698.271690]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.271693]  ? do_futex+0xc8/0x1d0
[ 3698.271695]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.271697]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.271701]  __x64_sys_ioctl+0xa0/0xf0
[ 3698.271705]  x64_sys_call+0x122e/0x2150
[ 3698.271708]  do_syscall_64+0x56/0x1e0
[ 3698.271711]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3698.271713] RIP: 0033:0x7f67bff03b4b
[ 3698.271715] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3698.271717] RSP: 002b:00007f5945ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3698.271719] RAX: ffffffffffffffda RBX: 0000563db648caa0 RCX: 00007f67bff03b4b
[ 3698.271721] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000019e
[ 3698.271722] RBP: 0000563db648caa0 R08: 0000000000000000 R09: 0000000000000000
[ 3698.271723] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3698.271724] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3698.271729]  </TASK>
[ 3698.287278] watchdog: BUG: soft lockup - CPU#11 stuck for 49s! [qemu-system-x86:31294]
[ 3698.287284] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3698.287355] CPU: 11 UID: 0 PID: 31294 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3698.287360] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3698.287362] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3698.287363] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3698.287371] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3698.287373] RSP: 0018:ffffaab62af178b8 EFLAGS: 00000202
[ 3698.287375] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3698.287377] RDX: 0000000000000001 RSI: ffff8f717fff9120 RDI: ffff8f5280a32cc0
[ 3698.287379] RBP: ffffaab62af17918 R08: 0000000000000007 R09: ffff8f5280a32500
[ 3698.287381] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3698.287382] R13: 0000000000000202 R14: ffff8f71800f2a40 R15: 0000000000000080
[ 3698.287384] FS:  00007f5a84ff9640(0000) GS:ffff8f71ed8f6000(0000) knlGS:0000000000000000
[ 3698.287386] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3698.287387] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3698.287389] PKRU: 55555554
[ 3698.287390] Call Trace:
[ 3698.287392]  <TASK>
[ 3698.287395]  ? __pfx___wbinvd+0x10/0x10
[ 3698.287402]  on_each_cpu_cond_mask+0x28/0x50
[ 3698.287405]  wbinvd_on_all_cpus+0x29/0x40
[ 3698.287410]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3698.287419]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3698.287475]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3698.287532]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3698.287538]  change_protection+0xfc9/0x1200
[ 3698.287546]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.287549]  ? update_load_avg+0x84/0x780
[ 3698.287554]  ? write_ibpb+0x21/0x40
[ 3698.287560]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3698.287613]  change_prot_numa+0x5b/0xe0
[ 3698.287621]  task_numa_work+0x3c5/0x9b0
[ 3698.287629]  task_work_run+0x64/0xa0
[ 3698.287634]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3698.287640]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3698.287693]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3698.287746]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.287748]  ? do_futex+0xc8/0x1d0
[ 3698.287751]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.287753]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.287757]  __x64_sys_ioctl+0xa0/0xf0
[ 3698.287763]  x64_sys_call+0x122e/0x2150
[ 3698.287765]  do_syscall_64+0x56/0x1e0
[ 3698.287768]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3698.287770] RIP: 0033:0x7f67bff03b4b
[ 3698.287773] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3698.287774] RSP: 002b:00007f5a84ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3698.287777] RAX: ffffffffffffffda RBX: 0000563db61dc570 RCX: 00007f67bff03b4b
[ 3698.287778] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000116
[ 3698.287779] RBP: 0000563db61dc570 R08: 0000000000000000 R09: 0000000000000000
[ 3698.287780] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3698.287782] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3698.287787]  </TASK>
[ 3698.291276] watchdog: BUG: soft lockup - CPU#13 stuck for 49s! [qemu-system-x86:31324]
[ 3698.291279] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3698.291336] CPU: 13 UID: 0 PID: 31324 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3698.291340] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3698.291341] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3698.291342] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3698.291346] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3698.291347] RSP: 0018:ffffaab62b0238b8 EFLAGS: 00000202
[ 3698.291349] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3698.291350] RDX: 0000000000000001 RSI: ffff8f717fff9160 RDI: ffff8f5280a32f70
[ 3698.291351] RBP: ffffaab62b023918 R08: 0000000000000007 R09: ffff8f5280a32c00
[ 3698.291353] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3698.291354] R13: 0000000000000202 R14: ffff8f7180172a40 R15: 0000000000000080
[ 3698.291355] FS:  00007f59e77fe640(0000) GS:ffff8f71ed976000(0000) knlGS:0000000000000000
[ 3698.291357] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3698.291358] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3698.291360] PKRU: 55555554
[ 3698.291361] Call Trace:
[ 3698.291362]  <TASK>
[ 3698.291363]  ? __pfx___wbinvd+0x10/0x10
[ 3698.291368]  on_each_cpu_cond_mask+0x28/0x50
[ 3698.291371]  wbinvd_on_all_cpus+0x29/0x40
[ 3698.291375]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3698.291383]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3698.291435]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3698.291490]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3698.291495]  change_protection+0xfc9/0x1200
[ 3698.291499]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.291504]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.291506]  ? update_load_avg+0x84/0x780
[ 3698.291510]  ? write_ibpb+0x21/0x40
[ 3698.291514]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3698.291567]  change_prot_numa+0x5b/0xe0
[ 3698.291574]  task_numa_work+0x3c5/0x9b0
[ 3698.291581]  task_work_run+0x64/0xa0
[ 3698.291585]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3698.291589]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3698.291642]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3698.291694]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.291697]  ? do_futex+0xc8/0x1d0
[ 3698.291699]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.291701]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.291705]  __x64_sys_ioctl+0xa0/0xf0
[ 3698.291710]  x64_sys_call+0x122e/0x2150
[ 3698.291712]  do_syscall_64+0x56/0x1e0
[ 3698.291715]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3698.291717] RIP: 0033:0x7f67bff03b4b
[ 3698.291720] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3698.291721] RSP: 002b:00007f59e77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3698.291723] RAX: ffffffffffffffda RBX: 0000563db630c090 RCX: 00007f67bff03b4b
[ 3698.291725] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000152
[ 3698.291726] RBP: 0000563db630c090 R08: 0000000000000000 R09: 0000000000000000
[ 3698.291727] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3698.291728] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3698.291733]  </TASK>
[ 3698.295276] watchdog: BUG: soft lockup - CPU#15 stuck for 49s! [qemu-system-x86:31363]
[ 3698.295279] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3698.295335] CPU: 15 UID: 0 PID: 31363 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3698.295339] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3698.295340] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3698.295341] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3698.295344] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3698.295346] RSP: 0018:ffffaab62b2cf8b8 EFLAGS: 00000202
[ 3698.295348] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3698.295349] RDX: 0000000000000001 RSI: ffff8f717fff91a0 RDI: ffff8f52872d07c0
[ 3698.295350] RBP: ffffaab62b2cf918 R08: 0000000000000007 R09: ffff8f52872d0930
[ 3698.295351] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3698.295353] R13: 0000000000000202 R14: ffff8f71801f2a40 R15: 0000000000000080
[ 3698.295354] FS:  00007f59457fa640(0000) GS:ffff8f71ed9f6000(0000) knlGS:0000000000000000
[ 3698.295356] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3698.295357] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3698.295358] PKRU: 55555554
[ 3698.295359] Call Trace:
[ 3698.295360]  <TASK>
[ 3698.295362]  ? __pfx___wbinvd+0x10/0x10
[ 3698.295367]  on_each_cpu_cond_mask+0x28/0x50
[ 3698.295370]  wbinvd_on_all_cpus+0x29/0x40
[ 3698.295373]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3698.295381]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3698.295434]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3698.295489]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3698.295493]  change_protection+0xfc9/0x1200
[ 3698.295499]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.295502]  ? update_load_avg+0x84/0x780
[ 3698.295506]  ? write_ibpb+0x21/0x40
[ 3698.295509]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3698.295563]  change_prot_numa+0x5b/0xe0
[ 3698.295570]  task_numa_work+0x3c5/0x9b0
[ 3698.295577]  task_work_run+0x64/0xa0
[ 3698.295581]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3698.295585]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3698.295638]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3698.295690]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.295693]  ? do_futex+0xc8/0x1d0
[ 3698.295695]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.295697]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.295701]  __x64_sys_ioctl+0xa0/0xf0
[ 3698.295706]  x64_sys_call+0x122e/0x2150
[ 3698.295708]  do_syscall_64+0x56/0x1e0
[ 3698.295711]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3698.295713] RIP: 0033:0x7f67bff03b4b
[ 3698.295715] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3698.295717] RSP: 002b:00007f59457f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3698.295719] RAX: ffffffffffffffda RBX: 0000563db6496a50 RCX: 00007f67bff03b4b
[ 3698.295721] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001a0
[ 3698.295722] RBP: 0000563db6496a50 R08: 0000000000000000 R09: 0000000000000000
[ 3698.295723] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3698.295724] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3698.295729]  </TASK>
[ 3698.299277] watchdog: BUG: soft lockup - CPU#18 stuck for 49s! [qemu-system-x86:31310]
[ 3698.299283] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3698.299351] CPU: 18 UID: 0 PID: 31310 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3698.299356] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3698.299358] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3698.299360] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3698.299367] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3698.299370] RSP: 0018:ffffaab62af978b8 EFLAGS: 00000202
[ 3698.299372] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3698.299373] RDX: 0000000000000001 RSI: ffff8f717fff9200 RDI: ffff8f52872d06e0
[ 3698.299375] RBP: ffffaab62af97918 R08: 0000000000000007 R09: ffff8f52872d0800
[ 3698.299377] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3698.299378] R13: 0000000000000202 R14: ffff8f71802b2a40 R15: 0000000000000080
[ 3698.299380] FS:  00007f5a277fe640(0000) GS:ffff8f71edab6000(0000) knlGS:0000000000000000
[ 3698.299382] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3698.299383] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3698.299385] PKRU: 55555554
[ 3698.299386] Call Trace:
[ 3698.299388]  <TASK>
[ 3698.299391]  ? __pfx___wbinvd+0x10/0x10
[ 3698.299399]  on_each_cpu_cond_mask+0x28/0x50
[ 3698.299402]  wbinvd_on_all_cpus+0x29/0x40
[ 3698.299407]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3698.299415]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3698.299470]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3698.299527]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3698.299534]  change_protection+0xfc9/0x1200
[ 3698.299539]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.299544]  ? update_curr_dl_se+0x3b/0x1e0
[ 3698.299548]  ? dl_server_update+0x2e/0x40
[ 3698.299552]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.299556]  ? pick_next_task_fair+0x4f/0x490
[ 3698.299560]  change_prot_numa+0x5b/0xe0
[ 3698.299565]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.299568]  ? update_load_avg+0x84/0x780
[ 3698.299571]  ? __dequeue_entity+0x3cd/0x4a0
[ 3698.299575]  task_numa_work+0x3c5/0x9b0
[ 3698.299583]  task_work_run+0x64/0xa0
[ 3698.299588]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3698.299593]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3698.299647]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3698.299699]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.299702]  ? do_futex+0xc8/0x1d0
[ 3698.299704]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.299707]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.299710]  __x64_sys_ioctl+0xa0/0xf0
[ 3698.299716]  x64_sys_call+0x122e/0x2150
[ 3698.299719]  do_syscall_64+0x56/0x1e0
[ 3698.299724]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3698.299726] RIP: 0033:0x7f67bff03b4b
[ 3698.299729] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3698.299731] RSP: 002b:00007f5a277fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3698.299733] RAX: ffffffffffffffda RBX: 0000563db627ea30 RCX: 00007f67bff03b4b
[ 3698.299734] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000136
[ 3698.299736] RBP: 0000563db627ea30 R08: 0000000000000000 R09: 0000000000000000
[ 3698.299737] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3698.299738] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3698.299743]  </TASK>
[ 3698.311276] watchdog: BUG: soft lockup - CPU#22 stuck for 49s! [qemu-system-x86:31334]
[ 3698.311279] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3698.311335] CPU: 22 UID: 0 PID: 31334 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3698.311338] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3698.311339] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3698.311341] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3698.311344] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3698.311346] RSP: 0018:ffffaab62b1e78b8 EFLAGS: 00000202
[ 3698.311348] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3698.311349] RDX: 0000000000000001 RSI: ffff8f717fff9280 RDI: ffff8f52872d0480
[ 3698.311350] RBP: ffffaab62b1e7918 R08: 0000000000000007 R09: ffff8f52872d08d0
[ 3698.311352] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3698.311353] R13: 0000000000000202 R14: ffff8f71803b2a40 R15: 0000000000000080
[ 3698.311354] FS:  00007f59c5ffb640(0000) GS:ffff8f71edbb6000(0000) knlGS:0000000000000000
[ 3698.311356] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3698.311357] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3698.311359] PKRU: 55555554
[ 3698.311360] Call Trace:
[ 3698.311361]  <TASK>
[ 3698.311362]  ? __pfx___wbinvd+0x10/0x10
[ 3698.311367]  on_each_cpu_cond_mask+0x28/0x50
[ 3698.311370]  wbinvd_on_all_cpus+0x29/0x40
[ 3698.311374]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3698.311382]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3698.311435]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3698.311489]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3698.311494]  change_protection+0xfc9/0x1200
[ 3698.311499]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.311502]  ? update_curr_dl_se+0x3b/0x1e0
[ 3698.311505]  ? dl_server_update+0x2e/0x40
[ 3698.311509]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.311513]  ? pick_next_task_fair+0x4f/0x490
[ 3698.311516]  change_prot_numa+0x5b/0xe0
[ 3698.311523]  task_numa_work+0x3c5/0x9b0
[ 3698.311530]  task_work_run+0x64/0xa0
[ 3698.311534]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3698.311538]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3698.311591]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3698.311642]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.311645]  ? do_futex+0xc8/0x1d0
[ 3698.311647]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.311649]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.311653]  __x64_sys_ioctl+0xa0/0xf0
[ 3698.311658]  x64_sys_call+0x122e/0x2150
[ 3698.311660]  do_syscall_64+0x56/0x1e0
[ 3698.311664]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3698.311666] RIP: 0033:0x7f67bff03b4b
[ 3698.311668] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3698.311669] RSP: 002b:00007f59c5ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3698.311671] RAX: ffffffffffffffda RBX: 0000563db6371720 RCX: 00007f67bff03b4b
[ 3698.311673] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000166
[ 3698.311674] RBP: 0000563db6371720 R08: 0000000000000000 R09: 0000000000000000
[ 3698.311675] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3698.311676] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3698.311681]  </TASK>
[ 3698.363275] watchdog: BUG: soft lockup - CPU#46 stuck for 49s! [qemu-system-x86:31353]
[ 3698.363281] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3698.363350] CPU: 46 UID: 0 PID: 31353 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3698.363354] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3698.363355] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3698.363357] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3698.363365] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3698.363367] RSP: 0018:ffffaab62b27f8b8 EFLAGS: 00000202
[ 3698.363369] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3698.363371] RDX: 0000000000000001 RSI: ffff8f717fff9580 RDI: ffff8f72066e3a60
[ 3698.363372] RBP: ffffaab62b27f918 R08: 0000000000000007 R09: ffff8f72066e3360
[ 3698.363374] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3698.363375] R13: 0000000000000202 R14: ffff8f917e3b2a40 R15: 0000000000000080
[ 3698.363377] FS:  00007f5966ffd640(0000) GS:ffff8f91ebbb6000(0000) knlGS:0000000000000000
[ 3698.363379] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3698.363380] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3698.363382] PKRU: 55555554
[ 3698.363383] Call Trace:
[ 3698.363384]  <TASK>
[ 3698.363387]  ? __pfx___wbinvd+0x10/0x10
[ 3698.363395]  on_each_cpu_cond_mask+0x28/0x50
[ 3698.363398]  wbinvd_on_all_cpus+0x29/0x40
[ 3698.363403]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3698.363412]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3698.363466]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3698.363523]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3698.363529]  change_protection+0xfc9/0x1200
[ 3698.363537]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.363541]  ? update_load_avg+0x84/0x780
[ 3698.363546]  ? write_ibpb+0x21/0x40
[ 3698.363552]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3698.363605]  change_prot_numa+0x5b/0xe0
[ 3698.363613]  task_numa_work+0x3c5/0x9b0
[ 3698.363621]  task_work_run+0x64/0xa0
[ 3698.363626]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3698.363631]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3698.363684]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3698.363737]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.363739]  ? do_futex+0xc8/0x1d0
[ 3698.363742]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.363744]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.363748]  __x64_sys_ioctl+0xa0/0xf0
[ 3698.363754]  x64_sys_call+0x122e/0x2150
[ 3698.363756]  do_syscall_64+0x56/0x1e0
[ 3698.363759]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3698.363761] RIP: 0033:0x7f67bff03b4b
[ 3698.363764] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3698.363765] RSP: 002b:00007f5966ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3698.363768] RAX: ffffffffffffffda RBX: 0000563db6431560 RCX: 00007f67bff03b4b
[ 3698.363769] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000018c
[ 3698.363770] RBP: 0000563db6431560 R08: 0000000000000000 R09: 0000000000000000
[ 3698.363771] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3698.363773] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3698.363778]  </TASK>
[ 3698.367275] watchdog: BUG: soft lockup - CPU#47 stuck for 49s! [qemu-system-x86:31257]
[ 3698.367277] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3698.367335] CPU: 47 UID: 0 PID: 31257 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3698.367339] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3698.367340] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3698.367341] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3698.367344] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3698.367346] RSP: 0018:ffffaab62ad038b8 EFLAGS: 00000202
[ 3698.367348] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3698.367349] RDX: 0000000000000001 RSI: ffff8f717fff95a0 RDI: ffff8f72066e36c0
[ 3698.367350] RBP: ffffaab62ad03918 R08: 0000000000000007 R09: ffff8f72066e3e10
[ 3698.367351] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3698.367353] R13: 0000000000000202 R14: ffff8f917e3f2a40 R15: 0000000000000080
[ 3698.367354] FS:  00007f5b25ffb640(0000) GS:ffff8f91ebbf6000(0000) knlGS:0000000000000000
[ 3698.367356] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3698.367357] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3698.367359] PKRU: 55555554
[ 3698.367359] Call Trace:
[ 3698.367360]  <TASK>
[ 3698.367362]  ? __pfx___wbinvd+0x10/0x10
[ 3698.367367]  on_each_cpu_cond_mask+0x28/0x50
[ 3698.367370]  wbinvd_on_all_cpus+0x29/0x40
[ 3698.367373]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3698.367381]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3698.367435]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3698.367490]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3698.367494]  change_protection+0xfc9/0x1200
[ 3698.367498]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.367503]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.367505]  ? update_load_avg+0x84/0x780
[ 3698.367509]  ? write_ibpb+0x21/0x40
[ 3698.367512]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3698.367566]  change_prot_numa+0x5b/0xe0
[ 3698.367573]  task_numa_work+0x3c5/0x9b0
[ 3698.367580]  task_work_run+0x64/0xa0
[ 3698.367584]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3698.367589]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3698.367641]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3698.367693]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.367695]  ? do_futex+0xc8/0x1d0
[ 3698.367697]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.367700]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.367703]  __x64_sys_ioctl+0xa0/0xf0
[ 3698.367708]  x64_sys_call+0x122e/0x2150
[ 3698.367710]  do_syscall_64+0x56/0x1e0
[ 3698.367714]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3698.367716] RIP: 0033:0x7f67bff03b4b
[ 3698.367718] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3698.367720] RSP: 002b:00007f5b25ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3698.367722] RAX: ffffffffffffffda RBX: 0000563db6063fa0 RCX: 00007f67bff03b4b
[ 3698.367723] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000cc
[ 3698.367724] RBP: 0000563db6063fa0 R08: 0000000000000000 R09: 0000000000000000
[ 3698.367725] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3698.367727] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3698.367732]  </TASK>
[ 3698.379275] watchdog: BUG: soft lockup - CPU#52 stuck for 49s! [qemu-system-x86:31251]
[ 3698.379280] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3698.379347] CPU: 52 UID: 0 PID: 31251 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3698.379352] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3698.379353] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3698.379354] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3698.379362] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3698.379364] RSP: 0018:ffffaab62acd38b8 EFLAGS: 00000202
[ 3698.379366] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3698.379368] RDX: 0000000000000001 RSI: ffff8f717fff9640 RDI: ffff8f72000bacd0
[ 3698.379369] RBP: ffffaab62acd3918 R08: 0000000000000007 R09: ffff8f72000bab90
[ 3698.379370] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3698.379372] R13: 0000000000000202 R14: ffff8f917e532a40 R15: 0000000000000080
[ 3698.379373] FS:  00007f5b457fa640(0000) GS:ffff8f91ebd36000(0000) knlGS:0000000000000000
[ 3698.379375] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3698.379376] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3698.379378] PKRU: 55555554
[ 3698.379379] Call Trace:
[ 3698.379381]  <TASK>
[ 3698.379384]  ? __pfx___wbinvd+0x10/0x10
[ 3698.379391]  on_each_cpu_cond_mask+0x28/0x50
[ 3698.379394]  wbinvd_on_all_cpus+0x29/0x40
[ 3698.379399]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3698.379408]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3698.379462]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3698.379517]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3698.379523]  change_protection+0xfc9/0x1200
[ 3698.379529]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.379535]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.379537]  ? update_load_avg+0x84/0x780
[ 3698.379542]  ? write_ibpb+0x21/0x40
[ 3698.379547]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3698.379600]  change_prot_numa+0x5b/0xe0
[ 3698.379607]  task_numa_work+0x3c5/0x9b0
[ 3698.379615]  task_work_run+0x64/0xa0
[ 3698.379620]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3698.379625]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3698.379677]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3698.379729]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.379731]  ? do_futex+0xc8/0x1d0
[ 3698.379734]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.379736]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.379740]  __x64_sys_ioctl+0xa0/0xf0
[ 3698.379745]  x64_sys_call+0x122e/0x2150
[ 3698.379748]  do_syscall_64+0x56/0x1e0
[ 3698.379751]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3698.379753] RIP: 0033:0x7f67bff03b4b
[ 3698.379756] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3698.379757] RSP: 002b:00007f5b457f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3698.379760] RAX: ffffffffffffffda RBX: 0000563db6027ac0 RCX: 00007f67bff03b4b
[ 3698.379761] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000c0
[ 3698.379762] RBP: 0000563db6027ac0 R08: 0000000000000000 R09: 0000000000000000
[ 3698.379763] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3698.379765] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3698.379770]  </TASK>
[ 3698.391275] watchdog: BUG: soft lockup - CPU#58 stuck for 49s! [qemu-system-x86:31335]
[ 3698.391280] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3698.391347] CPU: 58 UID: 0 PID: 31335 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3698.391352] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3698.391353] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3698.391355] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3698.391362] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3698.391364] RSP: 0018:ffffaab62b1ef8b8 EFLAGS: 00000202
[ 3698.391367] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3698.391368] RDX: 0000000000000001 RSI: ffff8f717fff9700 RDI: ffff8f72000bacf0
[ 3698.391370] RBP: ffffaab62b1ef918 R08: 0000000000000007 R09: ffff8f72000ba6e0
[ 3698.391371] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3698.391373] R13: 0000000000000202 R14: ffff8f917e6b2a40 R15: 0000000000000080
[ 3698.391375] FS:  00007f59c57fa640(0000) GS:ffff8f91ebeb6000(0000) knlGS:0000000000000000
[ 3698.391376] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3698.391378] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3698.391380] PKRU: 55555554
[ 3698.391381] Call Trace:
[ 3698.391382]  <TASK>
[ 3698.391385]  ? __pfx___wbinvd+0x10/0x10
[ 3698.391392]  on_each_cpu_cond_mask+0x28/0x50
[ 3698.391396]  wbinvd_on_all_cpus+0x29/0x40
[ 3698.391400]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3698.391409]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3698.391463]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3698.391519]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3698.391525]  change_protection+0xfc9/0x1200
[ 3698.391530]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.391535]  ? update_curr_dl_se+0x3b/0x1e0
[ 3698.391539]  ? dl_server_update+0x2e/0x40
[ 3698.391543]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.391547]  ? pick_next_task_fair+0x4f/0x490
[ 3698.391551]  change_prot_numa+0x5b/0xe0
[ 3698.391558]  task_numa_work+0x3c5/0x9b0
[ 3698.391566]  task_work_run+0x64/0xa0
[ 3698.391571]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3698.391577]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3698.391629]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3698.391681]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.391683]  ? do_futex+0xc8/0x1d0
[ 3698.391686]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.391688]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.391692]  __x64_sys_ioctl+0xa0/0xf0
[ 3698.391697]  x64_sys_call+0x122e/0x2150
[ 3698.391700]  do_syscall_64+0x56/0x1e0
[ 3698.391705]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3698.391707] RIP: 0033:0x7f67bff03b4b
[ 3698.391710] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3698.391711] RSP: 002b:00007f59c57f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3698.391713] RAX: ffffffffffffffda RBX: 0000563db637b6d0 RCX: 00007f67bff03b4b
[ 3698.391715] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000168
[ 3698.391716] RBP: 0000563db637b6d0 R08: 0000000000000000 R09: 0000000000000000
[ 3698.391717] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3698.391718] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3698.391723]  </TASK>
[ 3698.395274] watchdog: BUG: soft lockup - CPU#59 stuck for 49s! [qemu-system-x86:31330]
[ 3698.395277] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3698.395333] CPU: 59 UID: 0 PID: 31330 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3698.395337] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3698.395338] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3698.395339] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3698.395342] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3698.395344] RSP: 0018:ffffaab62b06b8b8 EFLAGS: 00000202
[ 3698.395346] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3698.395347] RDX: 0000000000000001 RSI: ffff8f717fff9720 RDI: ffff8f72000ba770
[ 3698.395348] RBP: ffffaab62b06b918 R08: 0000000000000007 R09: ffff8f72000baa50
[ 3698.395350] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3698.395351] R13: 0000000000000202 R14: ffff8f917e6f2a40 R15: 0000000000000080
[ 3698.395352] FS:  00007f59c7fff640(0000) GS:ffff8f91ebef6000(0000) knlGS:0000000000000000
[ 3698.395354] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3698.395355] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3698.395357] PKRU: 55555554
[ 3698.395358] Call Trace:
[ 3698.395358]  <TASK>
[ 3698.395360]  ? __pfx___wbinvd+0x10/0x10
[ 3698.395365]  on_each_cpu_cond_mask+0x28/0x50
[ 3698.395368]  wbinvd_on_all_cpus+0x29/0x40
[ 3698.395372]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3698.395380]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3698.395434]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3698.395490]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3698.395494]  change_protection+0xfc9/0x1200
[ 3698.395499]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.395502]  ? update_curr_dl_se+0x3b/0x1e0
[ 3698.395505]  ? dl_server_update+0x2e/0x40
[ 3698.395509]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.395513]  ? pick_next_task_fair+0x4f/0x490
[ 3698.395516]  change_prot_numa+0x5b/0xe0
[ 3698.395523]  task_numa_work+0x3c5/0x9b0
[ 3698.395530]  task_work_run+0x64/0xa0
[ 3698.395534]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3698.395538]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3698.395592]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3698.395644]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.395647]  ? do_futex+0xc8/0x1d0
[ 3698.395649]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.395652]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.395655]  __x64_sys_ioctl+0xa0/0xf0
[ 3698.395660]  x64_sys_call+0x122e/0x2150
[ 3698.395662]  do_syscall_64+0x56/0x1e0
[ 3698.395666]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3698.395668] RIP: 0033:0x7f67bff03b4b
[ 3698.395670] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3698.395672] RSP: 002b:00007f59c7ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3698.395674] RAX: ffffffffffffffda RBX: 0000563db6348c80 RCX: 00007f67bff03b4b
[ 3698.395675] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000015e
[ 3698.395676] RBP: 0000563db6348c80 R08: 0000000000000000 R09: 0000000000000000
[ 3698.395678] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3698.395679] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3698.395684]  </TASK>
[ 3698.443273] watchdog: BUG: soft lockup - CPU#70 stuck for 48s! [qemu-system-x86:31275]
[ 3698.443276] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3698.443333] CPU: 70 UID: 0 PID: 31275 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3698.443337] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3698.443338] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3698.443339] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3698.443342] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3698.443344] RSP: 0018:ffffaab62ade78b8 EFLAGS: 00000202
[ 3698.443346] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3698.443347] RDX: 0000000000000001 RSI: ffff8f717fff9880 RDI: ffff8f5287658fd0
[ 3698.443349] RBP: ffffaab62ade7918 R08: 0000000000000007 R09: ffff8f5287658700
[ 3698.443350] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3698.443352] R13: 0000000000000202 R14: ffff8f71807b2a40 R15: 0000000000000080
[ 3698.443353] FS:  00007f5ac77fe640(0000) GS:ffff8f71edfb6000(0000) knlGS:0000000000000000
[ 3698.443355] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3698.443356] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3698.443358] PKRU: 55555554
[ 3698.443359] Call Trace:
[ 3698.443360]  <TASK>
[ 3698.443362]  ? __pfx___wbinvd+0x10/0x10
[ 3698.443367]  on_each_cpu_cond_mask+0x28/0x50
[ 3698.443370]  wbinvd_on_all_cpus+0x29/0x40
[ 3698.443374]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3698.443382]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3698.443436]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3698.443491]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3698.443495]  change_protection+0xfc9/0x1200
[ 3698.443502]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.443504]  ? update_load_avg+0x84/0x780
[ 3698.443508]  ? write_ibpb+0x21/0x40
[ 3698.443512]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3698.443566]  change_prot_numa+0x5b/0xe0
[ 3698.443572]  task_numa_work+0x3c5/0x9b0
[ 3698.443580]  task_work_run+0x64/0xa0
[ 3698.443584]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3698.443588]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3698.443641]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3698.443694]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.443696]  ? do_futex+0xc8/0x1d0
[ 3698.443699]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.443701]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.443705]  __x64_sys_ioctl+0xa0/0xf0
[ 3698.443709]  x64_sys_call+0x122e/0x2150
[ 3698.443711]  do_syscall_64+0x56/0x1e0
[ 3698.443715]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3698.443717] RIP: 0033:0x7f67bff03b4b
[ 3698.443719] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3698.443721] RSP: 002b:00007f5ac77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3698.443723] RAX: ffffffffffffffda RBX: 0000563db611a960 RCX: 00007f67bff03b4b
[ 3698.443724] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000f0
[ 3698.443725] RBP: 0000563db611a960 R08: 0000000000000000 R09: 0000000000000000
[ 3698.443727] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3698.443728] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3698.443733]  </TASK>
[ 3698.443734] watchdog: BUG: soft lockup - CPU#69 stuck for 48s! [qemu-system-x86:31238]
[ 3698.443737] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3698.443793] CPU: 69 UID: 0 PID: 31238 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3698.443796] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3698.443797] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3698.443798] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3698.443802] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3698.443803] RSP: 0018:ffffaab62ac6b8b8 EFLAGS: 00000202
[ 3698.443805] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3698.443806] RDX: 0000000000000001 RSI: ffff8f717fff9860 RDI: ffff8f52876583e0
[ 3698.443808] RBP: ffffaab62ac6b918 R08: 0000000000000007 R09: ffff8f52876585e0
[ 3698.443809] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3698.443810] R13: 0000000000000202 R14: ffff8f7180772a40 R15: 0000000000000080
[ 3698.443812] FS:  00007f5b84ff9640(0000) GS:ffff8f71edf76000(0000) knlGS:0000000000000000
[ 3698.443813] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3698.443815] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3698.443816] PKRU: 55555554
[ 3698.443817] Call Trace:
[ 3698.443818]  <TASK>
[ 3698.443819]  ? __pfx___wbinvd+0x10/0x10
[ 3698.443825]  on_each_cpu_cond_mask+0x28/0x50
[ 3698.443827]  wbinvd_on_all_cpus+0x29/0x40
[ 3698.443831]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3698.443838]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3698.443890]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3698.443945]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3698.443949]  change_protection+0xfc9/0x1200
[ 3698.443953]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.443957]  ? asm_sysvec_apic_timer_interrupt+0x1f/0x30
[ 3698.443961]  ? write_ibpb+0x21/0x40
[ 3698.443964]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3698.444016]  change_prot_numa+0x5b/0xe0
[ 3698.444023]  task_numa_work+0x3c5/0x9b0
[ 3698.444030]  task_work_run+0x64/0xa0
[ 3698.444034]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3698.444039]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3698.444091]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3698.444142]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.444145]  ? do_futex+0xc8/0x1d0
[ 3698.444147]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.444149]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.444153]  __x64_sys_ioctl+0xa0/0xf0
[ 3698.444157]  x64_sys_call+0x122e/0x2150
[ 3698.444160]  do_syscall_64+0x56/0x1e0
[ 3698.444163]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3698.444165] RIP: 0033:0x7f67bff03b4b
[ 3698.444167] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3698.444169] RSP: 002b:00007f5b84ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3698.444171] RAX: ffffffffffffffda RBX: 0000563db5fa4ac0 RCX: 00007f67bff03b4b
[ 3698.444172] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000a6
[ 3698.444173] RBP: 0000563db5fa4ac0 R08: 0000000000000000 R09: 0000000000000000
[ 3698.444175] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3698.444176] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3698.444181]  </TASK>
[ 3698.447273] watchdog: BUG: soft lockup - CPU#72 stuck for 48s! [qemu-system-x86:31298]
[ 3698.447276] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3698.447333] CPU: 72 UID: 0 PID: 31298 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3698.447337] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3698.447338] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3698.447339] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3698.447343] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3698.447345] RSP: 0018:ffffaab62af378b8 EFLAGS: 00000202
[ 3698.447346] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3698.447348] RDX: 0000000000000001 RSI: ffff8f717fff98c0 RDI: ffff8f5287658550
[ 3698.447349] RBP: ffffaab62af37918 R08: 0000000000000007 R09: ffff8f5287658ca0
[ 3698.447351] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3698.447352] R13: 0000000000000202 R14: ffff8f7180832a40 R15: 0000000000000080
[ 3698.447354] FS:  00007f5a667fc640(0000) GS:ffff8f71ee036000(0000) knlGS:0000000000000000
[ 3698.447355] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3698.447357] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3698.447358] PKRU: 55555554
[ 3698.447359] Call Trace:
[ 3698.447360]  <TASK>
[ 3698.447362]  ? __pfx___wbinvd+0x10/0x10
[ 3698.447367]  on_each_cpu_cond_mask+0x28/0x50
[ 3698.447370]  wbinvd_on_all_cpus+0x29/0x40
[ 3698.447374]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3698.447382]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3698.447435]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3698.447489]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3698.447494]  change_protection+0xfc9/0x1200
[ 3698.447499]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.447503]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.447505]  ? update_load_avg+0x84/0x780
[ 3698.447509]  ? write_ibpb+0x21/0x40
[ 3698.447513]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3698.447565]  change_prot_numa+0x5b/0xe0
[ 3698.447572]  task_numa_work+0x3c5/0x9b0
[ 3698.447580]  task_work_run+0x64/0xa0
[ 3698.447584]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3698.447588]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3698.447640]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3698.447692]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.447694]  ? do_futex+0xc8/0x1d0
[ 3698.447696]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.447699]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.447703]  __x64_sys_ioctl+0xa0/0xf0
[ 3698.447707]  x64_sys_call+0x122e/0x2150
[ 3698.447709]  do_syscall_64+0x56/0x1e0
[ 3698.447713]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3698.447715] RIP: 0033:0x7f67bff03b4b
[ 3698.447717] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3698.447719] RSP: 002b:00007f5a667fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3698.447721] RAX: ffffffffffffffda RBX: 0000563db62051d0 RCX: 00007f67bff03b4b
[ 3698.447722] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000011e
[ 3698.447724] RBP: 0000563db62051d0 R08: 0000000000000000 R09: 0000000000000000
[ 3698.447725] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3698.447726] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3698.447731]  </TASK>
[ 3698.451273] watchdog: BUG: soft lockup - CPU#74 stuck for 48s! [qemu-system-x86:31394]
[ 3698.451276] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3698.451332] CPU: 74 UID: 0 PID: 31394 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3698.451336] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3698.451337] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3698.451338] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3698.451341] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3698.451343] RSP: 0018:ffffaab62c1ab8b8 EFLAGS: 00000202
[ 3698.451345] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3698.451346] RDX: 0000000000000001 RSI: ffff8f717fff9900 RDI: ffff8f5287658a20
[ 3698.451347] RBP: ffffaab62c1ab918 R08: 0000000000000007 R09: ffff8f5287658a30
[ 3698.451349] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3698.451350] R13: 0000000000000202 R14: ffff8f71808b2a40 R15: 0000000000000080
[ 3698.451351] FS:  00007f58a77fe640(0000) GS:ffff8f71ee0b6000(0000) knlGS:0000000000000000
[ 3698.451353] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3698.451354] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3698.451356] PKRU: 55555554
[ 3698.451357] Call Trace:
[ 3698.451358]  <TASK>
[ 3698.451359]  ? __pfx___wbinvd+0x10/0x10
[ 3698.451364]  on_each_cpu_cond_mask+0x28/0x50
[ 3698.451367]  wbinvd_on_all_cpus+0x29/0x40
[ 3698.451371]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3698.451379]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3698.451432]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3698.451486]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3698.451491]  change_protection+0xfc9/0x1200
[ 3698.451495]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.451500]  ? pick_eevdf+0x7c/0x1a0
[ 3698.451504]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.451507]  ? pick_next_task_fair+0x4f/0x490
[ 3698.451511]  change_prot_numa+0x5b/0xe0
[ 3698.451515]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.451518]  ? update_load_avg+0x84/0x780
[ 3698.451520]  ? __dequeue_entity+0x3cd/0x4a0
[ 3698.451525]  task_numa_work+0x3c5/0x9b0
[ 3698.451532]  task_work_run+0x64/0xa0
[ 3698.451536]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3698.451540]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3698.451593]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3698.451644]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.451647]  ? do_futex+0xc8/0x1d0
[ 3698.451649]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.451652]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.451655]  __x64_sys_ioctl+0xa0/0xf0
[ 3698.451660]  x64_sys_call+0x122e/0x2150
[ 3698.451662]  do_syscall_64+0x56/0x1e0
[ 3698.451666]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3698.451668] RIP: 0033:0x7f67bff03b4b
[ 3698.451670] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3698.451672] RSP: 002b:00007f58a77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3698.451674] RAX: ffffffffffffffda RBX: 0000563db65cf480 RCX: 00007f67bff03b4b
[ 3698.451675] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001de
[ 3698.451676] RBP: 0000563db65cf480 R08: 0000000000000000 R09: 0000000000000000
[ 3698.451678] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3698.451679] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3698.451684]  </TASK>
[ 3698.475272] watchdog: BUG: soft lockup - CPU#84 stuck for 48s! [qemu-system-x86:31416]
[ 3698.475275] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3698.475332] CPU: 84 UID: 0 PID: 31416 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3698.475336] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3698.475337] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3698.475338] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3698.475342] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3698.475344] RSP: 0018:ffffaab62b6078b8 EFLAGS: 00000202
[ 3698.475346] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3698.475347] RDX: 0000000000000001 RSI: ffff8f717fff9a40 RDI: ffff8f52889c6360
[ 3698.475348] RBP: ffffaab62b607918 R08: 0000000000000007 R09: ffff8f52889c68c0
[ 3698.475350] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3698.475351] R13: 0000000000000202 R14: ffff8f7180b32a40 R15: 0000000000000080
[ 3698.475353] FS:  00007f5846ffd640(0000) GS:ffff8f71ee336000(0000) knlGS:0000000000000000
[ 3698.475355] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3698.475356] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3698.475358] PKRU: 55555554
[ 3698.475358] Call Trace:
[ 3698.475360]  <TASK>
[ 3698.475361]  ? __pfx___wbinvd+0x10/0x10
[ 3698.475366]  on_each_cpu_cond_mask+0x28/0x50
[ 3698.475369]  wbinvd_on_all_cpus+0x29/0x40
[ 3698.475373]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3698.475381]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3698.475433]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3698.475488]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3698.475492]  change_protection+0xfc9/0x1200
[ 3698.475497]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.475500]  ? update_curr_dl_se+0x3b/0x1e0
[ 3698.475504]  ? dl_server_update+0x2e/0x40
[ 3698.475507]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.475511]  ? pick_next_task_fair+0x4f/0x490
[ 3698.475515]  change_prot_numa+0x5b/0xe0
[ 3698.475519]  ? sched_clock_cpu+0x14/0x1a0
[ 3698.475524]  task_numa_work+0x3c5/0x9b0
[ 3698.475532]  task_work_run+0x64/0xa0
[ 3698.475536]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3698.475540]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3698.475593]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3698.475644]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.475647]  ? do_futex+0xc8/0x1d0
[ 3698.475649]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.475652]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.475655]  __x64_sys_ioctl+0xa0/0xf0
[ 3698.475660]  x64_sys_call+0x122e/0x2150
[ 3698.475662]  do_syscall_64+0x56/0x1e0
[ 3698.475666]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3698.475668] RIP: 0033:0x7f67bff03b4b
[ 3698.475670] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3698.475672] RSP: 002b:00007f5846ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3698.475674] RAX: ffffffffffffffda RBX: 0000563db66aed00 RCX: 00007f67bff03b4b
[ 3698.475676] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000020a
[ 3698.475677] RBP: 0000563db66aed00 R08: 0000000000000000 R09: 0000000000000000
[ 3698.475678] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3698.475679] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3698.475685]  </TASK>
[ 3698.499273] watchdog: BUG: soft lockup - CPU#95 stuck for 48s! [qemu-system-x86:31343]
[ 3698.499279] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3698.499369] CPU: 95 UID: 0 PID: 31343 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3698.499375] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3698.499377] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3698.499379] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3698.499387] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3698.499390] RSP: 0018:ffffaab62b22f8b8 EFLAGS: 00000202
[ 3698.499393] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3698.499395] RDX: 0000000000000001 RSI: ffff8f717fff9ba0 RDI: ffff8f52889c6900
[ 3698.499397] RBP: ffffaab62b22f918 R08: 0000000000000007 R09: ffff8f52889c6960
[ 3698.499399] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3698.499400] R13: 0000000000000202 R14: ffff8f7180df2a40 R15: 0000000000000080
[ 3698.499402] FS:  00007f59a4ff9640(0000) GS:ffff8f71ee5f6000(0000) knlGS:0000000000000000
[ 3698.499404] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3698.499406] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3698.499408] PKRU: 55555554
[ 3698.499410] Call Trace:
[ 3698.499412]  <TASK>
[ 3698.499416]  ? __pfx___wbinvd+0x10/0x10
[ 3698.499424]  on_each_cpu_cond_mask+0x28/0x50
[ 3698.499428]  wbinvd_on_all_cpus+0x29/0x40
[ 3698.499433]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3698.499448]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3698.499524]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3698.499598]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3698.499605]  change_protection+0xfc9/0x1200
[ 3698.499611]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.499617]  ? pick_eevdf+0x7c/0x1a0
[ 3698.499623]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.499627]  ? pick_next_task_fair+0x4f/0x490
[ 3698.499631]  change_prot_numa+0x5b/0xe0
[ 3698.499637]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.499641]  ? dl_server_update+0x2e/0x40
[ 3698.499648]  ? update_curr+0x1d2/0x250
[ 3698.499653]  task_numa_work+0x3c5/0x9b0
[ 3698.499662]  task_work_run+0x64/0xa0
[ 3698.499667]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3698.499673]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3698.499750]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3698.499819]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.499822]  ? do_futex+0xc8/0x1d0
[ 3698.499825]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.499828]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.499832]  __x64_sys_ioctl+0xa0/0xf0
[ 3698.499838]  x64_sys_call+0x122e/0x2150
[ 3698.499841]  do_syscall_64+0x56/0x1e0
[ 3698.499847]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3698.499850] RIP: 0033:0x7f67bff03b4b
[ 3698.499853] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3698.499856] RSP: 002b:00007f59a4ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3698.499859] RAX: ffffffffffffffda RBX: 0000563db63cc4a0 RCX: 00007f67bff03b4b
[ 3698.499860] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000178
[ 3698.499862] RBP: 0000563db63cc4a0 R08: 0000000000000000 R09: 0000000000000000
[ 3698.499863] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3698.499865] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3698.499871]  </TASK>
[ 3698.507272] watchdog: BUG: soft lockup - CPU#98 stuck for 52s! [qemu-system-x86:31373]
[ 3698.507277] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3698.507344] CPU: 98 UID: 0 PID: 31373 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3698.507349] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3698.507350] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3698.507351] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3698.507359] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3698.507361] RSP: 0018:ffffaab6274978b8 EFLAGS: 00000202
[ 3698.507364] RAX: 0000000000000055 RBX: 0000000000000001 RCX: 0000000000000011
[ 3698.507365] RDX: 0000000000000001 RSI: ffff8f7180b79c00 RDI: ffff8f7206c6a630
[ 3698.507367] RBP: ffffaab627497918 R08: 0000000000000055 R09: ffff8f7206c6add0
[ 3698.507368] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3698.507369] R13: 0000000000000202 R14: ffff8f917e8b2a40 R15: 0000000000000080
[ 3698.507371] FS:  00007f59077fe640(0000) GS:ffff8f91ec0b6000(0000) knlGS:0000000000000000
[ 3698.507373] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3698.507374] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3698.507376] PKRU: 55555554
[ 3698.507377] Call Trace:
[ 3698.507378]  <TASK>
[ 3698.507381]  ? __pfx___wbinvd+0x10/0x10
[ 3698.507389]  on_each_cpu_cond_mask+0x28/0x50
[ 3698.507392]  wbinvd_on_all_cpus+0x29/0x40
[ 3698.507397]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3698.507405]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3698.507459]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3698.507514]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3698.507520]  change_protection+0xfc9/0x1200
[ 3698.507527]  ? update_cfs_group+0xb0/0xc0
[ 3698.507533]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.507538]  ? pick_next_task_fair+0x4f/0x490
[ 3698.507542]  change_prot_numa+0x5b/0xe0
[ 3698.507547]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3698.507553]  task_numa_work+0x3c5/0x9b0
[ 3698.507561]  task_work_run+0x64/0xa0
[ 3698.507565]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3698.507571]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3698.507623]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3698.507675]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.507677]  ? do_futex+0xc8/0x1d0
[ 3698.507680]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.507682]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.507686]  __x64_sys_ioctl+0xa0/0xf0
[ 3698.507691]  x64_sys_call+0x122e/0x2150
[ 3698.507694]  do_syscall_64+0x56/0x1e0
[ 3698.507699]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3698.507701] RIP: 0033:0x7f67bff03b4b
[ 3698.507704] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3698.507705] RSP: 002b:00007f59077fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3698.507708] RAX: ffffffffffffffda RBX: 0000563db64fb700 RCX: 00007f67bff03b4b
[ 3698.507709] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001b4
[ 3698.507710] RBP: 0000563db64fb700 R08: 0000000000000000 R09: 0000000000000000
[ 3698.507711] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3698.507712] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3698.507718]  </TASK>
[ 3698.547271] watchdog: BUG: soft lockup - CPU#115 stuck for 48s! [qemu-system-x86:31385]
[ 3698.547274] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3698.547332] CPU: 115 UID: 0 PID: 31385 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3698.547336] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3698.547337] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3698.547338] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3698.547341] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3698.547343] RSP: 0018:ffffaab62c2078b8 EFLAGS: 00000202
[ 3698.547345] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3698.547346] RDX: 0000000000000001 RSI: ffff8f717fff9e20 RDI: ffff8f72000ba950
[ 3698.547347] RBP: ffffaab62c207918 R08: 0000000000000007 R09: ffff8f72000ba010
[ 3698.547349] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3698.547350] R13: 0000000000000202 R14: ffff8f917ecf2a40 R15: 0000000000000080
[ 3698.547351] FS:  00007f58e4ff9640(0000) GS:ffff8f91ec4f6000(0000) knlGS:0000000000000000
[ 3698.547353] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3698.547355] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3698.547356] PKRU: 55555554
[ 3698.547357] Call Trace:
[ 3698.547358]  <TASK>
[ 3698.547360]  ? __pfx___wbinvd+0x10/0x10
[ 3698.547365]  on_each_cpu_cond_mask+0x28/0x50
[ 3698.547368]  wbinvd_on_all_cpus+0x29/0x40
[ 3698.547372]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3698.547380]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3698.547434]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3698.547489]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3698.547493]  change_protection+0xfc9/0x1200
[ 3698.547499]  ? update_cfs_group+0xb0/0xc0
[ 3698.547504]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.547508]  ? pick_next_task_fair+0x4f/0x490
[ 3698.547511]  change_prot_numa+0x5b/0xe0
[ 3698.547516]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.547518]  ? update_load_avg+0x84/0x780
[ 3698.547521]  ? __dequeue_entity+0x3cd/0x4a0
[ 3698.547525]  task_numa_work+0x3c5/0x9b0
[ 3698.547532]  task_work_run+0x64/0xa0
[ 3698.547536]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3698.547540]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3698.547593]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3698.547645]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.547648]  ? do_futex+0xc8/0x1d0
[ 3698.547650]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.547652]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.547656]  __x64_sys_ioctl+0xa0/0xf0
[ 3698.547661]  x64_sys_call+0x122e/0x2150
[ 3698.547663]  do_syscall_64+0x56/0x1e0
[ 3698.547667]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3698.547669] RIP: 0033:0x7f67bff03b4b
[ 3698.547671] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3698.547673] RSP: 002b:00007f58e4ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3698.547675] RAX: ffffffffffffffda RBX: 0000563db6574780 RCX: 00007f67bff03b4b
[ 3698.547676] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001cc
[ 3698.547678] RBP: 0000563db6574780 R08: 0000000000000000 R09: 0000000000000000
[ 3698.547679] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3698.547680] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3698.547685]  </TASK>
[ 3698.559270] watchdog: BUG: soft lockup - CPU#121 stuck for 48s! [qemu-system-x86:31230]
[ 3698.559274] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3698.559333] CPU: 121 UID: 0 PID: 31230 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3698.559337] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3698.559338] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3698.559339] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3698.559343] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3698.559345] RSP: 0018:ffffaab62abbb8b8 EFLAGS: 00000202
[ 3698.559347] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3698.559349] RDX: 0000000000000001 RSI: ffff8f717fff9ee0 RDI: ffff8f7207fa2f60
[ 3698.559350] RBP: ffffaab62abbb918 R08: 0000000000000007 R09: ffff8f7207fa2ab0
[ 3698.559352] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3698.559353] R13: 0000000000000202 R14: ffff8f917ee72a40 R15: 0000000000000080
[ 3698.559355] FS:  00007f5ba57fa640(0000) GS:ffff8f91ec676000(0000) knlGS:0000000000000000
[ 3698.559356] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3698.559358] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3698.559359] PKRU: 55555554
[ 3698.559360] Call Trace:
[ 3698.559362]  <TASK>
[ 3698.559363]  ? __pfx___wbinvd+0x10/0x10
[ 3698.559368]  on_each_cpu_cond_mask+0x28/0x50
[ 3698.559371]  wbinvd_on_all_cpus+0x29/0x40
[ 3698.559375]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3698.559383]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3698.559435]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3698.559490]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3698.559494]  change_protection+0xfc9/0x1200
[ 3698.559500]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.559503]  ? update_load_avg+0x84/0x780
[ 3698.559507]  ? write_ibpb+0x21/0x40
[ 3698.559510]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3698.559564]  change_prot_numa+0x5b/0xe0
[ 3698.559570]  task_numa_work+0x3c5/0x9b0
[ 3698.559578]  task_work_run+0x64/0xa0
[ 3698.559582]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3698.559586]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3698.559638]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3698.559690]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.559692]  ? do_futex+0xc8/0x1d0
[ 3698.559695]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.559697]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3698.559700]  __x64_sys_ioctl+0xa0/0xf0
[ 3698.559705]  x64_sys_call+0x122e/0x2150
[ 3698.559707]  do_syscall_64+0x56/0x1e0
[ 3698.559711]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3698.559713] RIP: 0033:0x7f67bff03b4b
[ 3698.559715] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3698.559716] RSP: 002b:00007f5ba57f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3698.559718] RAX: ffffffffffffffda RBX: 0000563db5f53b20 RCX: 00007f67bff03b4b
[ 3698.559720] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000096
[ 3698.559721] RBP: 0000563db5f53b20 R08: 0000000000000000 R09: 0000000000000000
[ 3698.559722] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3698.559723] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3698.559728]  </TASK>
[ 3702.375194] watchdog: BUG: soft lockup - CPU#51 stuck for 49s! [qemu-system-x86:31370]
[ 3702.375200] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3702.375270] CPU: 51 UID: 0 PID: 31370 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3702.375274] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3702.375275] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3702.375277] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3702.375284] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3702.375286] RSP: 0018:ffffaab62b4878b8 EFLAGS: 00000202
[ 3702.375288] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3702.375289] RDX: 0000000000000001 RSI: ffff8f717fff9620 RDI: ffff8f72000baf00
[ 3702.375291] RBP: ffffaab62b487918 R08: 0000000000000007 R09: ffff8f72000bade0
[ 3702.375292] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3702.375293] R13: 0000000000000202 R14: ffff8f917e4f2a40 R15: 0000000000000080
[ 3702.375295] FS:  00007f59257fa640(0000) GS:ffff8f91ebcf6000(0000) knlGS:0000000000000000
[ 3702.375296] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3702.375298] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3702.375299] PKRU: 55555554
[ 3702.375300] Call Trace:
[ 3702.375302]  <TASK>
[ 3702.375305]  ? __pfx___wbinvd+0x10/0x10
[ 3702.375312]  on_each_cpu_cond_mask+0x28/0x50
[ 3702.375315]  wbinvd_on_all_cpus+0x29/0x40
[ 3702.375319]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3702.375328]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3702.375386]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3702.375442]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3702.375448]  change_protection+0xfc9/0x1200
[ 3702.375455]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.375458]  ? update_load_avg+0x84/0x780
[ 3702.375463]  ? write_ibpb+0x21/0x40
[ 3702.375468]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3702.375522]  change_prot_numa+0x5b/0xe0
[ 3702.375527]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.375530]  ? update_load_avg+0x84/0x780
[ 3702.375532]  ? __dequeue_entity+0x3cd/0x4a0
[ 3702.375537]  task_numa_work+0x3c5/0x9b0
[ 3702.375544]  task_work_run+0x64/0xa0
[ 3702.375549]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3702.375554]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3702.375607]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3702.375660]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.375663]  ? do_futex+0xc8/0x1d0
[ 3702.375665]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.375667]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.375671]  __x64_sys_ioctl+0xa0/0xf0
[ 3702.375677]  x64_sys_call+0x122e/0x2150
[ 3702.375679]  do_syscall_64+0x56/0x1e0
[ 3702.375682]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3702.375684] RIP: 0033:0x7f67bff03b4b
[ 3702.375687] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3702.375688] RSP: 002b:00007f59257f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3702.375691] RAX: ffffffffffffffda RBX: 0000563db64dd830 RCX: 00007f67bff03b4b
[ 3702.375692] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001ae
[ 3702.375693] RBP: 0000563db64dd830 R08: 0000000000000000 R09: 0000000000000000
[ 3702.375694] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3702.375696] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3702.375701]  </TASK>
[ 3702.435192] watchdog: BUG: soft lockup - CPU#66 stuck for 49s! [qemu-system-x86:31354]
[ 3702.435197] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3702.435268] CPU: 66 UID: 0 PID: 31354 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3702.435273] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3702.435274] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3702.435276] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3702.435283] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3702.435285] RSP: 0018:ffffaab62b2878b8 EFLAGS: 00000202
[ 3702.435287] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3702.435289] RDX: 0000000000000001 RSI: ffff8f717fff9800 RDI: ffff8f52876581f0
[ 3702.435290] RBP: ffffaab62b287918 R08: 0000000000000007 R09: ffff8f5287658390
[ 3702.435292] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3702.435293] R13: 0000000000000202 R14: ffff8f71806b2a40 R15: 0000000000000080
[ 3702.435295] FS:  00007f59667fc640(0000) GS:ffff8f71edeb6000(0000) knlGS:0000000000000000
[ 3702.435296] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3702.435298] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3702.435299] PKRU: 55555554
[ 3702.435300] Call Trace:
[ 3702.435302]  <TASK>
[ 3702.435306]  ? __pfx___wbinvd+0x10/0x10
[ 3702.435313]  on_each_cpu_cond_mask+0x28/0x50
[ 3702.435316]  wbinvd_on_all_cpus+0x29/0x40
[ 3702.435322]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3702.435331]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3702.435385]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3702.435440]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3702.435447]  change_protection+0xfc9/0x1200
[ 3702.435454]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.435458]  ? update_load_avg+0x84/0x780
[ 3702.435464]  ? write_ibpb+0x21/0x40
[ 3702.435469]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3702.435522]  change_prot_numa+0x5b/0xe0
[ 3702.435529]  task_numa_work+0x3c5/0x9b0
[ 3702.435537]  task_work_run+0x64/0xa0
[ 3702.435542]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3702.435547]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3702.435600]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3702.435651]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.435654]  ? do_futex+0xc8/0x1d0
[ 3702.435656]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.435658]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.435662]  __x64_sys_ioctl+0xa0/0xf0
[ 3702.435668]  x64_sys_call+0x122e/0x2150
[ 3702.435670]  do_syscall_64+0x56/0x1e0
[ 3702.435674]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3702.435676] RIP: 0033:0x7f67bff03b4b
[ 3702.435678] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3702.435680] RSP: 002b:00007f59667fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3702.435682] RAX: ffffffffffffffda RBX: 0000563db643b550 RCX: 00007f67bff03b4b
[ 3702.435683] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000018e
[ 3702.435684] RBP: 0000563db643b550 R08: 0000000000000000 R09: 0000000000000000
[ 3702.435685] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3702.435687] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3702.435692]  </TASK>
[ 3702.455193] watchdog: BUG: soft lockup - CPU#75 stuck for 49s! [qemu-system-x86:31407]
[ 3702.455199] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3702.455267] CPU: 75 UID: 0 PID: 31407 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3702.455272] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3702.455273] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3702.455275] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3702.455282] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3702.455285] RSP: 0018:ffffaab62bf278b8 EFLAGS: 00000202
[ 3702.455287] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3702.455288] RDX: 0000000000000001 RSI: ffff8f717fff9920 RDI: ffff8f52876580a0
[ 3702.455290] RBP: ffffaab62bf27918 R08: 0000000000000007 R09: ffff8f5287658b80
[ 3702.455291] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3702.455293] R13: 0000000000000202 R14: ffff8f71808f2a40 R15: 0000000000000080
[ 3702.455294] FS:  00007f5867fff640(0000) GS:ffff8f71ee0f6000(0000) knlGS:0000000000000000
[ 3702.455296] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3702.455297] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3702.455299] PKRU: 55555554
[ 3702.455300] Call Trace:
[ 3702.455301]  <TASK>
[ 3702.455305]  ? __pfx___wbinvd+0x10/0x10
[ 3702.455313]  on_each_cpu_cond_mask+0x28/0x50
[ 3702.455316]  wbinvd_on_all_cpus+0x29/0x40
[ 3702.455320]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3702.455329]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3702.455382]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3702.455437]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3702.455444]  change_protection+0xfc9/0x1200
[ 3702.455450]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.455455]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.455457]  ? update_load_avg+0x84/0x780
[ 3702.455463]  ? write_ibpb+0x21/0x40
[ 3702.455469]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3702.455521]  change_prot_numa+0x5b/0xe0
[ 3702.455529]  task_numa_work+0x3c5/0x9b0
[ 3702.455536]  task_work_run+0x64/0xa0
[ 3702.455541]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3702.455547]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3702.455599]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3702.455650]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.455653]  ? do_futex+0xc8/0x1d0
[ 3702.455655]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.455657]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.455661]  __x64_sys_ioctl+0xa0/0xf0
[ 3702.455667]  x64_sys_call+0x122e/0x2150
[ 3702.455669]  do_syscall_64+0x56/0x1e0
[ 3702.455673]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3702.455674] RIP: 0033:0x7f67bff03b4b
[ 3702.455677] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3702.455678] RSP: 002b:00007f5867ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3702.455681] RAX: ffffffffffffffda RBX: 0000563db6654290 RCX: 00007f67bff03b4b
[ 3702.455682] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001f8
[ 3702.455683] RBP: 0000563db6654290 R08: 0000000000000000 R09: 0000000000000000
[ 3702.455684] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3702.455686] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3702.455691]  </TASK>
[ 3702.467192] watchdog: BUG: soft lockup - CPU#80 stuck for 49s! [qemu-system-x86:31301]
[ 3702.467198] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3702.467266] CPU: 80 UID: 0 PID: 31301 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3702.467271] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3702.467272] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3702.467274] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3702.467282] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3702.467284] RSP: 0018:ffffaab62af4f8b8 EFLAGS: 00000202
[ 3702.467286] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3702.467288] RDX: 0000000000000001 RSI: ffff8f717fff99c0 RDI: ffff8f5287658500
[ 3702.467289] RBP: ffffaab62af4f918 R08: 0000000000000007 R09: ffff8f52876581c0
[ 3702.467291] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3702.467292] R13: 0000000000000202 R14: ffff8f7180a32a40 R15: 0000000000000080
[ 3702.467294] FS:  00007f5a64ff9640(0000) GS:ffff8f71ee236000(0000) knlGS:0000000000000000
[ 3702.467295] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3702.467297] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3702.467298] PKRU: 55555554
[ 3702.467299] Call Trace:
[ 3702.467301]  <TASK>
[ 3702.467304]  ? __pfx___wbinvd+0x10/0x10
[ 3702.467312]  on_each_cpu_cond_mask+0x28/0x50
[ 3702.467315]  wbinvd_on_all_cpus+0x29/0x40
[ 3702.467319]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3702.467328]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3702.467382]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3702.467437]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3702.467443]  change_protection+0xfc9/0x1200
[ 3702.467449]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.467454]  ? update_curr_dl_se+0x3b/0x1e0
[ 3702.467458]  ? dl_server_update+0x2e/0x40
[ 3702.467462]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.467466]  ? pick_next_task_fair+0x4f/0x490
[ 3702.467471]  change_prot_numa+0x5b/0xe0
[ 3702.467478]  task_numa_work+0x3c5/0x9b0
[ 3702.467487]  task_work_run+0x64/0xa0
[ 3702.467492]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3702.467497]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3702.467550]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3702.467601]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.467604]  ? do_futex+0xc8/0x1d0
[ 3702.467606]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.467609]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.467612]  __x64_sys_ioctl+0xa0/0xf0
[ 3702.467618]  x64_sys_call+0x122e/0x2150
[ 3702.467621]  do_syscall_64+0x56/0x1e0
[ 3702.467626]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3702.467628] RIP: 0033:0x7f67bff03b4b
[ 3702.467631] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3702.467632] RSP: 002b:00007f5a64ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3702.467635] RAX: ffffffffffffffda RBX: 0000563db62230e0 RCX: 00007f67bff03b4b
[ 3702.467636] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000124
[ 3702.467637] RBP: 0000563db62230e0 R08: 0000000000000000 R09: 0000000000000000
[ 3702.467639] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3702.467640] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3702.467645]  </TASK>
[ 3702.471192] watchdog: BUG: soft lockup - CPU#82 stuck for 49s! [qemu-system-x86:31267]
[ 3702.471194] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3702.471252] CPU: 82 UID: 0 PID: 31267 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3702.471255] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3702.471256] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3702.471257] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3702.471260] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3702.471262] RSP: 0018:ffffaab62ad538b8 EFLAGS: 00000202
[ 3702.471264] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3702.471265] RDX: 0000000000000001 RSI: ffff8f717fff9a00 RDI: ffff8f5287658c00
[ 3702.471266] RBP: ffffaab62ad53918 R08: 0000000000000007 R09: ffff8f5287658750
[ 3702.471268] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3702.471269] R13: 0000000000000202 R14: ffff8f7180ab2a40 R15: 0000000000000080
[ 3702.471270] FS:  00007f5ae7fff640(0000) GS:ffff8f71ee2b6000(0000) knlGS:0000000000000000
[ 3702.471272] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3702.471273] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3702.471275] PKRU: 55555554
[ 3702.471276] Call Trace:
[ 3702.471277]  <TASK>
[ 3702.471278]  ? __pfx___wbinvd+0x10/0x10
[ 3702.471284]  on_each_cpu_cond_mask+0x28/0x50
[ 3702.471286]  wbinvd_on_all_cpus+0x29/0x40
[ 3702.471290]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3702.471298]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3702.471350]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3702.471405]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3702.471410]  change_protection+0xfc9/0x1200
[ 3702.471416]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.471419]  ? update_load_avg+0x84/0x780
[ 3702.471423]  ? write_ibpb+0x21/0x40
[ 3702.471427]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3702.471480]  change_prot_numa+0x5b/0xe0
[ 3702.471487]  task_numa_work+0x3c5/0x9b0
[ 3702.471494]  task_work_run+0x64/0xa0
[ 3702.471498]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3702.471502]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3702.471555]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3702.471607]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.471610]  ? do_futex+0xc8/0x1d0
[ 3702.471612]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.471614]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.471618]  __x64_sys_ioctl+0xa0/0xf0
[ 3702.471623]  x64_sys_call+0x122e/0x2150
[ 3702.471625]  do_syscall_64+0x56/0x1e0
[ 3702.471628]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3702.471630] RIP: 0033:0x7f67bff03b4b
[ 3702.471632] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3702.471634] RSP: 002b:00007f5ae7ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3702.471636] RAX: ffffffffffffffda RBX: 0000563db60c97b0 RCX: 00007f67bff03b4b
[ 3702.471637] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000e0
[ 3702.471639] RBP: 0000563db60c97b0 R08: 0000000000000000 R09: 0000000000000000
[ 3702.471640] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3702.471641] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3702.471646]  </TASK>
[ 3702.535191] watchdog: BUG: soft lockup - CPU#111 stuck for 49s! [qemu-system-x86:31376]
[ 3702.535196] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3702.535266] CPU: 111 UID: 0 PID: 31376 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3702.535270] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3702.535272] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3702.535274] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3702.535281] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3702.535283] RSP: 0018:ffffaab62b5b38b8 EFLAGS: 00000202
[ 3702.535285] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3702.535287] RDX: 0000000000000001 RSI: ffff8f717fff9da0 RDI: ffff8f7206c6ac70
[ 3702.535289] RBP: ffffaab62b5b3918 R08: 0000000000000007 R09: ffff8f7206c6adf0
[ 3702.535290] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3702.535292] R13: 0000000000000202 R14: ffff8f917ebf2a40 R15: 0000000000000080
[ 3702.535293] FS:  00007f5905ffb640(0000) GS:ffff8f91ec3f6000(0000) knlGS:0000000000000000
[ 3702.535295] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3702.535297] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3702.535299] PKRU: 55555554
[ 3702.535300] Call Trace:
[ 3702.535301]  <TASK>
[ 3702.535305]  ? __pfx___wbinvd+0x10/0x10
[ 3702.535312]  on_each_cpu_cond_mask+0x28/0x50
[ 3702.535315]  wbinvd_on_all_cpus+0x29/0x40
[ 3702.535320]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3702.535329]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3702.535382]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3702.535438]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3702.535444]  change_protection+0xfc9/0x1200
[ 3702.535450]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.535455]  ? update_curr_dl_se+0x3b/0x1e0
[ 3702.535459]  ? dl_server_update+0x2e/0x40
[ 3702.535463]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.535467]  ? pick_next_task_fair+0x4f/0x490
[ 3702.535472]  change_prot_numa+0x5b/0xe0
[ 3702.535479]  task_numa_work+0x3c5/0x9b0
[ 3702.535487]  task_work_run+0x64/0xa0
[ 3702.535492]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3702.535498]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3702.535550]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3702.535602]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.535604]  ? do_futex+0xc8/0x1d0
[ 3702.535606]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.535609]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3702.535612]  __x64_sys_ioctl+0xa0/0xf0
[ 3702.535618]  x64_sys_call+0x122e/0x2150
[ 3702.535620]  do_syscall_64+0x56/0x1e0
[ 3702.535626]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3702.535628] RIP: 0033:0x7f67bff03b4b
[ 3702.535631] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3702.535632] RSP: 002b:00007f5905ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3702.535634] RAX: ffffffffffffffda RBX: 0000563db6519e20 RCX: 00007f67bff03b4b
[ 3702.535636] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001ba
[ 3702.535637] RBP: 0000563db6519e20 R08: 0000000000000000 R09: 0000000000000000
[ 3702.535638] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3702.535639] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3702.535644]  </TASK>
[ 3703.432519] rcu: INFO: rcu_preempt self-detected stall on CPU
[ 3710.555030] watchdog: BUG: soft lockup - CPU#119 stuck for 22s! [qemu-system-x86:30243]
[ 3710.555036] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3710.555120] CPU: 119 UID: 0 PID: 30243 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3710.555126] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3710.555127] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3710.555129] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3710.555136] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3710.555138] RSP: 0018:ffffaab6285c78b8 EFLAGS: 00000202
[ 3710.555140] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3710.555142] RDX: 0000000000000001 RSI: ffff8f717fff9ea0 RDI: ffff8f7207fa2e90
[ 3710.555144] RBP: ffffaab6285c7918 R08: 0000000000000007 R09: ffff8f7207fa2310
[ 3710.555145] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3710.555146] R13: 0000000000000202 R14: ffff8f917edf2a40 R15: 0000000000000080
[ 3710.555148] FS:  00007fd92adfd640(0000) GS:ffff8f91ec5f6000(0000) knlGS:0000000000000000
[ 3710.555149] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3710.555151] CR2: 0000000000000000 CR3: 000000208b92101d CR4: 0000000000770ef0
[ 3710.555152] PKRU: 55555554
[ 3710.555154] Call Trace:
[ 3710.555155]  <TASK>
[ 3710.555161]  ? __pfx___wbinvd+0x10/0x10
[ 3710.555168]  on_each_cpu_cond_mask+0x28/0x50
[ 3710.555171]  wbinvd_on_all_cpus+0x29/0x40
[ 3710.555177]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3710.555188]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3710.555248]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3710.555306]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3710.555312]  change_protection+0xfc9/0x1200
[ 3710.555317]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3710.555321]  ? native_apic_msr_write+0x32/0x40
[ 3710.555325]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3710.555328]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3710.555330]  ? timerqueue_add+0x72/0xd0
[ 3710.555336]  ? enqueue_hrtimer+0x3c/0x90
[ 3710.555340]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3710.555343]  ? hrtimer_start_range_ns+0x137/0x430
[ 3710.555348]  change_prot_numa+0x5b/0xe0
[ 3710.555353]  ? kvm_lapic_reg_write+0x82/0x7d0 [kvm]
[ 3710.555410]  task_numa_work+0x3c5/0x9b0
[ 3710.555419]  task_work_run+0x64/0xa0
[ 3710.555424]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3710.555429]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3710.555484]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3710.555537]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3710.555540]  ? do_futex+0xc8/0x1d0
[ 3710.555542]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3710.555545]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3710.555548]  __x64_sys_ioctl+0xa0/0xf0
[ 3710.555554]  x64_sys_call+0x122e/0x2150
[ 3710.555556]  do_syscall_64+0x56/0x1e0
[ 3710.555561]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3710.555563] RIP: 0033:0x7fe43bd03b4b
[ 3710.555566] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3710.555568] RSP: 002b:00007fd92adfc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3710.555571] RAX: ffffffffffffffda RBX: 0000555f8587ce30 RCX: 00007fe43bd03b4b
[ 3710.555572] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000020
[ 3710.555573] RBP: 0000555f8587ce30 R08: 0000000000000000 R09: 0000000000000000
[ 3710.555575] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3710.555576] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3710.555581]  </TASK>
[ 3722.274792] watchdog: BUG: soft lockup - CPU#6 stuck for 74s! [qemu-system-x86:31395]
[ 3722.274796] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3722.274864] CPU: 6 UID: 0 PID: 31395 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3722.274868] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3722.274869] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3722.274870] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3722.274877] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3722.274879] RSP: 0018:ffffaab62c1a38b8 EFLAGS: 00000202
[ 3722.274881] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3722.274882] RDX: 0000000000000001 RSI: ffff8f717fff9080 RDI: ffff8f5280a320c0
[ 3722.274884] RBP: ffffaab62c1a3918 R08: 0000000000000007 R09: ffff8f5280a32bb0
[ 3722.274885] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3722.274886] R13: 0000000000000202 R14: ffff8f717ffb2a40 R15: 0000000000000080
[ 3722.274887] FS:  00007f58a6ffd640(0000) GS:ffff8f71ed7b6000(0000) knlGS:0000000000000000
[ 3722.274889] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3722.274890] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3722.274892] PKRU: 55555554
[ 3722.274893] Call Trace:
[ 3722.274894]  <TASK>
[ 3722.274897]  ? __pfx___wbinvd+0x10/0x10
[ 3722.274905]  on_each_cpu_cond_mask+0x28/0x50
[ 3722.274908]  wbinvd_on_all_cpus+0x29/0x40
[ 3722.274912]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3722.274921]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3722.274975]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3722.275031]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3722.275037]  change_protection+0xfc9/0x1200
[ 3722.275043]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.275047]  ? update_curr_dl_se+0x3b/0x1e0
[ 3722.275052]  ? dl_server_update+0x2e/0x40
[ 3722.275056]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.275059]  ? pick_next_task_fair+0x4f/0x490
[ 3722.275064]  change_prot_numa+0x5b/0xe0
[ 3722.275068]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3722.275074]  task_numa_work+0x3c5/0x9b0
[ 3722.275082]  task_work_run+0x64/0xa0
[ 3722.275087]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3722.275092]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3722.275145]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3722.275198]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.275201]  ? do_futex+0xc8/0x1d0
[ 3722.275203]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.275205]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.275209]  __x64_sys_ioctl+0xa0/0xf0
[ 3722.275214]  x64_sys_call+0x122e/0x2150
[ 3722.275216]  do_syscall_64+0x56/0x1e0
[ 3722.275222]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3722.275224] RIP: 0033:0x7f67bff03b4b
[ 3722.275226] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3722.275228] RSP: 002b:00007f58a6ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3722.275230] RAX: ffffffffffffffda RBX: 0000563db65d9840 RCX: 00007f67bff03b4b
[ 3722.275231] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001e0
[ 3722.275232] RBP: 0000563db65d9840 R08: 0000000000000000 R09: 0000000000000000
[ 3722.275233] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3722.275235] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3722.275240]  </TASK>
[ 3722.286793] watchdog: BUG: soft lockup - CPU#12 stuck for 74s! [qemu-system-x86:31256]
[ 3722.286799] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3722.286873] CPU: 12 UID: 0 PID: 31256 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3722.286878] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3722.286879] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3722.286881] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3722.286889] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3722.286891] RSP: 0018:ffffaab62acfb8b8 EFLAGS: 00000202
[ 3722.286893] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3722.286895] RDX: 0000000000000001 RSI: ffff8f717fff9140 RDI: ffff8f5280a32920
[ 3722.286896] RBP: ffffaab62acfb918 R08: 0000000000000007 R09: ffff8f5280a320d0
[ 3722.286898] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3722.286899] R13: 0000000000000202 R14: ffff8f7180132a40 R15: 0000000000000080
[ 3722.286901] FS:  00007f5b267fc640(0000) GS:ffff8f71ed936000(0000) knlGS:0000000000000000
[ 3722.286903] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3722.286904] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3722.286905] PKRU: 55555554
[ 3722.286906] Call Trace:
[ 3722.286908]  <TASK>
[ 3722.286912]  ? __pfx___wbinvd+0x10/0x10
[ 3722.286920]  on_each_cpu_cond_mask+0x28/0x50
[ 3722.286923]  wbinvd_on_all_cpus+0x29/0x40
[ 3722.286928]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3722.286937]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3722.286994]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3722.287052]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3722.287059]  change_protection+0xfc9/0x1200
[ 3722.287065]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.287070]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.287072]  ? update_load_avg+0x84/0x780
[ 3722.287078]  ? write_ibpb+0x21/0x40
[ 3722.287083]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3722.287137]  change_prot_numa+0x5b/0xe0
[ 3722.287145]  task_numa_work+0x3c5/0x9b0
[ 3722.287153]  task_work_run+0x64/0xa0
[ 3722.287158]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3722.287163]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3722.287217]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3722.287271]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.287273]  ? do_futex+0xc8/0x1d0
[ 3722.287275]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.287278]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.287281]  __x64_sys_ioctl+0xa0/0xf0
[ 3722.287287]  x64_sys_call+0x122e/0x2150
[ 3722.287289]  do_syscall_64+0x56/0x1e0
[ 3722.287293]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3722.287295] RIP: 0033:0x7f67bff03b4b
[ 3722.287297] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3722.287299] RSP: 002b:00007f5b267fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3722.287301] RAX: ffffffffffffffda RBX: 0000563db6059ff0 RCX: 00007f67bff03b4b
[ 3722.287303] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000ca
[ 3722.287304] RBP: 0000563db6059ff0 R08: 0000000000000000 R09: 0000000000000000
[ 3722.287305] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3722.287306] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3722.287311]  </TASK>
[ 3722.298792] watchdog: BUG: soft lockup - CPU#17 stuck for 74s! [qemu-system-x86:31404]
[ 3722.298797] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3722.298865] CPU: 17 UID: 0 PID: 31404 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3722.298870] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3722.298871] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3722.298872] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3722.298880] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3722.298882] RSP: 0018:ffffaab62bf3f8b8 EFLAGS: 00000202
[ 3722.298885] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3722.298886] RDX: 0000000000000001 RSI: ffff8f717fff91e0 RDI: ffff8f52872d0b00
[ 3722.298888] RBP: ffffaab62bf3f918 R08: 0000000000000007 R09: ffff8f52872d0850
[ 3722.298889] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3722.298890] R13: 0000000000000202 R14: ffff8f7180272a40 R15: 0000000000000080
[ 3722.298892] FS:  00007f5885ffb640(0000) GS:ffff8f71eda76000(0000) knlGS:0000000000000000
[ 3722.298894] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3722.298895] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3722.298896] PKRU: 55555554
[ 3722.298897] Call Trace:
[ 3722.298899]  <TASK>
[ 3722.298902]  ? __pfx___wbinvd+0x10/0x10
[ 3722.298910]  on_each_cpu_cond_mask+0x28/0x50
[ 3722.298913]  wbinvd_on_all_cpus+0x29/0x40
[ 3722.298918]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3722.298926]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3722.298980]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3722.299036]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3722.299043]  change_protection+0xfc9/0x1200
[ 3722.299049]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.299053]  ? update_curr_dl_se+0x3b/0x1e0
[ 3722.299058]  ? dl_server_update+0x2e/0x40
[ 3722.299062]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.299065]  ? pick_next_task_fair+0x4f/0x490
[ 3722.299070]  change_prot_numa+0x5b/0xe0
[ 3722.299075]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3722.299081]  task_numa_work+0x3c5/0x9b0
[ 3722.299090]  task_work_run+0x64/0xa0
[ 3722.299095]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3722.299100]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3722.299153]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3722.299206]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.299208]  ? do_futex+0xc8/0x1d0
[ 3722.299211]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.299213]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.299217]  __x64_sys_ioctl+0xa0/0xf0
[ 3722.299223]  x64_sys_call+0x122e/0x2150
[ 3722.299225]  do_syscall_64+0x56/0x1e0
[ 3722.299231]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3722.299233] RIP: 0033:0x7f67bff03b4b
[ 3722.299236] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3722.299237] RSP: 002b:00007f5885ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3722.299239] RAX: ffffffffffffffda RBX: 0000563db6636340 RCX: 00007f67bff03b4b
[ 3722.299241] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001f2
[ 3722.299242] RBP: 0000563db6636340 R08: 0000000000000000 R09: 0000000000000000
[ 3722.299243] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3722.299244] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3722.299249]  </TASK>
[ 3722.302792] watchdog: BUG: soft lockup - CPU#19 stuck for 74s! [qemu-system-x86:31326]
[ 3722.302797] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3722.302876] CPU: 19 UID: 0 PID: 31326 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3722.302882] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3722.302883] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3722.302885] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3722.302892] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3722.302896] RSP: 0018:ffffaab62b0338b8 EFLAGS: 00000202
[ 3722.302899] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3722.302901] RDX: 0000000000000001 RSI: ffff8f717fff9220 RDI: ffff8f52872d0a50
[ 3722.302904] RBP: ffffaab62b033918 R08: 0000000000000007 R09: ffff8f52872d0b70
[ 3722.302907] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3722.302909] R13: 0000000000000202 R14: ffff8f71802f2a40 R15: 0000000000000080
[ 3722.302911] FS:  00007f59e67fc640(0000) GS:ffff8f71edaf6000(0000) knlGS:0000000000000000
[ 3722.302913] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3722.302915] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3722.302917] PKRU: 55555554
[ 3722.302918] Call Trace:
[ 3722.302919]  <TASK>
[ 3722.302922]  ? __pfx___wbinvd+0x10/0x10
[ 3722.302929]  on_each_cpu_cond_mask+0x28/0x50
[ 3722.302932]  wbinvd_on_all_cpus+0x29/0x40
[ 3722.302937]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3722.302949]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3722.303034]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3722.303109]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3722.303114]  change_protection+0xfc9/0x1200
[ 3722.303120]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.303127]  ? update_curr_dl_se+0x3b/0x1e0
[ 3722.303131]  ? dl_server_update+0x2e/0x40
[ 3722.303135]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.303139]  ? pick_next_task_fair+0x4f/0x490
[ 3722.303143]  change_prot_numa+0x5b/0xe0
[ 3722.303148]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3722.303154]  task_numa_work+0x3c5/0x9b0
[ 3722.303162]  task_work_run+0x64/0xa0
[ 3722.303166]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3722.303171]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3722.303252]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3722.303333]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.303337]  ? do_futex+0xc8/0x1d0
[ 3722.303340]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.303342]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.303346]  __x64_sys_ioctl+0xa0/0xf0
[ 3722.303352]  x64_sys_call+0x122e/0x2150
[ 3722.303354]  do_syscall_64+0x56/0x1e0
[ 3722.303359]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3722.303361] RIP: 0033:0x7f67bff03b4b
[ 3722.303364] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3722.303366] RSP: 002b:00007f59e67fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3722.303369] RAX: ffffffffffffffda RBX: 0000563db6320030 RCX: 00007f67bff03b4b
[ 3722.303371] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000156
[ 3722.303372] RBP: 0000563db6320030 R08: 0000000000000000 R09: 0000000000000000
[ 3722.303374] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3722.303375] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3722.303381]  </TASK>
[ 3722.326791] watchdog: BUG: soft lockup - CPU#30 stuck for 74s! [qemu-system-x86:31241]
[ 3722.326797] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3722.326866] CPU: 30 UID: 0 PID: 31241 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3722.326870] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3722.326871] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3722.326873] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3722.326880] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3722.326883] RSP: 0018:ffffaab62ac838b8 EFLAGS: 00000202
[ 3722.326885] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3722.326886] RDX: 0000000000000001 RSI: ffff8f717fff9380 RDI: ffff8f52872d0570
[ 3722.326887] RBP: ffffaab62ac83918 R08: 0000000000000007 R09: ffff8f52872d0ae0
[ 3722.326889] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3722.326890] R13: 0000000000000202 R14: ffff8f71805b2a40 R15: 0000000000000080
[ 3722.326892] FS:  00007f5b66ffd640(0000) GS:ffff8f71eddb6000(0000) knlGS:0000000000000000
[ 3722.326893] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3722.326895] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3722.326896] PKRU: 55555554
[ 3722.326898] Call Trace:
[ 3722.326899]  <TASK>
[ 3722.326903]  ? __pfx___wbinvd+0x10/0x10
[ 3722.326911]  on_each_cpu_cond_mask+0x28/0x50
[ 3722.326914]  wbinvd_on_all_cpus+0x29/0x40
[ 3722.326918]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3722.326927]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3722.326980]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3722.327035]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3722.327042]  change_protection+0xfc9/0x1200
[ 3722.327047]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.327053]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.327055]  ? update_load_avg+0x84/0x780
[ 3722.327061]  ? write_ibpb+0x21/0x40
[ 3722.327066]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3722.327118]  change_prot_numa+0x5b/0xe0
[ 3722.327125]  task_numa_work+0x3c5/0x9b0
[ 3722.327133]  task_work_run+0x64/0xa0
[ 3722.327138]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3722.327143]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3722.327195]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3722.327247]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.327249]  ? do_futex+0xc8/0x1d0
[ 3722.327252]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.327254]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.327258]  __x64_sys_ioctl+0xa0/0xf0
[ 3722.327263]  x64_sys_call+0x122e/0x2150
[ 3722.327266]  do_syscall_64+0x56/0x1e0
[ 3722.327269]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3722.327271] RIP: 0033:0x7f67bff03b4b
[ 3722.327273] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3722.327275] RSP: 002b:00007f5b66ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3722.327277] RAX: ffffffffffffffda RBX: 0000563db5fc29d0 RCX: 00007f67bff03b4b
[ 3722.327279] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000ac
[ 3722.327280] RBP: 0000563db5fc29d0 R08: 0000000000000000 R09: 0000000000000000
[ 3722.327281] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3722.327282] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3722.327287]  </TASK>
[ 3722.327288] watchdog: BUG: soft lockup - CPU#29 stuck for 48s! [kworker/u516:3:39511]
[ 3722.327291] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3722.327349] CPU: 29 UID: 0 PID: 39511 Comm: kworker/u516:3 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3722.327352] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3722.327353] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3722.327355] Workqueue: writeback wb_workfn (flush-253:1)
[ 3722.327361] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3722.327364] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3722.327366] RSP: 0018:ffffaab6926c35d8 EFLAGS: 00000202
[ 3722.327368] RAX: 0000000000000056 RBX: 0000000000000001 RCX: 0000000000000011
[ 3722.327369] RDX: 0000000000000001 RSI: ffff8f7180bb9360 RDI: ffff8f52872d07a0
[ 3722.327371] RBP: ffffaab6926c3638 R08: 0000000000000056 R09: ffff8f52872d0970
[ 3722.327372] R10: 0000000000000002 R11: 0000000000000002 R12: ffff8f7180570b00
[ 3722.327373] R13: ffff8f52872d0e00 R14: ffff8f7180572a40 R15: 0000000000000080
[ 3722.327375] FS:  0000000000000000(0000) GS:ffff8f71edd76000(0000) knlGS:0000000000000000
[ 3722.327376] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3722.327378] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3722.327379] PKRU: 55555554
[ 3722.327380] Call Trace:
[ 3722.327381]  <TASK>
[ 3722.327383]  ? __pfx_flush_tlb_func+0x10/0x10
[ 3722.327389]  on_each_cpu_cond_mask+0x28/0x50
[ 3722.327392]  native_flush_tlb_multi+0xec/0x140
[ 3722.327394]  ? __pte_offset_map_lock+0x9a/0x110
[ 3722.327397]  flush_tlb_mm_range+0x1d6/0x5d0
[ 3722.327401]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.327403]  ? page_vma_mapped_walk+0x7bb/0xac0
[ 3722.327408]  ptep_clear_flush+0x64/0x80
[ 3722.327410]  page_vma_mkclean_one.constprop.0+0x113/0x270
[ 3722.327415]  page_mkclean_one+0x8c/0xb0
[ 3722.327420]  __rmap_walk_file+0xe3/0x190
[ 3722.327424]  rmap_walk+0x49/0x70
[ 3722.327427]  folio_mkclean+0xb0/0xc0
[ 3722.327430]  ? __pfx_page_mkclean_one+0x10/0x10
[ 3722.327433]  ? __pfx_invalid_mkclean_vma+0x10/0x10
[ 3722.327435]  folio_clear_dirty_for_io+0x60/0x190
[ 3722.327441]  writeback_iter+0x10b/0x310
[ 3722.327444]  iomap_writepages+0x6d/0x990
[ 3722.327449]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.327452]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.327454]  ? mpt3sas_scsih_scsi_lookup_get+0x4f/0xe0 [mpt3sas]
[ 3722.327466]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.327471]  xfs_vm_writepages+0x88/0x100 [xfs]
[ 3722.327591]  do_writepages+0xc8/0x160
[ 3722.327595]  __writeback_single_inode+0x44/0x340
[ 3722.327600]  writeback_sb_inodes+0x249/0x540
[ 3722.327613]  __writeback_inodes_wb+0x56/0xf0
[ 3722.327617]  wb_writeback+0x192/0x300
[ 3722.327623]  wb_workfn+0x26a/0x410
[ 3722.327629]  process_one_work+0x19f/0x3e0
[ 3722.327633]  worker_thread+0x2ad/0x3c0
[ 3722.327636]  kthread+0x10b/0x220
[ 3722.327640]  ? __pfx_worker_thread+0x10/0x10
[ 3722.327642]  ? __pfx_kthread+0x10/0x10
[ 3722.327645]  ret_from_fork+0x8e/0x100
[ 3722.327649]  ? __pfx_kthread+0x10/0x10
[ 3722.327652]  ret_from_fork_asm+0x1a/0x30
[ 3722.327657]  </TASK>
[ 3722.350791] watchdog: BUG: soft lockup - CPU#40 stuck for 74s! [qemu-system-x86:31268]
[ 3722.350796] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3722.350864] CPU: 40 UID: 0 PID: 31268 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3722.350869] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3722.350870] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3722.350872] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3722.350880] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3722.350882] RSP: 0018:ffffaab62ad5b8b8 EFLAGS: 00000202
[ 3722.350884] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3722.350885] RDX: 0000000000000001 RSI: ffff8f717fff94c0 RDI: ffff8f72066e39e0
[ 3722.350887] RBP: ffffaab62ad5b918 R08: 0000000000000007 R09: ffff8f72066e3c40
[ 3722.350888] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3722.350890] R13: 0000000000000202 R14: ffff8f917e232a40 R15: 0000000000000080
[ 3722.350891] FS:  00007f5ae77fe640(0000) GS:ffff8f91eba36000(0000) knlGS:0000000000000000
[ 3722.350893] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3722.350895] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3722.350896] PKRU: 55555554
[ 3722.350897] Call Trace:
[ 3722.350899]  <TASK>
[ 3722.350903]  ? __pfx___wbinvd+0x10/0x10
[ 3722.350910]  on_each_cpu_cond_mask+0x28/0x50
[ 3722.350914]  wbinvd_on_all_cpus+0x29/0x40
[ 3722.350918]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3722.350927]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3722.350980]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3722.351035]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3722.351042]  change_protection+0xfc9/0x1200
[ 3722.351049]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.351053]  ? update_load_avg+0x84/0x780
[ 3722.351058]  ? write_ibpb+0x21/0x40
[ 3722.351064]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3722.351116]  change_prot_numa+0x5b/0xe0
[ 3722.351124]  task_numa_work+0x3c5/0x9b0
[ 3722.351131]  task_work_run+0x64/0xa0
[ 3722.351136]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3722.351142]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3722.351194]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3722.351245]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.351248]  ? do_futex+0xc8/0x1d0
[ 3722.351251]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.351253]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.351257]  __x64_sys_ioctl+0xa0/0xf0
[ 3722.351262]  x64_sys_call+0x122e/0x2150
[ 3722.351265]  do_syscall_64+0x56/0x1e0
[ 3722.351268]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3722.351270] RIP: 0033:0x7f67bff03b4b
[ 3722.351273] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3722.351274] RSP: 002b:00007f5ae77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3722.351276] RAX: ffffffffffffffda RBX: 0000563db60d3df0 RCX: 00007f67bff03b4b
[ 3722.351278] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000e2
[ 3722.351279] RBP: 0000563db60d3df0 R08: 0000000000000000 R09: 0000000000000000
[ 3722.351280] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3722.351281] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3722.351286]  </TASK>
[ 3722.386791] watchdog: BUG: soft lockup - CPU#55 stuck for 22s! [qemu-system-x86:30270]
[ 3722.386797] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3722.386884] CPU: 55 UID: 0 PID: 30270 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3722.386889] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3722.386890] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3722.386892] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3722.386899] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3722.386902] RSP: 0018:ffffaab62c8978b8 EFLAGS: 00000202
[ 3722.386904] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3722.386906] RDX: 0000000000000001 RSI: ffff8f717fff96a0 RDI: ffff8f72000ba410
[ 3722.386908] RBP: ffffaab62c897918 R08: 0000000000000007 R09: ffff8f72000ba7c0
[ 3722.386909] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3722.386911] R13: 0000000000000202 R14: ffff8f917e5f2a40 R15: 0000000000000080
[ 3722.386912] FS:  00007fd8a3fff640(0000) GS:ffff8f91ebdf6000(0000) knlGS:0000000000000000
[ 3722.386915] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3722.386916] CR2: 00007fb38e38e1a0 CR3: 000000208b92101d CR4: 0000000000770ef0
[ 3722.386918] PKRU: 55555554
[ 3722.386919] Call Trace:
[ 3722.386921]  <TASK>
[ 3722.386926]  ? __pfx___wbinvd+0x10/0x10
[ 3722.386934]  on_each_cpu_cond_mask+0x28/0x50
[ 3722.386937]  wbinvd_on_all_cpus+0x29/0x40
[ 3722.386941]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3722.386952]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3722.387011]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3722.387068]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3722.387074]  change_protection+0xfc9/0x1200
[ 3722.387080]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.387084]  ? native_apic_msr_write+0x32/0x40
[ 3722.387088]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.387091]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.387093]  ? timerqueue_add+0x72/0xd0
[ 3722.387099]  ? enqueue_hrtimer+0x3c/0x90
[ 3722.387103]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.387105]  ? hrtimer_start_range_ns+0x137/0x430
[ 3722.387111]  change_prot_numa+0x5b/0xe0
[ 3722.387116]  ? kvm_lapic_reg_write+0x82/0x7d0 [kvm]
[ 3722.387173]  task_numa_work+0x3c5/0x9b0
[ 3722.387182]  task_work_run+0x64/0xa0
[ 3722.387187]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3722.387192]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3722.387248]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3722.387301]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.387303]  ? do_futex+0xc8/0x1d0
[ 3722.387305]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.387308]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.387311]  __x64_sys_ioctl+0xa0/0xf0
[ 3722.387317]  x64_sys_call+0x122e/0x2150
[ 3722.387319]  do_syscall_64+0x56/0x1e0
[ 3722.387324]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3722.387326] RIP: 0033:0x7fe43bd03b4b
[ 3722.387329] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3722.387330] RSP: 002b:00007fd8a3ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3722.387333] RAX: ffffffffffffffda RBX: 0000555f859840f0 RCX: 00007fe43bd03b4b
[ 3722.387334] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000054
[ 3722.387336] RBP: 0000555f859840f0 R08: 0000000000000000 R09: 0000000000000000
[ 3722.387337] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3722.387338] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3722.387343]  </TASK>
[ 3722.390790] watchdog: BUG: soft lockup - CPU#57 stuck for 74s! [qemu-system-x86:31333]
[ 3722.390795] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3722.390864] CPU: 57 UID: 0 PID: 31333 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3722.390868] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3722.390870] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3722.390871] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3722.390878] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3722.390880] RSP: 0018:ffffaab62b1df8b8 EFLAGS: 00000202
[ 3722.390882] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3722.390884] RDX: 0000000000000001 RSI: ffff8f717fff96e0 RDI: ffff8f72000babf0
[ 3722.390885] RBP: ffffaab62b1df918 R08: 0000000000000007 R09: ffff8f72000bab00
[ 3722.390887] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3722.390888] R13: 0000000000000202 R14: ffff8f917e672a40 R15: 0000000000000080
[ 3722.390890] FS:  00007f59c67fc640(0000) GS:ffff8f91ebe76000(0000) knlGS:0000000000000000
[ 3722.390891] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3722.390893] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3722.390894] PKRU: 55555554
[ 3722.390895] Call Trace:
[ 3722.390897]  <TASK>
[ 3722.390900]  ? __pfx___wbinvd+0x10/0x10
[ 3722.390907]  on_each_cpu_cond_mask+0x28/0x50
[ 3722.390910]  wbinvd_on_all_cpus+0x29/0x40
[ 3722.390915]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3722.390924]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3722.390980]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3722.391037]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3722.391043]  change_protection+0xfc9/0x1200
[ 3722.391048]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.391053]  ? update_curr_dl_se+0x3b/0x1e0
[ 3722.391057]  ? dl_server_update+0x2e/0x40
[ 3722.391061]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.391065]  ? pick_next_task_fair+0x4f/0x490
[ 3722.391069]  change_prot_numa+0x5b/0xe0
[ 3722.391074]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3722.391080]  task_numa_work+0x3c5/0x9b0
[ 3722.391088]  task_work_run+0x64/0xa0
[ 3722.391093]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3722.391098]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3722.391152]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3722.391204]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.391207]  ? do_futex+0xc8/0x1d0
[ 3722.391209]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.391212]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.391215]  __x64_sys_ioctl+0xa0/0xf0
[ 3722.391221]  x64_sys_call+0x122e/0x2150
[ 3722.391223]  do_syscall_64+0x56/0x1e0
[ 3722.391229]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3722.391231] RIP: 0033:0x7f67bff03b4b
[ 3722.391233] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3722.391235] RSP: 002b:00007f59c67fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3722.391237] RAX: ffffffffffffffda RBX: 0000563db63677d0 RCX: 00007f67bff03b4b
[ 3722.391238] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000164
[ 3722.391239] RBP: 0000563db63677d0 R08: 0000000000000000 R09: 0000000000000000
[ 3722.391240] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3722.391242] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3722.391247]  </TASK>
[ 3722.394790] watchdog: BUG: soft lockup - CPU#60 stuck for 74s! [qemu-system-x86:31338]
[ 3722.394795] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3722.394871] CPU: 60 UID: 0 PID: 31338 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3722.394878] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3722.394879] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3722.394881] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3722.394885] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3722.394887] RSP: 0018:ffffaab62b2078b8 EFLAGS: 00000202
[ 3722.394890] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3722.394891] RDX: 0000000000000001 RSI: ffff8f717fff9740 RDI: ffff8f72000ba610
[ 3722.394893] RBP: ffffaab62b207918 R08: 0000000000000007 R09: ffff8f72000ba170
[ 3722.394894] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3722.394896] R13: 0000000000000202 R14: ffff8f917e732a40 R15: 0000000000000080
[ 3722.394897] FS:  00007f59a77fe640(0000) GS:ffff8f91ebf36000(0000) knlGS:0000000000000000
[ 3722.394899] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3722.394901] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3722.394903] PKRU: 55555554
[ 3722.394904] Call Trace:
[ 3722.394905]  <TASK>
[ 3722.394908]  ? __pfx___wbinvd+0x10/0x10
[ 3722.394915]  on_each_cpu_cond_mask+0x28/0x50
[ 3722.394918]  wbinvd_on_all_cpus+0x29/0x40
[ 3722.394922]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3722.394934]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3722.395013]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3722.395098]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3722.395103]  change_protection+0xfc9/0x1200
[ 3722.395108]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.395112]  ? update_curr_dl_se+0x3b/0x1e0
[ 3722.395116]  ? dl_server_update+0x2e/0x40
[ 3722.395120]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.395124]  ? pick_next_task_fair+0x4f/0x490
[ 3722.395128]  change_prot_numa+0x5b/0xe0
[ 3722.395136]  task_numa_work+0x3c5/0x9b0
[ 3722.395144]  task_work_run+0x64/0xa0
[ 3722.395149]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3722.395153]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3722.395233]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3722.395307]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.395311]  ? do_futex+0xc8/0x1d0
[ 3722.395313]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.395316]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.395320]  __x64_sys_ioctl+0xa0/0xf0
[ 3722.395325]  x64_sys_call+0x122e/0x2150
[ 3722.395328]  do_syscall_64+0x56/0x1e0
[ 3722.395332]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3722.395335] RIP: 0033:0x7f67bff03b4b
[ 3722.395337] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3722.395339] RSP: 002b:00007f59a77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3722.395342] RAX: ffffffffffffffda RBX: 0000563db6399de0 RCX: 00007f67bff03b4b
[ 3722.395344] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000016e
[ 3722.395345] RBP: 0000563db6399de0 R08: 0000000000000000 R09: 0000000000000000
[ 3722.395347] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3722.395348] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3722.395354]  </TASK>
[ 3722.430789] watchdog: BUG: soft lockup - CPU#65 stuck for 74s! [qemu-system-x86:31406]
[ 3722.430791] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3722.430850] CPU: 65 UID: 0 PID: 31406 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3722.430854] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3722.430855] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3722.430856] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3722.430860] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3722.430862] RSP: 0018:ffffaab62bf2f8b8 EFLAGS: 00000202
[ 3722.430864] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3722.430865] RDX: 0000000000000001 RSI: ffff8f717fff97e0 RDI: ffff8f5287658e40
[ 3722.430866] RBP: ffffaab62bf2f918 R08: 0000000000000007 R09: ffff8f5287658ed0
[ 3722.430868] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3722.430869] R13: 0000000000000202 R14: ffff8f7180672a40 R15: 0000000000000080
[ 3722.430871] FS:  00007f5884ff9640(0000) GS:ffff8f71ede76000(0000) knlGS:0000000000000000
[ 3722.430872] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3722.430874] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3722.430875] PKRU: 55555554
[ 3722.430876] Call Trace:
[ 3722.430878]  <TASK>
[ 3722.430879]  ? __pfx___wbinvd+0x10/0x10
[ 3722.430885]  on_each_cpu_cond_mask+0x28/0x50
[ 3722.430888]  wbinvd_on_all_cpus+0x29/0x40
[ 3722.430891]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3722.430900]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3722.430953]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3722.431007]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3722.431012]  change_protection+0xfc9/0x1200
[ 3722.431017]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.431020]  ? update_curr_dl_se+0x3b/0x1e0
[ 3722.431023]  ? dl_server_update+0x2e/0x40
[ 3722.431027]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.431031]  ? pick_next_task_fair+0x4f/0x490
[ 3722.431034]  change_prot_numa+0x5b/0xe0
[ 3722.431039]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.431041]  ? update_load_avg+0x84/0x780
[ 3722.431044]  ? __dequeue_entity+0x3cd/0x4a0
[ 3722.431048]  task_numa_work+0x3c5/0x9b0
[ 3722.431055]  task_work_run+0x64/0xa0
[ 3722.431059]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3722.431063]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3722.431116]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3722.431167]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.431170]  ? do_futex+0xc8/0x1d0
[ 3722.431172]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.431174]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.431178]  __x64_sys_ioctl+0xa0/0xf0
[ 3722.431183]  x64_sys_call+0x122e/0x2150
[ 3722.431185]  do_syscall_64+0x56/0x1e0
[ 3722.431189]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3722.431191] RIP: 0033:0x7f67bff03b4b
[ 3722.431193] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3722.431194] RSP: 002b:00007f5884ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3722.431196] RAX: ffffffffffffffda RBX: 0000563db664a2e0 RCX: 00007f67bff03b4b
[ 3722.431198] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001f6
[ 3722.431199] RBP: 0000563db664a2e0 R08: 0000000000000000 R09: 0000000000000000
[ 3722.431200] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3722.431201] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3722.431207]  </TASK>
[ 3722.438790] watchdog: BUG: soft lockup - CPU#68 stuck for 74s! [qemu-system-x86:31300]
[ 3722.438794] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3722.438878] CPU: 68 UID: 0 PID: 31300 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3722.438883] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3722.438884] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3722.438886] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3722.438891] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3722.438894] RSP: 0018:ffffaab62af478b8 EFLAGS: 00000202
[ 3722.438897] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3722.438899] RDX: 0000000000000001 RSI: ffff8f717fff9840 RDI: ffff8f5287658670
[ 3722.438901] RBP: ffffaab62af47918 R08: 0000000000000007 R09: ffff8f5287658210
[ 3722.438904] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3722.438906] R13: 0000000000000202 R14: ffff8f7180732a40 R15: 0000000000000080
[ 3722.438908] FS:  00007f5a657fa640(0000) GS:ffff8f71edf36000(0000) knlGS:0000000000000000
[ 3722.438911] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3722.438914] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3722.438917] PKRU: 55555554
[ 3722.438918] Call Trace:
[ 3722.438920]  <TASK>
[ 3722.438924]  ? __pfx___wbinvd+0x10/0x10
[ 3722.438932]  on_each_cpu_cond_mask+0x28/0x50
[ 3722.438936]  wbinvd_on_all_cpus+0x29/0x40
[ 3722.438941]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3722.438957]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3722.439067]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3722.439144]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3722.439150]  change_protection+0xfc9/0x1200
[ 3722.439155]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.439160]  ? pick_eevdf+0x7c/0x1a0
[ 3722.439164]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.439168]  ? pick_next_task_fair+0x4f/0x490
[ 3722.439172]  change_prot_numa+0x5b/0xe0
[ 3722.439179]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3722.439186]  task_numa_work+0x3c5/0x9b0
[ 3722.439195]  task_work_run+0x64/0xa0
[ 3722.439199]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3722.439205]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3722.439293]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3722.439369]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.439373]  ? do_futex+0xc8/0x1d0
[ 3722.439375]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.439378]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.439382]  __x64_sys_ioctl+0xa0/0xf0
[ 3722.439387]  x64_sys_call+0x122e/0x2150
[ 3722.439390]  do_syscall_64+0x56/0x1e0
[ 3722.439394]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3722.439397] RIP: 0033:0x7f67bff03b4b
[ 3722.439400] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3722.439402] RSP: 002b:00007f5a657f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3722.439405] RAX: ffffffffffffffda RBX: 0000563db62190f0 RCX: 00007f67bff03b4b
[ 3722.439407] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000122
[ 3722.439408] RBP: 0000563db62190f0 R08: 0000000000000000 R09: 0000000000000000
[ 3722.439410] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3722.439411] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3722.439417]  </TASK>
[ 3722.446788] watchdog: BUG: soft lockup - CPU#71 stuck for 74s! [qemu-system-x86:31278]
[ 3722.446791] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3722.446847] CPU: 71 UID: 0 PID: 31278 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3722.446850] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3722.446851] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3722.446852] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3722.446856] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3722.446857] RSP: 0018:ffffaab62ae8b8b8 EFLAGS: 00000202
[ 3722.446859] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3722.446860] RDX: 0000000000000001 RSI: ffff8f717fff98a0 RDI: ffff8f5287658880
[ 3722.446861] RBP: ffffaab62ae8b918 R08: 0000000000000007 R09: ffff8f52876588a0
[ 3722.446863] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3722.446864] R13: 0000000000000202 R14: ffff8f71807f2a40 R15: 0000000000000080
[ 3722.446866] FS:  00007f5ac5ffb640(0000) GS:ffff8f71edff6000(0000) knlGS:0000000000000000
[ 3722.446867] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3722.446869] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3722.446870] PKRU: 55555554
[ 3722.446871] Call Trace:
[ 3722.446872]  <TASK>
[ 3722.446873]  ? __pfx___wbinvd+0x10/0x10
[ 3722.446878]  on_each_cpu_cond_mask+0x28/0x50
[ 3722.446881]  wbinvd_on_all_cpus+0x29/0x40
[ 3722.446885]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3722.446892]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3722.446944]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3722.446998]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3722.447002]  change_protection+0xfc9/0x1200
[ 3722.447007]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.447011]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.447013]  ? update_load_avg+0x84/0x780
[ 3722.447017]  ? write_ibpb+0x21/0x40
[ 3722.447020]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3722.447072]  change_prot_numa+0x5b/0xe0
[ 3722.447079]  task_numa_work+0x3c5/0x9b0
[ 3722.447087]  task_work_run+0x64/0xa0
[ 3722.447091]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3722.447095]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3722.447147]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3722.447198]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.447201]  ? do_futex+0xc8/0x1d0
[ 3722.447203]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.447205]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.447209]  __x64_sys_ioctl+0xa0/0xf0
[ 3722.447213]  x64_sys_call+0x122e/0x2150
[ 3722.447216]  do_syscall_64+0x56/0x1e0
[ 3722.447219]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3722.447221] RIP: 0033:0x7f67bff03b4b
[ 3722.447223] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3722.447225] RSP: 002b:00007f5ac5ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3722.447227] RAX: ffffffffffffffda RBX: 0000563db61390c0 RCX: 00007f67bff03b4b
[ 3722.447228] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000f6
[ 3722.447229] RBP: 0000563db61390c0 R08: 0000000000000000 R09: 0000000000000000
[ 3722.447230] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3722.447232] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3722.447237]  </TASK>
[ 3722.458788] watchdog: BUG: soft lockup - CPU#76 stuck for 74s! [qemu-system-x86:31260]
[ 3722.458791] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3722.458851] CPU: 76 UID: 0 PID: 31260 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3722.458854] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3722.458855] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3722.458856] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3722.458860] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3722.458861] RSP: 0018:ffffaab62ad1b8b8 EFLAGS: 00000202
[ 3722.458863] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3722.458865] RDX: 0000000000000001 RSI: ffff8f717fff9940 RDI: ffff8f5287658010
[ 3722.458866] RBP: ffffaab62ad1b918 R08: 0000000000000007 R09: ffff8f52876589f0
[ 3722.458868] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3722.458869] R13: 0000000000000202 R14: ffff8f7180932a40 R15: 0000000000000080
[ 3722.458870] FS:  00007f5b07fff640(0000) GS:ffff8f71ee136000(0000) knlGS:0000000000000000
[ 3722.458872] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3722.458873] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3722.458875] PKRU: 55555554
[ 3722.458876] Call Trace:
[ 3722.458877]  <TASK>
[ 3722.458879]  ? __pfx___wbinvd+0x10/0x10
[ 3722.458884]  on_each_cpu_cond_mask+0x28/0x50
[ 3722.458887]  wbinvd_on_all_cpus+0x29/0x40
[ 3722.458890]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3722.458898]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3722.458949]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3722.459004]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3722.459008]  change_protection+0xfc9/0x1200
[ 3722.459013]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.459017]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.459020]  ? update_load_avg+0x84/0x780
[ 3722.459023]  ? write_ibpb+0x21/0x40
[ 3722.459027]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3722.459079]  change_prot_numa+0x5b/0xe0
[ 3722.459085]  task_numa_work+0x3c5/0x9b0
[ 3722.459093]  task_work_run+0x64/0xa0
[ 3722.459097]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3722.459101]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3722.459153]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3722.459204]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.459207]  ? do_futex+0xc8/0x1d0
[ 3722.459209]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.459212]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.459215]  __x64_sys_ioctl+0xa0/0xf0
[ 3722.459220]  x64_sys_call+0x122e/0x2150
[ 3722.459222]  do_syscall_64+0x56/0x1e0
[ 3722.459225]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3722.459227] RIP: 0033:0x7f67bff03b4b
[ 3722.459229] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3722.459231] RSP: 002b:00007f5b07ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3722.459233] RAX: ffffffffffffffda RBX: 0000563db60831d0 RCX: 00007f67bff03b4b
[ 3722.459234] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000d2
[ 3722.459235] RBP: 0000563db60831d0 R08: 0000000000000000 R09: 0000000000000000
[ 3722.459237] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3722.459238] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3722.459243]  </TASK>
[ 3722.459244] watchdog: BUG: soft lockup - CPU#77 stuck for 74s! [qemu-system-x86:31293]
[ 3722.459246] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3722.459303] CPU: 77 UID: 0 PID: 31293 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3722.459306] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3722.459307] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3722.459308] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3722.459312] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3722.459313] RSP: 0018:ffffaab62af0f8b8 EFLAGS: 00000202
[ 3722.459315] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3722.459316] RDX: 0000000000000001 RSI: ffff8f717fff9960 RDI: ffff8f5287658b10
[ 3722.459318] RBP: ffffaab62af0f918 R08: 0000000000000007 R09: ffff8f52876589e0
[ 3722.459319] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3722.459320] R13: 0000000000000202 R14: ffff8f7180972a40 R15: 0000000000000080
[ 3722.459322] FS:  00007f5a857fa640(0000) GS:ffff8f71ee176000(0000) knlGS:0000000000000000
[ 3722.459323] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3722.459325] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3722.459326] PKRU: 55555554
[ 3722.459327] Call Trace:
[ 3722.459328]  <TASK>
[ 3722.459330]  ? __pfx___wbinvd+0x10/0x10
[ 3722.459335]  on_each_cpu_cond_mask+0x28/0x50
[ 3722.459337]  wbinvd_on_all_cpus+0x29/0x40
[ 3722.459341]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3722.459349]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3722.459401]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3722.459456]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3722.459460]  change_protection+0xfc9/0x1200
[ 3722.459465]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.459469]  ? pick_eevdf+0x7c/0x1a0
[ 3722.459473]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.459476]  ? pick_next_task_fair+0x4f/0x490
[ 3722.459480]  change_prot_numa+0x5b/0xe0
[ 3722.459484]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.459486]  ? update_load_avg+0x84/0x780
[ 3722.459491]  task_numa_work+0x3c5/0x9b0
[ 3722.459498]  task_work_run+0x64/0xa0
[ 3722.459502]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3722.459506]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3722.459559]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3722.459611]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.459614]  ? do_futex+0xc8/0x1d0
[ 3722.459616]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.459618]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.459622]  __x64_sys_ioctl+0xa0/0xf0
[ 3722.459626]  x64_sys_call+0x122e/0x2150
[ 3722.459628]  do_syscall_64+0x56/0x1e0
[ 3722.459632]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3722.459634] RIP: 0033:0x7f67bff03b4b
[ 3722.459636] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3722.459638] RSP: 002b:00007f5a857f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3722.459640] RAX: ffffffffffffffda RBX: 0000563db61d1ba0 RCX: 00007f67bff03b4b
[ 3722.459641] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000114
[ 3722.459642] RBP: 0000563db61d1ba0 R08: 0000000000000000 R09: 0000000000000000
[ 3722.459644] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3722.459645] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3722.459650]  </TASK>
[ 3722.462788] watchdog: BUG: soft lockup - CPU#79 stuck for 74s! [qemu-system-x86:31405]
[ 3722.462790] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3722.462847] CPU: 79 UID: 0 PID: 31405 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3722.462850] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3722.462851] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3722.462852] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3722.462856] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3722.462857] RSP: 0018:ffffaab62bf378b8 EFLAGS: 00000202
[ 3722.462859] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3722.462861] RDX: 0000000000000001 RSI: ffff8f717fff99a0 RDI: ffff8f5287658600
[ 3722.462862] RBP: ffffaab62bf37918 R08: 0000000000000007 R09: ffff8f5287658dc0
[ 3722.462863] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3722.462864] R13: 0000000000000202 R14: ffff8f71809f2a40 R15: 0000000000000080
[ 3722.462866] FS:  00007f58857fa640(0000) GS:ffff8f71ee1f6000(0000) knlGS:0000000000000000
[ 3722.462867] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3722.462869] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3722.462870] PKRU: 55555554
[ 3722.462871] Call Trace:
[ 3722.462872]  <TASK>
[ 3722.462874]  ? __pfx___wbinvd+0x10/0x10
[ 3722.462879]  on_each_cpu_cond_mask+0x28/0x50
[ 3722.462881]  wbinvd_on_all_cpus+0x29/0x40
[ 3722.462885]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3722.462893]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3722.462945]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3722.463000]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3722.463005]  change_protection+0xfc9/0x1200
[ 3722.463009]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.463013]  ? update_curr_dl_se+0x3b/0x1e0
[ 3722.463017]  ? dl_server_update+0x2e/0x40
[ 3722.463021]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.463024]  ? pick_next_task_fair+0x4f/0x490
[ 3722.463028]  change_prot_numa+0x5b/0xe0
[ 3722.463032]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.463035]  ? update_load_avg+0x84/0x780
[ 3722.463037]  ? __dequeue_entity+0x3cd/0x4a0
[ 3722.463041]  task_numa_work+0x3c5/0x9b0
[ 3722.463049]  task_work_run+0x64/0xa0
[ 3722.463053]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3722.463057]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3722.463110]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3722.463162]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.463165]  ? do_futex+0xc8/0x1d0
[ 3722.463167]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.463169]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.463173]  __x64_sys_ioctl+0xa0/0xf0
[ 3722.463177]  x64_sys_call+0x122e/0x2150
[ 3722.463179]  do_syscall_64+0x56/0x1e0
[ 3722.463183]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3722.463185] RIP: 0033:0x7f67bff03b4b
[ 3722.463187] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3722.463189] RSP: 002b:00007f58857f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3722.463191] RAX: ffffffffffffffda RBX: 0000563db66402f0 RCX: 00007f67bff03b4b
[ 3722.463192] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001f4
[ 3722.463193] RBP: 0000563db66402f0 R08: 0000000000000000 R09: 0000000000000000
[ 3722.463195] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3722.463196] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3722.463201]  </TASK>
[ 3722.463202] watchdog: BUG: soft lockup - CPU#78 stuck for 74s! [qemu-system-x86:31355]
[ 3722.463204] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3722.463261] CPU: 78 UID: 0 PID: 31355 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3722.463264] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3722.463265] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3722.463266] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3722.463269] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3722.463271] RSP: 0018:ffffaab62b28f8b8 EFLAGS: 00000202
[ 3722.463273] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3722.463274] RDX: 0000000000000001 RSI: ffff8f717fff9980 RDI: ffff8f5287658f10
[ 3722.463275] RBP: ffffaab62b28f918 R08: 0000000000000007 R09: ffff8f5287658d90
[ 3722.463276] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3722.463278] R13: 0000000000000202 R14: ffff8f71809b2a40 R15: 0000000000000080
[ 3722.463279] FS:  00007f5965ffb640(0000) GS:ffff8f71ee1b6000(0000) knlGS:0000000000000000
[ 3722.463281] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3722.463282] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3722.463283] PKRU: 55555554
[ 3722.463284] Call Trace:
[ 3722.463285]  <TASK>
[ 3722.463287]  ? __pfx___wbinvd+0x10/0x10
[ 3722.463292]  on_each_cpu_cond_mask+0x28/0x50
[ 3722.463295]  wbinvd_on_all_cpus+0x29/0x40
[ 3722.463298]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3722.463306]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3722.463358]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3722.463412]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3722.463416]  change_protection+0xfc9/0x1200
[ 3722.463421]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.463425]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.463427]  ? update_load_avg+0x84/0x780
[ 3722.463431]  ? write_ibpb+0x21/0x40
[ 3722.463434]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3722.463486]  change_prot_numa+0x5b/0xe0
[ 3722.463493]  task_numa_work+0x3c5/0x9b0
[ 3722.463500]  task_work_run+0x64/0xa0
[ 3722.463504]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3722.463508]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3722.463560]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3722.463612]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.463614]  ? do_futex+0xc8/0x1d0
[ 3722.463616]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.463619]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.463622]  __x64_sys_ioctl+0xa0/0xf0
[ 3722.463627]  x64_sys_call+0x122e/0x2150
[ 3722.463629]  do_syscall_64+0x56/0x1e0
[ 3722.463633]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3722.463635] RIP: 0033:0x7f67bff03b4b
[ 3722.463637] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3722.463638] RSP: 002b:00007f5965ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3722.463640] RAX: ffffffffffffffda RBX: 0000563db64454a0 RCX: 00007f67bff03b4b
[ 3722.463642] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000190
[ 3722.463643] RBP: 0000563db64454a0 R08: 0000000000000000 R09: 0000000000000000
[ 3722.463644] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3722.463645] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3722.463650]  </TASK>
[ 3722.482788] watchdog: BUG: soft lockup - CPU#87 stuck for 74s! [qemu-system-x86:31402]
[ 3722.482791] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3722.482849] CPU: 87 UID: 0 PID: 31402 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3722.482852] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3722.482853] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3722.482854] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3722.482858] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3722.482860] RSP: 0018:ffffaab62bf578b8 EFLAGS: 00000202
[ 3722.482861] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3722.482863] RDX: 0000000000000001 RSI: ffff8f717fff9aa0 RDI: ffff8f52889c6230
[ 3722.482864] RBP: ffffaab62bf57918 R08: 0000000000000007 R09: ffff8f52889c6420
[ 3722.482866] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3722.482867] R13: 0000000000000202 R14: ffff8f7180bf2a40 R15: 0000000000000080
[ 3722.482869] FS:  00007f5886ffd640(0000) GS:ffff8f71ee3f6000(0000) knlGS:0000000000000000
[ 3722.482870] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3722.482872] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3722.482873] PKRU: 55555554
[ 3722.482874] Call Trace:
[ 3722.482875]  <TASK>
[ 3722.482877]  ? __pfx___wbinvd+0x10/0x10
[ 3722.482882]  on_each_cpu_cond_mask+0x28/0x50
[ 3722.482885]  wbinvd_on_all_cpus+0x29/0x40
[ 3722.482888]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3722.482896]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3722.482948]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3722.483002]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3722.483007]  change_protection+0xfc9/0x1200
[ 3722.483011]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.483015]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.483018]  ? update_load_avg+0x84/0x780
[ 3722.483022]  ? write_ibpb+0x21/0x40
[ 3722.483025]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3722.483077]  change_prot_numa+0x5b/0xe0
[ 3722.483084]  task_numa_work+0x3c5/0x9b0
[ 3722.483091]  task_work_run+0x64/0xa0
[ 3722.483095]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3722.483099]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3722.483151]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3722.483203]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.483206]  ? do_futex+0xc8/0x1d0
[ 3722.483208]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.483210]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.483214]  __x64_sys_ioctl+0xa0/0xf0
[ 3722.483218]  x64_sys_call+0x122e/0x2150
[ 3722.483221]  do_syscall_64+0x56/0x1e0
[ 3722.483224]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3722.483226] RIP: 0033:0x7f67bff03b4b
[ 3722.483229] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3722.483230] RSP: 002b:00007f5886ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3722.483232] RAX: ffffffffffffffda RBX: 0000563db66207e0 RCX: 00007f67bff03b4b
[ 3722.483234] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001ee
[ 3722.483235] RBP: 0000563db66207e0 R08: 0000000000000000 R09: 0000000000000000
[ 3722.483236] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3722.483237] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3722.483243]  </TASK>
[ 3722.486788] watchdog: BUG: soft lockup - CPU#90 stuck for 74s! [qemu-system-x86:31229]
[ 3722.486793] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3722.486871] CPU: 90 UID: 0 PID: 31229 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3722.486876] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3722.486877] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3722.486878] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3722.486883] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3722.486885] RSP: 0018:ffffaab62abb38b8 EFLAGS: 00000202
[ 3722.486888] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3722.486889] RDX: 0000000000000001 RSI: ffff8f717fff9b00 RDI: ffff8f52889c6c20
[ 3722.486891] RBP: ffffaab62abb3918 R08: 0000000000000007 R09: ffff8f52889c6d70
[ 3722.486893] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3722.486894] R13: 0000000000000202 R14: ffff8f7180cb2a40 R15: 0000000000000080
[ 3722.486896] FS:  00007f5ba5ffb640(0000) GS:ffff8f71ee4b6000(0000) knlGS:0000000000000000
[ 3722.486898] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3722.486900] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3722.486902] PKRU: 55555554
[ 3722.486903] Call Trace:
[ 3722.486905]  <TASK>
[ 3722.486908]  ? __pfx___wbinvd+0x10/0x10
[ 3722.486914]  on_each_cpu_cond_mask+0x28/0x50
[ 3722.486917]  wbinvd_on_all_cpus+0x29/0x40
[ 3722.486922]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3722.486933]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3722.487014]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3722.487092]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3722.487097]  change_protection+0xfc9/0x1200
[ 3722.487103]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.487107]  ? update_curr_dl_se+0x3b/0x1e0
[ 3722.487113]  ? dl_server_update+0x2e/0x40
[ 3722.487118]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.487122]  ? pick_next_task_fair+0x4f/0x490
[ 3722.487126]  change_prot_numa+0x5b/0xe0
[ 3722.487131]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3722.487137]  task_numa_work+0x3c5/0x9b0
[ 3722.487146]  task_work_run+0x64/0xa0
[ 3722.487150]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3722.487155]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3722.487236]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3722.487308]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.487311]  ? do_futex+0xc8/0x1d0
[ 3722.487314]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.487316]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.487321]  __x64_sys_ioctl+0xa0/0xf0
[ 3722.487326]  x64_sys_call+0x122e/0x2150
[ 3722.487328]  do_syscall_64+0x56/0x1e0
[ 3722.487332]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3722.487335] RIP: 0033:0x7f67bff03b4b
[ 3722.487338] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3722.487340] RSP: 002b:00007f5ba5ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3722.487345] RAX: ffffffffffffffda RBX: 0000563db5f493b0 RCX: 00007f67bff03b4b
[ 3722.487347] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000094
[ 3722.487349] RBP: 0000563db5f493b0 R08: 0000000000000000 R09: 0000000000000000
[ 3722.487350] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3722.487352] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3722.487358]  </TASK>
[ 3722.498787] watchdog: BUG: soft lockup - CPU#94 stuck for 74s! [qemu-system-x86:31408]
[ 3722.498789] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3722.498845] CPU: 94 UID: 0 PID: 31408 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3722.498848] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3722.498849] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3722.498850] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3722.498853] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3722.498855] RSP: 0018:ffffaab6270878b8 EFLAGS: 00000202
[ 3722.498856] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3722.498858] RDX: 0000000000000001 RSI: ffff8f717fff9b80 RDI: ffff8f52889c6630
[ 3722.498859] RBP: ffffaab627087918 R08: 0000000000000007 R09: ffff8f52889c6dd0
[ 3722.498860] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3722.498861] R13: 0000000000000202 R14: ffff8f7180db2a40 R15: 0000000000000080
[ 3722.498863] FS:  00007f58677fe640(0000) GS:ffff8f71ee5b6000(0000) knlGS:0000000000000000
[ 3722.498864] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3722.498866] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3722.498867] PKRU: 55555554
[ 3722.498868] Call Trace:
[ 3722.498869]  <TASK>
[ 3722.498871]  ? __pfx___wbinvd+0x10/0x10
[ 3722.498875]  on_each_cpu_cond_mask+0x28/0x50
[ 3722.498878]  wbinvd_on_all_cpus+0x29/0x40
[ 3722.498882]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3722.498889]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3722.498940]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3722.498995]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3722.498999]  change_protection+0xfc9/0x1200
[ 3722.499006]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.499008]  ? update_load_avg+0x84/0x780
[ 3722.499012]  ? write_ibpb+0x21/0x40
[ 3722.499016]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3722.499068]  change_prot_numa+0x5b/0xe0
[ 3722.499075]  task_numa_work+0x3c5/0x9b0
[ 3722.499082]  task_work_run+0x64/0xa0
[ 3722.499086]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3722.499090]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3722.499142]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3722.499195]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.499197]  ? do_futex+0xc8/0x1d0
[ 3722.499199]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.499202]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.499205]  __x64_sys_ioctl+0xa0/0xf0
[ 3722.499210]  x64_sys_call+0x122e/0x2150
[ 3722.499212]  do_syscall_64+0x56/0x1e0
[ 3722.499216]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3722.499217] RIP: 0033:0x7f67bff03b4b
[ 3722.499219] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3722.499221] RSP: 002b:00007f58677fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3722.499223] RAX: ffffffffffffffda RBX: 0000563db665ee40 RCX: 00007f67bff03b4b
[ 3722.499224] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001fa
[ 3722.499225] RBP: 0000563db665ee40 R08: 0000000000000000 R09: 0000000000000000
[ 3722.499227] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3722.499228] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3722.499233]  </TASK>
[ 3722.510787] watchdog: BUG: soft lockup - CPU#99 stuck for 74s! [qemu-system-x86:31305]
[ 3722.510792] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3722.510860] CPU: 99 UID: 0 PID: 31305 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3722.510864] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3722.510865] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3722.510867] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3722.510874] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3722.510877] RSP: 0018:ffffaab62af6f8b8 EFLAGS: 00000202
[ 3722.510879] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3722.510880] RDX: 0000000000000001 RSI: ffff8f717fff9c20 RDI: ffff8f7206c6a900
[ 3722.510882] RBP: ffffaab62af6f918 R08: 0000000000000007 R09: ffff8f7206c6a960
[ 3722.510883] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3722.510884] R13: 0000000000000202 R14: ffff8f917e8f2a40 R15: 0000000000000080
[ 3722.510886] FS:  00007f5a467fc640(0000) GS:ffff8f91ec0f6000(0000) knlGS:0000000000000000
[ 3722.510888] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3722.510889] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3722.510891] PKRU: 55555554
[ 3722.510892] Call Trace:
[ 3722.510893]  <TASK>
[ 3722.510897]  ? __pfx___wbinvd+0x10/0x10
[ 3722.510904]  on_each_cpu_cond_mask+0x28/0x50
[ 3722.510907]  wbinvd_on_all_cpus+0x29/0x40
[ 3722.510912]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3722.510920]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3722.510973]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3722.511028]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3722.511034]  change_protection+0xfc9/0x1200
[ 3722.511039]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.511044]  ? update_curr_dl_se+0x3b/0x1e0
[ 3722.511048]  ? dl_server_update+0x2e/0x40
[ 3722.511052]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.511056]  ? pick_next_task_fair+0x4f/0x490
[ 3722.511061]  change_prot_numa+0x5b/0xe0
[ 3722.511068]  task_numa_work+0x3c5/0x9b0
[ 3722.511076]  task_work_run+0x64/0xa0
[ 3722.511081]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3722.511086]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3722.511138]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3722.511190]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.511192]  ? do_futex+0xc8/0x1d0
[ 3722.511195]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.511197]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.511201]  __x64_sys_ioctl+0xa0/0xf0
[ 3722.511207]  x64_sys_call+0x122e/0x2150
[ 3722.511209]  do_syscall_64+0x56/0x1e0
[ 3722.511214]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3722.511216] RIP: 0033:0x7f67bff03b4b
[ 3722.511219] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3722.511221] RSP: 002b:00007f5a467fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3722.511223] RAX: ffffffffffffffda RBX: 0000563db624bbb0 RCX: 00007f67bff03b4b
[ 3722.511224] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000012c
[ 3722.511225] RBP: 0000563db624bbb0 R08: 0000000000000000 R09: 0000000000000000
[ 3722.511227] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3722.511228] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3722.511233]  </TASK>
[ 3722.514787] watchdog: BUG: soft lockup - CPU#102 stuck for 48s! [migration/102:635]
[ 3722.514790] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3722.514847] CPU: 102 UID: 0 PID: 635 Comm: migration/102 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3722.514851] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3722.514852] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3722.514853] Stopper: multi_cpu_stop+0x0/0x110 <- migrate_swap+0xad/0x120
[ 3722.514860] RIP: 0010:multi_cpu_stop+0xa5/0x110
[ 3722.514863] Code: 8b 47 20 41 8b 77 10 83 c0 01 41 89 77 24 41 89 47 20 41 83 fe 04 74 33 45 89 f4 4c 89 ef e8 42 ff ff ff 45 8b 77 20 45 39 f4 <75> ad 41 83 fe 01 76 e6 e8 1e 03 02 00 e8 49 03 02 00 e8 d4 ef f8
[ 3722.514865] RSP: 0018:ffffaab60e04fe28 EFLAGS: 00000246
[ 3722.514866] RAX: 0000000000000286 RBX: ffffaab6920bbb2c RCX: 0000000000000002
[ 3722.514868] RDX: ffffaab6920bbb08 RSI: 0000000000000282 RDI: ffffffff91814360
[ 3722.514869] RBP: ffffaab60e04fe60 R08: 0000000000000001 R09: 000000000000030d
[ 3722.514870] R10: 0000000000000000 R11: 0000000000000001 R12: 0000000000000001
[ 3722.514871] R13: ffffffff91814360 R14: 0000000000000001 R15: ffffaab6920bbb08
[ 3722.514873] FS:  0000000000000000(0000) GS:ffff8f91ec1b6000(0000) knlGS:0000000000000000
[ 3722.514874] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3722.514876] CR2: 00007fac4c502638 CR3: 00000020b12b4006 CR4: 0000000000770ef0
[ 3722.514877] PKRU: 55555554
[ 3722.514878] Call Trace:
[ 3722.514879]  <TASK>
[ 3722.514881]  ? __pfx_multi_cpu_stop+0x10/0x10
[ 3722.514884]  cpu_stopper_thread+0x97/0x140
[ 3722.514888]  smpboot_thread_fn+0x101/0x230
[ 3722.514892]  kthread+0x10b/0x220
[ 3722.514896]  ? __pfx_smpboot_thread_fn+0x10/0x10
[ 3722.514898]  ? __pfx_kthread+0x10/0x10
[ 3722.514902]  ret_from_fork+0x8e/0x100
[ 3722.514906]  ? __pfx_kthread+0x10/0x10
[ 3722.514909]  ret_from_fork_asm+0x1a/0x30
[ 3722.514914]  </TASK>
[ 3722.538787] watchdog: BUG: soft lockup - CPU#112 stuck for 74s! [qemu-system-x86:31254]
[ 3722.538790] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3722.538847] CPU: 112 UID: 0 PID: 31254 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3722.538850] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3722.538851] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3722.538852] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3722.538856] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3722.538858] RSP: 0018:ffffaab62aceb8b8 EFLAGS: 00000202
[ 3722.538859] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3722.538861] RDX: 0000000000000001 RSI: ffff8f717fff9dc0 RDI: ffff8f7206c6a1e0
[ 3722.538862] RBP: ffffaab62aceb918 R08: 0000000000000007 R09: ffff8f7206c6a910
[ 3722.538864] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3722.538865] R13: 0000000000000202 R14: ffff8f917ec32a40 R15: 0000000000000080
[ 3722.538866] FS:  00007f5b277fe640(0000) GS:ffff8f91ec436000(0000) knlGS:0000000000000000
[ 3722.538868] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3722.538869] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3722.538871] PKRU: 55555554
[ 3722.538872] Call Trace:
[ 3722.538873]  <TASK>
[ 3722.538875]  ? __pfx___wbinvd+0x10/0x10
[ 3722.538880]  on_each_cpu_cond_mask+0x28/0x50
[ 3722.538883]  wbinvd_on_all_cpus+0x29/0x40
[ 3722.538887]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3722.538895]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3722.538947]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3722.539001]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3722.539005]  change_protection+0xfc9/0x1200
[ 3722.539010]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.539014]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.539017]  ? update_load_avg+0x84/0x780
[ 3722.539021]  ? write_ibpb+0x21/0x40
[ 3722.539024]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3722.539077]  change_prot_numa+0x5b/0xe0
[ 3722.539083]  task_numa_work+0x3c5/0x9b0
[ 3722.539091]  task_work_run+0x64/0xa0
[ 3722.539095]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3722.539099]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3722.539151]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3722.539203]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.539206]  ? do_futex+0xc8/0x1d0
[ 3722.539208]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.539210]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.539214]  __x64_sys_ioctl+0xa0/0xf0
[ 3722.539218]  x64_sys_call+0x122e/0x2150
[ 3722.539220]  do_syscall_64+0x56/0x1e0
[ 3722.539224]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3722.539226] RIP: 0033:0x7f67bff03b4b
[ 3722.539228] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3722.539230] RSP: 002b:00007f5b277fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3722.539232] RAX: ffffffffffffffda RBX: 0000563db60459d0 RCX: 00007f67bff03b4b
[ 3722.539233] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000c6
[ 3722.539234] RBP: 0000563db60459d0 R08: 0000000000000000 R09: 0000000000000000
[ 3722.539235] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3722.539237] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3722.539242]  </TASK>
[ 3722.566787] watchdog: BUG: soft lockup - CPU#125 stuck for 74s! [qemu-system-x86:31339]
[ 3722.566791] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3722.566861] CPU: 125 UID: 0 PID: 31339 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3722.566866] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3722.566868] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3722.566869] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3722.566873] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3722.566876] RSP: 0018:ffffaab62b20f8b8 EFLAGS: 00000202
[ 3722.566878] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3722.566880] RDX: 0000000000000001 RSI: ffff8f717fff9f60 RDI: ffff8f7207fa2fc0
[ 3722.566881] RBP: ffffaab62b20f918 R08: 0000000000000007 R09: ffff8f7207fa22a0
[ 3722.566883] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3722.566884] R13: 0000000000000202 R14: ffff8f917ef72a40 R15: 0000000000000080
[ 3722.566886] FS:  00007f59a6ffd640(0000) GS:ffff8f91ec776000(0000) knlGS:0000000000000000
[ 3722.566888] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3722.566890] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3722.566892] PKRU: 55555554
[ 3722.566893] Call Trace:
[ 3722.566894]  <TASK>
[ 3722.566897]  ? __pfx___wbinvd+0x10/0x10
[ 3722.566903]  on_each_cpu_cond_mask+0x28/0x50
[ 3722.566906]  wbinvd_on_all_cpus+0x29/0x40
[ 3722.566910]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3722.566922]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3722.566999]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3722.567073]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3722.567078]  change_protection+0xfc9/0x1200
[ 3722.567083]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.567087]  ? update_curr_dl_se+0x3b/0x1e0
[ 3722.567091]  ? dl_server_update+0x2e/0x40
[ 3722.567095]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.567099]  ? pick_next_task_fair+0x4f/0x490
[ 3722.567103]  change_prot_numa+0x5b/0xe0
[ 3722.567110]  task_numa_work+0x3c5/0x9b0
[ 3722.567119]  task_work_run+0x64/0xa0
[ 3722.567123]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3722.567128]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3722.567198]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3722.567269]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.567272]  ? do_futex+0xc8/0x1d0
[ 3722.567274]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.567277]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3722.567281]  __x64_sys_ioctl+0xa0/0xf0
[ 3722.567286]  x64_sys_call+0x122e/0x2150
[ 3722.567289]  do_syscall_64+0x56/0x1e0
[ 3722.567293]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3722.567296] RIP: 0033:0x7f67bff03b4b
[ 3722.567299] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3722.567301] RSP: 002b:00007f59a6ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3722.567303] RAX: ffffffffffffffda RBX: 0000563db63a3d90 RCX: 00007f67bff03b4b
[ 3722.567305] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000170
[ 3722.567307] RBP: 0000563db63a3d90 R08: 0000000000000000 R09: 0000000000000000
[ 3722.567308] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3722.567310] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3722.567316]  </TASK>
[ 3726.230713] watchdog: BUG: soft lockup - CPU#0 stuck for 78s! [qemu-system-x86:31247]
[ 3726.230718] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3726.230791] CPU: 0 UID: 0 PID: 31247 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3726.230796] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3726.230797] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3726.230799] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3726.230806] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3726.230808] RSP: 0018:ffffaab62acb38b8 EFLAGS: 00000202
[ 3726.230811] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3726.230812] RDX: 0000000000000001 RSI: ffff8f717fff7be0 RDI: ffff8f5280265790
[ 3726.230814] RBP: ffffaab62acb3918 R08: 0000000000000007 R09: ffff8f52802654d0
[ 3726.230815] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3726.230816] R13: 0000000000000202 R14: ffff8f717fe32a40 R15: 0000000000000080
[ 3726.230818] FS:  00007f5b477fe640(0000) GS:ffff8f71ed636000(0000) knlGS:0000000000000000
[ 3726.230820] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3726.230821] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3726.230823] PKRU: 55555554
[ 3726.230824] Call Trace:
[ 3726.230826]  <TASK>
[ 3726.230829]  ? __pfx___wbinvd+0x10/0x10
[ 3726.230837]  on_each_cpu_cond_mask+0x28/0x50
[ 3726.230840]  wbinvd_on_all_cpus+0x29/0x40
[ 3726.230844]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3726.230854]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3726.230910]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3726.230967]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3726.230973]  change_protection+0xfc9/0x1200
[ 3726.230979]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.230983]  ? update_curr_dl_se+0x3b/0x1e0
[ 3726.230988]  ? dl_server_update+0x2e/0x40
[ 3726.230992]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.230996]  ? pick_next_task_fair+0x4f/0x490
[ 3726.231000]  change_prot_numa+0x5b/0xe0
[ 3726.231008]  task_numa_work+0x3c5/0x9b0
[ 3726.231017]  task_work_run+0x64/0xa0
[ 3726.231022]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3726.231027]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3726.231081]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3726.231134]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.231137]  ? do_futex+0xc8/0x1d0
[ 3726.231139]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.231142]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.231146]  __x64_sys_ioctl+0xa0/0xf0
[ 3726.231152]  x64_sys_call+0x122e/0x2150
[ 3726.231154]  do_syscall_64+0x56/0x1e0
[ 3726.231160]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3726.231162] RIP: 0033:0x7f67bff03b4b
[ 3726.231165] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3726.231167] RSP: 002b:00007f5b477fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3726.231169] RAX: ffffffffffffffda RBX: 0000563db5fff400 RCX: 00007f67bff03b4b
[ 3726.231171] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000b8
[ 3726.231172] RBP: 0000563db5fff400 R08: 0000000000000000 R09: 0000000000000000
[ 3726.231173] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3726.231175] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3726.231180]  </TASK>
[ 3726.262712] watchdog: BUG: soft lockup - CPU#2 stuck for 75s! [qemu-system-x86:31389]
[ 3726.262714] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3726.262770] CPU: 2 UID: 0 PID: 31389 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3726.262773] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3726.262774] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3726.262775] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3726.262779] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3726.262780] RSP: 0018:ffffaab62c1d38b8 EFLAGS: 00000202
[ 3726.262782] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3726.262783] RDX: 0000000000000001 RSI: ffff8f717fff9000 RDI: ffff8f5280a32a50
[ 3726.262785] RBP: ffffaab62c1d3918 R08: 0000000000000007 R09: ffff8f5280a32b70
[ 3726.262786] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3726.262787] R13: 0000000000000202 R14: ffff8f717feb2a40 R15: 0000000000000080
[ 3726.262789] FS:  00007f58c67fc640(0000) GS:ffff8f71ed6b6000(0000) knlGS:0000000000000000
[ 3726.262790] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3726.262792] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3726.262793] PKRU: 55555554
[ 3726.262794] Call Trace:
[ 3726.262795]  <TASK>
[ 3726.262797]  ? __pfx___wbinvd+0x10/0x10
[ 3726.262802]  on_each_cpu_cond_mask+0x28/0x50
[ 3726.262805]  wbinvd_on_all_cpus+0x29/0x40
[ 3726.262808]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3726.262816]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3726.262869]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3726.262925]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3726.262929]  change_protection+0xfc9/0x1200
[ 3726.262933]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.262937]  ? update_curr_dl_se+0x3b/0x1e0
[ 3726.262940]  ? dl_server_update+0x2e/0x40
[ 3726.262944]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.262947]  ? pick_next_task_fair+0x4f/0x490
[ 3726.262951]  change_prot_numa+0x5b/0xe0
[ 3726.262955]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.262958]  ? update_load_avg+0x84/0x780
[ 3726.262960]  ? __dequeue_entity+0x3cd/0x4a0
[ 3726.262964]  task_numa_work+0x3c5/0x9b0
[ 3726.262971]  task_work_run+0x64/0xa0
[ 3726.262975]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3726.262979]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3726.263033]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3726.263085]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.263088]  ? do_futex+0xc8/0x1d0
[ 3726.263090]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.263092]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.263096]  __x64_sys_ioctl+0xa0/0xf0
[ 3726.263101]  x64_sys_call+0x122e/0x2150
[ 3726.263103]  do_syscall_64+0x56/0x1e0
[ 3726.263107]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3726.263108] RIP: 0033:0x7f67bff03b4b
[ 3726.263110] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3726.263112] RSP: 002b:00007f58c67fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3726.263114] RAX: ffffffffffffffda RBX: 0000563db659ce40 RCX: 00007f67bff03b4b
[ 3726.263115] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001d4
[ 3726.263117] RBP: 0000563db659ce40 R08: 0000000000000000 R09: 0000000000000000
[ 3726.263118] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3726.263119] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3726.263124]  </TASK>
[ 3726.263125] watchdog: BUG: soft lockup - CPU#1 stuck for 78s! [qemu-system-x86:31314]
[ 3726.263128] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3726.263185] CPU: 1 UID: 0 PID: 31314 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3726.263188] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3726.263189] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3726.263190] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3726.263194] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3726.263195] RSP: 0018:ffffaab62afb78b8 EFLAGS: 00000202
[ 3726.263197] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3726.263198] RDX: 0000000000000001 RSI: ffff8f717fff8fe0 RDI: ffff8f5280a32cf0
[ 3726.263199] RBP: ffffaab62afb7918 R08: 0000000000000007 R09: ffff8f5280a326e0
[ 3726.263201] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3726.263202] R13: 0000000000000202 R14: ffff8f717fe72a40 R15: 0000000000000080
[ 3726.263203] FS:  00007f5a257fa640(0000) GS:ffff8f71ed676000(0000) knlGS:0000000000000000
[ 3726.263205] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3726.263206] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3726.263208] PKRU: 55555554
[ 3726.263209] Call Trace:
[ 3726.263210]  <TASK>
[ 3726.263211]  ? __pfx___wbinvd+0x10/0x10
[ 3726.263216]  on_each_cpu_cond_mask+0x28/0x50
[ 3726.263219]  wbinvd_on_all_cpus+0x29/0x40
[ 3726.263223]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3726.263231]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3726.263282]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3726.263336]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3726.263341]  change_protection+0xfc9/0x1200
[ 3726.263347]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.263349]  ? update_load_avg+0x84/0x780
[ 3726.263353]  ? write_ibpb+0x21/0x40
[ 3726.263357]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3726.263410]  change_prot_numa+0x5b/0xe0
[ 3726.263415]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.263417]  ? update_load_avg+0x84/0x780
[ 3726.263419]  ? __dequeue_entity+0x3cd/0x4a0
[ 3726.263424]  task_numa_work+0x3c5/0x9b0
[ 3726.263431]  task_work_run+0x64/0xa0
[ 3726.263435]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3726.263439]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3726.263491]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3726.263543]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.263546]  ? do_futex+0xc8/0x1d0
[ 3726.263548]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.263550]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.263554]  __x64_sys_ioctl+0xa0/0xf0
[ 3726.263558]  x64_sys_call+0x122e/0x2150
[ 3726.263560]  do_syscall_64+0x56/0x1e0
[ 3726.263564]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3726.263566] RIP: 0033:0x7f67bff03b4b
[ 3726.263568] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3726.263569] RSP: 002b:00007f5a257f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3726.263572] RAX: ffffffffffffffda RBX: 0000563db62a68f0 RCX: 00007f67bff03b4b
[ 3726.263573] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000013e
[ 3726.263574] RBP: 0000563db62a68f0 R08: 0000000000000000 R09: 0000000000000000
[ 3726.263575] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3726.263576] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3726.263581]  </TASK>
[ 3726.266712] watchdog: BUG: soft lockup - CPU#3 stuck for 75s! [qemu-system-x86:31397]
[ 3726.266714] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3726.266770] CPU: 3 UID: 0 PID: 31397 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3726.266773] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3726.266774] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3726.266775] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3726.266778] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3726.266780] RSP: 0018:ffffaab62c1938b8 EFLAGS: 00000202
[ 3726.266782] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3726.266783] RDX: 0000000000000001 RSI: ffff8f717fff9020 RDI: ffff8f5280a32490
[ 3726.266784] RBP: ffffaab62c193918 R08: 0000000000000007 R09: ffff8f5280a32d40
[ 3726.266786] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3726.266787] R13: 0000000000000202 R14: ffff8f717fef2a40 R15: 0000000000000080
[ 3726.266788] FS:  00007f58a5ffb640(0000) GS:ffff8f71ed6f6000(0000) knlGS:0000000000000000
[ 3726.266790] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3726.266791] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3726.266792] PKRU: 55555554
[ 3726.266793] Call Trace:
[ 3726.266794]  <TASK>
[ 3726.266796]  ? __pfx___wbinvd+0x10/0x10
[ 3726.266801]  on_each_cpu_cond_mask+0x28/0x50
[ 3726.266804]  wbinvd_on_all_cpus+0x29/0x40
[ 3726.266807]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3726.266815]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3726.266868]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3726.266923]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3726.266927]  change_protection+0xfc9/0x1200
[ 3726.266934]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.266936]  ? update_load_avg+0x84/0x780
[ 3726.266940]  ? write_ibpb+0x21/0x40
[ 3726.266944]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3726.266996]  change_prot_numa+0x5b/0xe0
[ 3726.267003]  task_numa_work+0x3c5/0x9b0
[ 3726.267011]  task_work_run+0x64/0xa0
[ 3726.267014]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3726.267019]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3726.267071]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3726.267124]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.267127]  ? do_futex+0xc8/0x1d0
[ 3726.267129]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.267131]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.267135]  __x64_sys_ioctl+0xa0/0xf0
[ 3726.267139]  x64_sys_call+0x122e/0x2150
[ 3726.267142]  do_syscall_64+0x56/0x1e0
[ 3726.267145]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3726.267147] RIP: 0033:0x7f67bff03b4b
[ 3726.267149] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3726.267151] RSP: 002b:00007f58a5ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3726.267153] RAX: ffffffffffffffda RBX: 0000563db65eddb0 RCX: 00007f67bff03b4b
[ 3726.267154] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001e4
[ 3726.267155] RBP: 0000563db65eddb0 R08: 0000000000000000 R09: 0000000000000000
[ 3726.267156] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3726.267158] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3726.267163]  </TASK>
[ 3726.270711] watchdog: BUG: soft lockup - CPU#5 stuck for 75s! [qemu-system-x86:31362]
[ 3726.270713] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3726.270769] CPU: 5 UID: 0 PID: 31362 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3726.270773] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3726.270774] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3726.270775] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3726.270778] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3726.270780] RSP: 0018:ffffaab62b2c78b8 EFLAGS: 00000202
[ 3726.270782] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3726.270783] RDX: 0000000000000001 RSI: ffff8f717fff9060 RDI: ffff8f5280a32260
[ 3726.270784] RBP: ffffaab62b2c7918 R08: 0000000000000007 R09: ffff8f5280a32eb0
[ 3726.270785] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3726.270786] R13: 0000000000000202 R14: ffff8f717ff72a40 R15: 0000000000000080
[ 3726.270788] FS:  00007f5945ffb640(0000) GS:ffff8f71ed776000(0000) knlGS:0000000000000000
[ 3726.270790] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3726.270792] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3726.270793] PKRU: 55555554
[ 3726.270794] Call Trace:
[ 3726.270795]  <TASK>
[ 3726.270797]  ? __pfx___wbinvd+0x10/0x10
[ 3726.270802]  on_each_cpu_cond_mask+0x28/0x50
[ 3726.270805]  wbinvd_on_all_cpus+0x29/0x40
[ 3726.270808]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3726.270816]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3726.270868]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3726.270922]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3726.270927]  change_protection+0xfc9/0x1200
[ 3726.270933]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.270935]  ? update_load_avg+0x84/0x780
[ 3726.270939]  ? write_ibpb+0x21/0x40
[ 3726.270943]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3726.270995]  change_prot_numa+0x5b/0xe0
[ 3726.271002]  task_numa_work+0x3c5/0x9b0
[ 3726.271009]  task_work_run+0x64/0xa0
[ 3726.271013]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3726.271017]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3726.271070]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3726.271121]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.271124]  ? do_futex+0xc8/0x1d0
[ 3726.271126]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.271128]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.271132]  __x64_sys_ioctl+0xa0/0xf0
[ 3726.271137]  x64_sys_call+0x122e/0x2150
[ 3726.271139]  do_syscall_64+0x56/0x1e0
[ 3726.271142]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3726.271144] RIP: 0033:0x7f67bff03b4b
[ 3726.271146] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3726.271148] RSP: 002b:00007f5945ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3726.271150] RAX: ffffffffffffffda RBX: 0000563db648caa0 RCX: 00007f67bff03b4b
[ 3726.271151] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000019e
[ 3726.271153] RBP: 0000563db648caa0 R08: 0000000000000000 R09: 0000000000000000
[ 3726.271154] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3726.271155] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3726.271160]  </TASK>
[ 3726.286713] watchdog: BUG: soft lockup - CPU#11 stuck for 75s! [qemu-system-x86:31294]
[ 3726.286718] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3726.286788] CPU: 11 UID: 0 PID: 31294 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3726.286792] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3726.286794] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3726.286796] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3726.286803] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3726.286806] RSP: 0018:ffffaab62af178b8 EFLAGS: 00000202
[ 3726.286808] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3726.286810] RDX: 0000000000000001 RSI: ffff8f717fff9120 RDI: ffff8f5280a32cc0
[ 3726.286811] RBP: ffffaab62af17918 R08: 0000000000000007 R09: ffff8f5280a32500
[ 3726.286813] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3726.286814] R13: 0000000000000202 R14: ffff8f71800f2a40 R15: 0000000000000080
[ 3726.286816] FS:  00007f5a84ff9640(0000) GS:ffff8f71ed8f6000(0000) knlGS:0000000000000000
[ 3726.286817] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3726.286819] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3726.286820] PKRU: 55555554
[ 3726.286822] Call Trace:
[ 3726.286823]  <TASK>
[ 3726.286827]  ? __pfx___wbinvd+0x10/0x10
[ 3726.286835]  on_each_cpu_cond_mask+0x28/0x50
[ 3726.286838]  wbinvd_on_all_cpus+0x29/0x40
[ 3726.286843]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3726.286851]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3726.286906]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3726.286962]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3726.286969]  change_protection+0xfc9/0x1200
[ 3726.286977]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.286981]  ? update_load_avg+0x84/0x780
[ 3726.286985]  ? write_ibpb+0x21/0x40
[ 3726.286991]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3726.287044]  change_prot_numa+0x5b/0xe0
[ 3726.287051]  task_numa_work+0x3c5/0x9b0
[ 3726.287059]  task_work_run+0x64/0xa0
[ 3726.287064]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3726.287069]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3726.287122]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3726.287175]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.287178]  ? do_futex+0xc8/0x1d0
[ 3726.287180]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.287183]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.287186]  __x64_sys_ioctl+0xa0/0xf0
[ 3726.287192]  x64_sys_call+0x122e/0x2150
[ 3726.287194]  do_syscall_64+0x56/0x1e0
[ 3726.287198]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3726.287200] RIP: 0033:0x7f67bff03b4b
[ 3726.287202] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3726.287204] RSP: 002b:00007f5a84ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3726.287206] RAX: ffffffffffffffda RBX: 0000563db61dc570 RCX: 00007f67bff03b4b
[ 3726.287207] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000116
[ 3726.287208] RBP: 0000563db61dc570 R08: 0000000000000000 R09: 0000000000000000
[ 3726.287209] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3726.287211] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3726.287216]  </TASK>
[ 3726.290711] watchdog: BUG: soft lockup - CPU#13 stuck for 75s! [qemu-system-x86:31324]
[ 3726.290714] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3726.290771] CPU: 13 UID: 0 PID: 31324 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3726.290774] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3726.290775] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3726.290776] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3726.290780] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3726.290781] RSP: 0018:ffffaab62b0238b8 EFLAGS: 00000202
[ 3726.290783] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3726.290784] RDX: 0000000000000001 RSI: ffff8f717fff9160 RDI: ffff8f5280a32f70
[ 3726.290785] RBP: ffffaab62b023918 R08: 0000000000000007 R09: ffff8f5280a32c00
[ 3726.290787] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3726.290788] R13: 0000000000000202 R14: ffff8f7180172a40 R15: 0000000000000080
[ 3726.290789] FS:  00007f59e77fe640(0000) GS:ffff8f71ed976000(0000) knlGS:0000000000000000
[ 3726.290791] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3726.290792] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3726.290794] PKRU: 55555554
[ 3726.290795] Call Trace:
[ 3726.290796]  <TASK>
[ 3726.290797]  ? __pfx___wbinvd+0x10/0x10
[ 3726.290802]  on_each_cpu_cond_mask+0x28/0x50
[ 3726.290805]  wbinvd_on_all_cpus+0x29/0x40
[ 3726.290809]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3726.290817]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3726.290868]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3726.290924]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3726.290928]  change_protection+0xfc9/0x1200
[ 3726.290933]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.290937]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.290939]  ? update_load_avg+0x84/0x780
[ 3726.290943]  ? write_ibpb+0x21/0x40
[ 3726.290947]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3726.291000]  change_prot_numa+0x5b/0xe0
[ 3726.291007]  task_numa_work+0x3c5/0x9b0
[ 3726.291014]  task_work_run+0x64/0xa0
[ 3726.291018]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3726.291022]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3726.291075]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3726.291128]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.291130]  ? do_futex+0xc8/0x1d0
[ 3726.291132]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.291135]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.291138]  __x64_sys_ioctl+0xa0/0xf0
[ 3726.291143]  x64_sys_call+0x122e/0x2150
[ 3726.291145]  do_syscall_64+0x56/0x1e0
[ 3726.291149]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3726.291151] RIP: 0033:0x7f67bff03b4b
[ 3726.291153] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3726.291155] RSP: 002b:00007f59e77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3726.291157] RAX: ffffffffffffffda RBX: 0000563db630c090 RCX: 00007f67bff03b4b
[ 3726.291158] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000152
[ 3726.291159] RBP: 0000563db630c090 R08: 0000000000000000 R09: 0000000000000000
[ 3726.291161] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3726.291162] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3726.291167]  </TASK>
[ 3726.294711] watchdog: BUG: soft lockup - CPU#15 stuck for 75s! [qemu-system-x86:31363]
[ 3726.294713] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3726.294771] CPU: 15 UID: 0 PID: 31363 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3726.294774] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3726.294775] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3726.294776] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3726.294779] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3726.294781] RSP: 0018:ffffaab62b2cf8b8 EFLAGS: 00000202
[ 3726.294782] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3726.294784] RDX: 0000000000000001 RSI: ffff8f717fff91a0 RDI: ffff8f52872d07c0
[ 3726.294785] RBP: ffffaab62b2cf918 R08: 0000000000000007 R09: ffff8f52872d0930
[ 3726.294786] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3726.294787] R13: 0000000000000202 R14: ffff8f71801f2a40 R15: 0000000000000080
[ 3726.294789] FS:  00007f59457fa640(0000) GS:ffff8f71ed9f6000(0000) knlGS:0000000000000000
[ 3726.294790] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3726.294792] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3726.294793] PKRU: 55555554
[ 3726.294794] Call Trace:
[ 3726.294795]  <TASK>
[ 3726.294797]  ? __pfx___wbinvd+0x10/0x10
[ 3726.294802]  on_each_cpu_cond_mask+0x28/0x50
[ 3726.294804]  wbinvd_on_all_cpus+0x29/0x40
[ 3726.294808]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3726.294816]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3726.294868]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3726.294923]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3726.294927]  change_protection+0xfc9/0x1200
[ 3726.294933]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.294936]  ? update_load_avg+0x84/0x780
[ 3726.294940]  ? write_ibpb+0x21/0x40
[ 3726.294943]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3726.294997]  change_prot_numa+0x5b/0xe0
[ 3726.295003]  task_numa_work+0x3c5/0x9b0
[ 3726.295011]  task_work_run+0x64/0xa0
[ 3726.295015]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3726.295019]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3726.295072]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3726.295124]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.295127]  ? do_futex+0xc8/0x1d0
[ 3726.295129]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.295131]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.295135]  __x64_sys_ioctl+0xa0/0xf0
[ 3726.295139]  x64_sys_call+0x122e/0x2150
[ 3726.295142]  do_syscall_64+0x56/0x1e0
[ 3726.295145]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3726.295147] RIP: 0033:0x7f67bff03b4b
[ 3726.295149] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3726.295151] RSP: 002b:00007f59457f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3726.295153] RAX: ffffffffffffffda RBX: 0000563db6496a50 RCX: 00007f67bff03b4b
[ 3726.295154] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001a0
[ 3726.295155] RBP: 0000563db6496a50 R08: 0000000000000000 R09: 0000000000000000
[ 3726.295156] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3726.295157] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3726.295162]  </TASK>
[ 3726.298711] watchdog: BUG: soft lockup - CPU#18 stuck for 75s! [qemu-system-x86:31310]
[ 3726.298717] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3726.298787] CPU: 18 UID: 0 PID: 31310 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3726.298793] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3726.298794] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3726.298796] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3726.298804] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3726.298806] RSP: 0018:ffffaab62af978b8 EFLAGS: 00000202
[ 3726.298808] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3726.298810] RDX: 0000000000000001 RSI: ffff8f717fff9200 RDI: ffff8f52872d06e0
[ 3726.298811] RBP: ffffaab62af97918 R08: 0000000000000007 R09: ffff8f52872d0800
[ 3726.298812] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3726.298814] R13: 0000000000000202 R14: ffff8f71802b2a40 R15: 0000000000000080
[ 3726.298815] FS:  00007f5a277fe640(0000) GS:ffff8f71edab6000(0000) knlGS:0000000000000000
[ 3726.298817] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3726.298818] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3726.298820] PKRU: 55555554
[ 3726.298821] Call Trace:
[ 3726.298823]  <TASK>
[ 3726.298826]  ? __pfx___wbinvd+0x10/0x10
[ 3726.298834]  on_each_cpu_cond_mask+0x28/0x50
[ 3726.298837]  wbinvd_on_all_cpus+0x29/0x40
[ 3726.298841]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3726.298850]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3726.298905]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3726.298961]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3726.298967]  change_protection+0xfc9/0x1200
[ 3726.298973]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.298978]  ? update_curr_dl_se+0x3b/0x1e0
[ 3726.298982]  ? dl_server_update+0x2e/0x40
[ 3726.298986]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.298989]  ? pick_next_task_fair+0x4f/0x490
[ 3726.298993]  change_prot_numa+0x5b/0xe0
[ 3726.298999]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.299001]  ? update_load_avg+0x84/0x780
[ 3726.299004]  ? __dequeue_entity+0x3cd/0x4a0
[ 3726.299008]  task_numa_work+0x3c5/0x9b0
[ 3726.299016]  task_work_run+0x64/0xa0
[ 3726.299021]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3726.299027]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3726.299079]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3726.299131]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.299134]  ? do_futex+0xc8/0x1d0
[ 3726.299136]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.299138]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.299142]  __x64_sys_ioctl+0xa0/0xf0
[ 3726.299148]  x64_sys_call+0x122e/0x2150
[ 3726.299150]  do_syscall_64+0x56/0x1e0
[ 3726.299156]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3726.299158] RIP: 0033:0x7f67bff03b4b
[ 3726.299160] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3726.299162] RSP: 002b:00007f5a277fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3726.299164] RAX: ffffffffffffffda RBX: 0000563db627ea30 RCX: 00007f67bff03b4b
[ 3726.299165] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000136
[ 3726.299167] RBP: 0000563db627ea30 R08: 0000000000000000 R09: 0000000000000000
[ 3726.299168] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3726.299169] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3726.299174]  </TASK>
[ 3726.310711] watchdog: BUG: soft lockup - CPU#22 stuck for 75s! [qemu-system-x86:31334]
[ 3726.310713] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3726.310769] CPU: 22 UID: 0 PID: 31334 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3726.310772] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3726.310773] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3726.310774] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3726.310777] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3726.310779] RSP: 0018:ffffaab62b1e78b8 EFLAGS: 00000202
[ 3726.310781] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3726.310782] RDX: 0000000000000001 RSI: ffff8f717fff9280 RDI: ffff8f52872d0480
[ 3726.310783] RBP: ffffaab62b1e7918 R08: 0000000000000007 R09: ffff8f52872d08d0
[ 3726.310784] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3726.310786] R13: 0000000000000202 R14: ffff8f71803b2a40 R15: 0000000000000080
[ 3726.310787] FS:  00007f59c5ffb640(0000) GS:ffff8f71edbb6000(0000) knlGS:0000000000000000
[ 3726.310789] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3726.310790] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3726.310791] PKRU: 55555554
[ 3726.310792] Call Trace:
[ 3726.310793]  <TASK>
[ 3726.310795]  ? __pfx___wbinvd+0x10/0x10
[ 3726.310800]  on_each_cpu_cond_mask+0x28/0x50
[ 3726.310803]  wbinvd_on_all_cpus+0x29/0x40
[ 3726.310806]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3726.310814]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3726.310866]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3726.310920]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3726.310924]  change_protection+0xfc9/0x1200
[ 3726.310929]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.310933]  ? update_curr_dl_se+0x3b/0x1e0
[ 3726.310936]  ? dl_server_update+0x2e/0x40
[ 3726.310940]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.310943]  ? pick_next_task_fair+0x4f/0x490
[ 3726.310947]  change_prot_numa+0x5b/0xe0
[ 3726.310954]  task_numa_work+0x3c5/0x9b0
[ 3726.310961]  task_work_run+0x64/0xa0
[ 3726.310965]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3726.310969]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3726.311022]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3726.311073]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.311076]  ? do_futex+0xc8/0x1d0
[ 3726.311078]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.311080]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.311084]  __x64_sys_ioctl+0xa0/0xf0
[ 3726.311089]  x64_sys_call+0x122e/0x2150
[ 3726.311091]  do_syscall_64+0x56/0x1e0
[ 3726.311095]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3726.311097] RIP: 0033:0x7f67bff03b4b
[ 3726.311099] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3726.311100] RSP: 002b:00007f59c5ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3726.311103] RAX: ffffffffffffffda RBX: 0000563db6371720 RCX: 00007f67bff03b4b
[ 3726.311104] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000166
[ 3726.311105] RBP: 0000563db6371720 R08: 0000000000000000 R09: 0000000000000000
[ 3726.311106] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3726.311107] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3726.311112]  </TASK>
[ 3726.362710] watchdog: BUG: soft lockup - CPU#46 stuck for 75s! [qemu-system-x86:31353]
[ 3726.362716] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3726.362784] CPU: 46 UID: 0 PID: 31353 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3726.362789] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3726.362790] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3726.362792] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3726.362800] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3726.362802] RSP: 0018:ffffaab62b27f8b8 EFLAGS: 00000202
[ 3726.362804] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3726.362806] RDX: 0000000000000001 RSI: ffff8f717fff9580 RDI: ffff8f72066e3a60
[ 3726.362807] RBP: ffffaab62b27f918 R08: 0000000000000007 R09: ffff8f72066e3360
[ 3726.362809] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3726.362810] R13: 0000000000000202 R14: ffff8f917e3b2a40 R15: 0000000000000080
[ 3726.362811] FS:  00007f5966ffd640(0000) GS:ffff8f91ebbb6000(0000) knlGS:0000000000000000
[ 3726.362813] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3726.362815] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3726.362816] PKRU: 55555554
[ 3726.362817] Call Trace:
[ 3726.362818]  <TASK>
[ 3726.362822]  ? __pfx___wbinvd+0x10/0x10
[ 3726.362829]  on_each_cpu_cond_mask+0x28/0x50
[ 3726.362832]  wbinvd_on_all_cpus+0x29/0x40
[ 3726.362837]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3726.362846]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3726.362898]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3726.362954]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3726.362960]  change_protection+0xfc9/0x1200
[ 3726.362968]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.362971]  ? update_load_avg+0x84/0x780
[ 3726.362976]  ? write_ibpb+0x21/0x40
[ 3726.362981]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3726.363034]  change_prot_numa+0x5b/0xe0
[ 3726.363041]  task_numa_work+0x3c5/0x9b0
[ 3726.363049]  task_work_run+0x64/0xa0
[ 3726.363054]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3726.363059]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3726.363111]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3726.363163]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.363165]  ? do_futex+0xc8/0x1d0
[ 3726.363168]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.363170]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.363174]  __x64_sys_ioctl+0xa0/0xf0
[ 3726.363180]  x64_sys_call+0x122e/0x2150
[ 3726.363182]  do_syscall_64+0x56/0x1e0
[ 3726.363186]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3726.363188] RIP: 0033:0x7f67bff03b4b
[ 3726.363190] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3726.363192] RSP: 002b:00007f5966ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3726.363194] RAX: ffffffffffffffda RBX: 0000563db6431560 RCX: 00007f67bff03b4b
[ 3726.363195] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000018c
[ 3726.363197] RBP: 0000563db6431560 R08: 0000000000000000 R09: 0000000000000000
[ 3726.363198] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3726.363199] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3726.363204]  </TASK>
[ 3726.366709] watchdog: BUG: soft lockup - CPU#47 stuck for 75s! [qemu-system-x86:31257]
[ 3726.366712] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3726.366769] CPU: 47 UID: 0 PID: 31257 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3726.366772] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3726.366773] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3726.366774] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3726.366778] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3726.366779] RSP: 0018:ffffaab62ad038b8 EFLAGS: 00000202
[ 3726.366781] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3726.366782] RDX: 0000000000000001 RSI: ffff8f717fff95a0 RDI: ffff8f72066e36c0
[ 3726.366783] RBP: ffffaab62ad03918 R08: 0000000000000007 R09: ffff8f72066e3e10
[ 3726.366785] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3726.366786] R13: 0000000000000202 R14: ffff8f917e3f2a40 R15: 0000000000000080
[ 3726.366787] FS:  00007f5b25ffb640(0000) GS:ffff8f91ebbf6000(0000) knlGS:0000000000000000
[ 3726.366789] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3726.366790] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3726.366792] PKRU: 55555554
[ 3726.366793] Call Trace:
[ 3726.366794]  <TASK>
[ 3726.366795]  ? __pfx___wbinvd+0x10/0x10
[ 3726.366800]  on_each_cpu_cond_mask+0x28/0x50
[ 3726.366803]  wbinvd_on_all_cpus+0x29/0x40
[ 3726.366807]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3726.366815]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3726.366867]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3726.366922]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3726.366926]  change_protection+0xfc9/0x1200
[ 3726.366931]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.366935]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.366937]  ? update_load_avg+0x84/0x780
[ 3726.366941]  ? write_ibpb+0x21/0x40
[ 3726.366945]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3726.366997]  change_prot_numa+0x5b/0xe0
[ 3726.367004]  task_numa_work+0x3c5/0x9b0
[ 3726.367011]  task_work_run+0x64/0xa0
[ 3726.367015]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3726.367019]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3726.367072]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3726.367123]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.367126]  ? do_futex+0xc8/0x1d0
[ 3726.367128]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.367130]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.367134]  __x64_sys_ioctl+0xa0/0xf0
[ 3726.367139]  x64_sys_call+0x122e/0x2150
[ 3726.367141]  do_syscall_64+0x56/0x1e0
[ 3726.367144]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3726.367146] RIP: 0033:0x7f67bff03b4b
[ 3726.367148] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3726.367150] RSP: 002b:00007f5b25ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3726.367152] RAX: ffffffffffffffda RBX: 0000563db6063fa0 RCX: 00007f67bff03b4b
[ 3726.367153] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000cc
[ 3726.367155] RBP: 0000563db6063fa0 R08: 0000000000000000 R09: 0000000000000000
[ 3726.367156] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3726.367157] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3726.367162]  </TASK>
[ 3726.378710] watchdog: BUG: soft lockup - CPU#52 stuck for 75s! [qemu-system-x86:31251]
[ 3726.378716] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3726.378784] CPU: 52 UID: 0 PID: 31251 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3726.378788] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3726.378789] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3726.378791] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3726.378798] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3726.378800] RSP: 0018:ffffaab62acd38b8 EFLAGS: 00000202
[ 3726.378802] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3726.378803] RDX: 0000000000000001 RSI: ffff8f717fff9640 RDI: ffff8f72000bacd0
[ 3726.378805] RBP: ffffaab62acd3918 R08: 0000000000000007 R09: ffff8f72000bab90
[ 3726.378806] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3726.378808] R13: 0000000000000202 R14: ffff8f917e532a40 R15: 0000000000000080
[ 3726.378809] FS:  00007f5b457fa640(0000) GS:ffff8f91ebd36000(0000) knlGS:0000000000000000
[ 3726.378811] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3726.378812] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3726.378814] PKRU: 55555554
[ 3726.378815] Call Trace:
[ 3726.378817]  <TASK>
[ 3726.378820]  ? __pfx___wbinvd+0x10/0x10
[ 3726.378827]  on_each_cpu_cond_mask+0x28/0x50
[ 3726.378830]  wbinvd_on_all_cpus+0x29/0x40
[ 3726.378835]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3726.378843]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3726.378899]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3726.378954]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3726.378960]  change_protection+0xfc9/0x1200
[ 3726.378966]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.378971]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.378973]  ? update_load_avg+0x84/0x780
[ 3726.378978]  ? write_ibpb+0x21/0x40
[ 3726.378983]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3726.379036]  change_prot_numa+0x5b/0xe0
[ 3726.379043]  task_numa_work+0x3c5/0x9b0
[ 3726.379051]  task_work_run+0x64/0xa0
[ 3726.379056]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3726.379061]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3726.379113]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3726.379165]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.379168]  ? do_futex+0xc8/0x1d0
[ 3726.379170]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.379172]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.379176]  __x64_sys_ioctl+0xa0/0xf0
[ 3726.379182]  x64_sys_call+0x122e/0x2150
[ 3726.379184]  do_syscall_64+0x56/0x1e0
[ 3726.379188]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3726.379190] RIP: 0033:0x7f67bff03b4b
[ 3726.379192] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3726.379194] RSP: 002b:00007f5b457f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3726.379196] RAX: ffffffffffffffda RBX: 0000563db6027ac0 RCX: 00007f67bff03b4b
[ 3726.379197] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000c0
[ 3726.379198] RBP: 0000563db6027ac0 R08: 0000000000000000 R09: 0000000000000000
[ 3726.379200] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3726.379201] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3726.379206]  </TASK>
[ 3726.390709] watchdog: BUG: soft lockup - CPU#58 stuck for 75s! [qemu-system-x86:31335]
[ 3726.390715] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3726.390783] CPU: 58 UID: 0 PID: 31335 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3726.390787] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3726.390788] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3726.390790] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3726.390797] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3726.390799] RSP: 0018:ffffaab62b1ef8b8 EFLAGS: 00000202
[ 3726.390802] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3726.390803] RDX: 0000000000000001 RSI: ffff8f717fff9700 RDI: ffff8f72000bacf0
[ 3726.390805] RBP: ffffaab62b1ef918 R08: 0000000000000007 R09: ffff8f72000ba6e0
[ 3726.390806] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3726.390808] R13: 0000000000000202 R14: ffff8f917e6b2a40 R15: 0000000000000080
[ 3726.390809] FS:  00007f59c57fa640(0000) GS:ffff8f91ebeb6000(0000) knlGS:0000000000000000
[ 3726.390811] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3726.390813] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3726.390814] PKRU: 55555554
[ 3726.390815] Call Trace:
[ 3726.390817]  <TASK>
[ 3726.390820]  ? __pfx___wbinvd+0x10/0x10
[ 3726.390827]  on_each_cpu_cond_mask+0x28/0x50
[ 3726.390830]  wbinvd_on_all_cpus+0x29/0x40
[ 3726.390835]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3726.390844]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3726.390897]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3726.390953]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3726.390958]  change_protection+0xfc9/0x1200
[ 3726.390964]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.390968]  ? update_curr_dl_se+0x3b/0x1e0
[ 3726.390973]  ? dl_server_update+0x2e/0x40
[ 3726.390977]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.390980]  ? pick_next_task_fair+0x4f/0x490
[ 3726.390984]  change_prot_numa+0x5b/0xe0
[ 3726.390992]  task_numa_work+0x3c5/0x9b0
[ 3726.390999]  task_work_run+0x64/0xa0
[ 3726.391004]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3726.391010]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3726.391062]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3726.391114]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.391116]  ? do_futex+0xc8/0x1d0
[ 3726.391119]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.391121]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.391125]  __x64_sys_ioctl+0xa0/0xf0
[ 3726.391130]  x64_sys_call+0x122e/0x2150
[ 3726.391133]  do_syscall_64+0x56/0x1e0
[ 3726.391138]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3726.391140] RIP: 0033:0x7f67bff03b4b
[ 3726.391143] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3726.391145] RSP: 002b:00007f59c57f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3726.391147] RAX: ffffffffffffffda RBX: 0000563db637b6d0 RCX: 00007f67bff03b4b
[ 3726.391148] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000168
[ 3726.391150] RBP: 0000563db637b6d0 R08: 0000000000000000 R09: 0000000000000000
[ 3726.391151] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3726.391152] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3726.391157]  </TASK>
[ 3726.394709] watchdog: BUG: soft lockup - CPU#59 stuck for 75s! [qemu-system-x86:31330]
[ 3726.394711] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3726.394767] CPU: 59 UID: 0 PID: 31330 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3726.394771] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3726.394772] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3726.394773] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3726.394777] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3726.394778] RSP: 0018:ffffaab62b06b8b8 EFLAGS: 00000202
[ 3726.394780] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3726.394781] RDX: 0000000000000001 RSI: ffff8f717fff9720 RDI: ffff8f72000ba770
[ 3726.394782] RBP: ffffaab62b06b918 R08: 0000000000000007 R09: ffff8f72000baa50
[ 3726.394784] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3726.394785] R13: 0000000000000202 R14: ffff8f917e6f2a40 R15: 0000000000000080
[ 3726.394786] FS:  00007f59c7fff640(0000) GS:ffff8f91ebef6000(0000) knlGS:0000000000000000
[ 3726.394788] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3726.394789] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3726.394791] PKRU: 55555554
[ 3726.394792] Call Trace:
[ 3726.394793]  <TASK>
[ 3726.394794]  ? __pfx___wbinvd+0x10/0x10
[ 3726.394799]  on_each_cpu_cond_mask+0x28/0x50
[ 3726.394802]  wbinvd_on_all_cpus+0x29/0x40
[ 3726.394806]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3726.394813]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3726.394866]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3726.394920]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3726.394925]  change_protection+0xfc9/0x1200
[ 3726.394930]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.394933]  ? update_curr_dl_se+0x3b/0x1e0
[ 3726.394936]  ? dl_server_update+0x2e/0x40
[ 3726.394940]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.394944]  ? pick_next_task_fair+0x4f/0x490
[ 3726.394947]  change_prot_numa+0x5b/0xe0
[ 3726.394954]  task_numa_work+0x3c5/0x9b0
[ 3726.394961]  task_work_run+0x64/0xa0
[ 3726.394965]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3726.394969]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3726.395022]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3726.395073]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.395076]  ? do_futex+0xc8/0x1d0
[ 3726.395078]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.395080]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.395084]  __x64_sys_ioctl+0xa0/0xf0
[ 3726.395088]  x64_sys_call+0x122e/0x2150
[ 3726.395091]  do_syscall_64+0x56/0x1e0
[ 3726.395095]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3726.395097] RIP: 0033:0x7f67bff03b4b
[ 3726.395099] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3726.395100] RSP: 002b:00007f59c7ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3726.395102] RAX: ffffffffffffffda RBX: 0000563db6348c80 RCX: 00007f67bff03b4b
[ 3726.395104] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000015e
[ 3726.395105] RBP: 0000563db6348c80 R08: 0000000000000000 R09: 0000000000000000
[ 3726.395106] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3726.395107] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3726.395112]  </TASK>
[ 3726.442708] watchdog: BUG: soft lockup - CPU#69 stuck for 74s! [qemu-system-x86:31238]
[ 3726.442711] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3726.442770] CPU: 69 UID: 0 PID: 31238 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3726.442773] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3726.442774] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3726.442776] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3726.442779] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3726.442781] RSP: 0018:ffffaab62ac6b8b8 EFLAGS: 00000202
[ 3726.442782] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3726.442784] RDX: 0000000000000001 RSI: ffff8f717fff9860 RDI: ffff8f52876583e0
[ 3726.442785] RBP: ffffaab62ac6b918 R08: 0000000000000007 R09: ffff8f52876585e0
[ 3726.442787] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3726.442788] R13: 0000000000000202 R14: ffff8f7180772a40 R15: 0000000000000080
[ 3726.442790] FS:  00007f5b84ff9640(0000) GS:ffff8f71edf76000(0000) knlGS:0000000000000000
[ 3726.442791] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3726.442793] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3726.442794] PKRU: 55555554
[ 3726.442795] Call Trace:
[ 3726.442796]  <TASK>
[ 3726.442798]  ? __pfx___wbinvd+0x10/0x10
[ 3726.442803]  on_each_cpu_cond_mask+0x28/0x50
[ 3726.442806]  wbinvd_on_all_cpus+0x29/0x40
[ 3726.442810]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3726.442818]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3726.442869]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3726.442923]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3726.442927]  change_protection+0xfc9/0x1200
[ 3726.442932]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.442935]  ? asm_sysvec_apic_timer_interrupt+0x1f/0x30
[ 3726.442940]  ? write_ibpb+0x21/0x40
[ 3726.442943]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3726.442995]  change_prot_numa+0x5b/0xe0
[ 3726.443001]  task_numa_work+0x3c5/0x9b0
[ 3726.443009]  task_work_run+0x64/0xa0
[ 3726.443013]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3726.443017]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3726.443069]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3726.443121]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.443123]  ? do_futex+0xc8/0x1d0
[ 3726.443126]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.443128]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.443131]  __x64_sys_ioctl+0xa0/0xf0
[ 3726.443136]  x64_sys_call+0x122e/0x2150
[ 3726.443138]  do_syscall_64+0x56/0x1e0
[ 3726.443142]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3726.443144] RIP: 0033:0x7f67bff03b4b
[ 3726.443146] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3726.443147] RSP: 002b:00007f5b84ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3726.443149] RAX: ffffffffffffffda RBX: 0000563db5fa4ac0 RCX: 00007f67bff03b4b
[ 3726.443150] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000a6
[ 3726.443152] RBP: 0000563db5fa4ac0 R08: 0000000000000000 R09: 0000000000000000
[ 3726.443153] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3726.443154] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3726.443159]  </TASK>
[ 3726.443160] watchdog: BUG: soft lockup - CPU#70 stuck for 74s! [qemu-system-x86:31275]
[ 3726.443162] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3726.443218] CPU: 70 UID: 0 PID: 31275 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3726.443221] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3726.443222] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3726.443223] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3726.443226] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3726.443228] RSP: 0018:ffffaab62ade78b8 EFLAGS: 00000202
[ 3726.443230] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3726.443231] RDX: 0000000000000001 RSI: ffff8f717fff9880 RDI: ffff8f5287658fd0
[ 3726.443232] RBP: ffffaab62ade7918 R08: 0000000000000007 R09: ffff8f5287658700
[ 3726.443234] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3726.443235] R13: 0000000000000202 R14: ffff8f71807b2a40 R15: 0000000000000080
[ 3726.443236] FS:  00007f5ac77fe640(0000) GS:ffff8f71edfb6000(0000) knlGS:0000000000000000
[ 3726.443238] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3726.443239] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3726.443241] PKRU: 55555554
[ 3726.443241] Call Trace:
[ 3726.443242]  <TASK>
[ 3726.443244]  ? __pfx___wbinvd+0x10/0x10
[ 3726.443249]  on_each_cpu_cond_mask+0x28/0x50
[ 3726.443252]  wbinvd_on_all_cpus+0x29/0x40
[ 3726.443256]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3726.443263]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3726.443315]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3726.443369]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3726.443373]  change_protection+0xfc9/0x1200
[ 3726.443379]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.443382]  ? update_load_avg+0x84/0x780
[ 3726.443386]  ? write_ibpb+0x21/0x40
[ 3726.443389]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3726.443441]  change_prot_numa+0x5b/0xe0
[ 3726.443448]  task_numa_work+0x3c5/0x9b0
[ 3726.443455]  task_work_run+0x64/0xa0
[ 3726.443459]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3726.443463]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3726.443516]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3726.443568]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.443570]  ? do_futex+0xc8/0x1d0
[ 3726.443572]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.443575]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.443578]  __x64_sys_ioctl+0xa0/0xf0
[ 3726.443583]  x64_sys_call+0x122e/0x2150
[ 3726.443585]  do_syscall_64+0x56/0x1e0
[ 3726.443589]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3726.443591] RIP: 0033:0x7f67bff03b4b
[ 3726.443593] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3726.443595] RSP: 002b:00007f5ac77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3726.443597] RAX: ffffffffffffffda RBX: 0000563db611a960 RCX: 00007f67bff03b4b
[ 3726.443598] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000f0
[ 3726.443600] RBP: 0000563db611a960 R08: 0000000000000000 R09: 0000000000000000
[ 3726.443601] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3726.443602] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3726.443607]  </TASK>
[ 3726.446708] watchdog: BUG: soft lockup - CPU#72 stuck for 74s! [qemu-system-x86:31298]
[ 3726.446712] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3726.446771] CPU: 72 UID: 0 PID: 31298 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3726.446775] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3726.446776] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3726.446778] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3726.446781] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3726.446783] RSP: 0018:ffffaab62af378b8 EFLAGS: 00000202
[ 3726.446785] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3726.446787] RDX: 0000000000000001 RSI: ffff8f717fff98c0 RDI: ffff8f5287658550
[ 3726.446788] RBP: ffffaab62af37918 R08: 0000000000000007 R09: ffff8f5287658ca0
[ 3726.446790] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3726.446791] R13: 0000000000000202 R14: ffff8f7180832a40 R15: 0000000000000080
[ 3726.446793] FS:  00007f5a667fc640(0000) GS:ffff8f71ee036000(0000) knlGS:0000000000000000
[ 3726.446795] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3726.446796] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3726.446798] PKRU: 55555554
[ 3726.446798] Call Trace:
[ 3726.446800]  <TASK>
[ 3726.446801]  ? __pfx___wbinvd+0x10/0x10
[ 3726.446806]  on_each_cpu_cond_mask+0x28/0x50
[ 3726.446809]  wbinvd_on_all_cpus+0x29/0x40
[ 3726.446813]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3726.446821]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3726.446872]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3726.446927]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3726.446931]  change_protection+0xfc9/0x1200
[ 3726.446936]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.446940]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.446943]  ? update_load_avg+0x84/0x780
[ 3726.446947]  ? write_ibpb+0x21/0x40
[ 3726.446950]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3726.447003]  change_prot_numa+0x5b/0xe0
[ 3726.447010]  task_numa_work+0x3c5/0x9b0
[ 3726.447017]  task_work_run+0x64/0xa0
[ 3726.447021]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3726.447025]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3726.447077]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3726.447129]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.447131]  ? do_futex+0xc8/0x1d0
[ 3726.447134]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.447136]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.447140]  __x64_sys_ioctl+0xa0/0xf0
[ 3726.447144]  x64_sys_call+0x122e/0x2150
[ 3726.447146]  do_syscall_64+0x56/0x1e0
[ 3726.447150]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3726.447152] RIP: 0033:0x7f67bff03b4b
[ 3726.447154] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3726.447156] RSP: 002b:00007f5a667fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3726.447158] RAX: ffffffffffffffda RBX: 0000563db62051d0 RCX: 00007f67bff03b4b
[ 3726.447159] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000011e
[ 3726.447160] RBP: 0000563db62051d0 R08: 0000000000000000 R09: 0000000000000000
[ 3726.447162] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3726.447163] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3726.447168]  </TASK>
[ 3726.450708] watchdog: BUG: soft lockup - CPU#74 stuck for 74s! [qemu-system-x86:31394]
[ 3726.450710] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3726.450767] CPU: 74 UID: 0 PID: 31394 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3726.450771] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3726.450772] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3726.450773] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3726.450776] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3726.450778] RSP: 0018:ffffaab62c1ab8b8 EFLAGS: 00000202
[ 3726.450780] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3726.450781] RDX: 0000000000000001 RSI: ffff8f717fff9900 RDI: ffff8f5287658a20
[ 3726.450783] RBP: ffffaab62c1ab918 R08: 0000000000000007 R09: ffff8f5287658a30
[ 3726.450784] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3726.450785] R13: 0000000000000202 R14: ffff8f71808b2a40 R15: 0000000000000080
[ 3726.450787] FS:  00007f58a77fe640(0000) GS:ffff8f71ee0b6000(0000) knlGS:0000000000000000
[ 3726.450788] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3726.450790] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3726.450791] PKRU: 55555554
[ 3726.450792] Call Trace:
[ 3726.450793]  <TASK>
[ 3726.450795]  ? __pfx___wbinvd+0x10/0x10
[ 3726.450800]  on_each_cpu_cond_mask+0x28/0x50
[ 3726.450803]  wbinvd_on_all_cpus+0x29/0x40
[ 3726.450806]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3726.450814]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3726.450866]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3726.450920]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3726.450924]  change_protection+0xfc9/0x1200
[ 3726.450929]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.450933]  ? pick_eevdf+0x7c/0x1a0
[ 3726.450937]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.450941]  ? pick_next_task_fair+0x4f/0x490
[ 3726.450944]  change_prot_numa+0x5b/0xe0
[ 3726.450949]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.450951]  ? update_load_avg+0x84/0x780
[ 3726.450954]  ? __dequeue_entity+0x3cd/0x4a0
[ 3726.450958]  task_numa_work+0x3c5/0x9b0
[ 3726.450965]  task_work_run+0x64/0xa0
[ 3726.450969]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3726.450973]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3726.451026]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3726.451077]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.451080]  ? do_futex+0xc8/0x1d0
[ 3726.451082]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.451085]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.451088]  __x64_sys_ioctl+0xa0/0xf0
[ 3726.451093]  x64_sys_call+0x122e/0x2150
[ 3726.451095]  do_syscall_64+0x56/0x1e0
[ 3726.451099]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3726.451101] RIP: 0033:0x7f67bff03b4b
[ 3726.451103] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3726.451105] RSP: 002b:00007f58a77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3726.451107] RAX: ffffffffffffffda RBX: 0000563db65cf480 RCX: 00007f67bff03b4b
[ 3726.451109] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001de
[ 3726.451110] RBP: 0000563db65cf480 R08: 0000000000000000 R09: 0000000000000000
[ 3726.451111] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3726.451112] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3726.451117]  </TASK>
[ 3726.474707] watchdog: BUG: soft lockup - CPU#84 stuck for 74s! [qemu-system-x86:31416]
[ 3726.474711] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3726.474770] CPU: 84 UID: 0 PID: 31416 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3726.474774] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3726.474775] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3726.474776] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3726.474780] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3726.474782] RSP: 0018:ffffaab62b6078b8 EFLAGS: 00000202
[ 3726.474784] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3726.474785] RDX: 0000000000000001 RSI: ffff8f717fff9a40 RDI: ffff8f52889c6360
[ 3726.474787] RBP: ffffaab62b607918 R08: 0000000000000007 R09: ffff8f52889c68c0
[ 3726.474788] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3726.474790] R13: 0000000000000202 R14: ffff8f7180b32a40 R15: 0000000000000080
[ 3726.474791] FS:  00007f5846ffd640(0000) GS:ffff8f71ee336000(0000) knlGS:0000000000000000
[ 3726.474793] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3726.474795] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3726.474797] PKRU: 55555554
[ 3726.474798] Call Trace:
[ 3726.474799]  <TASK>
[ 3726.474801]  ? __pfx___wbinvd+0x10/0x10
[ 3726.474806]  on_each_cpu_cond_mask+0x28/0x50
[ 3726.474809]  wbinvd_on_all_cpus+0x29/0x40
[ 3726.474812]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3726.474820]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3726.474872]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3726.474927]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3726.474931]  change_protection+0xfc9/0x1200
[ 3726.474936]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.474940]  ? update_curr_dl_se+0x3b/0x1e0
[ 3726.474943]  ? dl_server_update+0x2e/0x40
[ 3726.474947]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.474951]  ? pick_next_task_fair+0x4f/0x490
[ 3726.474954]  change_prot_numa+0x5b/0xe0
[ 3726.474959]  ? sched_clock_cpu+0x14/0x1a0
[ 3726.474964]  task_numa_work+0x3c5/0x9b0
[ 3726.474971]  task_work_run+0x64/0xa0
[ 3726.474975]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3726.474980]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3726.475032]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3726.475083]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.475086]  ? do_futex+0xc8/0x1d0
[ 3726.475088]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.475090]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.475094]  __x64_sys_ioctl+0xa0/0xf0
[ 3726.475098]  x64_sys_call+0x122e/0x2150
[ 3726.475101]  do_syscall_64+0x56/0x1e0
[ 3726.475105]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3726.475107] RIP: 0033:0x7f67bff03b4b
[ 3726.475109] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3726.475110] RSP: 002b:00007f5846ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3726.475112] RAX: ffffffffffffffda RBX: 0000563db66aed00 RCX: 00007f67bff03b4b
[ 3726.475114] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000020a
[ 3726.475115] RBP: 0000563db66aed00 R08: 0000000000000000 R09: 0000000000000000
[ 3726.475116] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3726.475117] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3726.475123]  </TASK>
[ 3726.498708] watchdog: BUG: soft lockup - CPU#95 stuck for 74s! [qemu-system-x86:31343]
[ 3726.498715] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3726.498808] CPU: 95 UID: 0 PID: 31343 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3726.498814] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3726.498815] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3726.498818] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3726.498826] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3726.498829] RSP: 0018:ffffaab62b22f8b8 EFLAGS: 00000202
[ 3726.498832] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3726.498834] RDX: 0000000000000001 RSI: ffff8f717fff9ba0 RDI: ffff8f52889c6900
[ 3726.498836] RBP: ffffaab62b22f918 R08: 0000000000000007 R09: ffff8f52889c6960
[ 3726.498838] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3726.498839] R13: 0000000000000202 R14: ffff8f7180df2a40 R15: 0000000000000080
[ 3726.498841] FS:  00007f59a4ff9640(0000) GS:ffff8f71ee5f6000(0000) knlGS:0000000000000000
[ 3726.498844] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3726.498845] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3726.498847] PKRU: 55555554
[ 3726.498848] Call Trace:
[ 3726.498852]  <TASK>
[ 3726.498857]  ? __pfx___wbinvd+0x10/0x10
[ 3726.498869]  on_each_cpu_cond_mask+0x28/0x50
[ 3726.498874]  wbinvd_on_all_cpus+0x29/0x40
[ 3726.498882]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3726.498895]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3726.498972]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3726.499051]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3726.499058]  change_protection+0xfc9/0x1200
[ 3726.499064]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.499070]  ? pick_eevdf+0x7c/0x1a0
[ 3726.499075]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.499079]  ? pick_next_task_fair+0x4f/0x490
[ 3726.499083]  change_prot_numa+0x5b/0xe0
[ 3726.499090]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.499096]  ? dl_server_update+0x2e/0x40
[ 3726.499100]  ? update_curr+0x1d2/0x250
[ 3726.499105]  task_numa_work+0x3c5/0x9b0
[ 3726.499114]  task_work_run+0x64/0xa0
[ 3726.499119]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3726.499125]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3726.499205]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3726.499275]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.499278]  ? do_futex+0xc8/0x1d0
[ 3726.499281]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.499284]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.499288]  __x64_sys_ioctl+0xa0/0xf0
[ 3726.499295]  x64_sys_call+0x122e/0x2150
[ 3726.499299]  do_syscall_64+0x56/0x1e0
[ 3726.499308]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3726.499311] RIP: 0033:0x7f67bff03b4b
[ 3726.499315] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3726.499317] RSP: 002b:00007f59a4ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3726.499320] RAX: ffffffffffffffda RBX: 0000563db63cc4a0 RCX: 00007f67bff03b4b
[ 3726.499322] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000178
[ 3726.499323] RBP: 0000563db63cc4a0 R08: 0000000000000000 R09: 0000000000000000
[ 3726.499325] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3726.499326] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3726.499332]  </TASK>
[ 3726.506707] watchdog: BUG: soft lockup - CPU#98 stuck for 78s! [qemu-system-x86:31373]
[ 3726.506713] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3726.506782] CPU: 98 UID: 0 PID: 31373 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3726.506787] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3726.506788] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3726.506790] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3726.506798] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3726.506800] RSP: 0018:ffffaab6274978b8 EFLAGS: 00000202
[ 3726.506802] RAX: 0000000000000055 RBX: 0000000000000001 RCX: 0000000000000011
[ 3726.506804] RDX: 0000000000000001 RSI: ffff8f7180b79c00 RDI: ffff8f7206c6a630
[ 3726.506806] RBP: ffffaab627497918 R08: 0000000000000055 R09: ffff8f7206c6add0
[ 3726.506807] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3726.506809] R13: 0000000000000202 R14: ffff8f917e8b2a40 R15: 0000000000000080
[ 3726.506810] FS:  00007f59077fe640(0000) GS:ffff8f91ec0b6000(0000) knlGS:0000000000000000
[ 3726.506812] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3726.506813] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3726.506815] PKRU: 55555554
[ 3726.506816] Call Trace:
[ 3726.506817]  <TASK>
[ 3726.506821]  ? __pfx___wbinvd+0x10/0x10
[ 3726.506828]  on_each_cpu_cond_mask+0x28/0x50
[ 3726.506831]  wbinvd_on_all_cpus+0x29/0x40
[ 3726.506836]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3726.506844]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3726.506897]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3726.506952]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3726.506958]  change_protection+0xfc9/0x1200
[ 3726.506965]  ? update_cfs_group+0xb0/0xc0
[ 3726.506971]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.506976]  ? pick_next_task_fair+0x4f/0x490
[ 3726.506980]  change_prot_numa+0x5b/0xe0
[ 3726.506985]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3726.506990]  task_numa_work+0x3c5/0x9b0
[ 3726.506998]  task_work_run+0x64/0xa0
[ 3726.507003]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3726.507008]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3726.507060]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3726.507112]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.507114]  ? do_futex+0xc8/0x1d0
[ 3726.507117]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.507119]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.507123]  __x64_sys_ioctl+0xa0/0xf0
[ 3726.507129]  x64_sys_call+0x122e/0x2150
[ 3726.507131]  do_syscall_64+0x56/0x1e0
[ 3726.507137]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3726.507139] RIP: 0033:0x7f67bff03b4b
[ 3726.507142] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3726.507143] RSP: 002b:00007f59077fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3726.507146] RAX: ffffffffffffffda RBX: 0000563db64fb700 RCX: 00007f67bff03b4b
[ 3726.507147] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001b4
[ 3726.507148] RBP: 0000563db64fb700 R08: 0000000000000000 R09: 0000000000000000
[ 3726.507149] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3726.507151] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3726.507156]  </TASK>
[ 3726.546706] watchdog: BUG: soft lockup - CPU#115 stuck for 74s! [qemu-system-x86:31385]
[ 3726.546709] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3726.546770] CPU: 115 UID: 0 PID: 31385 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3726.546774] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3726.546775] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3726.546776] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3726.546780] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3726.546782] RSP: 0018:ffffaab62c2078b8 EFLAGS: 00000202
[ 3726.546784] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3726.546785] RDX: 0000000000000001 RSI: ffff8f717fff9e20 RDI: ffff8f72000ba950
[ 3726.546787] RBP: ffffaab62c207918 R08: 0000000000000007 R09: ffff8f72000ba010
[ 3726.546788] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3726.546789] R13: 0000000000000202 R14: ffff8f917ecf2a40 R15: 0000000000000080
[ 3726.546791] FS:  00007f58e4ff9640(0000) GS:ffff8f91ec4f6000(0000) knlGS:0000000000000000
[ 3726.546793] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3726.546794] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3726.546796] PKRU: 55555554
[ 3726.546797] Call Trace:
[ 3726.546798]  <TASK>
[ 3726.546800]  ? __pfx___wbinvd+0x10/0x10
[ 3726.546806]  on_each_cpu_cond_mask+0x28/0x50
[ 3726.546808]  wbinvd_on_all_cpus+0x29/0x40
[ 3726.546812]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3726.546821]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3726.546875]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3726.546931]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3726.546935]  change_protection+0xfc9/0x1200
[ 3726.546941]  ? update_cfs_group+0xb0/0xc0
[ 3726.546946]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.546949]  ? pick_next_task_fair+0x4f/0x490
[ 3726.546953]  change_prot_numa+0x5b/0xe0
[ 3726.546957]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.546960]  ? update_load_avg+0x84/0x780
[ 3726.546962]  ? __dequeue_entity+0x3cd/0x4a0
[ 3726.546966]  task_numa_work+0x3c5/0x9b0
[ 3726.546974]  task_work_run+0x64/0xa0
[ 3726.546978]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3726.546982]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3726.547035]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3726.547087]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.547089]  ? do_futex+0xc8/0x1d0
[ 3726.547091]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.547094]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.547097]  __x64_sys_ioctl+0xa0/0xf0
[ 3726.547102]  x64_sys_call+0x122e/0x2150
[ 3726.547104]  do_syscall_64+0x56/0x1e0
[ 3726.547108]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3726.547110] RIP: 0033:0x7f67bff03b4b
[ 3726.547112] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3726.547114] RSP: 002b:00007f58e4ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3726.547116] RAX: ffffffffffffffda RBX: 0000563db6574780 RCX: 00007f67bff03b4b
[ 3726.547117] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001cc
[ 3726.547119] RBP: 0000563db6574780 R08: 0000000000000000 R09: 0000000000000000
[ 3726.547120] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3726.547121] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3726.547126]  </TASK>
[ 3726.558705] watchdog: BUG: soft lockup - CPU#121 stuck for 74s! [qemu-system-x86:31230]
[ 3726.558709] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3726.558768] CPU: 121 UID: 0 PID: 31230 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3726.558772] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3726.558773] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3726.558774] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3726.558778] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3726.558780] RSP: 0018:ffffaab62abbb8b8 EFLAGS: 00000202
[ 3726.558782] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3726.558783] RDX: 0000000000000001 RSI: ffff8f717fff9ee0 RDI: ffff8f7207fa2f60
[ 3726.558784] RBP: ffffaab62abbb918 R08: 0000000000000007 R09: ffff8f7207fa2ab0
[ 3726.558786] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3726.558787] R13: 0000000000000202 R14: ffff8f917ee72a40 R15: 0000000000000080
[ 3726.558789] FS:  00007f5ba57fa640(0000) GS:ffff8f91ec676000(0000) knlGS:0000000000000000
[ 3726.558791] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3726.558792] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3726.558793] PKRU: 55555554
[ 3726.558794] Call Trace:
[ 3726.558795]  <TASK>
[ 3726.558797]  ? __pfx___wbinvd+0x10/0x10
[ 3726.558802]  on_each_cpu_cond_mask+0x28/0x50
[ 3726.558805]  wbinvd_on_all_cpus+0x29/0x40
[ 3726.558809]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3726.558817]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3726.558870]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3726.558926]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3726.558930]  change_protection+0xfc9/0x1200
[ 3726.558937]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.558939]  ? update_load_avg+0x84/0x780
[ 3726.558943]  ? write_ibpb+0x21/0x40
[ 3726.558947]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3726.559001]  change_prot_numa+0x5b/0xe0
[ 3726.559008]  task_numa_work+0x3c5/0x9b0
[ 3726.559015]  task_work_run+0x64/0xa0
[ 3726.559019]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3726.559023]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3726.559076]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3726.559129]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.559132]  ? do_futex+0xc8/0x1d0
[ 3726.559134]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.559136]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3726.559140]  __x64_sys_ioctl+0xa0/0xf0
[ 3726.559145]  x64_sys_call+0x122e/0x2150
[ 3726.559147]  do_syscall_64+0x56/0x1e0
[ 3726.559150]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3726.559152] RIP: 0033:0x7f67bff03b4b
[ 3726.559154] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3726.559156] RSP: 002b:00007f5ba57f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3726.559158] RAX: ffffffffffffffda RBX: 0000563db5f53b20 RCX: 00007f67bff03b4b
[ 3726.559159] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000096
[ 3726.559161] RBP: 0000563db5f53b20 R08: 0000000000000000 R09: 0000000000000000
[ 3726.559162] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3726.559163] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3726.559168]  </TASK>
[ 3730.374629] watchdog: BUG: soft lockup - CPU#51 stuck for 75s! [qemu-system-x86:31370]
[ 3730.374634] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3730.374704] CPU: 51 UID: 0 PID: 31370 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3730.374709] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3730.374710] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3730.374711] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3730.374718] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3730.374720] RSP: 0018:ffffaab62b4878b8 EFLAGS: 00000202
[ 3730.374722] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3730.374723] RDX: 0000000000000001 RSI: ffff8f717fff9620 RDI: ffff8f72000baf00
[ 3730.374725] RBP: ffffaab62b487918 R08: 0000000000000007 R09: ffff8f72000bade0
[ 3730.374726] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3730.374727] R13: 0000000000000202 R14: ffff8f917e4f2a40 R15: 0000000000000080
[ 3730.374729] FS:  00007f59257fa640(0000) GS:ffff8f91ebcf6000(0000) knlGS:0000000000000000
[ 3730.374730] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3730.374732] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3730.374733] PKRU: 55555554
[ 3730.374734] Call Trace:
[ 3730.374736]  <TASK>
[ 3730.374739]  ? __pfx___wbinvd+0x10/0x10
[ 3730.374746]  on_each_cpu_cond_mask+0x28/0x50
[ 3730.374750]  wbinvd_on_all_cpus+0x29/0x40
[ 3730.374754]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3730.374763]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3730.374817]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3730.374873]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3730.374879]  change_protection+0xfc9/0x1200
[ 3730.374886]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.374889]  ? update_load_avg+0x84/0x780
[ 3730.374894]  ? write_ibpb+0x21/0x40
[ 3730.374898]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3730.374952]  change_prot_numa+0x5b/0xe0
[ 3730.374957]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.374960]  ? update_load_avg+0x84/0x780
[ 3730.374962]  ? __dequeue_entity+0x3cd/0x4a0
[ 3730.374966]  task_numa_work+0x3c5/0x9b0
[ 3730.374974]  task_work_run+0x64/0xa0
[ 3730.374978]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3730.374983]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3730.375036]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3730.375089]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.375092]  ? do_futex+0xc8/0x1d0
[ 3730.375094]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.375096]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.375100]  __x64_sys_ioctl+0xa0/0xf0
[ 3730.375106]  x64_sys_call+0x122e/0x2150
[ 3730.375108]  do_syscall_64+0x56/0x1e0
[ 3730.375111]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3730.375113] RIP: 0033:0x7f67bff03b4b
[ 3730.375116] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3730.375117] RSP: 002b:00007f59257f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3730.375120] RAX: ffffffffffffffda RBX: 0000563db64dd830 RCX: 00007f67bff03b4b
[ 3730.375121] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001ae
[ 3730.375122] RBP: 0000563db64dd830 R08: 0000000000000000 R09: 0000000000000000
[ 3730.375123] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3730.375125] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3730.375130]  </TASK>
[ 3730.434627] watchdog: BUG: soft lockup - CPU#66 stuck for 75s! [qemu-system-x86:31354]
[ 3730.434632] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3730.434706] CPU: 66 UID: 0 PID: 31354 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3730.434710] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3730.434712] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3730.434714] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3730.434721] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3730.434724] RSP: 0018:ffffaab62b2878b8 EFLAGS: 00000202
[ 3730.434726] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3730.434727] RDX: 0000000000000001 RSI: ffff8f717fff9800 RDI: ffff8f52876581f0
[ 3730.434729] RBP: ffffaab62b287918 R08: 0000000000000007 R09: ffff8f5287658390
[ 3730.434730] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3730.434732] R13: 0000000000000202 R14: ffff8f71806b2a40 R15: 0000000000000080
[ 3730.434733] FS:  00007f59667fc640(0000) GS:ffff8f71edeb6000(0000) knlGS:0000000000000000
[ 3730.434735] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3730.434737] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3730.434738] PKRU: 55555554
[ 3730.434739] Call Trace:
[ 3730.434741]  <TASK>
[ 3730.434744]  ? __pfx___wbinvd+0x10/0x10
[ 3730.434751]  on_each_cpu_cond_mask+0x28/0x50
[ 3730.434754]  wbinvd_on_all_cpus+0x29/0x40
[ 3730.434759]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3730.434768]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3730.434822]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3730.434877]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3730.434883]  change_protection+0xfc9/0x1200
[ 3730.434891]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.434895]  ? update_load_avg+0x84/0x780
[ 3730.434900]  ? write_ibpb+0x21/0x40
[ 3730.434905]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3730.434958]  change_prot_numa+0x5b/0xe0
[ 3730.434965]  task_numa_work+0x3c5/0x9b0
[ 3730.434973]  task_work_run+0x64/0xa0
[ 3730.434978]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3730.434983]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3730.435035]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3730.435087]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.435089]  ? do_futex+0xc8/0x1d0
[ 3730.435092]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.435094]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.435098]  __x64_sys_ioctl+0xa0/0xf0
[ 3730.435104]  x64_sys_call+0x122e/0x2150
[ 3730.435106]  do_syscall_64+0x56/0x1e0
[ 3730.435110]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3730.435112] RIP: 0033:0x7f67bff03b4b
[ 3730.435114] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3730.435116] RSP: 002b:00007f59667fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3730.435118] RAX: ffffffffffffffda RBX: 0000563db643b550 RCX: 00007f67bff03b4b
[ 3730.435119] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000018e
[ 3730.435120] RBP: 0000563db643b550 R08: 0000000000000000 R09: 0000000000000000
[ 3730.435122] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3730.435123] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3730.435128]  </TASK>
[ 3730.454628] watchdog: BUG: soft lockup - CPU#75 stuck for 75s! [qemu-system-x86:31407]
[ 3730.454634] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3730.454703] CPU: 75 UID: 0 PID: 31407 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3730.454708] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3730.454709] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3730.454711] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3730.454719] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3730.454722] RSP: 0018:ffffaab62bf278b8 EFLAGS: 00000202
[ 3730.454724] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3730.454726] RDX: 0000000000000001 RSI: ffff8f717fff9920 RDI: ffff8f52876580a0
[ 3730.454727] RBP: ffffaab62bf27918 R08: 0000000000000007 R09: ffff8f5287658b80
[ 3730.454729] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3730.454730] R13: 0000000000000202 R14: ffff8f71808f2a40 R15: 0000000000000080
[ 3730.454732] FS:  00007f5867fff640(0000) GS:ffff8f71ee0f6000(0000) knlGS:0000000000000000
[ 3730.454734] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3730.454735] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3730.454737] PKRU: 55555554
[ 3730.454738] Call Trace:
[ 3730.454739]  <TASK>
[ 3730.454743]  ? __pfx___wbinvd+0x10/0x10
[ 3730.454750]  on_each_cpu_cond_mask+0x28/0x50
[ 3730.454753]  wbinvd_on_all_cpus+0x29/0x40
[ 3730.454758]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3730.454767]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3730.454819]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3730.454874]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3730.454881]  change_protection+0xfc9/0x1200
[ 3730.454887]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.454892]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.454894]  ? update_load_avg+0x84/0x780
[ 3730.454899]  ? write_ibpb+0x21/0x40
[ 3730.454904]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3730.454957]  change_prot_numa+0x5b/0xe0
[ 3730.454964]  task_numa_work+0x3c5/0x9b0
[ 3730.454972]  task_work_run+0x64/0xa0
[ 3730.454977]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3730.454982]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3730.455034]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3730.455086]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.455089]  ? do_futex+0xc8/0x1d0
[ 3730.455091]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.455093]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.455097]  __x64_sys_ioctl+0xa0/0xf0
[ 3730.455103]  x64_sys_call+0x122e/0x2150
[ 3730.455105]  do_syscall_64+0x56/0x1e0
[ 3730.455109]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3730.455111] RIP: 0033:0x7f67bff03b4b
[ 3730.455113] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3730.455115] RSP: 002b:00007f5867ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3730.455117] RAX: ffffffffffffffda RBX: 0000563db6654290 RCX: 00007f67bff03b4b
[ 3730.455119] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001f8
[ 3730.455120] RBP: 0000563db6654290 R08: 0000000000000000 R09: 0000000000000000
[ 3730.455121] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3730.455122] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3730.455127]  </TASK>
[ 3730.466627] watchdog: BUG: soft lockup - CPU#80 stuck for 75s! [qemu-system-x86:31301]
[ 3730.466633] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3730.466703] CPU: 80 UID: 0 PID: 31301 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3730.466708] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3730.466709] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3730.466711] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3730.466719] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3730.466722] RSP: 0018:ffffaab62af4f8b8 EFLAGS: 00000202
[ 3730.466724] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3730.466726] RDX: 0000000000000001 RSI: ffff8f717fff99c0 RDI: ffff8f5287658500
[ 3730.466728] RBP: ffffaab62af4f918 R08: 0000000000000007 R09: ffff8f52876581c0
[ 3730.466729] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3730.466731] R13: 0000000000000202 R14: ffff8f7180a32a40 R15: 0000000000000080
[ 3730.466733] FS:  00007f5a64ff9640(0000) GS:ffff8f71ee236000(0000) knlGS:0000000000000000
[ 3730.466735] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3730.466737] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3730.466738] PKRU: 55555554
[ 3730.466740] Call Trace:
[ 3730.466742]  <TASK>
[ 3730.466745]  ? __pfx___wbinvd+0x10/0x10
[ 3730.466752]  on_each_cpu_cond_mask+0x28/0x50
[ 3730.466756]  wbinvd_on_all_cpus+0x29/0x40
[ 3730.466760]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3730.466769]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3730.466822]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3730.466877]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3730.466884]  change_protection+0xfc9/0x1200
[ 3730.466890]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.466895]  ? update_curr_dl_se+0x3b/0x1e0
[ 3730.466899]  ? dl_server_update+0x2e/0x40
[ 3730.466904]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.466907]  ? pick_next_task_fair+0x4f/0x490
[ 3730.466911]  change_prot_numa+0x5b/0xe0
[ 3730.466919]  task_numa_work+0x3c5/0x9b0
[ 3730.466927]  task_work_run+0x64/0xa0
[ 3730.466932]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3730.466937]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3730.466990]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3730.467041]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.467044]  ? do_futex+0xc8/0x1d0
[ 3730.467047]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.467049]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.467053]  __x64_sys_ioctl+0xa0/0xf0
[ 3730.467058]  x64_sys_call+0x122e/0x2150
[ 3730.467060]  do_syscall_64+0x56/0x1e0
[ 3730.467066]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3730.467068] RIP: 0033:0x7f67bff03b4b
[ 3730.467071] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3730.467072] RSP: 002b:00007f5a64ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3730.467075] RAX: ffffffffffffffda RBX: 0000563db62230e0 RCX: 00007f67bff03b4b
[ 3730.467076] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000124
[ 3730.467077] RBP: 0000563db62230e0 R08: 0000000000000000 R09: 0000000000000000
[ 3730.467078] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3730.467080] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3730.467085]  </TASK>
[ 3730.470627] watchdog: BUG: soft lockup - CPU#82 stuck for 75s! [qemu-system-x86:31267]
[ 3730.470629] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3730.470688] CPU: 82 UID: 0 PID: 31267 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3730.470691] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3730.470692] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3730.470694] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3730.470697] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3730.470699] RSP: 0018:ffffaab62ad538b8 EFLAGS: 00000202
[ 3730.470701] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3730.470702] RDX: 0000000000000001 RSI: ffff8f717fff9a00 RDI: ffff8f5287658c00
[ 3730.470703] RBP: ffffaab62ad53918 R08: 0000000000000007 R09: ffff8f5287658750
[ 3730.470704] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3730.470706] R13: 0000000000000202 R14: ffff8f7180ab2a40 R15: 0000000000000080
[ 3730.470707] FS:  00007f5ae7fff640(0000) GS:ffff8f71ee2b6000(0000) knlGS:0000000000000000
[ 3730.470709] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3730.470710] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3730.470712] PKRU: 55555554
[ 3730.470713] Call Trace:
[ 3730.470714]  <TASK>
[ 3730.470716]  ? __pfx___wbinvd+0x10/0x10
[ 3730.470721]  on_each_cpu_cond_mask+0x28/0x50
[ 3730.470724]  wbinvd_on_all_cpus+0x29/0x40
[ 3730.470727]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3730.470736]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3730.470788]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3730.470844]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3730.470849]  change_protection+0xfc9/0x1200
[ 3730.470855]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.470858]  ? update_load_avg+0x84/0x780
[ 3730.470862]  ? write_ibpb+0x21/0x40
[ 3730.470865]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3730.470919]  change_prot_numa+0x5b/0xe0
[ 3730.470925]  task_numa_work+0x3c5/0x9b0
[ 3730.470933]  task_work_run+0x64/0xa0
[ 3730.470937]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3730.470941]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3730.470995]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3730.471047]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.471050]  ? do_futex+0xc8/0x1d0
[ 3730.471052]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.471054]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.471058]  __x64_sys_ioctl+0xa0/0xf0
[ 3730.471063]  x64_sys_call+0x122e/0x2150
[ 3730.471065]  do_syscall_64+0x56/0x1e0
[ 3730.471069]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3730.471071] RIP: 0033:0x7f67bff03b4b
[ 3730.471073] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3730.471075] RSP: 002b:00007f5ae7ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3730.471077] RAX: ffffffffffffffda RBX: 0000563db60c97b0 RCX: 00007f67bff03b4b
[ 3730.471078] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000e0
[ 3730.471079] RBP: 0000563db60c97b0 R08: 0000000000000000 R09: 0000000000000000
[ 3730.471080] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3730.471082] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3730.471087]  </TASK>
[ 3730.534626] watchdog: BUG: soft lockup - CPU#111 stuck for 75s! [qemu-system-x86:31376]
[ 3730.534631] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3730.534700] CPU: 111 UID: 0 PID: 31376 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3730.534705] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3730.534707] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3730.534709] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3730.534717] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3730.534719] RSP: 0018:ffffaab62b5b38b8 EFLAGS: 00000202
[ 3730.534721] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3730.534723] RDX: 0000000000000001 RSI: ffff8f717fff9da0 RDI: ffff8f7206c6ac70
[ 3730.534725] RBP: ffffaab62b5b3918 R08: 0000000000000007 R09: ffff8f7206c6adf0
[ 3730.534727] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3730.534728] R13: 0000000000000202 R14: ffff8f917ebf2a40 R15: 0000000000000080
[ 3730.534730] FS:  00007f5905ffb640(0000) GS:ffff8f91ec3f6000(0000) knlGS:0000000000000000
[ 3730.534732] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3730.534733] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3730.534735] PKRU: 55555554
[ 3730.534736] Call Trace:
[ 3730.534737]  <TASK>
[ 3730.534741]  ? __pfx___wbinvd+0x10/0x10
[ 3730.534748]  on_each_cpu_cond_mask+0x28/0x50
[ 3730.534752]  wbinvd_on_all_cpus+0x29/0x40
[ 3730.534756]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3730.534765]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3730.534819]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3730.534874]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3730.534881]  change_protection+0xfc9/0x1200
[ 3730.534886]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.534891]  ? update_curr_dl_se+0x3b/0x1e0
[ 3730.534895]  ? dl_server_update+0x2e/0x40
[ 3730.534899]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.534903]  ? pick_next_task_fair+0x4f/0x490
[ 3730.534907]  change_prot_numa+0x5b/0xe0
[ 3730.534914]  task_numa_work+0x3c5/0x9b0
[ 3730.534922]  task_work_run+0x64/0xa0
[ 3730.534927]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3730.534933]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3730.534985]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3730.535038]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.535040]  ? do_futex+0xc8/0x1d0
[ 3730.535042]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.535045]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3730.535048]  __x64_sys_ioctl+0xa0/0xf0
[ 3730.535054]  x64_sys_call+0x122e/0x2150
[ 3730.535056]  do_syscall_64+0x56/0x1e0
[ 3730.535062]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3730.535064] RIP: 0033:0x7f67bff03b4b
[ 3730.535066] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3730.535068] RSP: 002b:00007f5905ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3730.535070] RAX: ffffffffffffffda RBX: 0000563db6519e20 RCX: 00007f67bff03b4b
[ 3730.535072] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001ba
[ 3730.535073] RBP: 0000563db6519e20 R08: 0000000000000000 R09: 0000000000000000
[ 3730.535074] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3730.535076] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3730.535081]  </TASK>
[ 3738.554464] watchdog: BUG: soft lockup - CPU#119 stuck for 48s! [qemu-system-x86:30243]
[ 3738.554470] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3738.554541] CPU: 119 UID: 0 PID: 30243 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3738.554545] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3738.554547] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3738.554548] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3738.554554] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3738.554556] RSP: 0018:ffffaab6285c78b8 EFLAGS: 00000202
[ 3738.554558] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3738.554560] RDX: 0000000000000001 RSI: ffff8f717fff9ea0 RDI: ffff8f7207fa2e90
[ 3738.554561] RBP: ffffaab6285c7918 R08: 0000000000000007 R09: ffff8f7207fa2310
[ 3738.554562] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3738.554564] R13: 0000000000000202 R14: ffff8f917edf2a40 R15: 0000000000000080
[ 3738.554565] FS:  00007fd92adfd640(0000) GS:ffff8f91ec5f6000(0000) knlGS:0000000000000000
[ 3738.554567] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3738.554568] CR2: 0000000000000000 CR3: 000000208b92101d CR4: 0000000000770ef0
[ 3738.554570] PKRU: 55555554
[ 3738.554571] Call Trace:
[ 3738.554572]  <TASK>
[ 3738.554576]  ? __pfx___wbinvd+0x10/0x10
[ 3738.554582]  on_each_cpu_cond_mask+0x28/0x50
[ 3738.554585]  wbinvd_on_all_cpus+0x29/0x40
[ 3738.554590]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3738.554600]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3738.554657]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3738.554713]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3738.554719]  change_protection+0xfc9/0x1200
[ 3738.554724]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3738.554728]  ? native_apic_msr_write+0x32/0x40
[ 3738.554732]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3738.554735]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3738.554737]  ? timerqueue_add+0x72/0xd0
[ 3738.554743]  ? enqueue_hrtimer+0x3c/0x90
[ 3738.554747]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3738.554749]  ? hrtimer_start_range_ns+0x137/0x430
[ 3738.554755]  change_prot_numa+0x5b/0xe0
[ 3738.554759]  ? kvm_lapic_reg_write+0x82/0x7d0 [kvm]
[ 3738.554816]  task_numa_work+0x3c5/0x9b0
[ 3738.554825]  task_work_run+0x64/0xa0
[ 3738.554829]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3738.554834]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3738.554889]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3738.554941]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3738.554943]  ? do_futex+0xc8/0x1d0
[ 3738.554945]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3738.554948]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3738.554951]  __x64_sys_ioctl+0xa0/0xf0
[ 3738.554957]  x64_sys_call+0x122e/0x2150
[ 3738.554959]  do_syscall_64+0x56/0x1e0
[ 3738.554964]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3738.554966] RIP: 0033:0x7fe43bd03b4b
[ 3738.554968] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3738.554970] RSP: 002b:00007fd92adfc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3738.554973] RAX: ffffffffffffffda RBX: 0000555f8587ce30 RCX: 00007fe43bd03b4b
[ 3738.554974] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000020
[ 3738.554976] RBP: 0000555f8587ce30 R08: 0000000000000000 R09: 0000000000000000
[ 3738.554977] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3738.554978] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3738.554983]  </TASK>
[ 3749.457189] rcu: 	64-...!: (15000 ticks this GP) idle=b114/1/0x4000000000000000 softirq=31167/31167 fqs=1494
[ 3749.467017] rcu: 	(t=26506 jiffies g=391897 q=289 ncpus=128)
[ 3749.472673] rcu: rcu_preempt kthread starved for 19010 jiffies! g391897 f0x0 RCU_GP_DOING_FQS(6) ->state=0x0 ->cpu=45
[ 3749.483273] rcu: 	Unless rcu_preempt kthread gets sufficient CPU time, OOM is now expected behavior.
[ 3749.492398] rcu: RCU grace-period kthread stack dump:
[ 3749.497452] task:rcu_preempt     state:R  running task     stack:0     pid:15    tgid:15    ppid:2      task_flags:0x208040 flags:0x00004808
[ 3749.510053] Call Trace:
[ 3749.512506]  <TASK>
[ 3749.514611]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.519414]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3749.523953]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.528744]  ? x2apic_send_IPI+0x2a/0x30
[ 3749.532672]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.537464]  native_send_call_func_single_ipi+0x17/0x20
[ 3749.542691]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.547485]  ? _raw_spin_lock+0x2d/0x40
[ 3749.551329]  ? _raw_spin_rq_lock_irqsave+0x21/0x40
[ 3749.556123]  ? resched_cpu+0x2f/0x80
[ 3749.559703]  ? force_qs_rnp+0x270/0x300
[ 3749.563541]  ? __pfx_rcu_watching_snap_recheck+0x10/0x10
[ 3749.568854]  ? rcu_gp_fqs_loop+0x344/0x4d0
[ 3749.572954]  ? rcu_gp_kthread+0xd6/0x160
[ 3749.576879]  ? kthread+0x10b/0x220
[ 3749.580285]  ? __pfx_rcu_gp_kthread+0x10/0x10
[ 3749.584644]  ? __pfx_kthread+0x10/0x10
[ 3749.588396]  ? ret_from_fork+0x8e/0x100
[ 3749.592235]  ? __pfx_kthread+0x10/0x10
[ 3749.595990]  ? ret_from_fork_asm+0x1a/0x30
[ 3749.600090]  </TASK>
[ 3749.602281] rcu: Stack dump where RCU GP kthread last ran:
[ 3749.607766] Sending NMI from CPU 64 to CPUs 45:
[ 3749.612301] NMI backtrace for cpu 45
[ 3749.612308] CPU: 45 UID: 0 PID: 15 Comm: rcu_preempt Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3749.612313] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3749.612315] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3749.612317] RIP: 0010:native_queued_spin_lock_slowpath+0x81/0x2d0
[ 3749.612325] Code: c2 41 8b 04 24 0f b6 d2 c1 e2 08 30 e4 09 d0 a9 00 01 ff ff 75 63 85 c0 74 14 41 0f b6 04 24 84 c0 74 0b f3 90 41 0f b6 04 24 <84> c0 75 f5 b8 01 00 00 00 66 41 89 04 24 5b 41 5c 41 5d 41 5e 5d
[ 3749.612327] RSP: 0018:ffffaab60024fd78 EFLAGS: 00000002
[ 3749.612330] RAX: 0000000000000001 RBX: 0000000000000014 RCX: 0000000000000001
[ 3749.612332] RDX: 0000000000000000 RSI: 0000000000000000 RDI: ffff8f7180331840
[ 3749.612333] RBP: ffffaab60024fd98 R08: 0000000000000800 R09: 0000000000000000
[ 3749.612335] R10: 0000000000000000 R11: 0000000000000001 R12: ffff8f7180331840
[ 3749.612336] R13: ffffffff9214e980 R14: 0000000000000001 R15: 0000000000000014
[ 3749.612338] FS:  0000000000000000(0000) GS:ffff8f91ebb76000(0000) knlGS:0000000000000000
[ 3749.612340] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3749.612341] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3749.612343] PKRU: 55555554
[ 3749.612344] Call Trace:
[ 3749.612346]  <TASK>
[ 3749.612350]  _raw_spin_lock+0x2d/0x40
[ 3749.612353]  _raw_spin_rq_lock_irqsave+0x21/0x40
[ 3749.612359]  resched_cpu+0x2f/0x80
[ 3749.612363]  force_qs_rnp+0x270/0x300
[ 3749.612367]  ? __pfx_rcu_watching_snap_recheck+0x10/0x10
[ 3749.612372]  rcu_gp_fqs_loop+0x344/0x4d0
[ 3749.612375]  rcu_gp_kthread+0xd6/0x160
[ 3749.612379]  kthread+0x10b/0x220
[ 3749.612383]  ? __pfx_rcu_gp_kthread+0x10/0x10
[ 3749.612385]  ? __pfx_kthread+0x10/0x10
[ 3749.612389]  ret_from_fork+0x8e/0x100
[ 3749.612393]  ? __pfx_kthread+0x10/0x10
[ 3749.612396]  ret_from_fork_asm+0x1a/0x30
[ 3749.612402]  </TASK>
[ 3749.613292] Sending NMI from CPU 64 to CPUs 7:
[ 3749.613298] NMI backtrace for cpu 7
[ 3749.613303] CPU: 7 UID: 0 PID: 31232 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3749.613308] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3749.613309] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3749.613311] RIP: 0010:native_queued_spin_lock_slowpath+0x81/0x2d0
[ 3749.613315] Code: c2 41 8b 04 24 0f b6 d2 c1 e2 08 30 e4 09 d0 a9 00 01 ff ff 75 63 85 c0 74 14 41 0f b6 04 24 84 c0 74 0b f3 90 41 0f b6 04 24 <84> c0 75 f5 b8 01 00 00 00 66 41 89 04 24 5b 41 5c 41 5d 41 5e 5d
[ 3749.613318] RSP: 0018:ffffaab62ac07c20 EFLAGS: 00000002
[ 3749.613320] RAX: 0000000000000001 RBX: ffffffff927fb840 RCX: 0000000000000000
[ 3749.613322] RDX: 0000000000000000 RSI: 0000000000000000 RDI: ffff8f7aeeeca68c
[ 3749.613323] RBP: ffffaab62ac07c40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3749.613325] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3749.613326] R13: ffff8f7aeeeca68c R14: ffffaab629a2a128 R15: 0000000000000036
[ 3749.613328] FS:  00007f5b87fff640(0000) GS:ffff8f71ed7f6000(0000) knlGS:0000000000000000
[ 3749.613330] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3749.613331] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3749.613333] PKRU: 55555554
[ 3749.613334] Call Trace:
[ 3749.613335]  <TASK>
[ 3749.613338]  _raw_spin_lock_irqsave+0x46/0x60
[ 3749.613342]  yield_to+0x36/0x1b0
[ 3749.613349]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3749.613402]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3749.613454]  pause_interception+0x91/0x120 [kvm_amd]
[ 3749.613464]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3749.613472]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3749.613480]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3749.613535]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3749.613587]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.613590]  ? do_futex+0xc8/0x1d0
[ 3749.613593]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.613596]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.613599]  __x64_sys_ioctl+0xa0/0xf0
[ 3749.613605]  x64_sys_call+0x122e/0x2150
[ 3749.613608]  do_syscall_64+0x56/0x1e0
[ 3749.613612]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3749.613614] RIP: 0033:0x7f67bff03b4b
[ 3749.613617] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3749.613619] RSP: 002b:00007f5b87ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3749.613621] RAX: ffffffffffffffda RBX: 0000563db5f67cd0 RCX: 00007f67bff03b4b
[ 3749.613622] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000009a
[ 3749.613623] RBP: 0000563db5f67cd0 R08: 0000000000000000 R09: 0000000000000000
[ 3749.613625] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3749.613626] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3749.613631]  </TASK>
[ 3749.614289] Sending NMI from CPU 64 to CPUs 8:
[ 3749.614296] NMI backtrace for cpu 8
[ 3749.614304] CPU: 8 UID: 0 PID: 31265 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3749.614309] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3749.614310] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3749.614312] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3749.614321] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3749.614323] RSP: 0018:ffffaab62ad43c20 EFLAGS: 00000046
[ 3749.614326] RAX: 0000000000000000 RBX: ffff8f7180032700 RCX: 000000000000003f
[ 3749.614328] RDX: ffff8f7180032700 RSI: 0000000001000100 RDI: ffff8f7aeeeca68c
[ 3749.614329] RBP: ffffaab62ad43c40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3749.614331] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3749.614333] R13: 0000000000240000 R14: 0000000000240000 R15: 000000000000001c
[ 3749.614334] FS:  00007f5b057fa640(0000) GS:ffff8f71ed836000(0000) knlGS:0000000000000000
[ 3749.614336] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3749.614338] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3749.614339] PKRU: 55555554
[ 3749.614340] Call Trace:
[ 3749.614342]  <TASK>
[ 3749.614346]  _raw_spin_lock_irqsave+0x46/0x60
[ 3749.614350]  yield_to+0x36/0x1b0
[ 3749.614357]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3749.614410]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3749.614464]  pause_interception+0x91/0x120 [kvm_amd]
[ 3749.614473]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3749.614481]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3749.614489]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3749.614543]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3749.614596]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.614601]  ? do_futex+0xc8/0x1d0
[ 3749.614605]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.614607]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.614611]  __x64_sys_ioctl+0xa0/0xf0
[ 3749.614618]  x64_sys_call+0x122e/0x2150
[ 3749.614620]  do_syscall_64+0x56/0x1e0
[ 3749.614625]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3749.614627] RIP: 0033:0x7f67bff03b4b
[ 3749.614629] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3749.614631] RSP: 002b:00007f5b057f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3749.614633] RAX: ffffffffffffffda RBX: 0000563db60b5810 RCX: 00007f67bff03b4b
[ 3749.614635] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000dc
[ 3749.614636] RBP: 0000563db60b5810 R08: 0000000000000000 R09: 0000000000000000
[ 3749.614637] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3749.614638] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3749.614644]  </TASK>
[ 3749.615284] Sending NMI from CPU 64 to CPUs 12:
[ 3749.615290] NMI backtrace for cpu 12
[ 3749.615295] CPU: 12 UID: 0 PID: 31256 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3749.615299] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3749.615300] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3749.615302] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3749.615306] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3749.615308] RSP: 0018:ffffaab62acfb8b8 EFLAGS: 00000202
[ 3749.615310] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3749.615312] RDX: 0000000000000001 RSI: ffff8f717fff9140 RDI: ffff8f5280a32920
[ 3749.615313] RBP: ffffaab62acfb918 R08: 0000000000000007 R09: ffff8f5280a320d0
[ 3749.615315] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3749.615316] R13: 0000000000000202 R14: ffff8f7180132a40 R15: 0000000000000080
[ 3749.615317] FS:  00007f5b267fc640(0000) GS:ffff8f71ed936000(0000) knlGS:0000000000000000
[ 3749.615319] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3749.615321] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3749.615322] PKRU: 55555554
[ 3749.615323] Call Trace:
[ 3749.615324]  <TASK>
[ 3749.615326]  ? __pfx___wbinvd+0x10/0x10
[ 3749.615333]  on_each_cpu_cond_mask+0x28/0x50
[ 3749.615336]  wbinvd_on_all_cpus+0x29/0x40
[ 3749.615340]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3749.615348]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3749.615402]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3749.615458]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3749.615463]  change_protection+0xfc9/0x1200
[ 3749.615469]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.615473]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.615476]  ? update_load_avg+0x84/0x780
[ 3749.615481]  ? write_ibpb+0x21/0x40
[ 3749.615485]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3749.615537]  change_prot_numa+0x5b/0xe0
[ 3749.615545]  task_numa_work+0x3c5/0x9b0
[ 3749.615552]  task_work_run+0x64/0xa0
[ 3749.615557]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3749.615562]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3749.615617]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3749.615668]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.615671]  ? do_futex+0xc8/0x1d0
[ 3749.615673]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.615676]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.615679]  __x64_sys_ioctl+0xa0/0xf0
[ 3749.615684]  x64_sys_call+0x122e/0x2150
[ 3749.615686]  do_syscall_64+0x56/0x1e0
[ 3749.615690]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3749.615692] RIP: 0033:0x7f67bff03b4b
[ 3749.615694] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3749.615696] RSP: 002b:00007f5b267fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3749.615698] RAX: ffffffffffffffda RBX: 0000563db6059ff0 RCX: 00007f67bff03b4b
[ 3749.615699] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000ca
[ 3749.615700] RBP: 0000563db6059ff0 R08: 0000000000000000 R09: 0000000000000000
[ 3749.615702] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3749.615703] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3749.615708]  </TASK>
[ 3749.616281] Sending NMI from CPU 64 to CPUs 16:
[ 3749.616289] NMI backtrace for cpu 16
[ 3749.616295] CPU: 16 UID: 0 PID: 31399 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3749.616301] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3749.616302] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3749.616304] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3749.616313] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3749.616315] RSP: 0018:ffffaab62c183c20 EFLAGS: 00000046
[ 3749.616318] RAX: 0000000000000000 RBX: ffff8f7180232700 RCX: 000000000000007f
[ 3749.616320] RDX: ffff8f7180232700 RSI: 0000000002000100 RDI: ffff8f7aeeeca68c
[ 3749.616322] RBP: ffffaab62c183c40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3749.616323] R10: 0000000000001770 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3749.616325] R13: 0000000000440000 R14: 0000000000440000 R15: 0000000000000040
[ 3749.616327] FS:  00007f58a4ff9640(0000) GS:ffff8f71eda36000(0000) knlGS:0000000000000000
[ 3749.616329] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3749.616330] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3749.616332] PKRU: 55555554
[ 3749.616333] Call Trace:
[ 3749.616335]  <TASK>
[ 3749.616339]  _raw_spin_lock_irqsave+0x46/0x60
[ 3749.616343]  yield_to+0x36/0x1b0
[ 3749.616350]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3749.616404]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3749.616457]  pause_interception+0x91/0x120 [kvm_amd]
[ 3749.616466]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3749.616474]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3749.616482]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3749.616537]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3749.616590]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.616594]  ? do_futex+0xc8/0x1d0
[ 3749.616599]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.616601]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.616605]  __x64_sys_ioctl+0xa0/0xf0
[ 3749.616611]  x64_sys_call+0x122e/0x2150
[ 3749.616614]  do_syscall_64+0x56/0x1e0
[ 3749.616618]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3749.616620] RIP: 0033:0x7f67bff03b4b
[ 3749.616623] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3749.616625] RSP: 002b:00007f58a4ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3749.616627] RAX: ffffffffffffffda RBX: 0000563db6601d50 RCX: 00007f67bff03b4b
[ 3749.616629] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001e8
[ 3749.616630] RBP: 0000563db6601d50 R08: 0000000000000000 R09: 0000000000000000
[ 3749.616631] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3749.616632] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3749.616638]  </TASK>
[ 3749.617278] Sending NMI from CPU 64 to CPUs 20:
[ 3749.617283] NMI backtrace for cpu 20
[ 3749.617286] CPU: 20 UID: 0 PID: 31288 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3749.617290] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3749.617291] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3749.617293] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3749.617297] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3749.617299] RSP: 0018:ffffaab62aee7c08 EFLAGS: 00000046
[ 3749.617301] RAX: 0000000000000000 RBX: ffff8f7180332700 RCX: 0000000000000020
[ 3749.617302] RDX: ffff8f7180332700 RSI: 0000000000840100 RDI: ffff8f917e831840
[ 3749.617304] RBP: ffffaab62aee7c28 R08: 0000000000000001 R09: 0000000000000bb8
[ 3749.617305] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f917e831840
[ 3749.617306] R13: 0000000000540000 R14: 0000000000540000 R15: ffff8f7180331840
[ 3749.617308] FS:  00007f5a87fff640(0000) GS:ffff8f71edb36000(0000) knlGS:0000000000000000
[ 3749.617309] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3749.617311] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3749.617312] PKRU: 55555554
[ 3749.617313] Call Trace:
[ 3749.617314]  <TASK>
[ 3749.617316]  _raw_spin_lock+0x2d/0x40
[ 3749.617319]  double_rq_lock+0x54/0x80
[ 3749.617324]  yield_to+0x76/0x1b0
[ 3749.617328]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3749.617380]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3749.617433]  pause_interception+0x91/0x120 [kvm_amd]
[ 3749.617441]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3749.617449]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3749.617457]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3749.617512]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3749.617564]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.617567]  ? do_futex+0xc8/0x1d0
[ 3749.617570]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.617572]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.617576]  __x64_sys_ioctl+0xa0/0xf0
[ 3749.617580]  x64_sys_call+0x122e/0x2150
[ 3749.617583]  do_syscall_64+0x56/0x1e0
[ 3749.617586]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3749.617589] RIP: 0033:0x7f67bff03b4b
[ 3749.617591] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3749.617593] RSP: 002b:00007f5a87ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3749.617595] RAX: ffffffffffffffda RBX: 0000563db619ed40 RCX: 00007f67bff03b4b
[ 3749.617596] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000010a
[ 3749.617597] RBP: 0000563db619ed40 R08: 0000000000000000 R09: 0000000000000000
[ 3749.617598] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3749.617600] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3749.617605]  </TASK>
[ 3749.618274] Sending NMI from CPU 64 to CPUs 32:
[ 3749.618279] NMI backtrace for cpu 32
[ 3749.618286] CPU: 32 UID: 0 PID: 31415 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3749.618291] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3749.618292] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3749.618294] RIP: 0010:native_queued_spin_lock_slowpath+0x21b/0x2d0
[ 3749.618302] Code: c6 01 41 c1 e5 10 41 c1 e6 12 45 09 f5 44 89 e8 c1 e8 10 66 41 87 44 24 02 89 c1 c1 e1 10 75 5f 31 c9 eb 02 f3 90 41 8b 04 24 <66> 85 c0 75 f5 89 c6 66 31 f6 44 39 ee 0f 84 87 00 00 00 41 c6 04
[ 3749.618305] RSP: 0018:ffffaab60d214d68 EFLAGS: 00000002
[ 3749.618308] RAX: 0000000000980101 RBX: ffff8f917e032700 RCX: 0000000000000000
[ 3749.618310] RDX: ffff8f917e032700 RSI: 0000000000000100 RDI: ffff8f917e831840
[ 3749.618312] RBP: ffffaab60d214d88 R08: 0000000000000080 R09: fffffffe00000000
[ 3749.618313] R10: 0000000000000006 R11: 000000000001b800 R12: ffff8f917e831840
[ 3749.618315] R13: 0000000000840000 R14: 0000000000840000 R15: ffff8f917e831840
[ 3749.618316] FS:  00007f58477fe640(0000) GS:ffff8f91eb836000(0000) knlGS:0000000000000000
[ 3749.618318] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3749.618320] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3749.618321] PKRU: 55555554
[ 3749.618323] Call Trace:
[ 3749.618324]  <IRQ>
[ 3749.618328]  _raw_spin_lock+0x2d/0x40
[ 3749.618332]  raw_spin_rq_lock_nested+0x19/0x30
[ 3749.618337]  _raw_spin_rq_lock_irqsave+0x1c/0x30
[ 3749.618340]  sched_balance_rq+0x616/0xf80
[ 3749.618350]  sched_balance_domains+0x262/0x370
[ 3749.618355]  sched_balance_softirq+0x5a/0x80
[ 3749.618357]  handle_softirqs+0xc8/0x290
[ 3749.618363]  __irq_exit_rcu+0x96/0xc0
[ 3749.618366]  irq_exit_rcu+0x12/0x20
[ 3749.618369]  sysvec_apic_timer_interrupt+0x83/0x90
[ 3749.618374]  </IRQ>
[ 3749.618374]  <TASK>
[ 3749.618376]  asm_sysvec_apic_timer_interrupt+0x1f/0x30
[ 3749.618379] RIP: 0010:kvm_arch_vcpu_ioctl_run+0xbd4/0x1ba0 [kvm]
[ 3749.618436] Code: b8 03 00 00 4c 89 e7 e8 8a 30 04 00 49 83 bc 24 f8 07 00 00 00 0f 85 8f 03 00 00 41 c6 84 24 92 0a 00 00 01 fb 0f 1f 44 00 00 <49> 83 84 24 e0 15 00 00 01 fa 0f 1f 44 00 00 41 c6 84 24 92 0a 00
[ 3749.618438] RSP: 0018:ffffaab62b5f3da0 EFLAGS: 00000246
[ 3749.618439] RAX: ffff8f7aeea2c000 RBX: ffff8f7aef974d40 RCX: 00000000868c3578
[ 3749.618441] RDX: 0000000100000000 RSI: 0000000279439ba1 RDI: ffff8f5c7ac8ce18
[ 3749.618442] RBP: ffffaab62b5f3e08 R08: 0000000000000000 R09: 0000000000000000
[ 3749.618443] R10: 0000000000000000 R11: 0000000000000000 R12: ffff8f5c7ac8ce18
[ 3749.618445] R13: 0000000000000000 R14: 0000000000000000 R15: ffff8f7248db8000
[ 3749.618453]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3749.618505]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.618508]  ? do_futex+0xc8/0x1d0
[ 3749.618512]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.618514]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.618518]  __x64_sys_ioctl+0xa0/0xf0
[ 3749.618524]  x64_sys_call+0x122e/0x2150
[ 3749.618527]  do_syscall_64+0x56/0x1e0
[ 3749.618532]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3749.618534] RIP: 0033:0x7f67bff03b4b
[ 3749.618536] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3749.618538] RSP: 002b:00007f58477fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3749.618540] RAX: ffffffffffffffda RBX: 0000563db66a4d50 RCX: 00007f67bff03b4b
[ 3749.618541] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000208
[ 3749.618543] RBP: 0000563db66a4d50 R08: 0000000000000000 R09: 0000000000000000
[ 3749.618544] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3749.618545] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3749.618550]  </TASK>
[ 3749.619270] Sending NMI from CPU 64 to CPUs 33:
[ 3749.619275] NMI backtrace for cpu 33
[ 3749.619279] CPU: 33 UID: 0 PID: 31401 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3749.619283] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3749.619284] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3749.619286] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3749.619290] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3749.619292] RSP: 0018:ffffaab62bf5fc20 EFLAGS: 00000046
[ 3749.619295] RAX: 0000000000000000 RBX: ffff8f917e072700 RCX: 000000000000005c
[ 3749.619296] RDX: ffff8f917e072700 RSI: 0000000001740100 RDI: ffff8f7aeeeca68c
[ 3749.619298] RBP: ffffaab62bf5fc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3749.619299] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3749.619300] R13: 0000000000880000 R14: 0000000000880000 R15: 0000000000000055
[ 3749.619302] FS:  00007f58877fe640(0000) GS:ffff8f91eb876000(0000) knlGS:0000000000000000
[ 3749.619303] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3749.619305] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3749.619306] PKRU: 55555554
[ 3749.619307] Call Trace:
[ 3749.619308]  <TASK>
[ 3749.619311]  _raw_spin_lock_irqsave+0x46/0x60
[ 3749.619314]  yield_to+0x36/0x1b0
[ 3749.619319]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3749.619370]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3749.619422]  pause_interception+0x91/0x120 [kvm_amd]
[ 3749.619430]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3749.619438]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3749.619446]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3749.619500]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3749.619551]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.619554]  ? do_futex+0xc8/0x1d0
[ 3749.619557]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.619559]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.619563]  __x64_sys_ioctl+0xa0/0xf0
[ 3749.619568]  x64_sys_call+0x122e/0x2150
[ 3749.619570]  do_syscall_64+0x56/0x1e0
[ 3749.619573]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3749.619575] RIP: 0033:0x7f67bff03b4b
[ 3749.619578] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3749.619579] RSP: 002b:00007f58877fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3749.619581] RAX: ffffffffffffffda RBX: 0000563db6616830 RCX: 00007f67bff03b4b
[ 3749.619583] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001ec
[ 3749.619584] RBP: 0000563db6616830 R08: 0000000000000000 R09: 0000000000000000
[ 3749.619585] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3749.619586] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3749.619591]  </TASK>
[ 3749.620266] Sending NMI from CPU 64 to CPUs 34:
[ 3749.620272] NMI backtrace for cpu 34
[ 3749.620275] CPU: 34 UID: 0 PID: 31391 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3749.620279] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3749.620280] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3749.620281] RIP: 0010:native_queued_spin_lock_slowpath+0x29a/0x2d0
[ 3749.620285] Code: c1 e9 12 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 <8b> 42 08 85 c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09
[ 3749.620287] RSP: 0018:ffffaab60d27cd68 EFLAGS: 00000046
[ 3749.620289] RAX: 0000000000000000 RBX: ffff8f917e0b2700 RCX: 0000000000000024
[ 3749.620291] RDX: ffff8f917e0b2700 RSI: 0000000000940100 RDI: ffff8f917e831840
[ 3749.620292] RBP: ffffaab60d27cd88 R08: 0000000000000080 R09: fffffffe00000000
[ 3749.620293] R10: 0000000000000006 R11: 000000000003a78b R12: ffff8f917e831840
[ 3749.620294] R13: 00000000008c0000 R14: 00000000008c0000 R15: ffff8f917e831840
[ 3749.620296] FS:  00007f58c57fa640(0000) GS:ffff8f91eb8b6000(0000) knlGS:0000000000000000
[ 3749.620298] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3749.620299] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3749.620300] PKRU: 55555554
[ 3749.620301] Call Trace:
[ 3749.620302]  <IRQ>
[ 3749.620305]  _raw_spin_lock+0x2d/0x40
[ 3749.620308]  raw_spin_rq_lock_nested+0x19/0x30
[ 3749.620310]  _raw_spin_rq_lock_irqsave+0x1c/0x30
[ 3749.620313]  sched_balance_rq+0x616/0xf80
[ 3749.620322]  sched_balance_domains+0x262/0x370
[ 3749.620326]  sched_balance_softirq+0x5a/0x80
[ 3749.620329]  handle_softirqs+0xc8/0x290
[ 3749.620333]  __irq_exit_rcu+0x96/0xc0
[ 3749.620336]  irq_exit_rcu+0x12/0x20
[ 3749.620339]  sysvec_apic_timer_interrupt+0x83/0x90
[ 3749.620343]  </IRQ>
[ 3749.620343]  <TASK>
[ 3749.620345]  asm_sysvec_apic_timer_interrupt+0x1f/0x30
[ 3749.620347] RIP: 0010:kvm_arch_vcpu_ioctl_run+0xbd4/0x1ba0 [kvm]
[ 3749.620400] Code: b8 03 00 00 4c 89 e7 e8 8a 30 04 00 49 83 bc 24 f8 07 00 00 00 0f 85 8f 03 00 00 41 c6 84 24 92 0a 00 00 01 fb 0f 1f 44 00 00 <49> 83 84 24 e0 15 00 00 01 fa 0f 1f 44 00 00 41 c6 84 24 92 0a 00
[ 3749.620402] RSP: 0018:ffffaab62c1c3da0 EFLAGS: 00000246
[ 3749.620403] RAX: ffff8f7aeee30000 RBX: ffff8f7853e9b380 RCX: 00000000af007ff0
[ 3749.620405] RDX: 0000000100000000 RSI: 00000002a1b7e619 RDI: ffff8f5f750a3410
[ 3749.620406] RBP: ffffaab62c1c3e08 R08: 0000000000000000 R09: 0000000000000000
[ 3749.620407] R10: 0000000000000000 R11: 0000000000000000 R12: ffff8f5f750a3410
[ 3749.620409] R13: 0000000000000000 R14: 0000000000000000 R15: ffff8f8bd7983000
[ 3749.620417]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3749.620470]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.620473]  ? do_futex+0xc8/0x1d0
[ 3749.620475]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.620478]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.620481]  __x64_sys_ioctl+0xa0/0xf0
[ 3749.620486]  x64_sys_call+0x122e/0x2150
[ 3749.620488]  do_syscall_64+0x56/0x1e0
[ 3749.620492]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3749.620494] RIP: 0033:0x7f67bff03b4b
[ 3749.620496] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3749.620498] RSP: 002b:00007f58c57f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3749.620500] RAX: ffffffffffffffda RBX: 0000563db65b15a0 RCX: 00007f67bff03b4b
[ 3749.620501] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001d8
[ 3749.620502] RBP: 0000563db65b15a0 R08: 0000000000000000 R09: 0000000000000000
[ 3749.620503] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3749.620505] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3749.620510]  </TASK>
[ 3749.621262] Sending NMI from CPU 64 to CPUs 35:
[ 3749.621268] NMI backtrace for cpu 35
[ 3749.621270] CPU: 35 UID: 0 PID: 31372 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3749.621275] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3749.621276] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3749.621277] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3749.621281] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3749.621283] RSP: 0018:ffffaab60d2b0d68 EFLAGS: 00000046
[ 3749.621285] RAX: 0000000000000000 RBX: ffff8f917e0f2700 RCX: 0000000000000026
[ 3749.621286] RDX: ffff8f917e0f2700 RSI: 00000000009c0100 RDI: ffff8f917e831840
[ 3749.621288] RBP: ffffaab60d2b0d88 R08: 0000000000000080 R09: fffffffe00000000
[ 3749.621289] R10: 0000000000000006 R11: 0000000000000000 R12: ffff8f917e831840
[ 3749.621290] R13: 0000000000900000 R14: 0000000000900000 R15: ffff8f917e831840
[ 3749.621292] FS:  00007f5907fff640(0000) GS:ffff8f91eb8f6000(0000) knlGS:0000000000000000
[ 3749.621293] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3749.621295] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3749.621296] PKRU: 55555554
[ 3749.621297] Call Trace:
[ 3749.621298]  <IRQ>
[ 3749.621300]  _raw_spin_lock+0x2d/0x40
[ 3749.621303]  raw_spin_rq_lock_nested+0x19/0x30
[ 3749.621306]  _raw_spin_rq_lock_irqsave+0x1c/0x30
[ 3749.621308]  sched_balance_rq+0x616/0xf80
[ 3749.621317]  sched_balance_domains+0x262/0x370
[ 3749.621321]  sched_balance_softirq+0x5a/0x80
[ 3749.621324]  handle_softirqs+0xc8/0x290
[ 3749.621328]  __irq_exit_rcu+0x96/0xc0
[ 3749.621331]  irq_exit_rcu+0x12/0x20
[ 3749.621334]  sysvec_apic_timer_interrupt+0x83/0x90
[ 3749.621338]  </IRQ>
[ 3749.621338]  <TASK>
[ 3749.621340]  asm_sysvec_apic_timer_interrupt+0x1f/0x30
[ 3749.621342] RIP: 0010:kvm_arch_vcpu_ioctl_run+0xbd4/0x1ba0 [kvm]
[ 3749.621394] Code: b8 03 00 00 4c 89 e7 e8 8a 30 04 00 49 83 bc 24 f8 07 00 00 00 0f 85 8f 03 00 00 41 c6 84 24 92 0a 00 00 01 fb 0f 1f 44 00 00 <49> 83 84 24 e0 15 00 00 01 fa 0f 1f 44 00 00 41 c6 84 24 92 0a 00
[ 3749.621396] RSP: 0018:ffffaab62b5abda0 EFLAGS: 00000246
[ 3749.621398] RAX: ffff8f7aef362000 RBX: ffff8f7aef33cd40 RCX: 000000008f972150
[ 3749.621399] RDX: 0000000100000000 RSI: 00000002824e8779 RDI: ffff8f7aef250000
[ 3749.621401] RBP: ffffaab62b5abe08 R08: 0000000000000000 R09: 0000000000000000
[ 3749.621402] R10: 0000000000000000 R11: 0000000000000000 R12: ffff8f7aef250000
[ 3749.621403] R13: 0000000000000000 R14: 0000000000000000 R15: ffff8f770cf8c000
[ 3749.621411]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3749.621464]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.621467]  ? do_futex+0xc8/0x1d0
[ 3749.621469]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.621472]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.621475]  __x64_sys_ioctl+0xa0/0xf0
[ 3749.621480]  x64_sys_call+0x122e/0x2150
[ 3749.621482]  do_syscall_64+0x56/0x1e0
[ 3749.621486]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3749.621488] RIP: 0033:0x7f67bff03b4b
[ 3749.621490] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3749.621492] RSP: 002b:00007f5907ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3749.621494] RAX: ffffffffffffffda RBX: 0000563db64f1790 RCX: 00007f67bff03b4b
[ 3749.621495] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001b2
[ 3749.621496] RBP: 0000563db64f1790 R08: 0000000000000000 R09: 0000000000000000
[ 3749.621498] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3749.621499] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3749.621504]  </TASK>
[ 3749.622258] Sending NMI from CPU 64 to CPUs 36:
[ 3749.622266] NMI backtrace for cpu 36
[ 3749.622272] CPU: 36 UID: 0 PID: 31393 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3749.622278] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3749.622279] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3749.622280] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3749.622286] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3749.622288] RSP: 0018:ffffaab60d2e4d68 EFLAGS: 00000046
[ 3749.622291] RAX: 0000000000000000 RBX: ffff8f917e132700 RCX: 0000000000000023
[ 3749.622293] RDX: ffff8f917e132700 RSI: 0000000000900100 RDI: ffff8f917e831840
[ 3749.622294] RBP: ffffaab60d2e4d88 R08: 0000000000000080 R09: fffffffe00000000
[ 3749.622296] R10: 0000000000000006 R11: 0000000000000000 R12: ffff8f917e831840
[ 3749.622297] R13: 0000000000940000 R14: 0000000000940000 R15: ffff8f917e831840
[ 3749.622299] FS:  00007f58a7fff640(0000) GS:ffff8f91eb936000(0000) knlGS:0000000000000000
[ 3749.622301] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3749.622303] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3749.622304] PKRU: 55555554
[ 3749.622306] Call Trace:
[ 3749.622307]  <IRQ>
[ 3749.622311]  _raw_spin_lock+0x2d/0x40
[ 3749.622315]  raw_spin_rq_lock_nested+0x19/0x30
[ 3749.622318]  _raw_spin_rq_lock_irqsave+0x1c/0x30
[ 3749.622321]  sched_balance_rq+0x616/0xf80
[ 3749.622331]  sched_balance_domains+0x262/0x370
[ 3749.622336]  sched_balance_softirq+0x5a/0x80
[ 3749.622339]  handle_softirqs+0xc8/0x290
[ 3749.622344]  __irq_exit_rcu+0x96/0xc0
[ 3749.622347]  irq_exit_rcu+0x12/0x20
[ 3749.622350]  sysvec_apic_timer_interrupt+0x83/0x90
[ 3749.622354]  </IRQ>
[ 3749.622355]  <TASK>
[ 3749.622357]  asm_sysvec_apic_timer_interrupt+0x1f/0x30
[ 3749.622359] RIP: 0010:kvm_arch_vcpu_ioctl_run+0xbd4/0x1ba0 [kvm]
[ 3749.622439] Code: b8 03 00 00 4c 89 e7 e8 8a 30 04 00 49 83 bc 24 f8 07 00 00 00 0f 85 8f 03 00 00 41 c6 84 24 92 0a 00 00 01 fb 0f 1f 44 00 00 <49> 83 84 24 e0 15 00 00 01 fa 0f 1f 44 00 00 41 c6 84 24 92 0a 00
[ 3749.622441] RSP: 0018:ffffaab62c1b3da0 EFLAGS: 00000246
[ 3749.622443] RAX: ffff8f7aeee6a000 RBX: ffff8f7853e98000 RCX: 000000008f972858
[ 3749.622445] RDX: 0000000100000000 RSI: 00000002824e8e81 RDI: ffff8f5f7dd20000
[ 3749.622446] RBP: ffffaab62c1b3e08 R08: 0000000000000000 R09: 0000000000000000
[ 3749.622448] R10: 0000000000000000 R11: 0000000000000000 R12: ffff8f5f7dd20000
[ 3749.622449] R13: 0000000000000000 R14: 0000000000000000 R15: ffff8f78fb262000
[ 3749.622460]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3749.622530]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.622533]  ? do_futex+0xc8/0x1d0
[ 3749.622536]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.622539]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.622543]  __x64_sys_ioctl+0xa0/0xf0
[ 3749.622548]  x64_sys_call+0x122e/0x2150
[ 3749.622551]  do_syscall_64+0x56/0x1e0
[ 3749.622555]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3749.622557] RIP: 0033:0x7f67bff03b4b
[ 3749.622560] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3749.622562] RSP: 002b:00007f58a7ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3749.622564] RAX: ffffffffffffffda RBX: 0000563db65c5510 RCX: 00007f67bff03b4b
[ 3749.622566] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001dc
[ 3749.622567] RBP: 0000563db65c5510 R08: 0000000000000000 R09: 0000000000000000
[ 3749.622569] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3749.622570] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3749.622576]  </TASK>
[ 3749.623254] Sending NMI from CPU 64 to CPUs 38:
[ 3749.623259] NMI backtrace for cpu 38
[ 3749.623263] CPU: 38 UID: 0 PID: 31374 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3749.623267] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3749.623268] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3749.623269] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3749.623273] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3749.623275] RSP: 0018:ffffaab60d34cd68 EFLAGS: 00000046
[ 3749.623277] RAX: 0000000000000000 RBX: ffff8f917e1b2700 RCX: 0000000000000014
[ 3749.623278] RDX: ffff8f917e1b2700 RSI: 0000000000540100 RDI: ffff8f917e831840
[ 3749.623280] RBP: ffffaab60d34cd88 R08: 0000000000000080 R09: fffffffe00000000
[ 3749.623281] R10: 0000000000000006 R11: 0000000000037803 R12: ffff8f917e831840
[ 3749.623283] R13: 00000000009c0000 R14: 00000000009c0000 R15: ffff8f917e831840
[ 3749.623284] FS:  00007f5906ffd640(0000) GS:ffff8f91eb9b6000(0000) knlGS:0000000000000000
[ 3749.623286] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3749.623288] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3749.623289] PKRU: 55555554
[ 3749.623290] Call Trace:
[ 3749.623292]  <IRQ>
[ 3749.623294]  _raw_spin_lock+0x2d/0x40
[ 3749.623297]  raw_spin_rq_lock_nested+0x19/0x30
[ 3749.623300]  _raw_spin_rq_lock_irqsave+0x1c/0x30
[ 3749.623303]  sched_balance_rq+0x616/0xf80
[ 3749.623306]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.623315]  sched_balance_domains+0x262/0x370
[ 3749.623319]  sched_balance_softirq+0x5a/0x80
[ 3749.623322]  handle_softirqs+0xc8/0x290
[ 3749.623327]  __irq_exit_rcu+0x96/0xc0
[ 3749.623330]  irq_exit_rcu+0x12/0x20
[ 3749.623333]  sysvec_apic_timer_interrupt+0x83/0x90
[ 3749.623336]  </IRQ>
[ 3749.623337]  <TASK>
[ 3749.623339]  asm_sysvec_apic_timer_interrupt+0x1f/0x30
[ 3749.623341] RIP: 0010:kvm_arch_vcpu_ioctl_run+0xbd4/0x1ba0 [kvm]
[ 3749.623406] Code: b8 03 00 00 4c 89 e7 e8 8a 30 04 00 49 83 bc 24 f8 07 00 00 00 0f 85 8f 03 00 00 41 c6 84 24 92 0a 00 00 01 fb 0f 1f 44 00 00 <49> 83 84 24 e0 15 00 00 01 fa 0f 1f 44 00 00 41 c6 84 24 92 0a 00
[ 3749.623408] RSP: 0018:ffffaab627433da0 EFLAGS: 00000246
[ 3749.623410] RAX: ffff8f7aeebb0000 RBX: ffff8f7209b64d40 RCX: 000000008f1d4b50
[ 3749.623411] RDX: 0000000100000000 RSI: 0000000281d4b179 RDI: ffff8f721c551a08
[ 3749.623413] RBP: ffffaab627433e08 R08: 0000000000000000 R09: 0000000000000000
[ 3749.623414] R10: 0000000000000000 R11: 0000000000000000 R12: ffff8f721c551a08
[ 3749.623415] R13: 0000000000000000 R14: 0000000000000000 R15: ffff8f8ada1c4000
[ 3749.623424]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3749.623487]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.623490]  ? do_futex+0xc8/0x1d0
[ 3749.623492]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.623495]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.623498]  __x64_sys_ioctl+0xa0/0xf0
[ 3749.623503]  x64_sys_call+0x122e/0x2150
[ 3749.623506]  do_syscall_64+0x56/0x1e0
[ 3749.623510]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3749.623512] RIP: 0033:0x7f67bff03b4b
[ 3749.623514] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3749.623516] RSP: 002b:00007f5906ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3749.623518] RAX: ffffffffffffffda RBX: 0000563db6505ec0 RCX: 00007f67bff03b4b
[ 3749.623519] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001b6
[ 3749.623521] RBP: 0000563db6505ec0 R08: 0000000000000000 R09: 0000000000000000
[ 3749.623522] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3749.623523] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3749.623529]  </TASK>
[ 3749.624250] Sending NMI from CPU 64 to CPUs 48:
[ 3749.624257] NMI backtrace for cpu 48
[ 3749.624264] CPU: 48 UID: 0 PID: 31420 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3749.624268] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3749.624270] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3749.624272] RIP: 0010:native_queued_spin_lock_slowpath+0x29a/0x2d0
[ 3749.624279] Code: c1 e9 12 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 <8b> 42 08 85 c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09
[ 3749.624282] RSP: 0018:ffffaab62b63fc20 EFLAGS: 00000046
[ 3749.624284] RAX: 0000000000000000 RBX: ffff8f917e432700 RCX: 0000000000000051
[ 3749.624286] RDX: ffff8f917e432700 RSI: 0000000001480100 RDI: ffff8f7aeeeca68c
[ 3749.624288] RBP: ffffaab62b63fc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3749.624289] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3749.624291] R13: 0000000000c40000 R14: 0000000000c40000 R15: 000000000000005c
[ 3749.624293] FS:  00007f5844ff9640(0000) GS:ffff8f91ebc36000(0000) knlGS:0000000000000000
[ 3749.624295] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3749.624296] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3749.624298] PKRU: 55555554
[ 3749.624299] Call Trace:
[ 3749.624301]  <TASK>
[ 3749.624305]  _raw_spin_lock_irqsave+0x46/0x60
[ 3749.624309]  yield_to+0x36/0x1b0
[ 3749.624315]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3749.624369]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3749.624422]  pause_interception+0x91/0x120 [kvm_amd]
[ 3749.624431]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3749.624439]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3749.624448]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3749.624502]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3749.624555]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.624559]  ? do_futex+0xc8/0x1d0
[ 3749.624563]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.624565]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.624569]  __x64_sys_ioctl+0xa0/0xf0
[ 3749.624575]  x64_sys_call+0x122e/0x2150
[ 3749.624578]  do_syscall_64+0x56/0x1e0
[ 3749.624582]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3749.624584] RIP: 0033:0x7f67bff03b4b
[ 3749.624587] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3749.624589] RSP: 002b:00007f5844ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3749.624591] RAX: ffffffffffffffda RBX: 0000563db66d73e0 RCX: 00007f67bff03b4b
[ 3749.624592] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000212
[ 3749.624593] RBP: 0000563db66d73e0 R08: 0000000000000000 R09: 0000000000000000
[ 3749.624595] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3749.624596] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3749.624601]  </TASK>
[ 3749.625246] Sending NMI from CPU 64 to CPUs 57:
[ 3749.625253] NMI backtrace for cpu 57
[ 3749.625260] CPU: 57 UID: 0 PID: 31333 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3749.625265] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3749.625266] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3749.625268] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3749.625275] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3749.625277] RSP: 0018:ffffaab62b1df8b8 EFLAGS: 00000202
[ 3749.625280] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3749.625282] RDX: 0000000000000001 RSI: ffff8f717fff96e0 RDI: ffff8f72000babf0
[ 3749.625283] RBP: ffffaab62b1df918 R08: 0000000000000007 R09: ffff8f72000bab00
[ 3749.625285] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3749.625286] R13: 0000000000000202 R14: ffff8f917e672a40 R15: 0000000000000080
[ 3749.625288] FS:  00007f59c67fc640(0000) GS:ffff8f91ebe76000(0000) knlGS:0000000000000000
[ 3749.625289] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3749.625291] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3749.625292] PKRU: 55555554
[ 3749.625293] Call Trace:
[ 3749.625295]  <TASK>
[ 3749.625298]  ? __pfx___wbinvd+0x10/0x10
[ 3749.625306]  on_each_cpu_cond_mask+0x28/0x50
[ 3749.625309]  wbinvd_on_all_cpus+0x29/0x40
[ 3749.625313]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3749.625322]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3749.625378]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3749.625434]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3749.625440]  change_protection+0xfc9/0x1200
[ 3749.625446]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.625450]  ? update_curr_dl_se+0x3b/0x1e0
[ 3749.625455]  ? dl_server_update+0x2e/0x40
[ 3749.625459]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.625462]  ? pick_next_task_fair+0x4f/0x490
[ 3749.625467]  change_prot_numa+0x5b/0xe0
[ 3749.625472]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3749.625478]  task_numa_work+0x3c5/0x9b0
[ 3749.625486]  task_work_run+0x64/0xa0
[ 3749.625492]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3749.625497]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3749.625550]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3749.625602]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.625605]  ? do_futex+0xc8/0x1d0
[ 3749.625607]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.625610]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.625613]  __x64_sys_ioctl+0xa0/0xf0
[ 3749.625619]  x64_sys_call+0x122e/0x2150
[ 3749.625622]  do_syscall_64+0x56/0x1e0
[ 3749.625627]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3749.625629] RIP: 0033:0x7f67bff03b4b
[ 3749.625632] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3749.625633] RSP: 002b:00007f59c67fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3749.625636] RAX: ffffffffffffffda RBX: 0000563db63677d0 RCX: 00007f67bff03b4b
[ 3749.625637] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000164
[ 3749.625638] RBP: 0000563db63677d0 R08: 0000000000000000 R09: 0000000000000000
[ 3749.625640] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3749.625641] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3749.625646]  </TASK>
[ 3749.626243] Sending NMI from CPU 64 to CPUs 63:
[ 3749.626249] NMI backtrace for cpu 63
[ 3749.626252] CPU: 63 UID: 0 PID: 31244 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3749.626256] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3749.626256] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3749.626258] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3749.626263] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3749.626265] RSP: 0018:ffffaab62ac9bc20 EFLAGS: 00000046
[ 3749.626266] RAX: 0000000000000000 RBX: ffff8f917e7f2700 RCX: 0000000000000030
[ 3749.626268] RDX: ffff8f917e7f2700 RSI: 0000000000c40100 RDI: ffff8f7aeeeca68c
[ 3749.626269] RBP: ffffaab62ac9bc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3749.626270] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3749.626272] R13: 0000000001000000 R14: 0000000001000000 R15: 0000000000000028
[ 3749.626273] FS:  00007f5b657fa640(0000) GS:ffff8f91ebff6000(0000) knlGS:0000000000000000
[ 3749.626275] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3749.626276] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3749.626278] PKRU: 55555554
[ 3749.626279] Call Trace:
[ 3749.626280]  <TASK>
[ 3749.626282]  _raw_spin_lock_irqsave+0x46/0x60
[ 3749.626286]  yield_to+0x36/0x1b0
[ 3749.626291]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3749.626342]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3749.626393]  pause_interception+0x91/0x120 [kvm_amd]
[ 3749.626401]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3749.626409]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3749.626417]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3749.626470]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3749.626522]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.626525]  ? do_futex+0xc8/0x1d0
[ 3749.626527]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.626530]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.626533]  __x64_sys_ioctl+0xa0/0xf0
[ 3749.626538]  x64_sys_call+0x122e/0x2150
[ 3749.626540]  do_syscall_64+0x56/0x1e0
[ 3749.626544]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3749.626546] RIP: 0033:0x7f67bff03b4b
[ 3749.626548] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3749.626549] RSP: 002b:00007f5b657f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3749.626551] RAX: ffffffffffffffda RBX: 0000563db5fe0d00 RCX: 00007f67bff03b4b
[ 3749.626553] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000b2
[ 3749.626554] RBP: 0000563db5fe0d00 R08: 0000000000000000 R09: 0000000000000000
[ 3749.626555] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3749.626557] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3749.626562]  </TASK>
[ 3749.627240] CPU: 64 UID: 0 PID: 30221 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3749.627245] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3749.627246] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3749.627248] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3749.627252] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3749.627255] RSP: 0000:ffffaab62c787a40 EFLAGS: 00000202
[ 3749.627257] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3749.627259] RDX: 0000000000000001 RSI: ffff8f717fff97c0 RDI: ffff8f5287658460
[ 3749.627260] RBP: ffffaab62c787aa0 R08: 0000000000000007 R09: ffff8f5287658f30
[ 3749.627262] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3749.627264] R13: 0000000000000202 R14: ffff8f7180632a40 R15: 0000000000000080
[ 3749.627265] FS:  00007fe43be09c80(0000) GS:ffff8f71ede36000(0000) knlGS:0000000000000000
[ 3749.627268] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3749.627269] CR2: 0000000000000000 CR3: 000000208b92101d CR4: 0000000000770ef0
[ 3749.627271] PKRU: 55555554
[ 3749.627272] Call Trace:
[ 3749.627273]  <TASK>
[ 3749.627275]  ? __pfx___wbinvd+0x10/0x10
[ 3749.627283]  on_each_cpu_cond_mask+0x28/0x50
[ 3749.627286]  wbinvd_on_all_cpus+0x29/0x40
[ 3749.627290]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3749.627298]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3749.627353]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3749.627409]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3749.627415]  change_protection+0xfc9/0x1200
[ 3749.627425]  ? sched_balance_rq+0x214/0xf80
[ 3749.627429]  change_prot_numa+0x5b/0xe0
[ 3749.627437]  task_numa_work+0x3c5/0x9b0
[ 3749.627445]  task_work_run+0x64/0xa0
[ 3749.627450]  irqentry_exit_to_user_mode+0x15d/0x170
[ 3749.627454]  irqentry_exit+0x3f/0x50
[ 3749.627457]  sysvec_apic_timer_interrupt+0x51/0x90
[ 3749.627461]  asm_sysvec_apic_timer_interrupt+0x1f/0x30
[ 3749.627463] RIP: 0033:0x555f731496f0
[ 3749.627465] Code: 5f 31 d2 31 f6 31 ff 45 31 c0 c3 0f 1f 80 00 00 00 00 8b 05 6a 71 07 01 85 c0 74 0a 48 8b 45 00 83 78 08 01 74 64 48 8b 43 20 <ba> 31 02 00 00 4c 89 fe 4c 89 e7 48 89 45 38 4c 8b 73 10 48 c7 43
[ 3749.627467] RSP: 002b:00007fff0a821250 EFLAGS: 00000246
[ 3749.627469] RAX: 0000000000000000 RBX: 0000555f86a813c0 RCX: 0000000000000000
[ 3749.627471] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
[ 3749.627472] RBP: 0000555f85541f10 R08: 0000000000000000 R09: 0000000000000000
[ 3749.627473] R10: 00007fe43c625000 R11: 00007fe43c625010 R12: 0000555f85541f18
[ 3749.627474] R13: 0000000000000001 R14: 0000555f741dfff0 R15: 0000555f7335b2af
[ 3749.627479]  </TASK>
[ 3749.627481] Sending NMI from CPU 64 to CPUs 81:
[ 3749.627486] NMI backtrace for cpu 81
[ 3749.627490] CPU: 81 UID: 0 PID: 31261 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3749.627494] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3749.627495] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3749.627497] RIP: 0010:native_queued_spin_lock_slowpath+0x21b/0x2d0
[ 3749.627501] Code: c6 01 41 c1 e5 10 41 c1 e6 12 45 09 f5 44 89 e8 c1 e8 10 66 41 87 44 24 02 89 c1 c1 e1 10 75 5f 31 c9 eb 02 f3 90 41 8b 04 24 <66> 85 c0 75 f5 89 c6 66 31 f6 44 39 ee 0f 84 87 00 00 00 41 c6 04
[ 3749.627503] RSP: 0018:ffffaab62ad23c20 EFLAGS: 00000002
[ 3749.627505] RAX: 0000000000580101 RBX: ffff8f7180a72700 RCX: 0000000000000000
[ 3749.627507] RDX: ffff8f7180a72700 RSI: 0000000000000100 RDI: ffff8f7aeeeca68c
[ 3749.627509] RBP: ffffaab62ad23c40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3749.627510] R10: 0000000000002ee0 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3749.627512] R13: 0000000001480000 R14: 0000000001480000 R15: 000000000000004e
[ 3749.627514] FS:  00007f5b077fe640(0000) GS:ffff8f71ee276000(0000) knlGS:0000000000000000
[ 3749.627516] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3749.627517] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3749.627519] PKRU: 55555554
[ 3749.627520] Call Trace:
[ 3749.627521]  <TASK>
[ 3749.627523]  _raw_spin_lock_irqsave+0x46/0x60
[ 3749.627527]  yield_to+0x36/0x1b0
[ 3749.627532]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3749.627584]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3749.627639]  pause_interception+0x91/0x120 [kvm_amd]
[ 3749.627647]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3749.627655]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3749.627663]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3749.627718]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3749.627771]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.627774]  ? do_futex+0xc8/0x1d0
[ 3749.627776]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.627779]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.627782]  __x64_sys_ioctl+0xa0/0xf0
[ 3749.627787]  x64_sys_call+0x122e/0x2150
[ 3749.627789]  do_syscall_64+0x56/0x1e0
[ 3749.627793]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3749.627795] RIP: 0033:0x7f67bff03b4b
[ 3749.627798] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3749.627800] RSP: 002b:00007f5b077fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3749.627802] RAX: ffffffffffffffda RBX: 0000563db608d140 RCX: 00007f67bff03b4b
[ 3749.627803] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000d4
[ 3749.627804] RBP: 0000563db608d140 R08: 0000000000000000 R09: 0000000000000000
[ 3749.627806] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3749.627807] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3749.627812]  </TASK>
[ 3749.628477] Sending NMI from CPU 64 to CPUs 87:
[ 3749.628483] NMI backtrace for cpu 87
[ 3749.628486] CPU: 87 UID: 0 PID: 31402 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3749.628490] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3749.628491] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3749.628492] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3749.628496] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3749.628498] RSP: 0018:ffffaab62bf578b8 EFLAGS: 00000202
[ 3749.628499] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3749.628501] RDX: 0000000000000001 RSI: ffff8f717fff9aa0 RDI: ffff8f52889c6230
[ 3749.628502] RBP: ffffaab62bf57918 R08: 0000000000000007 R09: ffff8f52889c6420
[ 3749.628503] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3749.628505] R13: 0000000000000202 R14: ffff8f7180bf2a40 R15: 0000000000000080
[ 3749.628506] FS:  00007f5886ffd640(0000) GS:ffff8f71ee3f6000(0000) knlGS:0000000000000000
[ 3749.628508] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3749.628509] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3749.628511] PKRU: 55555554
[ 3749.628511] Call Trace:
[ 3749.628512]  <TASK>
[ 3749.628514]  ? __pfx___wbinvd+0x10/0x10
[ 3749.628521]  on_each_cpu_cond_mask+0x28/0x50
[ 3749.628524]  wbinvd_on_all_cpus+0x29/0x40
[ 3749.628528]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3749.628536]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3749.628587]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3749.628642]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3749.628648]  change_protection+0xfc9/0x1200
[ 3749.628654]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.628658]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.628660]  ? update_load_avg+0x84/0x780
[ 3749.628665]  ? write_ibpb+0x21/0x40
[ 3749.628668]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3749.628720]  change_prot_numa+0x5b/0xe0
[ 3749.628728]  task_numa_work+0x3c5/0x9b0
[ 3749.628735]  task_work_run+0x64/0xa0
[ 3749.628740]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3749.628745]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3749.628797]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3749.628849]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.628852]  ? do_futex+0xc8/0x1d0
[ 3749.628854]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.628856]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.628860]  __x64_sys_ioctl+0xa0/0xf0
[ 3749.628864]  x64_sys_call+0x122e/0x2150
[ 3749.628866]  do_syscall_64+0x56/0x1e0
[ 3749.628870]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3749.628872] RIP: 0033:0x7f67bff03b4b
[ 3749.628874] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3749.628876] RSP: 002b:00007f5886ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3749.628878] RAX: ffffffffffffffda RBX: 0000563db66207e0 RCX: 00007f67bff03b4b
[ 3749.628879] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001ee
[ 3749.628880] RBP: 0000563db66207e0 R08: 0000000000000000 R09: 0000000000000000
[ 3749.628882] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3749.628883] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3749.628888]  </TASK>
[ 3749.629473] Sending NMI from CPU 64 to CPUs 92:
[ 3749.629481] NMI backtrace for cpu 92
[ 3749.629490] CPU: 92 UID: 0 PID: 31377 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3749.629496] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3749.629498] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3749.629500] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3749.629509] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3749.629512] RSP: 0018:ffffaab62b5bbc20 EFLAGS: 00000046
[ 3749.629516] RAX: 0000000000000000 RBX: ffff8f7180d32700 RCX: 0000000000000008
[ 3749.629518] RDX: ffff8f7180d32700 RSI: 0000000000240100 RDI: ffff8f7aeeeca68c
[ 3749.629521] RBP: ffffaab62b5bbc40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3749.629524] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3749.629527] R13: 0000000001740000 R14: 0000000001740000 R15: 0000000000000071
[ 3749.629529] FS:  00007f59057fa640(0000) GS:ffff8f71ee536000(0000) knlGS:0000000000000000
[ 3749.629532] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3749.629533] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3749.629536] PKRU: 55555554
[ 3749.629537] Call Trace:
[ 3749.629539]  <TASK>
[ 3749.629545]  _raw_spin_lock_irqsave+0x46/0x60
[ 3749.629550]  yield_to+0x36/0x1b0
[ 3749.629560]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3749.629637]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3749.629710]  pause_interception+0x91/0x120 [kvm_amd]
[ 3749.629721]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3749.629732]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3749.629747]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3749.629827]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3749.629904]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.629909]  ? do_futex+0xc8/0x1d0
[ 3749.629913]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.629916]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.629920]  __x64_sys_ioctl+0xa0/0xf0
[ 3749.629927]  x64_sys_call+0x122e/0x2150
[ 3749.629930]  do_syscall_64+0x56/0x1e0
[ 3749.629935]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3749.629937] RIP: 0033:0x7f67bff03b4b
[ 3749.629941] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3749.629944] RSP: 002b:00007f59057f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3749.629947] RAX: ffffffffffffffda RBX: 0000563db6523dd0 RCX: 00007f67bff03b4b
[ 3749.629948] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001bc
[ 3749.629950] RBP: 0000563db6523dd0 R08: 0000000000000000 R09: 0000000000000000
[ 3749.629952] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3749.629954] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3749.629964]  </TASK>
[ 3749.630469] Sending NMI from CPU 64 to CPUs 96:
[ 3749.630474] NMI backtrace for cpu 96
[ 3749.630477] CPU: 96 UID: 0 PID: 598 Comm: migration/96 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3749.630481] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3749.630482] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3749.630484] Stopper: multi_cpu_stop+0x0/0x110 <- migrate_swap+0xad/0x120
[ 3749.630489] RIP: 0010:native_queued_spin_lock_slowpath+0x29a/0x2d0
[ 3749.630493] Code: c1 e9 12 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 <8b> 42 08 85 c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09
[ 3749.630495] RSP: 0018:ffffaab60df34dd0 EFLAGS: 00000046
[ 3749.630496] RAX: 0000000000000000 RBX: ffff8f917e832700 RCX: 0000000000000022
[ 3749.630498] RDX: ffff8f917e832700 RSI: 00000000008c0100 RDI: ffff8f917e831840
[ 3749.630500] RBP: ffffaab60df34df0 R08: 0000000000000006 R09: 0000000000000060
[ 3749.630501] R10: 0000000000000002 R11: 0000000000000002 R12: ffff8f917e831840
[ 3749.630502] R13: 0000000001840000 R14: 0000000001840000 R15: ffff8f73570f0ccc
[ 3749.630504] FS:  0000000000000000(0000) GS:ffff8f91ec036000(0000) knlGS:0000000000000000
[ 3749.630506] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3749.630507] CR2: 00000000000004c8 CR3: 0000000124912022 CR4: 0000000000770ef0
[ 3749.630509] PKRU: 55555554
[ 3749.630510] Call Trace:
[ 3749.630511]  <IRQ>
[ 3749.630513]  _raw_spin_lock+0x2d/0x40
[ 3749.630516]  try_to_wake_up+0x21a/0x730
[ 3749.630518]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.630520]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.630523]  ? sched_clock_cpu+0x14/0x1a0
[ 3749.630528]  wake_up_process+0x19/0x20
[ 3749.630530]  rcuwait_wake_up+0x2e/0x50
[ 3749.630533]  __kvm_vcpu_kick+0x23/0x130 [kvm]
[ 3749.630584]  apic_timer_expired+0x85/0x100 [kvm]
[ 3749.630637]  apic_timer_fn+0x24/0x60 [kvm]
[ 3749.630686]  ? __pfx_apic_timer_fn+0x10/0x10 [kvm]
[ 3749.630734]  __hrtimer_run_queues+0x12b/0x2c0
[ 3749.630740]  hrtimer_interrupt+0x10d/0x250
[ 3749.630745]  __sysvec_apic_timer_interrupt+0x5a/0x120
[ 3749.630750]  sysvec_apic_timer_interrupt+0x7e/0x90
[ 3749.630753]  </IRQ>
[ 3749.630754]  <TASK>
[ 3749.630755]  asm_sysvec_apic_timer_interrupt+0x1f/0x30
[ 3749.630758] RIP: 0010:make_task_dead+0x102/0x160
[ 3749.630760] Code: f0 01 0f 84 73 ff ff ff eb e8 41 8b 95 d0 09 00 00 49 8d b5 b8 0b 00 00 48 c7 c7 38 9a d9 91 e8 84 34 09 00 fb 0f 1f 44 00 00 <e9> 3d ff ff ff 48 c7 c7 c8 9a d9 91 e8 6d 34 09 00 4c 89 ef e8 15
[ 3749.630761] RSP: 0018:ffffaab60df0ff30 EFLAGS: 00000246
[ 3749.630763] RAX: 0000000000000031 RBX: 0000000000000046 RCX: 0000000000000027
[ 3749.630764] RDX: 0000000000000000 RSI: 0000000000000001 RDI: ffff8f917e81ce80
[ 3749.630766] RBP: ffffaab60df0ff48 R08: 0000000000000000 R09: ffffaab60df0fdb0
[ 3749.630767] R10: ffffaab60df0fda8 R11: ffff8f917dffffe8 R12: 0000000000000009
[ 3749.630768] R13: ffff8f7206f40000 R14: 0000000000000009 R15: 0000000000000046
[ 3749.630774]  rewind_stack_and_make_dead+0x16/0x20
[ 3749.630780]  </TASK>
[ 3749.631465] Sending NMI from CPU 64 to CPUs 98:
[ 3749.631470] NMI backtrace for cpu 98
[ 3749.631473] CPU: 98 UID: 0 PID: 31373 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3749.631477] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3749.631477] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3749.631479] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3749.631482] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3749.631484] RSP: 0018:ffffaab6274978b8 EFLAGS: 00000202
[ 3749.631485] RAX: 0000000000000055 RBX: 0000000000000001 RCX: 0000000000000001
[ 3749.631486] RDX: 0000000000000001 RSI: ffff8f7180b79c00 RDI: ffff8f7206c6a630
[ 3749.631488] RBP: ffffaab627497918 R08: 0000000000000055 R09: ffff8f7206c6add0
[ 3749.631489] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3749.631490] R13: 0000000000000202 R14: ffff8f917e8b2a40 R15: 0000000000000080
[ 3749.631492] FS:  00007f59077fe640(0000) GS:ffff8f91ec0b6000(0000) knlGS:0000000000000000
[ 3749.631494] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3749.631495] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3749.631496] PKRU: 55555554
[ 3749.631497] Call Trace:
[ 3749.631498]  <TASK>
[ 3749.631500]  ? __pfx___wbinvd+0x10/0x10
[ 3749.631507]  on_each_cpu_cond_mask+0x28/0x50
[ 3749.631510]  wbinvd_on_all_cpus+0x29/0x40
[ 3749.631513]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3749.631521]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3749.631572]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3749.631627]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3749.631633]  change_protection+0xfc9/0x1200
[ 3749.631640]  ? update_cfs_group+0xb0/0xc0
[ 3749.631645]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.631648]  ? pick_next_task_fair+0x4f/0x490
[ 3749.631652]  change_prot_numa+0x5b/0xe0
[ 3749.631656]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3749.631662]  task_numa_work+0x3c5/0x9b0
[ 3749.631669]  task_work_run+0x64/0xa0
[ 3749.631675]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3749.631680]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3749.631732]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3749.631783]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.631786]  ? do_futex+0xc8/0x1d0
[ 3749.631788]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.631791]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.631794]  __x64_sys_ioctl+0xa0/0xf0
[ 3749.631799]  x64_sys_call+0x122e/0x2150
[ 3749.631801]  do_syscall_64+0x56/0x1e0
[ 3749.631805]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3749.631807] RIP: 0033:0x7f67bff03b4b
[ 3749.631809] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3749.631810] RSP: 002b:00007f59077fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3749.631812] RAX: ffffffffffffffda RBX: 0000563db64fb700 RCX: 00007f67bff03b4b
[ 3749.631813] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001b4
[ 3749.631815] RBP: 0000563db64fb700 R08: 0000000000000000 R09: 0000000000000000
[ 3749.631816] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3749.631817] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3749.631822]  </TASK>
[ 3749.632461] Sending NMI from CPU 64 to CPUs 122:
[ 3749.632466] NMI backtrace for cpu 122
[ 3749.632469] CPU: 122 UID: 0 PID: 31227 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3749.632473] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3749.632474] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3749.632476] RIP: 0010:native_queued_spin_lock_slowpath+0x81/0x2d0
[ 3749.632480] Code: c2 41 8b 04 24 0f b6 d2 c1 e2 08 30 e4 09 d0 a9 00 01 ff ff 75 63 85 c0 74 14 41 0f b6 04 24 84 c0 74 0b f3 90 41 0f b6 04 24 <84> c0 75 f5 b8 01 00 00 00 66 41 89 04 24 5b 41 5c 41 5d 41 5e 5d
[ 3749.632482] RSP: 0018:ffffaab62ab97a60 EFLAGS: 00000002
[ 3749.632484] RAX: 0000000000000001 RBX: ffffffff927fb840 RCX: 0000000000000068
[ 3749.632486] RDX: 0000000000000000 RSI: 0000000000000000 RDI: ffff8f917e831840
[ 3749.632487] RBP: ffffaab62ab97a80 R08: 0000000000000080 R09: ffffff0000000000
[ 3749.632488] R10: 0000000000000002 R11: 00000000001c2012 R12: ffff8f917e831840
[ 3749.632490] R13: 0000000000000080 R14: ffff8f7208110d28 R15: ffff8f917e831840
[ 3749.632491] FS:  00007f5ba6ffd640(0000) GS:ffff8f91ec6b6000(0000) knlGS:0000000000000000
[ 3749.632493] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3749.632495] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3749.632496] PKRU: 55555554
[ 3749.632497] Call Trace:
[ 3749.632498]  <TASK>
[ 3749.632500]  _raw_spin_lock+0x2d/0x40
[ 3749.632503]  raw_spin_rq_lock_nested+0x19/0x30
[ 3749.632507]  _raw_spin_rq_lock_irqsave+0x1c/0x30
[ 3749.632510]  sched_balance_rq+0x616/0xf80
[ 3749.632518]  sched_balance_newidle+0x19b/0x3f0
[ 3749.632522]  pick_next_task_fair+0x39/0x490
[ 3749.632524]  ? sched_clock_cpu+0x14/0x1a0
[ 3749.632529]  __schedule+0x1de/0xb30
[ 3749.632532]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.632535]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.632538]  ? kvm_vcpu_has_events+0x18d/0x1b0 [kvm]
[ 3749.632594]  schedule+0x2e/0x100
[ 3749.632597]  kvm_vcpu_block+0x52/0xd0 [kvm]
[ 3749.632650]  kvm_vcpu_halt+0x72/0x470 [kvm]
[ 3749.632700]  ? kvm_cpu_has_interrupt+0x49/0x80 [kvm]
[ 3749.632756]  kvm_arch_vcpu_ioctl_run+0xd70/0x1ba0 [kvm]
[ 3749.632811]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3749.632864]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.632867]  ? do_futex+0xc8/0x1d0
[ 3749.632869]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.632872]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.632875]  __x64_sys_ioctl+0xa0/0xf0
[ 3749.632880]  x64_sys_call+0x122e/0x2150
[ 3749.632882]  do_syscall_64+0x56/0x1e0
[ 3749.632886]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3749.632888] RIP: 0033:0x7f67bff03b4b
[ 3749.632890] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3749.632892] RSP: 002b:00007f5ba6ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3749.632894] RAX: ffffffffffffffda RBX: 0000563db5f35410 RCX: 00007f67bff03b4b
[ 3749.632896] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000090
[ 3749.632897] RBP: 0000563db5f35410 R08: 0000000000000000 R09: 0000000000000000
[ 3749.632898] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3749.632900] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3749.632905]  </TASK>
[ 3749.633457] Sending NMI from CPU 64 to CPUs 127:
[ 3749.633462] NMI backtrace for cpu 127
[ 3749.633464] CPU: 127 UID: 0 PID: 31383 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3749.633468] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3749.633469] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3749.633470] RIP: 0010:native_queued_spin_lock_slowpath+0x29d/0x2d0
[ 3749.633473] Code: 83 e0 03 83 e9 01 48 c1 e0 05 48 63 c9 48 05 00 c7 7f 92 48 03 04 cd 80 df ed 91 48 89 10 8b 42 08 85 c0 75 09 f3 90 8b 42 08 <85> c0 74 f7 48 8b 0a 48 85 c9 0f 84 6a ff ff ff 0f 0d 09 e9 62 ff
[ 3749.633475] RSP: 0018:ffffaab62c217c20 EFLAGS: 00000046
[ 3749.633477] RAX: 0000000000000000 RBX: ffff8f917eff2700 RCX: 0000000000000021
[ 3749.633478] RDX: ffff8f917eff2700 RSI: 0000000000880100 RDI: ffff8f7aeeeca68c
[ 3749.633480] RBP: ffffaab62c217c40 R08: 0000000000000001 R09: 0000000000000bb8
[ 3749.633481] R10: 0000000000000bb8 R11: 0000000000000000 R12: ffff8f7aeeeca68c
[ 3749.633482] R13: 0000000002000000 R14: 0000000002000000 R15: 0000000000000060
[ 3749.633484] FS:  00007f58e5ffb640(0000) GS:ffff8f91ec7f6000(0000) knlGS:0000000000000000
[ 3749.633485] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3749.633487] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3749.633488] PKRU: 55555554
[ 3749.633489] Call Trace:
[ 3749.633490]  <TASK>
[ 3749.633492]  _raw_spin_lock_irqsave+0x46/0x60
[ 3749.633495]  yield_to+0x36/0x1b0
[ 3749.633499]  kvm_vcpu_yield_to+0x59/0xc0 [kvm]
[ 3749.633552]  kvm_vcpu_on_spin+0xfa/0x180 [kvm]
[ 3749.633606]  pause_interception+0x91/0x120 [kvm_amd]
[ 3749.633615]  svm_invoke_exit_handler+0xef/0x1e0 [kvm_amd]
[ 3749.633622]  svm_handle_exit+0x7b/0x180 [kvm_amd]
[ 3749.633630]  kvm_arch_vcpu_ioctl_run+0xc58/0x1ba0 [kvm]
[ 3749.633684]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3749.633738]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.633741]  ? do_futex+0xc8/0x1d0
[ 3749.633743]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.633745]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3749.633749]  __x64_sys_ioctl+0xa0/0xf0
[ 3749.633753]  x64_sys_call+0x122e/0x2150
[ 3749.633756]  do_syscall_64+0x56/0x1e0
[ 3749.633759]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3749.633761] RIP: 0033:0x7f67bff03b4b
[ 3749.633763] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3749.633764] RSP: 002b:00007f58e5ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3749.633766] RAX: ffffffffffffffda RBX: 0000563db65607e0 RCX: 00007f67bff03b4b
[ 3749.633768] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001c8
[ 3749.633769] RBP: 0000563db65607e0 R08: 0000000000000000 R09: 0000000000000000
[ 3749.633770] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3749.633771] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3749.633776]  </TASK>
[ 3750.274227] watchdog: BUG: soft lockup - CPU#6 stuck for 100s! [qemu-system-x86:31395]
[ 3750.274230] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3750.274298] CPU: 6 UID: 0 PID: 31395 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3750.274301] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3750.274302] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3750.274304] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3750.274307] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3750.274310] RSP: 0018:ffffaab62c1a38b8 EFLAGS: 00000202
[ 3750.274311] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3750.274313] RDX: 0000000000000001 RSI: ffff8f717fff9080 RDI: ffff8f5280a320c0
[ 3750.274314] RBP: ffffaab62c1a3918 R08: 0000000000000007 R09: ffff8f5280a32bb0
[ 3750.274316] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3750.274317] R13: 0000000000000202 R14: ffff8f717ffb2a40 R15: 0000000000000080
[ 3750.274319] FS:  00007f58a6ffd640(0000) GS:ffff8f71ed7b6000(0000) knlGS:0000000000000000
[ 3750.274321] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3750.274322] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3750.274324] PKRU: 55555554
[ 3750.274325] Call Trace:
[ 3750.274326]  <TASK>
[ 3750.274328]  ? __pfx___wbinvd+0x10/0x10
[ 3750.274333]  on_each_cpu_cond_mask+0x28/0x50
[ 3750.274336]  wbinvd_on_all_cpus+0x29/0x40
[ 3750.274339]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3750.274348]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3750.274400]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3750.274455]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3750.274459]  change_protection+0xfc9/0x1200
[ 3750.274464]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.274468]  ? update_curr_dl_se+0x3b/0x1e0
[ 3750.274472]  ? dl_server_update+0x2e/0x40
[ 3750.274476]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.274479]  ? pick_next_task_fair+0x4f/0x490
[ 3750.274483]  change_prot_numa+0x5b/0xe0
[ 3750.274487]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3750.274492]  task_numa_work+0x3c5/0x9b0
[ 3750.274500]  task_work_run+0x64/0xa0
[ 3750.274504]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3750.274509]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3750.274561]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3750.274613]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.274616]  ? do_futex+0xc8/0x1d0
[ 3750.274618]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.274620]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.274624]  __x64_sys_ioctl+0xa0/0xf0
[ 3750.274629]  x64_sys_call+0x122e/0x2150
[ 3750.274631]  do_syscall_64+0x56/0x1e0
[ 3750.274635]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3750.274637] RIP: 0033:0x7f67bff03b4b
[ 3750.274639] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3750.274640] RSP: 002b:00007f58a6ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3750.274643] RAX: ffffffffffffffda RBX: 0000563db65d9840 RCX: 00007f67bff03b4b
[ 3750.274644] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001e0
[ 3750.274645] RBP: 0000563db65d9840 R08: 0000000000000000 R09: 0000000000000000
[ 3750.274646] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3750.274648] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3750.274653]  </TASK>
[ 3750.298227] watchdog: BUG: soft lockup - CPU#17 stuck for 100s! [qemu-system-x86:31404]
[ 3750.298230] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3750.298298] CPU: 17 UID: 0 PID: 31404 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3750.298301] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3750.298303] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3750.298304] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3750.298307] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3750.298310] RSP: 0018:ffffaab62bf3f8b8 EFLAGS: 00000202
[ 3750.298311] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3750.298313] RDX: 0000000000000001 RSI: ffff8f717fff91e0 RDI: ffff8f52872d0b00
[ 3750.298314] RBP: ffffaab62bf3f918 R08: 0000000000000007 R09: ffff8f52872d0850
[ 3750.298316] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3750.298317] R13: 0000000000000202 R14: ffff8f7180272a40 R15: 0000000000000080
[ 3750.298319] FS:  00007f5885ffb640(0000) GS:ffff8f71eda76000(0000) knlGS:0000000000000000
[ 3750.298321] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3750.298322] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3750.298324] PKRU: 55555554
[ 3750.298325] Call Trace:
[ 3750.298326]  <TASK>
[ 3750.298328]  ? __pfx___wbinvd+0x10/0x10
[ 3750.298333]  on_each_cpu_cond_mask+0x28/0x50
[ 3750.298336]  wbinvd_on_all_cpus+0x29/0x40
[ 3750.298340]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3750.298348]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3750.298400]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3750.298456]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3750.298460]  change_protection+0xfc9/0x1200
[ 3750.298465]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.298468]  ? update_curr_dl_se+0x3b/0x1e0
[ 3750.298473]  ? dl_server_update+0x2e/0x40
[ 3750.298477]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.298481]  ? pick_next_task_fair+0x4f/0x490
[ 3750.298485]  change_prot_numa+0x5b/0xe0
[ 3750.298489]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3750.298495]  task_numa_work+0x3c5/0x9b0
[ 3750.298502]  task_work_run+0x64/0xa0
[ 3750.298506]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3750.298511]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3750.298563]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3750.298615]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.298617]  ? do_futex+0xc8/0x1d0
[ 3750.298620]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.298622]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.298626]  __x64_sys_ioctl+0xa0/0xf0
[ 3750.298630]  x64_sys_call+0x122e/0x2150
[ 3750.298632]  do_syscall_64+0x56/0x1e0
[ 3750.298636]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3750.298638] RIP: 0033:0x7f67bff03b4b
[ 3750.298640] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3750.298642] RSP: 002b:00007f5885ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3750.298644] RAX: ffffffffffffffda RBX: 0000563db6636340 RCX: 00007f67bff03b4b
[ 3750.298645] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001f2
[ 3750.298647] RBP: 0000563db6636340 R08: 0000000000000000 R09: 0000000000000000
[ 3750.298648] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3750.298649] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3750.298654]  </TASK>
[ 3750.302227] watchdog: BUG: soft lockup - CPU#19 stuck for 100s! [qemu-system-x86:31326]
[ 3750.302232] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3750.302312] CPU: 19 UID: 0 PID: 31326 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3750.302317] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3750.302319] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3750.302320] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3750.302324] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3750.302327] RSP: 0018:ffffaab62b0338b8 EFLAGS: 00000202
[ 3750.302329] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3750.302331] RDX: 0000000000000001 RSI: ffff8f717fff9220 RDI: ffff8f52872d0a50
[ 3750.302333] RBP: ffffaab62b033918 R08: 0000000000000007 R09: ffff8f52872d0b70
[ 3750.302334] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3750.302336] R13: 0000000000000202 R14: ffff8f71802f2a40 R15: 0000000000000080
[ 3750.302337] FS:  00007f59e67fc640(0000) GS:ffff8f71edaf6000(0000) knlGS:0000000000000000
[ 3750.302339] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3750.302341] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3750.302343] PKRU: 55555554
[ 3750.302344] Call Trace:
[ 3750.302345]  <TASK>
[ 3750.302349]  ? __pfx___wbinvd+0x10/0x10
[ 3750.302355]  on_each_cpu_cond_mask+0x28/0x50
[ 3750.302358]  wbinvd_on_all_cpus+0x29/0x40
[ 3750.302362]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3750.302374]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3750.302457]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3750.302534]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3750.302540]  change_protection+0xfc9/0x1200
[ 3750.302545]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.302549]  ? update_curr_dl_se+0x3b/0x1e0
[ 3750.302552]  ? dl_server_update+0x2e/0x40
[ 3750.302557]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.302561]  ? pick_next_task_fair+0x4f/0x490
[ 3750.302565]  change_prot_numa+0x5b/0xe0
[ 3750.302569]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3750.302575]  task_numa_work+0x3c5/0x9b0
[ 3750.302583]  task_work_run+0x64/0xa0
[ 3750.302588]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3750.302593]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3750.302671]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3750.302750]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.302754]  ? do_futex+0xc8/0x1d0
[ 3750.302756]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.302759]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.302763]  __x64_sys_ioctl+0xa0/0xf0
[ 3750.302768]  x64_sys_call+0x122e/0x2150
[ 3750.302771]  do_syscall_64+0x56/0x1e0
[ 3750.302775]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3750.302777] RIP: 0033:0x7f67bff03b4b
[ 3750.302780] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3750.302782] RSP: 002b:00007f59e67fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3750.302785] RAX: ffffffffffffffda RBX: 0000563db6320030 RCX: 00007f67bff03b4b
[ 3750.302787] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000156
[ 3750.302788] RBP: 0000563db6320030 R08: 0000000000000000 R09: 0000000000000000
[ 3750.302790] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3750.302791] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3750.302797]  </TASK>
[ 3750.326226] watchdog: BUG: soft lockup - CPU#30 stuck for 100s! [qemu-system-x86:31241]
[ 3750.326229] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3750.326297] CPU: 30 UID: 0 PID: 31241 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3750.326301] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3750.326302] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3750.326303] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3750.326307] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3750.326309] RSP: 0018:ffffaab62ac838b8 EFLAGS: 00000202
[ 3750.326311] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3750.326312] RDX: 0000000000000001 RSI: ffff8f717fff9380 RDI: ffff8f52872d0570
[ 3750.326314] RBP: ffffaab62ac83918 R08: 0000000000000007 R09: ffff8f52872d0ae0
[ 3750.326315] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3750.326316] R13: 0000000000000202 R14: ffff8f71805b2a40 R15: 0000000000000080
[ 3750.326318] FS:  00007f5b66ffd640(0000) GS:ffff8f71eddb6000(0000) knlGS:0000000000000000
[ 3750.326319] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3750.326321] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3750.326322] PKRU: 55555554
[ 3750.326323] Call Trace:
[ 3750.326324]  <TASK>
[ 3750.326326]  ? __pfx___wbinvd+0x10/0x10
[ 3750.326333]  on_each_cpu_cond_mask+0x28/0x50
[ 3750.326336]  wbinvd_on_all_cpus+0x29/0x40
[ 3750.326340]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3750.326348]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3750.326401]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3750.326457]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3750.326463]  change_protection+0xfc9/0x1200
[ 3750.326469]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.326473]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.326475]  ? update_load_avg+0x84/0x780
[ 3750.326481]  ? write_ibpb+0x21/0x40
[ 3750.326484]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3750.326537]  change_prot_numa+0x5b/0xe0
[ 3750.326544]  task_numa_work+0x3c5/0x9b0
[ 3750.326552]  task_work_run+0x64/0xa0
[ 3750.326557]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3750.326562]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3750.326616]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3750.326668]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.326671]  ? do_futex+0xc8/0x1d0
[ 3750.326673]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.326676]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.326679]  __x64_sys_ioctl+0xa0/0xf0
[ 3750.326684]  x64_sys_call+0x122e/0x2150
[ 3750.326686]  do_syscall_64+0x56/0x1e0
[ 3750.326690]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3750.326692] RIP: 0033:0x7f67bff03b4b
[ 3750.326694] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3750.326695] RSP: 002b:00007f5b66ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3750.326697] RAX: ffffffffffffffda RBX: 0000563db5fc29d0 RCX: 00007f67bff03b4b
[ 3750.326699] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000ac
[ 3750.326700] RBP: 0000563db5fc29d0 R08: 0000000000000000 R09: 0000000000000000
[ 3750.326701] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3750.326702] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3750.326708]  </TASK>
[ 3750.326709] watchdog: BUG: soft lockup - CPU#29 stuck for 74s! [kworker/u516:3:39511]
[ 3750.326711] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3750.326768] CPU: 29 UID: 0 PID: 39511 Comm: kworker/u516:3 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3750.326772] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3750.326773] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3750.326775] Workqueue: writeback wb_workfn (flush-253:1)
[ 3750.326780] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3750.326783] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3750.326785] RSP: 0018:ffffaab6926c35d8 EFLAGS: 00000202
[ 3750.326787] RAX: 0000000000000056 RBX: 0000000000000001 RCX: 0000000000000011
[ 3750.326788] RDX: 0000000000000001 RSI: ffff8f7180bb9360 RDI: ffff8f52872d07a0
[ 3750.326790] RBP: ffffaab6926c3638 R08: 0000000000000056 R09: ffff8f52872d0970
[ 3750.326791] R10: 0000000000000002 R11: 0000000000000002 R12: ffff8f7180570b00
[ 3750.326792] R13: ffff8f52872d0e00 R14: ffff8f7180572a40 R15: 0000000000000080
[ 3750.326794] FS:  0000000000000000(0000) GS:ffff8f71edd76000(0000) knlGS:0000000000000000
[ 3750.326795] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3750.326797] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3750.326798] PKRU: 55555554
[ 3750.326799] Call Trace:
[ 3750.326800]  <TASK>
[ 3750.326802]  ? __pfx_flush_tlb_func+0x10/0x10
[ 3750.326808]  on_each_cpu_cond_mask+0x28/0x50
[ 3750.326810]  native_flush_tlb_multi+0xec/0x140
[ 3750.326813]  ? __pte_offset_map_lock+0x9a/0x110
[ 3750.326816]  flush_tlb_mm_range+0x1d6/0x5d0
[ 3750.326819]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.326822]  ? page_vma_mapped_walk+0x7bb/0xac0
[ 3750.326826]  ptep_clear_flush+0x64/0x80
[ 3750.326829]  page_vma_mkclean_one.constprop.0+0x113/0x270
[ 3750.326834]  page_mkclean_one+0x8c/0xb0
[ 3750.326838]  __rmap_walk_file+0xe3/0x190
[ 3750.326842]  rmap_walk+0x49/0x70
[ 3750.326845]  folio_mkclean+0xb0/0xc0
[ 3750.326849]  ? __pfx_page_mkclean_one+0x10/0x10
[ 3750.326851]  ? __pfx_invalid_mkclean_vma+0x10/0x10
[ 3750.326854]  folio_clear_dirty_for_io+0x60/0x190
[ 3750.326860]  writeback_iter+0x10b/0x310
[ 3750.326863]  iomap_writepages+0x6d/0x990
[ 3750.326868]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.326871]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.326873]  ? mpt3sas_scsih_scsi_lookup_get+0x4f/0xe0 [mpt3sas]
[ 3750.326885]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.326889]  xfs_vm_writepages+0x88/0x100 [xfs]
[ 3750.327009]  do_writepages+0xc8/0x160
[ 3750.327014]  __writeback_single_inode+0x44/0x340
[ 3750.327018]  writeback_sb_inodes+0x249/0x540
[ 3750.327032]  __writeback_inodes_wb+0x56/0xf0
[ 3750.327036]  wb_writeback+0x192/0x300
[ 3750.327042]  wb_workfn+0x26a/0x410
[ 3750.327048]  process_one_work+0x19f/0x3e0
[ 3750.327052]  worker_thread+0x2ad/0x3c0
[ 3750.327055]  kthread+0x10b/0x220
[ 3750.327058]  ? __pfx_worker_thread+0x10/0x10
[ 3750.327061]  ? __pfx_kthread+0x10/0x10
[ 3750.327064]  ret_from_fork+0x8e/0x100
[ 3750.327068]  ? __pfx_kthread+0x10/0x10
[ 3750.327071]  ret_from_fork_asm+0x1a/0x30
[ 3750.327077]  </TASK>
[ 3750.350226] watchdog: BUG: soft lockup - CPU#40 stuck for 100s! [qemu-system-x86:31268]
[ 3750.350230] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3750.350299] CPU: 40 UID: 0 PID: 31268 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3750.350303] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3750.350304] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3750.350306] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3750.350310] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3750.350313] RSP: 0018:ffffaab62ad5b8b8 EFLAGS: 00000202
[ 3750.350314] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3750.350316] RDX: 0000000000000001 RSI: ffff8f717fff94c0 RDI: ffff8f72066e39e0
[ 3750.350318] RBP: ffffaab62ad5b918 R08: 0000000000000007 R09: ffff8f72066e3c40
[ 3750.350319] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3750.350321] R13: 0000000000000202 R14: ffff8f917e232a40 R15: 0000000000000080
[ 3750.350322] FS:  00007f5ae77fe640(0000) GS:ffff8f91eba36000(0000) knlGS:0000000000000000
[ 3750.350324] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3750.350326] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3750.350327] PKRU: 55555554
[ 3750.350328] Call Trace:
[ 3750.350330]  <TASK>
[ 3750.350332]  ? __pfx___wbinvd+0x10/0x10
[ 3750.350339]  on_each_cpu_cond_mask+0x28/0x50
[ 3750.350342]  wbinvd_on_all_cpus+0x29/0x40
[ 3750.350346]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3750.350355]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3750.350408]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3750.350463]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3750.350469]  change_protection+0xfc9/0x1200
[ 3750.350476]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.350479]  ? update_load_avg+0x84/0x780
[ 3750.350484]  ? write_ibpb+0x21/0x40
[ 3750.350488]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3750.350541]  change_prot_numa+0x5b/0xe0
[ 3750.350548]  task_numa_work+0x3c5/0x9b0
[ 3750.350555]  task_work_run+0x64/0xa0
[ 3750.350560]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3750.350565]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3750.350618]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3750.350669]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.350672]  ? do_futex+0xc8/0x1d0
[ 3750.350675]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.350677]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.350681]  __x64_sys_ioctl+0xa0/0xf0
[ 3750.350687]  x64_sys_call+0x122e/0x2150
[ 3750.350689]  do_syscall_64+0x56/0x1e0
[ 3750.350693]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3750.350695] RIP: 0033:0x7f67bff03b4b
[ 3750.350697] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3750.350699] RSP: 002b:00007f5ae77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3750.350701] RAX: ffffffffffffffda RBX: 0000563db60d3df0 RCX: 00007f67bff03b4b
[ 3750.350703] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000e2
[ 3750.350704] RBP: 0000563db60d3df0 R08: 0000000000000000 R09: 0000000000000000
[ 3750.350705] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3750.350707] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3750.350712]  </TASK>
[ 3750.386225] watchdog: BUG: soft lockup - CPU#55 stuck for 48s! [qemu-system-x86:30270]
[ 3750.386228] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3750.386299] CPU: 55 UID: 0 PID: 30270 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3750.386303] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3750.386304] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3750.386305] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3750.386310] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3750.386312] RSP: 0018:ffffaab62c8978b8 EFLAGS: 00000202
[ 3750.386314] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3750.386315] RDX: 0000000000000001 RSI: ffff8f717fff96a0 RDI: ffff8f72000ba410
[ 3750.386317] RBP: ffffaab62c897918 R08: 0000000000000007 R09: ffff8f72000ba7c0
[ 3750.386318] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3750.386320] R13: 0000000000000202 R14: ffff8f917e5f2a40 R15: 0000000000000080
[ 3750.386321] FS:  00007fd8a3fff640(0000) GS:ffff8f91ebdf6000(0000) knlGS:0000000000000000
[ 3750.386323] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3750.386325] CR2: 00007fb38e38e1a0 CR3: 000000208b92101d CR4: 0000000000770ef0
[ 3750.386326] PKRU: 55555554
[ 3750.386327] Call Trace:
[ 3750.386328]  <TASK>
[ 3750.386330]  ? __pfx___wbinvd+0x10/0x10
[ 3750.386337]  on_each_cpu_cond_mask+0x28/0x50
[ 3750.386340]  wbinvd_on_all_cpus+0x29/0x40
[ 3750.386345]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3750.386354]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3750.386411]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3750.386467]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3750.386473]  change_protection+0xfc9/0x1200
[ 3750.386478]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.386482]  ? native_apic_msr_write+0x32/0x40
[ 3750.386486]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.386489]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.386491]  ? timerqueue_add+0x72/0xd0
[ 3750.386496]  ? enqueue_hrtimer+0x3c/0x90
[ 3750.386501]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.386503]  ? hrtimer_start_range_ns+0x137/0x430
[ 3750.386508]  change_prot_numa+0x5b/0xe0
[ 3750.386513]  ? kvm_lapic_reg_write+0x82/0x7d0 [kvm]
[ 3750.386571]  task_numa_work+0x3c5/0x9b0
[ 3750.386579]  task_work_run+0x64/0xa0
[ 3750.386584]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3750.386589]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3750.386645]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3750.386698]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.386700]  ? do_futex+0xc8/0x1d0
[ 3750.386703]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.386705]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.386709]  __x64_sys_ioctl+0xa0/0xf0
[ 3750.386713]  x64_sys_call+0x122e/0x2150
[ 3750.386716]  do_syscall_64+0x56/0x1e0
[ 3750.386719]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3750.386721] RIP: 0033:0x7fe43bd03b4b
[ 3750.386723] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3750.386725] RSP: 002b:00007fd8a3ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3750.386727] RAX: ffffffffffffffda RBX: 0000555f859840f0 RCX: 00007fe43bd03b4b
[ 3750.386729] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000054
[ 3750.386730] RBP: 0000555f859840f0 R08: 0000000000000000 R09: 0000000000000000
[ 3750.386731] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3750.386733] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3750.386738]  </TASK>
[ 3750.394225] watchdog: BUG: soft lockup - CPU#60 stuck for 100s! [qemu-system-x86:31338]
[ 3750.394232] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3750.394317] CPU: 60 UID: 0 PID: 31338 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3750.394322] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3750.394323] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3750.394325] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3750.394333] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3750.394335] RSP: 0018:ffffaab62b2078b8 EFLAGS: 00000202
[ 3750.394338] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3750.394340] RDX: 0000000000000001 RSI: ffff8f717fff9740 RDI: ffff8f72000ba610
[ 3750.394342] RBP: ffffaab62b207918 R08: 0000000000000007 R09: ffff8f72000ba170
[ 3750.394344] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3750.394345] R13: 0000000000000202 R14: ffff8f917e732a40 R15: 0000000000000080
[ 3750.394347] FS:  00007f59a77fe640(0000) GS:ffff8f91ebf36000(0000) knlGS:0000000000000000
[ 3750.394350] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3750.394352] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3750.394353] PKRU: 55555554
[ 3750.394355] Call Trace:
[ 3750.394356]  <TASK>
[ 3750.394359]  ? __pfx___wbinvd+0x10/0x10
[ 3750.394365]  on_each_cpu_cond_mask+0x28/0x50
[ 3750.394369]  wbinvd_on_all_cpus+0x29/0x40
[ 3750.394373]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3750.394386]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3750.394468]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3750.394548]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3750.394554]  change_protection+0xfc9/0x1200
[ 3750.394559]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.394563]  ? update_curr_dl_se+0x3b/0x1e0
[ 3750.394567]  ? dl_server_update+0x2e/0x40
[ 3750.394572]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.394575]  ? pick_next_task_fair+0x4f/0x490
[ 3750.394579]  change_prot_numa+0x5b/0xe0
[ 3750.394587]  task_numa_work+0x3c5/0x9b0
[ 3750.394595]  task_work_run+0x64/0xa0
[ 3750.394600]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3750.394604]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3750.394677]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3750.394749]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.394753]  ? do_futex+0xc8/0x1d0
[ 3750.394758]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.394761]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.394765]  __x64_sys_ioctl+0xa0/0xf0
[ 3750.394771]  x64_sys_call+0x122e/0x2150
[ 3750.394773]  do_syscall_64+0x56/0x1e0
[ 3750.394777]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3750.394780] RIP: 0033:0x7f67bff03b4b
[ 3750.394782] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3750.394785] RSP: 002b:00007f59a77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3750.394787] RAX: ffffffffffffffda RBX: 0000563db6399de0 RCX: 00007f67bff03b4b
[ 3750.394789] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000016e
[ 3750.394791] RBP: 0000563db6399de0 R08: 0000000000000000 R09: 0000000000000000
[ 3750.394792] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3750.394794] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3750.394800]  </TASK>
[ 3750.430224] watchdog: BUG: soft lockup - CPU#65 stuck for 100s! [qemu-system-x86:31406]
[ 3750.430227] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3750.430288] CPU: 65 UID: 0 PID: 31406 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3750.430292] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3750.430293] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3750.430294] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3750.430298] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3750.430300] RSP: 0018:ffffaab62bf2f8b8 EFLAGS: 00000202
[ 3750.430302] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3750.430303] RDX: 0000000000000001 RSI: ffff8f717fff97e0 RDI: ffff8f5287658e40
[ 3750.430305] RBP: ffffaab62bf2f918 R08: 0000000000000007 R09: ffff8f5287658ed0
[ 3750.430306] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3750.430308] R13: 0000000000000202 R14: ffff8f7180672a40 R15: 0000000000000080
[ 3750.430309] FS:  00007f5884ff9640(0000) GS:ffff8f71ede76000(0000) knlGS:0000000000000000
[ 3750.430311] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3750.430313] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3750.430314] PKRU: 55555554
[ 3750.430315] Call Trace:
[ 3750.430317]  <TASK>
[ 3750.430319]  ? __pfx___wbinvd+0x10/0x10
[ 3750.430324]  on_each_cpu_cond_mask+0x28/0x50
[ 3750.430327]  wbinvd_on_all_cpus+0x29/0x40
[ 3750.430330]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3750.430338]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3750.430391]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3750.430446]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3750.430450]  change_protection+0xfc9/0x1200
[ 3750.430455]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.430458]  ? update_curr_dl_se+0x3b/0x1e0
[ 3750.430462]  ? dl_server_update+0x2e/0x40
[ 3750.430466]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.430469]  ? pick_next_task_fair+0x4f/0x490
[ 3750.430473]  change_prot_numa+0x5b/0xe0
[ 3750.430477]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.430479]  ? update_load_avg+0x84/0x780
[ 3750.430482]  ? __dequeue_entity+0x3cd/0x4a0
[ 3750.430486]  task_numa_work+0x3c5/0x9b0
[ 3750.430493]  task_work_run+0x64/0xa0
[ 3750.430497]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3750.430501]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3750.430554]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3750.430606]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.430608]  ? do_futex+0xc8/0x1d0
[ 3750.430610]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.430613]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.430616]  __x64_sys_ioctl+0xa0/0xf0
[ 3750.430621]  x64_sys_call+0x122e/0x2150
[ 3750.430623]  do_syscall_64+0x56/0x1e0
[ 3750.430627]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3750.430629] RIP: 0033:0x7f67bff03b4b
[ 3750.430631] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3750.430633] RSP: 002b:00007f5884ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3750.430635] RAX: ffffffffffffffda RBX: 0000563db664a2e0 RCX: 00007f67bff03b4b
[ 3750.430636] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001f6
[ 3750.430638] RBP: 0000563db664a2e0 R08: 0000000000000000 R09: 0000000000000000
[ 3750.430639] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3750.430640] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3750.430645]  </TASK>
[ 3750.438225] watchdog: BUG: soft lockup - CPU#68 stuck for 100s! [qemu-system-x86:31300]
[ 3750.438229] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3750.438314] CPU: 68 UID: 0 PID: 31300 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3750.438320] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3750.438321] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3750.438322] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3750.438328] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3750.438331] RSP: 0018:ffffaab62af478b8 EFLAGS: 00000202
[ 3750.438334] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3750.438336] RDX: 0000000000000001 RSI: ffff8f717fff9840 RDI: ffff8f5287658670
[ 3750.438339] RBP: ffffaab62af47918 R08: 0000000000000007 R09: ffff8f5287658210
[ 3750.438342] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3750.438345] R13: 0000000000000202 R14: ffff8f7180732a40 R15: 0000000000000080
[ 3750.438347] FS:  00007f5a657fa640(0000) GS:ffff8f71edf36000(0000) knlGS:0000000000000000
[ 3750.438350] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3750.438353] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3750.438356] PKRU: 55555554
[ 3750.438357] Call Trace:
[ 3750.438359]  <TASK>
[ 3750.438362]  ? __pfx___wbinvd+0x10/0x10
[ 3750.438371]  on_each_cpu_cond_mask+0x28/0x50
[ 3750.438375]  wbinvd_on_all_cpus+0x29/0x40
[ 3750.438381]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3750.438397]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3750.438499]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3750.438575]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3750.438580]  change_protection+0xfc9/0x1200
[ 3750.438585]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.438591]  ? pick_eevdf+0x7c/0x1a0
[ 3750.438599]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.438603]  ? pick_next_task_fair+0x4f/0x490
[ 3750.438607]  change_prot_numa+0x5b/0xe0
[ 3750.438612]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3750.438617]  task_numa_work+0x3c5/0x9b0
[ 3750.438626]  task_work_run+0x64/0xa0
[ 3750.438630]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3750.438635]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3750.438714]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3750.438785]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.438788]  ? do_futex+0xc8/0x1d0
[ 3750.438791]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.438793]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.438797]  __x64_sys_ioctl+0xa0/0xf0
[ 3750.438803]  x64_sys_call+0x122e/0x2150
[ 3750.438806]  do_syscall_64+0x56/0x1e0
[ 3750.438811]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3750.438814] RIP: 0033:0x7f67bff03b4b
[ 3750.438819] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3750.438821] RSP: 002b:00007f5a657f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3750.438826] RAX: ffffffffffffffda RBX: 0000563db62190f0 RCX: 00007f67bff03b4b
[ 3750.438828] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000122
[ 3750.438830] RBP: 0000563db62190f0 R08: 0000000000000000 R09: 0000000000000000
[ 3750.438832] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3750.438834] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3750.438842]  </TASK>
[ 3750.446223] watchdog: BUG: soft lockup - CPU#71 stuck for 100s! [qemu-system-x86:31278]
[ 3750.446226] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3750.446283] CPU: 71 UID: 0 PID: 31278 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3750.446286] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3750.446287] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3750.446288] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3750.446291] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3750.446293] RSP: 0018:ffffaab62ae8b8b8 EFLAGS: 00000202
[ 3750.446294] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3750.446296] RDX: 0000000000000001 RSI: ffff8f717fff98a0 RDI: ffff8f5287658880
[ 3750.446297] RBP: ffffaab62ae8b918 R08: 0000000000000007 R09: ffff8f52876588a0
[ 3750.446298] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3750.446299] R13: 0000000000000202 R14: ffff8f71807f2a40 R15: 0000000000000080
[ 3750.446301] FS:  00007f5ac5ffb640(0000) GS:ffff8f71edff6000(0000) knlGS:0000000000000000
[ 3750.446302] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3750.446304] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3750.446305] PKRU: 55555554
[ 3750.446306] Call Trace:
[ 3750.446307]  <TASK>
[ 3750.446309]  ? __pfx___wbinvd+0x10/0x10
[ 3750.446314]  on_each_cpu_cond_mask+0x28/0x50
[ 3750.446316]  wbinvd_on_all_cpus+0x29/0x40
[ 3750.446320]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3750.446328]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3750.446379]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3750.446433]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3750.446437]  change_protection+0xfc9/0x1200
[ 3750.446442]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.446446]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.446449]  ? update_load_avg+0x84/0x780
[ 3750.446452]  ? write_ibpb+0x21/0x40
[ 3750.446456]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3750.446508]  change_prot_numa+0x5b/0xe0
[ 3750.446515]  task_numa_work+0x3c5/0x9b0
[ 3750.446522]  task_work_run+0x64/0xa0
[ 3750.446526]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3750.446530]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3750.446583]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3750.446634]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.446637]  ? do_futex+0xc8/0x1d0
[ 3750.446639]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.446642]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.446645]  __x64_sys_ioctl+0xa0/0xf0
[ 3750.446650]  x64_sys_call+0x122e/0x2150
[ 3750.446652]  do_syscall_64+0x56/0x1e0
[ 3750.446656]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3750.446658] RIP: 0033:0x7f67bff03b4b
[ 3750.446659] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3750.446661] RSP: 002b:00007f5ac5ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3750.446663] RAX: ffffffffffffffda RBX: 0000563db61390c0 RCX: 00007f67bff03b4b
[ 3750.446664] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000f6
[ 3750.446666] RBP: 0000563db61390c0 R08: 0000000000000000 R09: 0000000000000000
[ 3750.446667] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3750.446668] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3750.446673]  </TASK>
[ 3750.458223] watchdog: BUG: soft lockup - CPU#77 stuck for 100s! [qemu-system-x86:31293]
[ 3750.458226] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3750.458295] CPU: 77 UID: 0 PID: 31293 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3750.458299] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3750.458300] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3750.458302] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3750.458305] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3750.458307] RSP: 0018:ffffaab62af0f8b8 EFLAGS: 00000202
[ 3750.458309] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3750.458310] RDX: 0000000000000001 RSI: ffff8f717fff9960 RDI: ffff8f5287658b10
[ 3750.458312] RBP: ffffaab62af0f918 R08: 0000000000000007 R09: ffff8f52876589e0
[ 3750.458313] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3750.458315] R13: 0000000000000202 R14: ffff8f7180972a40 R15: 0000000000000080
[ 3750.458316] FS:  00007f5a857fa640(0000) GS:ffff8f71ee176000(0000) knlGS:0000000000000000
[ 3750.458318] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3750.458319] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3750.458321] PKRU: 55555554
[ 3750.458322] Call Trace:
[ 3750.458323]  <TASK>
[ 3750.458325]  ? __pfx___wbinvd+0x10/0x10
[ 3750.458330]  on_each_cpu_cond_mask+0x28/0x50
[ 3750.458333]  wbinvd_on_all_cpus+0x29/0x40
[ 3750.458337]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3750.458345]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3750.458397]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3750.458452]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3750.458456]  change_protection+0xfc9/0x1200
[ 3750.458461]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.458465]  ? pick_eevdf+0x7c/0x1a0
[ 3750.458469]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.458473]  ? pick_next_task_fair+0x4f/0x490
[ 3750.458476]  change_prot_numa+0x5b/0xe0
[ 3750.458481]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.458483]  ? update_load_avg+0x84/0x780
[ 3750.458488]  task_numa_work+0x3c5/0x9b0
[ 3750.458495]  task_work_run+0x64/0xa0
[ 3750.458499]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3750.458503]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3750.458555]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3750.458607]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.458610]  ? do_futex+0xc8/0x1d0
[ 3750.458612]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.458614]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.458618]  __x64_sys_ioctl+0xa0/0xf0
[ 3750.458622]  x64_sys_call+0x122e/0x2150
[ 3750.458624]  do_syscall_64+0x56/0x1e0
[ 3750.458628]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3750.458630] RIP: 0033:0x7f67bff03b4b
[ 3750.458633] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3750.458634] RSP: 002b:00007f5a857f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3750.458637] RAX: ffffffffffffffda RBX: 0000563db61d1ba0 RCX: 00007f67bff03b4b
[ 3750.458638] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000114
[ 3750.458639] RBP: 0000563db61d1ba0 R08: 0000000000000000 R09: 0000000000000000
[ 3750.458640] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3750.458642] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3750.458647]  </TASK>
[ 3750.458648] watchdog: BUG: soft lockup - CPU#76 stuck for 100s! [qemu-system-x86:31260]
[ 3750.458650] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3750.458714] CPU: 76 UID: 0 PID: 31260 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3750.458718] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3750.458719] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3750.458720] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3750.458724] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3750.458725] RSP: 0018:ffffaab62ad1b8b8 EFLAGS: 00000202
[ 3750.458728] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3750.458729] RDX: 0000000000000001 RSI: ffff8f717fff9940 RDI: ffff8f5287658010
[ 3750.458731] RBP: ffffaab62ad1b918 R08: 0000000000000007 R09: ffff8f52876589f0
[ 3750.458732] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3750.458733] R13: 0000000000000202 R14: ffff8f7180932a40 R15: 0000000000000080
[ 3750.458735] FS:  00007f5b07fff640(0000) GS:ffff8f71ee136000(0000) knlGS:0000000000000000
[ 3750.458737] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3750.458739] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3750.458740] PKRU: 55555554
[ 3750.458741] Call Trace:
[ 3750.458742]  <TASK>
[ 3750.458744]  ? __pfx___wbinvd+0x10/0x10
[ 3750.458749]  on_each_cpu_cond_mask+0x28/0x50
[ 3750.458752]  wbinvd_on_all_cpus+0x29/0x40
[ 3750.458756]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3750.458765]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3750.458818]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3750.458874]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3750.458879]  change_protection+0xfc9/0x1200
[ 3750.458884]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.458888]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.458891]  ? update_load_avg+0x84/0x780
[ 3750.458895]  ? write_ibpb+0x21/0x40
[ 3750.458898]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3750.458952]  change_prot_numa+0x5b/0xe0
[ 3750.458959]  task_numa_work+0x3c5/0x9b0
[ 3750.458967]  task_work_run+0x64/0xa0
[ 3750.458971]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3750.458976]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3750.459029]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3750.459082]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.459084]  ? do_futex+0xc8/0x1d0
[ 3750.459087]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.459090]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.459094]  __x64_sys_ioctl+0xa0/0xf0
[ 3750.459098]  x64_sys_call+0x122e/0x2150
[ 3750.459101]  do_syscall_64+0x56/0x1e0
[ 3750.459105]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3750.459107] RIP: 0033:0x7f67bff03b4b
[ 3750.459109] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3750.459111] RSP: 002b:00007f5b07ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3750.459113] RAX: ffffffffffffffda RBX: 0000563db60831d0 RCX: 00007f67bff03b4b
[ 3750.459115] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000d2
[ 3750.459116] RBP: 0000563db60831d0 R08: 0000000000000000 R09: 0000000000000000
[ 3750.459117] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3750.459119] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3750.459124]  </TASK>
[ 3750.462223] watchdog: BUG: soft lockup - CPU#79 stuck for 100s! [qemu-system-x86:31405]
[ 3750.462226] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3750.462282] CPU: 79 UID: 0 PID: 31405 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3750.462286] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3750.462287] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3750.462288] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3750.462291] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3750.462293] RSP: 0018:ffffaab62bf378b8 EFLAGS: 00000202
[ 3750.462295] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3750.462296] RDX: 0000000000000001 RSI: ffff8f717fff99a0 RDI: ffff8f5287658600
[ 3750.462297] RBP: ffffaab62bf37918 R08: 0000000000000007 R09: ffff8f5287658dc0
[ 3750.462299] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3750.462300] R13: 0000000000000202 R14: ffff8f71809f2a40 R15: 0000000000000080
[ 3750.462301] FS:  00007f58857fa640(0000) GS:ffff8f71ee1f6000(0000) knlGS:0000000000000000
[ 3750.462303] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3750.462304] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3750.462306] PKRU: 55555554
[ 3750.462307] Call Trace:
[ 3750.462308]  <TASK>
[ 3750.462309]  ? __pfx___wbinvd+0x10/0x10
[ 3750.462314]  on_each_cpu_cond_mask+0x28/0x50
[ 3750.462317]  wbinvd_on_all_cpus+0x29/0x40
[ 3750.462321]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3750.462328]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3750.462381]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3750.462436]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3750.462441]  change_protection+0xfc9/0x1200
[ 3750.462445]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.462448]  ? update_curr_dl_se+0x3b/0x1e0
[ 3750.462453]  ? dl_server_update+0x2e/0x40
[ 3750.462457]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.462461]  ? pick_next_task_fair+0x4f/0x490
[ 3750.462464]  change_prot_numa+0x5b/0xe0
[ 3750.462469]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.462471]  ? update_load_avg+0x84/0x780
[ 3750.462473]  ? __dequeue_entity+0x3cd/0x4a0
[ 3750.462478]  task_numa_work+0x3c5/0x9b0
[ 3750.462485]  task_work_run+0x64/0xa0
[ 3750.462489]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3750.462493]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3750.462546]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3750.462599]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.462601]  ? do_futex+0xc8/0x1d0
[ 3750.462603]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.462606]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.462609]  __x64_sys_ioctl+0xa0/0xf0
[ 3750.462614]  x64_sys_call+0x122e/0x2150
[ 3750.462616]  do_syscall_64+0x56/0x1e0
[ 3750.462620]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3750.462622] RIP: 0033:0x7f67bff03b4b
[ 3750.462624] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3750.462626] RSP: 002b:00007f58857f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3750.462628] RAX: ffffffffffffffda RBX: 0000563db66402f0 RCX: 00007f67bff03b4b
[ 3750.462629] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001f4
[ 3750.462630] RBP: 0000563db66402f0 R08: 0000000000000000 R09: 0000000000000000
[ 3750.462631] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3750.462633] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3750.462638]  </TASK>
[ 3750.462639] watchdog: BUG: soft lockup - CPU#78 stuck for 100s! [qemu-system-x86:31355]
[ 3750.462642] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3750.462698] CPU: 78 UID: 0 PID: 31355 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3750.462701] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3750.462702] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3750.462703] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3750.462707] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3750.462708] RSP: 0018:ffffaab62b28f8b8 EFLAGS: 00000202
[ 3750.462710] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3750.462711] RDX: 0000000000000001 RSI: ffff8f717fff9980 RDI: ffff8f5287658f10
[ 3750.462713] RBP: ffffaab62b28f918 R08: 0000000000000007 R09: ffff8f5287658d90
[ 3750.462714] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3750.462715] R13: 0000000000000202 R14: ffff8f71809b2a40 R15: 0000000000000080
[ 3750.462717] FS:  00007f5965ffb640(0000) GS:ffff8f71ee1b6000(0000) knlGS:0000000000000000
[ 3750.462718] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3750.462720] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3750.462721] PKRU: 55555554
[ 3750.462722] Call Trace:
[ 3750.462723]  <TASK>
[ 3750.462725]  ? __pfx___wbinvd+0x10/0x10
[ 3750.462730]  on_each_cpu_cond_mask+0x28/0x50
[ 3750.462733]  wbinvd_on_all_cpus+0x29/0x40
[ 3750.462736]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3750.462744]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3750.462795]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3750.462850]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3750.462854]  change_protection+0xfc9/0x1200
[ 3750.462858]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.462863]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.462865]  ? update_load_avg+0x84/0x780
[ 3750.462869]  ? write_ibpb+0x21/0x40
[ 3750.462872]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3750.462924]  change_prot_numa+0x5b/0xe0
[ 3750.462931]  task_numa_work+0x3c5/0x9b0
[ 3750.462938]  task_work_run+0x64/0xa0
[ 3750.462942]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3750.462946]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3750.462998]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3750.463050]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.463053]  ? do_futex+0xc8/0x1d0
[ 3750.463055]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.463057]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.463061]  __x64_sys_ioctl+0xa0/0xf0
[ 3750.463065]  x64_sys_call+0x122e/0x2150
[ 3750.463067]  do_syscall_64+0x56/0x1e0
[ 3750.463071]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3750.463073] RIP: 0033:0x7f67bff03b4b
[ 3750.463075] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3750.463077] RSP: 002b:00007f5965ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3750.463079] RAX: ffffffffffffffda RBX: 0000563db64454a0 RCX: 00007f67bff03b4b
[ 3750.463081] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000190
[ 3750.463082] RBP: 0000563db64454a0 R08: 0000000000000000 R09: 0000000000000000
[ 3750.463083] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3750.463084] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3750.463089]  </TASK>
[ 3750.486223] watchdog: BUG: soft lockup - CPU#90 stuck for 100s! [qemu-system-x86:31229]
[ 3750.486227] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3750.486303] CPU: 90 UID: 0 PID: 31229 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3750.486308] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3750.486309] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3750.486311] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3750.486315] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3750.486318] RSP: 0018:ffffaab62abb38b8 EFLAGS: 00000202
[ 3750.486320] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3750.486322] RDX: 0000000000000001 RSI: ffff8f717fff9b00 RDI: ffff8f52889c6c20
[ 3750.486324] RBP: ffffaab62abb3918 R08: 0000000000000007 R09: ffff8f52889c6d70
[ 3750.486326] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3750.486327] R13: 0000000000000202 R14: ffff8f7180cb2a40 R15: 0000000000000080
[ 3750.486329] FS:  00007f5ba5ffb640(0000) GS:ffff8f71ee4b6000(0000) knlGS:0000000000000000
[ 3750.486331] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3750.486333] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3750.486335] PKRU: 55555554
[ 3750.486336] Call Trace:
[ 3750.486337]  <TASK>
[ 3750.486339]  ? __pfx___wbinvd+0x10/0x10
[ 3750.486345]  on_each_cpu_cond_mask+0x28/0x50
[ 3750.486348]  wbinvd_on_all_cpus+0x29/0x40
[ 3750.486352]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3750.486364]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3750.486445]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3750.486522]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3750.486528]  change_protection+0xfc9/0x1200
[ 3750.486533]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.486537]  ? update_curr_dl_se+0x3b/0x1e0
[ 3750.486542]  ? dl_server_update+0x2e/0x40
[ 3750.486546]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.486550]  ? pick_next_task_fair+0x4f/0x490
[ 3750.486554]  change_prot_numa+0x5b/0xe0
[ 3750.486559]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3750.486566]  task_numa_work+0x3c5/0x9b0
[ 3750.486574]  task_work_run+0x64/0xa0
[ 3750.486579]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3750.486583]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3750.486662]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3750.486734]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.486738]  ? do_futex+0xc8/0x1d0
[ 3750.486741]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.486743]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.486747]  __x64_sys_ioctl+0xa0/0xf0
[ 3750.486752]  x64_sys_call+0x122e/0x2150
[ 3750.486755]  do_syscall_64+0x56/0x1e0
[ 3750.486759]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3750.486761] RIP: 0033:0x7f67bff03b4b
[ 3750.486764] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3750.486766] RSP: 002b:00007f5ba5ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3750.486769] RAX: ffffffffffffffda RBX: 0000563db5f493b0 RCX: 00007f67bff03b4b
[ 3750.486770] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000094
[ 3750.486772] RBP: 0000563db5f493b0 R08: 0000000000000000 R09: 0000000000000000
[ 3750.486773] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3750.486775] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3750.486781]  </TASK>
[ 3750.498222] watchdog: BUG: soft lockup - CPU#94 stuck for 100s! [qemu-system-x86:31408]
[ 3750.498224] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3750.498281] CPU: 94 UID: 0 PID: 31408 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3750.498284] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3750.498285] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3750.498286] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3750.498289] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3750.498291] RSP: 0018:ffffaab6270878b8 EFLAGS: 00000202
[ 3750.498293] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3750.498294] RDX: 0000000000000001 RSI: ffff8f717fff9b80 RDI: ffff8f52889c6630
[ 3750.498295] RBP: ffffaab627087918 R08: 0000000000000007 R09: ffff8f52889c6dd0
[ 3750.498296] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3750.498298] R13: 0000000000000202 R14: ffff8f7180db2a40 R15: 0000000000000080
[ 3750.498299] FS:  00007f58677fe640(0000) GS:ffff8f71ee5b6000(0000) knlGS:0000000000000000
[ 3750.498301] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3750.498302] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3750.498303] PKRU: 55555554
[ 3750.498304] Call Trace:
[ 3750.498305]  <TASK>
[ 3750.498307]  ? __pfx___wbinvd+0x10/0x10
[ 3750.498312]  on_each_cpu_cond_mask+0x28/0x50
[ 3750.498315]  wbinvd_on_all_cpus+0x29/0x40
[ 3750.498318]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3750.498326]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3750.498377]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3750.498431]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3750.498435]  change_protection+0xfc9/0x1200
[ 3750.498441]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.498444]  ? update_load_avg+0x84/0x780
[ 3750.498448]  ? write_ibpb+0x21/0x40
[ 3750.498451]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3750.498503]  change_prot_numa+0x5b/0xe0
[ 3750.498509]  task_numa_work+0x3c5/0x9b0
[ 3750.498517]  task_work_run+0x64/0xa0
[ 3750.498521]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3750.498525]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3750.498577]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3750.498629]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.498631]  ? do_futex+0xc8/0x1d0
[ 3750.498633]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.498636]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.498639]  __x64_sys_ioctl+0xa0/0xf0
[ 3750.498644]  x64_sys_call+0x122e/0x2150
[ 3750.498646]  do_syscall_64+0x56/0x1e0
[ 3750.498650]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3750.498651] RIP: 0033:0x7f67bff03b4b
[ 3750.498653] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3750.498655] RSP: 002b:00007f58677fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3750.498657] RAX: ffffffffffffffda RBX: 0000563db665ee40 RCX: 00007f67bff03b4b
[ 3750.498658] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001fa
[ 3750.498660] RBP: 0000563db665ee40 R08: 0000000000000000 R09: 0000000000000000
[ 3750.498661] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3750.498662] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3750.498667]  </TASK>
[ 3750.510222] watchdog: BUG: soft lockup - CPU#99 stuck for 100s! [qemu-system-x86:31305]
[ 3750.510225] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3750.510293] CPU: 99 UID: 0 PID: 31305 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3750.510297] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3750.510298] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3750.510300] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3750.510303] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3750.510305] RSP: 0018:ffffaab62af6f8b8 EFLAGS: 00000202
[ 3750.510307] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3750.510309] RDX: 0000000000000001 RSI: ffff8f717fff9c20 RDI: ffff8f7206c6a900
[ 3750.510310] RBP: ffffaab62af6f918 R08: 0000000000000007 R09: ffff8f7206c6a960
[ 3750.510312] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3750.510313] R13: 0000000000000202 R14: ffff8f917e8f2a40 R15: 0000000000000080
[ 3750.510314] FS:  00007f5a467fc640(0000) GS:ffff8f91ec0f6000(0000) knlGS:0000000000000000
[ 3750.510316] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3750.510318] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3750.510319] PKRU: 55555554
[ 3750.510321] Call Trace:
[ 3750.510322]  <TASK>
[ 3750.510324]  ? __pfx___wbinvd+0x10/0x10
[ 3750.510329]  on_each_cpu_cond_mask+0x28/0x50
[ 3750.510332]  wbinvd_on_all_cpus+0x29/0x40
[ 3750.510336]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3750.510344]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3750.510396]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3750.510451]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3750.510455]  change_protection+0xfc9/0x1200
[ 3750.510460]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.510464]  ? update_curr_dl_se+0x3b/0x1e0
[ 3750.510468]  ? dl_server_update+0x2e/0x40
[ 3750.510472]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.510475]  ? pick_next_task_fair+0x4f/0x490
[ 3750.510479]  change_prot_numa+0x5b/0xe0
[ 3750.510485]  task_numa_work+0x3c5/0x9b0
[ 3750.510493]  task_work_run+0x64/0xa0
[ 3750.510497]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3750.510501]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3750.510554]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3750.510606]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.510609]  ? do_futex+0xc8/0x1d0
[ 3750.510611]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.510613]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.510617]  __x64_sys_ioctl+0xa0/0xf0
[ 3750.510621]  x64_sys_call+0x122e/0x2150
[ 3750.510624]  do_syscall_64+0x56/0x1e0
[ 3750.510627]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3750.510629] RIP: 0033:0x7f67bff03b4b
[ 3750.510631] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3750.510633] RSP: 002b:00007f5a467fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3750.510635] RAX: ffffffffffffffda RBX: 0000563db624bbb0 RCX: 00007f67bff03b4b
[ 3750.510636] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000012c
[ 3750.510637] RBP: 0000563db624bbb0 R08: 0000000000000000 R09: 0000000000000000
[ 3750.510639] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3750.510640] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3750.510645]  </TASK>
[ 3750.514222] watchdog: BUG: soft lockup - CPU#102 stuck for 74s! [migration/102:635]
[ 3750.514225] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3750.514281] CPU: 102 UID: 0 PID: 635 Comm: migration/102 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3750.514285] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3750.514286] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3750.514287] Stopper: multi_cpu_stop+0x0/0x110 <- migrate_swap+0xad/0x120
[ 3750.514291] RIP: 0010:stop_machine_yield+0x6/0x10
[ 3750.514294] Code: ff b8 fe ff ff ff eb e0 e8 57 eb dd 00 0f 1f 80 00 00 00 00 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 66 0f 1f 00 f3 90 <e9> c0 39 d0 ff 0f 1f 44 00 00 90 90 90 90 90 90 90 90 90 90 90 90
[ 3750.514296] RSP: 0018:ffffaab60e04fe20 EFLAGS: 00000246
[ 3750.514298] RAX: 0000000000000286 RBX: ffffaab6920bbb2c RCX: 0000000000000002
[ 3750.514299] RDX: ffffaab6920bbb08 RSI: 0000000000000282 RDI: ffffffff91814360
[ 3750.514300] RBP: ffffaab60e04fe60 R08: 0000000000000001 R09: 000000000000030d
[ 3750.514302] R10: 0000000000000000 R11: 0000000000000001 R12: 0000000000000001
[ 3750.514303] R13: ffffffff91814360 R14: 0000000000000001 R15: ffffaab6920bbb08
[ 3750.514304] FS:  0000000000000000(0000) GS:ffff8f91ec1b6000(0000) knlGS:0000000000000000
[ 3750.514306] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3750.514307] CR2: 00007fac4c502638 CR3: 00000020b12b4006 CR4: 0000000000770ef0
[ 3750.514308] PKRU: 55555554
[ 3750.514309] Call Trace:
[ 3750.514310]  <TASK>
[ 3750.514311]  ? multi_cpu_stop+0x9e/0x110
[ 3750.514315]  ? __pfx_multi_cpu_stop+0x10/0x10
[ 3750.514318]  cpu_stopper_thread+0x97/0x140
[ 3750.514322]  smpboot_thread_fn+0x101/0x230
[ 3750.514326]  kthread+0x10b/0x220
[ 3750.514329]  ? __pfx_smpboot_thread_fn+0x10/0x10
[ 3750.514332]  ? __pfx_kthread+0x10/0x10
[ 3750.514335]  ret_from_fork+0x8e/0x100
[ 3750.514339]  ? __pfx_kthread+0x10/0x10
[ 3750.514342]  ret_from_fork_asm+0x1a/0x30
[ 3750.514347]  </TASK>
[ 3750.538221] watchdog: BUG: soft lockup - CPU#112 stuck for 100s! [qemu-system-x86:31254]
[ 3750.538225] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3750.538283] CPU: 112 UID: 0 PID: 31254 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3750.538286] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3750.538287] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3750.538289] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3750.538292] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3750.538294] RSP: 0018:ffffaab62aceb8b8 EFLAGS: 00000202
[ 3750.538296] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3750.538297] RDX: 0000000000000001 RSI: ffff8f717fff9dc0 RDI: ffff8f7206c6a1e0
[ 3750.538299] RBP: ffffaab62aceb918 R08: 0000000000000007 R09: ffff8f7206c6a910
[ 3750.538300] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3750.538301] R13: 0000000000000202 R14: ffff8f917ec32a40 R15: 0000000000000080
[ 3750.538303] FS:  00007f5b277fe640(0000) GS:ffff8f91ec436000(0000) knlGS:0000000000000000
[ 3750.538305] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3750.538306] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3750.538308] PKRU: 55555554
[ 3750.538309] Call Trace:
[ 3750.538310]  <TASK>
[ 3750.538312]  ? __pfx___wbinvd+0x10/0x10
[ 3750.538317]  on_each_cpu_cond_mask+0x28/0x50
[ 3750.538320]  wbinvd_on_all_cpus+0x29/0x40
[ 3750.538323]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3750.538331]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3750.538383]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3750.538438]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3750.538442]  change_protection+0xfc9/0x1200
[ 3750.538447]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.538451]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.538453]  ? update_load_avg+0x84/0x780
[ 3750.538457]  ? write_ibpb+0x21/0x40
[ 3750.538460]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3750.538513]  change_prot_numa+0x5b/0xe0
[ 3750.538520]  task_numa_work+0x3c5/0x9b0
[ 3750.538527]  task_work_run+0x64/0xa0
[ 3750.538531]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3750.538535]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3750.538587]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3750.538639]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.538641]  ? do_futex+0xc8/0x1d0
[ 3750.538644]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.538646]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.538650]  __x64_sys_ioctl+0xa0/0xf0
[ 3750.538654]  x64_sys_call+0x122e/0x2150
[ 3750.538656]  do_syscall_64+0x56/0x1e0
[ 3750.538660]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3750.538662] RIP: 0033:0x7f67bff03b4b
[ 3750.538664] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3750.538665] RSP: 002b:00007f5b277fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3750.538667] RAX: ffffffffffffffda RBX: 0000563db60459d0 RCX: 00007f67bff03b4b
[ 3750.538669] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000c6
[ 3750.538670] RBP: 0000563db60459d0 R08: 0000000000000000 R09: 0000000000000000
[ 3750.538671] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3750.538672] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3750.538678]  </TASK>
[ 3750.566222] watchdog: BUG: soft lockup - CPU#125 stuck for 100s! [qemu-system-x86:31339]
[ 3750.566226] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3750.566296] CPU: 125 UID: 0 PID: 31339 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3750.566300] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3750.566302] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3750.566303] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3750.566307] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3750.566310] RSP: 0018:ffffaab62b20f8b8 EFLAGS: 00000202
[ 3750.566312] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3750.566314] RDX: 0000000000000001 RSI: ffff8f717fff9f60 RDI: ffff8f7207fa2fc0
[ 3750.566315] RBP: ffffaab62b20f918 R08: 0000000000000007 R09: ffff8f7207fa22a0
[ 3750.566317] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3750.566319] R13: 0000000000000202 R14: ffff8f917ef72a40 R15: 0000000000000080
[ 3750.566320] FS:  00007f59a6ffd640(0000) GS:ffff8f91ec776000(0000) knlGS:0000000000000000
[ 3750.566323] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3750.566324] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3750.566326] PKRU: 55555554
[ 3750.566328] Call Trace:
[ 3750.566329]  <TASK>
[ 3750.566331]  ? __pfx___wbinvd+0x10/0x10
[ 3750.566337]  on_each_cpu_cond_mask+0x28/0x50
[ 3750.566340]  wbinvd_on_all_cpus+0x29/0x40
[ 3750.566345]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3750.566356]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3750.566430]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3750.566503]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3750.566508]  change_protection+0xfc9/0x1200
[ 3750.566513]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.566517]  ? update_curr_dl_se+0x3b/0x1e0
[ 3750.566521]  ? dl_server_update+0x2e/0x40
[ 3750.566525]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.566529]  ? pick_next_task_fair+0x4f/0x490
[ 3750.566533]  change_prot_numa+0x5b/0xe0
[ 3750.566541]  task_numa_work+0x3c5/0x9b0
[ 3750.566549]  task_work_run+0x64/0xa0
[ 3750.566555]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3750.566561]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3750.566647]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3750.566720]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.566723]  ? do_futex+0xc8/0x1d0
[ 3750.566726]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.566729]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3750.566733]  __x64_sys_ioctl+0xa0/0xf0
[ 3750.566738]  x64_sys_call+0x122e/0x2150
[ 3750.566740]  do_syscall_64+0x56/0x1e0
[ 3750.566745]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3750.566747] RIP: 0033:0x7f67bff03b4b
[ 3750.566750] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3750.566752] RSP: 002b:00007f59a6ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3750.566755] RAX: ffffffffffffffda RBX: 0000563db63a3d90 RCX: 00007f67bff03b4b
[ 3750.566757] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000170
[ 3750.566759] RBP: 0000563db63a3d90 R08: 0000000000000000 R09: 0000000000000000
[ 3750.566760] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3750.566762] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3750.566768]  </TASK>
[ 3754.230148] watchdog: BUG: soft lockup - CPU#0 stuck for 104s! [qemu-system-x86:31247]
[ 3754.230154] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3754.230222] CPU: 0 UID: 0 PID: 31247 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3754.230226] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3754.230228] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3754.230229] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3754.230236] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3754.230238] RSP: 0018:ffffaab62acb38b8 EFLAGS: 00000202
[ 3754.230240] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3754.230242] RDX: 0000000000000001 RSI: ffff8f717fff7be0 RDI: ffff8f5280265790
[ 3754.230243] RBP: ffffaab62acb3918 R08: 0000000000000007 R09: ffff8f52802654d0
[ 3754.230244] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3754.230246] R13: 0000000000000202 R14: ffff8f717fe32a40 R15: 0000000000000080
[ 3754.230247] FS:  00007f5b477fe640(0000) GS:ffff8f71ed636000(0000) knlGS:0000000000000000
[ 3754.230249] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3754.230250] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3754.230252] PKRU: 55555554
[ 3754.230253] Call Trace:
[ 3754.230254]  <TASK>
[ 3754.230257]  ? __pfx___wbinvd+0x10/0x10
[ 3754.230264]  on_each_cpu_cond_mask+0x28/0x50
[ 3754.230268]  wbinvd_on_all_cpus+0x29/0x40
[ 3754.230272]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3754.230281]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3754.230335]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3754.230391]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3754.230397]  change_protection+0xfc9/0x1200
[ 3754.230402]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.230407]  ? update_curr_dl_se+0x3b/0x1e0
[ 3754.230411]  ? dl_server_update+0x2e/0x40
[ 3754.230415]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.230418]  ? pick_next_task_fair+0x4f/0x490
[ 3754.230422]  change_prot_numa+0x5b/0xe0
[ 3754.230429]  task_numa_work+0x3c5/0x9b0
[ 3754.230437]  task_work_run+0x64/0xa0
[ 3754.230442]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3754.230447]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3754.230499]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3754.230551]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.230554]  ? do_futex+0xc8/0x1d0
[ 3754.230556]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.230558]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.230562]  __x64_sys_ioctl+0xa0/0xf0
[ 3754.230567]  x64_sys_call+0x122e/0x2150
[ 3754.230570]  do_syscall_64+0x56/0x1e0
[ 3754.230575]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3754.230577] RIP: 0033:0x7f67bff03b4b
[ 3754.230580] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3754.230582] RSP: 002b:00007f5b477fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3754.230584] RAX: ffffffffffffffda RBX: 0000563db5fff400 RCX: 00007f67bff03b4b
[ 3754.230585] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000b8
[ 3754.230586] RBP: 0000563db5fff400 R08: 0000000000000000 R09: 0000000000000000
[ 3754.230588] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3754.230589] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3754.230594]  </TASK>
[ 3754.262147] watchdog: BUG: soft lockup - CPU#2 stuck for 101s! [qemu-system-x86:31389]
[ 3754.262149] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3754.262207] CPU: 2 UID: 0 PID: 31389 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3754.262210] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3754.262211] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3754.262212] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3754.262215] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3754.262217] RSP: 0018:ffffaab62c1d38b8 EFLAGS: 00000202
[ 3754.262219] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3754.262220] RDX: 0000000000000001 RSI: ffff8f717fff9000 RDI: ffff8f5280a32a50
[ 3754.262221] RBP: ffffaab62c1d3918 R08: 0000000000000007 R09: ffff8f5280a32b70
[ 3754.262223] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3754.262224] R13: 0000000000000202 R14: ffff8f717feb2a40 R15: 0000000000000080
[ 3754.262225] FS:  00007f58c67fc640(0000) GS:ffff8f71ed6b6000(0000) knlGS:0000000000000000
[ 3754.262227] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3754.262228] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3754.262230] PKRU: 55555554
[ 3754.262231] Call Trace:
[ 3754.262232]  <TASK>
[ 3754.262233]  ? __pfx___wbinvd+0x10/0x10
[ 3754.262238]  on_each_cpu_cond_mask+0x28/0x50
[ 3754.262241]  wbinvd_on_all_cpus+0x29/0x40
[ 3754.262245]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3754.262252]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3754.262305]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3754.262360]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3754.262364]  change_protection+0xfc9/0x1200
[ 3754.262369]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.262372]  ? update_curr_dl_se+0x3b/0x1e0
[ 3754.262375]  ? dl_server_update+0x2e/0x40
[ 3754.262379]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.262383]  ? pick_next_task_fair+0x4f/0x490
[ 3754.262386]  change_prot_numa+0x5b/0xe0
[ 3754.262391]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.262393]  ? update_load_avg+0x84/0x780
[ 3754.262395]  ? __dequeue_entity+0x3cd/0x4a0
[ 3754.262400]  task_numa_work+0x3c5/0x9b0
[ 3754.262407]  task_work_run+0x64/0xa0
[ 3754.262411]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3754.262415]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3754.262467]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3754.262519]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.262522]  ? do_futex+0xc8/0x1d0
[ 3754.262524]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.262526]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.262530]  __x64_sys_ioctl+0xa0/0xf0
[ 3754.262534]  x64_sys_call+0x122e/0x2150
[ 3754.262536]  do_syscall_64+0x56/0x1e0
[ 3754.262540]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3754.262542] RIP: 0033:0x7f67bff03b4b
[ 3754.262544] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3754.262546] RSP: 002b:00007f58c67fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3754.262548] RAX: ffffffffffffffda RBX: 0000563db659ce40 RCX: 00007f67bff03b4b
[ 3754.262550] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001d4
[ 3754.262551] RBP: 0000563db659ce40 R08: 0000000000000000 R09: 0000000000000000
[ 3754.262552] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3754.262553] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3754.262559]  </TASK>
[ 3754.262560] watchdog: BUG: soft lockup - CPU#1 stuck for 104s! [qemu-system-x86:31314]
[ 3754.262562] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3754.262618] CPU: 1 UID: 0 PID: 31314 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3754.262621] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3754.262622] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3754.262623] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3754.262626] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3754.262628] RSP: 0018:ffffaab62afb78b8 EFLAGS: 00000202
[ 3754.262630] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3754.262631] RDX: 0000000000000001 RSI: ffff8f717fff8fe0 RDI: ffff8f5280a32cf0
[ 3754.262632] RBP: ffffaab62afb7918 R08: 0000000000000007 R09: ffff8f5280a326e0
[ 3754.262634] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3754.262635] R13: 0000000000000202 R14: ffff8f717fe72a40 R15: 0000000000000080
[ 3754.262636] FS:  00007f5a257fa640(0000) GS:ffff8f71ed676000(0000) knlGS:0000000000000000
[ 3754.262638] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3754.262639] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3754.262641] PKRU: 55555554
[ 3754.262642] Call Trace:
[ 3754.262643]  <TASK>
[ 3754.262644]  ? __pfx___wbinvd+0x10/0x10
[ 3754.262649]  on_each_cpu_cond_mask+0x28/0x50
[ 3754.262652]  wbinvd_on_all_cpus+0x29/0x40
[ 3754.262656]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3754.262664]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3754.262716]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3754.262771]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3754.262775]  change_protection+0xfc9/0x1200
[ 3754.262781]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.262784]  ? update_load_avg+0x84/0x780
[ 3754.262788]  ? write_ibpb+0x21/0x40
[ 3754.262791]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3754.262844]  change_prot_numa+0x5b/0xe0
[ 3754.262849]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.262851]  ? update_load_avg+0x84/0x780
[ 3754.262854]  ? __dequeue_entity+0x3cd/0x4a0
[ 3754.262858]  task_numa_work+0x3c5/0x9b0
[ 3754.262865]  task_work_run+0x64/0xa0
[ 3754.262869]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3754.262873]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3754.262926]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3754.262978]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.262981]  ? do_futex+0xc8/0x1d0
[ 3754.262983]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.262986]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.262989]  __x64_sys_ioctl+0xa0/0xf0
[ 3754.262994]  x64_sys_call+0x122e/0x2150
[ 3754.262996]  do_syscall_64+0x56/0x1e0
[ 3754.262999]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3754.263001] RIP: 0033:0x7f67bff03b4b
[ 3754.263003] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3754.263005] RSP: 002b:00007f5a257f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3754.263007] RAX: ffffffffffffffda RBX: 0000563db62a68f0 RCX: 00007f67bff03b4b
[ 3754.263009] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000013e
[ 3754.263010] RBP: 0000563db62a68f0 R08: 0000000000000000 R09: 0000000000000000
[ 3754.263011] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3754.263012] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3754.263017]  </TASK>
[ 3754.266146] watchdog: BUG: soft lockup - CPU#3 stuck for 101s! [qemu-system-x86:31397]
[ 3754.266149] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3754.266205] CPU: 3 UID: 0 PID: 31397 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3754.266209] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3754.266210] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3754.266211] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3754.266214] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3754.266216] RSP: 0018:ffffaab62c1938b8 EFLAGS: 00000202
[ 3754.266218] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3754.266219] RDX: 0000000000000001 RSI: ffff8f717fff9020 RDI: ffff8f5280a32490
[ 3754.266220] RBP: ffffaab62c193918 R08: 0000000000000007 R09: ffff8f5280a32d40
[ 3754.266222] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3754.266223] R13: 0000000000000202 R14: ffff8f717fef2a40 R15: 0000000000000080
[ 3754.266224] FS:  00007f58a5ffb640(0000) GS:ffff8f71ed6f6000(0000) knlGS:0000000000000000
[ 3754.266226] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3754.266227] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3754.266229] PKRU: 55555554
[ 3754.266230] Call Trace:
[ 3754.266231]  <TASK>
[ 3754.266233]  ? __pfx___wbinvd+0x10/0x10
[ 3754.266238]  on_each_cpu_cond_mask+0x28/0x50
[ 3754.266241]  wbinvd_on_all_cpus+0x29/0x40
[ 3754.266244]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3754.266252]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3754.266306]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3754.266361]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3754.266365]  change_protection+0xfc9/0x1200
[ 3754.266372]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.266374]  ? update_load_avg+0x84/0x780
[ 3754.266378]  ? write_ibpb+0x21/0x40
[ 3754.266382]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3754.266435]  change_prot_numa+0x5b/0xe0
[ 3754.266441]  task_numa_work+0x3c5/0x9b0
[ 3754.266449]  task_work_run+0x64/0xa0
[ 3754.266453]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3754.266457]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3754.266510]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3754.266563]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.266565]  ? do_futex+0xc8/0x1d0
[ 3754.266568]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.266570]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.266574]  __x64_sys_ioctl+0xa0/0xf0
[ 3754.266578]  x64_sys_call+0x122e/0x2150
[ 3754.266580]  do_syscall_64+0x56/0x1e0
[ 3754.266584]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3754.266586] RIP: 0033:0x7f67bff03b4b
[ 3754.266588] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3754.266590] RSP: 002b:00007f58a5ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3754.266592] RAX: ffffffffffffffda RBX: 0000563db65eddb0 RCX: 00007f67bff03b4b
[ 3754.266593] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001e4
[ 3754.266595] RBP: 0000563db65eddb0 R08: 0000000000000000 R09: 0000000000000000
[ 3754.266596] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3754.266597] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3754.266602]  </TASK>
[ 3754.270146] watchdog: BUG: soft lockup - CPU#5 stuck for 101s! [qemu-system-x86:31362]
[ 3754.270149] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3754.270206] CPU: 5 UID: 0 PID: 31362 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3754.270209] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3754.270210] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3754.270211] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3754.270214] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3754.270216] RSP: 0018:ffffaab62b2c78b8 EFLAGS: 00000202
[ 3754.270218] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3754.270219] RDX: 0000000000000001 RSI: ffff8f717fff9060 RDI: ffff8f5280a32260
[ 3754.270221] RBP: ffffaab62b2c7918 R08: 0000000000000007 R09: ffff8f5280a32eb0
[ 3754.270222] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3754.270223] R13: 0000000000000202 R14: ffff8f717ff72a40 R15: 0000000000000080
[ 3754.270225] FS:  00007f5945ffb640(0000) GS:ffff8f71ed776000(0000) knlGS:0000000000000000
[ 3754.270226] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3754.270228] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3754.270229] PKRU: 55555554
[ 3754.270230] Call Trace:
[ 3754.270231]  <TASK>
[ 3754.270233]  ? __pfx___wbinvd+0x10/0x10
[ 3754.270238]  on_each_cpu_cond_mask+0x28/0x50
[ 3754.270241]  wbinvd_on_all_cpus+0x29/0x40
[ 3754.270244]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3754.270252]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3754.270306]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3754.270362]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3754.270366]  change_protection+0xfc9/0x1200
[ 3754.270372]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.270375]  ? update_load_avg+0x84/0x780
[ 3754.270379]  ? write_ibpb+0x21/0x40
[ 3754.270382]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3754.270436]  change_prot_numa+0x5b/0xe0
[ 3754.270443]  task_numa_work+0x3c5/0x9b0
[ 3754.270450]  task_work_run+0x64/0xa0
[ 3754.270454]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3754.270458]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3754.270511]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3754.270564]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.270567]  ? do_futex+0xc8/0x1d0
[ 3754.270569]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.270571]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.270575]  __x64_sys_ioctl+0xa0/0xf0
[ 3754.270579]  x64_sys_call+0x122e/0x2150
[ 3754.270581]  do_syscall_64+0x56/0x1e0
[ 3754.270585]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3754.270587] RIP: 0033:0x7f67bff03b4b
[ 3754.270589] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3754.270591] RSP: 002b:00007f5945ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3754.270593] RAX: ffffffffffffffda RBX: 0000563db648caa0 RCX: 00007f67bff03b4b
[ 3754.270594] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000019e
[ 3754.270595] RBP: 0000563db648caa0 R08: 0000000000000000 R09: 0000000000000000
[ 3754.270597] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3754.270598] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3754.270603]  </TASK>
[ 3754.286147] watchdog: BUG: soft lockup - CPU#11 stuck for 101s! [qemu-system-x86:31294]
[ 3754.286152] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3754.286222] CPU: 11 UID: 0 PID: 31294 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3754.286227] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3754.286228] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3754.286230] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3754.286238] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3754.286240] RSP: 0018:ffffaab62af178b8 EFLAGS: 00000202
[ 3754.286242] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3754.286244] RDX: 0000000000000001 RSI: ffff8f717fff9120 RDI: ffff8f5280a32cc0
[ 3754.286246] RBP: ffffaab62af17918 R08: 0000000000000007 R09: ffff8f5280a32500
[ 3754.286248] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3754.286249] R13: 0000000000000202 R14: ffff8f71800f2a40 R15: 0000000000000080
[ 3754.286251] FS:  00007f5a84ff9640(0000) GS:ffff8f71ed8f6000(0000) knlGS:0000000000000000
[ 3754.286253] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3754.286254] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3754.286256] PKRU: 55555554
[ 3754.286257] Call Trace:
[ 3754.286259]  <TASK>
[ 3754.286263]  ? __pfx___wbinvd+0x10/0x10
[ 3754.286270]  on_each_cpu_cond_mask+0x28/0x50
[ 3754.286273]  wbinvd_on_all_cpus+0x29/0x40
[ 3754.286278]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3754.286287]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3754.286342]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3754.286398]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3754.286405]  change_protection+0xfc9/0x1200
[ 3754.286412]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.286416]  ? update_load_avg+0x84/0x780
[ 3754.286420]  ? write_ibpb+0x21/0x40
[ 3754.286425]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3754.286479]  change_prot_numa+0x5b/0xe0
[ 3754.286486]  task_numa_work+0x3c5/0x9b0
[ 3754.286494]  task_work_run+0x64/0xa0
[ 3754.286499]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3754.286504]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3754.286557]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3754.286610]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.286613]  ? do_futex+0xc8/0x1d0
[ 3754.286615]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.286618]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.286621]  __x64_sys_ioctl+0xa0/0xf0
[ 3754.286627]  x64_sys_call+0x122e/0x2150
[ 3754.286629]  do_syscall_64+0x56/0x1e0
[ 3754.286633]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3754.286635] RIP: 0033:0x7f67bff03b4b
[ 3754.286637] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3754.286639] RSP: 002b:00007f5a84ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3754.286641] RAX: ffffffffffffffda RBX: 0000563db61dc570 RCX: 00007f67bff03b4b
[ 3754.286642] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000116
[ 3754.286643] RBP: 0000563db61dc570 R08: 0000000000000000 R09: 0000000000000000
[ 3754.286645] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3754.286646] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3754.286651]  </TASK>
[ 3754.290146] watchdog: BUG: soft lockup - CPU#13 stuck for 101s! [qemu-system-x86:31324]
[ 3754.290148] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3754.290206] CPU: 13 UID: 0 PID: 31324 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3754.290209] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3754.290210] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3754.290211] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3754.290214] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3754.290216] RSP: 0018:ffffaab62b0238b8 EFLAGS: 00000202
[ 3754.290218] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3754.290219] RDX: 0000000000000001 RSI: ffff8f717fff9160 RDI: ffff8f5280a32f70
[ 3754.290220] RBP: ffffaab62b023918 R08: 0000000000000007 R09: ffff8f5280a32c00
[ 3754.290222] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3754.290223] R13: 0000000000000202 R14: ffff8f7180172a40 R15: 0000000000000080
[ 3754.290224] FS:  00007f59e77fe640(0000) GS:ffff8f71ed976000(0000) knlGS:0000000000000000
[ 3754.290226] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3754.290227] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3754.290229] PKRU: 55555554
[ 3754.290230] Call Trace:
[ 3754.290231]  <TASK>
[ 3754.290233]  ? __pfx___wbinvd+0x10/0x10
[ 3754.290238]  on_each_cpu_cond_mask+0x28/0x50
[ 3754.290240]  wbinvd_on_all_cpus+0x29/0x40
[ 3754.290244]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3754.290252]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3754.290303]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3754.290359]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3754.290363]  change_protection+0xfc9/0x1200
[ 3754.290368]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.290372]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.290374]  ? update_load_avg+0x84/0x780
[ 3754.290378]  ? write_ibpb+0x21/0x40
[ 3754.290381]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3754.290434]  change_prot_numa+0x5b/0xe0
[ 3754.290441]  task_numa_work+0x3c5/0x9b0
[ 3754.290448]  task_work_run+0x64/0xa0
[ 3754.290452]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3754.290457]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3754.290509]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3754.290561]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.290564]  ? do_futex+0xc8/0x1d0
[ 3754.290566]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.290568]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.290572]  __x64_sys_ioctl+0xa0/0xf0
[ 3754.290576]  x64_sys_call+0x122e/0x2150
[ 3754.290579]  do_syscall_64+0x56/0x1e0
[ 3754.290582]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3754.290584] RIP: 0033:0x7f67bff03b4b
[ 3754.290587] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3754.290588] RSP: 002b:00007f59e77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3754.290590] RAX: ffffffffffffffda RBX: 0000563db630c090 RCX: 00007f67bff03b4b
[ 3754.290592] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000152
[ 3754.290593] RBP: 0000563db630c090 R08: 0000000000000000 R09: 0000000000000000
[ 3754.290594] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3754.290595] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3754.290601]  </TASK>
[ 3754.294146] watchdog: BUG: soft lockup - CPU#15 stuck for 101s! [qemu-system-x86:31363]
[ 3754.294148] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3754.294206] CPU: 15 UID: 0 PID: 31363 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3754.294209] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3754.294210] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3754.294211] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3754.294215] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3754.294216] RSP: 0018:ffffaab62b2cf8b8 EFLAGS: 00000202
[ 3754.294218] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3754.294219] RDX: 0000000000000001 RSI: ffff8f717fff91a0 RDI: ffff8f52872d07c0
[ 3754.294221] RBP: ffffaab62b2cf918 R08: 0000000000000007 R09: ffff8f52872d0930
[ 3754.294222] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3754.294223] R13: 0000000000000202 R14: ffff8f71801f2a40 R15: 0000000000000080
[ 3754.294224] FS:  00007f59457fa640(0000) GS:ffff8f71ed9f6000(0000) knlGS:0000000000000000
[ 3754.294226] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3754.294227] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3754.294229] PKRU: 55555554
[ 3754.294230] Call Trace:
[ 3754.294231]  <TASK>
[ 3754.294232]  ? __pfx___wbinvd+0x10/0x10
[ 3754.294237]  on_each_cpu_cond_mask+0x28/0x50
[ 3754.294240]  wbinvd_on_all_cpus+0x29/0x40
[ 3754.294244]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3754.294251]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3754.294303]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3754.294359]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3754.294363]  change_protection+0xfc9/0x1200
[ 3754.294369]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.294372]  ? update_load_avg+0x84/0x780
[ 3754.294376]  ? write_ibpb+0x21/0x40
[ 3754.294379]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3754.294432]  change_prot_numa+0x5b/0xe0
[ 3754.294439]  task_numa_work+0x3c5/0x9b0
[ 3754.294446]  task_work_run+0x64/0xa0
[ 3754.294450]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3754.294454]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3754.294507]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3754.294559]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.294562]  ? do_futex+0xc8/0x1d0
[ 3754.294564]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.294566]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.294570]  __x64_sys_ioctl+0xa0/0xf0
[ 3754.294575]  x64_sys_call+0x122e/0x2150
[ 3754.294577]  do_syscall_64+0x56/0x1e0
[ 3754.294581]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3754.294583] RIP: 0033:0x7f67bff03b4b
[ 3754.294585] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3754.294586] RSP: 002b:00007f59457f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3754.294588] RAX: ffffffffffffffda RBX: 0000563db6496a50 RCX: 00007f67bff03b4b
[ 3754.294590] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001a0
[ 3754.294591] RBP: 0000563db6496a50 R08: 0000000000000000 R09: 0000000000000000
[ 3754.294592] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3754.294594] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3754.294599]  </TASK>
[ 3754.298146] watchdog: BUG: soft lockup - CPU#18 stuck for 101s! [qemu-system-x86:31310]
[ 3754.298151] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3754.298222] CPU: 18 UID: 0 PID: 31310 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3754.298227] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3754.298228] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3754.298230] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3754.298238] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3754.298241] RSP: 0018:ffffaab62af978b8 EFLAGS: 00000202
[ 3754.298243] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3754.298245] RDX: 0000000000000001 RSI: ffff8f717fff9200 RDI: ffff8f52872d06e0
[ 3754.298246] RBP: ffffaab62af97918 R08: 0000000000000007 R09: ffff8f52872d0800
[ 3754.298248] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3754.298249] R13: 0000000000000202 R14: ffff8f71802b2a40 R15: 0000000000000080
[ 3754.298251] FS:  00007f5a277fe640(0000) GS:ffff8f71edab6000(0000) knlGS:0000000000000000
[ 3754.298253] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3754.298254] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3754.298256] PKRU: 55555554
[ 3754.298257] Call Trace:
[ 3754.298259]  <TASK>
[ 3754.298262]  ? __pfx___wbinvd+0x10/0x10
[ 3754.298270]  on_each_cpu_cond_mask+0x28/0x50
[ 3754.298272]  wbinvd_on_all_cpus+0x29/0x40
[ 3754.298277]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3754.298286]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3754.298340]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3754.298395]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3754.298401]  change_protection+0xfc9/0x1200
[ 3754.298407]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.298411]  ? update_curr_dl_se+0x3b/0x1e0
[ 3754.298415]  ? dl_server_update+0x2e/0x40
[ 3754.298419]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.298423]  ? pick_next_task_fair+0x4f/0x490
[ 3754.298427]  change_prot_numa+0x5b/0xe0
[ 3754.298432]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.298435]  ? update_load_avg+0x84/0x780
[ 3754.298438]  ? __dequeue_entity+0x3cd/0x4a0
[ 3754.298442]  task_numa_work+0x3c5/0x9b0
[ 3754.298449]  task_work_run+0x64/0xa0
[ 3754.298454]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3754.298459]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3754.298511]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3754.298563]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.298566]  ? do_futex+0xc8/0x1d0
[ 3754.298568]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.298570]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.298574]  __x64_sys_ioctl+0xa0/0xf0
[ 3754.298579]  x64_sys_call+0x122e/0x2150
[ 3754.298581]  do_syscall_64+0x56/0x1e0
[ 3754.298587]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3754.298589] RIP: 0033:0x7f67bff03b4b
[ 3754.298591] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3754.298593] RSP: 002b:00007f5a277fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3754.298595] RAX: ffffffffffffffda RBX: 0000563db627ea30 RCX: 00007f67bff03b4b
[ 3754.298596] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000136
[ 3754.298598] RBP: 0000563db627ea30 R08: 0000000000000000 R09: 0000000000000000
[ 3754.298599] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3754.298600] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3754.298605]  </TASK>
[ 3754.310145] watchdog: BUG: soft lockup - CPU#22 stuck for 101s! [qemu-system-x86:31334]
[ 3754.310148] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3754.310206] CPU: 22 UID: 0 PID: 31334 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3754.310209] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3754.310210] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3754.310211] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3754.310215] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3754.310217] RSP: 0018:ffffaab62b1e78b8 EFLAGS: 00000202
[ 3754.310218] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3754.310219] RDX: 0000000000000001 RSI: ffff8f717fff9280 RDI: ffff8f52872d0480
[ 3754.310221] RBP: ffffaab62b1e7918 R08: 0000000000000007 R09: ffff8f52872d08d0
[ 3754.310222] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3754.310223] R13: 0000000000000202 R14: ffff8f71803b2a40 R15: 0000000000000080
[ 3754.310225] FS:  00007f59c5ffb640(0000) GS:ffff8f71edbb6000(0000) knlGS:0000000000000000
[ 3754.310226] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3754.310228] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3754.310229] PKRU: 55555554
[ 3754.310230] Call Trace:
[ 3754.310231]  <TASK>
[ 3754.310233]  ? __pfx___wbinvd+0x10/0x10
[ 3754.310238]  on_each_cpu_cond_mask+0x28/0x50
[ 3754.310241]  wbinvd_on_all_cpus+0x29/0x40
[ 3754.310244]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3754.310252]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3754.310305]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3754.310360]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3754.310365]  change_protection+0xfc9/0x1200
[ 3754.310369]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.310373]  ? update_curr_dl_se+0x3b/0x1e0
[ 3754.310376]  ? dl_server_update+0x2e/0x40
[ 3754.310380]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.310383]  ? pick_next_task_fair+0x4f/0x490
[ 3754.310387]  change_prot_numa+0x5b/0xe0
[ 3754.310394]  task_numa_work+0x3c5/0x9b0
[ 3754.310401]  task_work_run+0x64/0xa0
[ 3754.310406]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3754.310410]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3754.310463]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3754.310515]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.310518]  ? do_futex+0xc8/0x1d0
[ 3754.310520]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.310522]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.310526]  __x64_sys_ioctl+0xa0/0xf0
[ 3754.310531]  x64_sys_call+0x122e/0x2150
[ 3754.310533]  do_syscall_64+0x56/0x1e0
[ 3754.310537]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3754.310539] RIP: 0033:0x7f67bff03b4b
[ 3754.310541] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3754.310543] RSP: 002b:00007f59c5ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3754.310545] RAX: ffffffffffffffda RBX: 0000563db6371720 RCX: 00007f67bff03b4b
[ 3754.310546] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000166
[ 3754.310548] RBP: 0000563db6371720 R08: 0000000000000000 R09: 0000000000000000
[ 3754.310549] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3754.310550] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3754.310555]  </TASK>
[ 3754.362145] watchdog: BUG: soft lockup - CPU#46 stuck for 101s! [qemu-system-x86:31353]
[ 3754.362150] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3754.362220] CPU: 46 UID: 0 PID: 31353 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3754.362224] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3754.362225] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3754.362226] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3754.362233] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3754.362235] RSP: 0018:ffffaab62b27f8b8 EFLAGS: 00000202
[ 3754.362237] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3754.362239] RDX: 0000000000000001 RSI: ffff8f717fff9580 RDI: ffff8f72066e3a60
[ 3754.362240] RBP: ffffaab62b27f918 R08: 0000000000000007 R09: ffff8f72066e3360
[ 3754.362242] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3754.362243] R13: 0000000000000202 R14: ffff8f917e3b2a40 R15: 0000000000000080
[ 3754.362244] FS:  00007f5966ffd640(0000) GS:ffff8f91ebbb6000(0000) knlGS:0000000000000000
[ 3754.362246] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3754.362248] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3754.362249] PKRU: 55555554
[ 3754.362250] Call Trace:
[ 3754.362252]  <TASK>
[ 3754.362256]  ? __pfx___wbinvd+0x10/0x10
[ 3754.362263]  on_each_cpu_cond_mask+0x28/0x50
[ 3754.362266]  wbinvd_on_all_cpus+0x29/0x40
[ 3754.362271]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3754.362280]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3754.362333]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3754.362389]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3754.362396]  change_protection+0xfc9/0x1200
[ 3754.362403]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.362407]  ? update_load_avg+0x84/0x780
[ 3754.362411]  ? write_ibpb+0x21/0x40
[ 3754.362417]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3754.362470]  change_prot_numa+0x5b/0xe0
[ 3754.362477]  task_numa_work+0x3c5/0x9b0
[ 3754.362485]  task_work_run+0x64/0xa0
[ 3754.362490]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3754.362495]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3754.362547]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3754.362600]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.362603]  ? do_futex+0xc8/0x1d0
[ 3754.362605]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.362608]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.362612]  __x64_sys_ioctl+0xa0/0xf0
[ 3754.362617]  x64_sys_call+0x122e/0x2150
[ 3754.362619]  do_syscall_64+0x56/0x1e0
[ 3754.362623]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3754.362625] RIP: 0033:0x7f67bff03b4b
[ 3754.362628] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3754.362630] RSP: 002b:00007f5966ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3754.362632] RAX: ffffffffffffffda RBX: 0000563db6431560 RCX: 00007f67bff03b4b
[ 3754.362633] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000018c
[ 3754.362634] RBP: 0000563db6431560 R08: 0000000000000000 R09: 0000000000000000
[ 3754.362636] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3754.362637] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3754.362642]  </TASK>
[ 3754.366144] watchdog: BUG: soft lockup - CPU#47 stuck for 101s! [qemu-system-x86:31257]
[ 3754.366147] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3754.366205] CPU: 47 UID: 0 PID: 31257 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3754.366208] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3754.366209] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3754.366210] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3754.366213] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3754.366215] RSP: 0018:ffffaab62ad038b8 EFLAGS: 00000202
[ 3754.366217] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3754.366218] RDX: 0000000000000001 RSI: ffff8f717fff95a0 RDI: ffff8f72066e36c0
[ 3754.366219] RBP: ffffaab62ad03918 R08: 0000000000000007 R09: ffff8f72066e3e10
[ 3754.366221] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3754.366222] R13: 0000000000000202 R14: ffff8f917e3f2a40 R15: 0000000000000080
[ 3754.366223] FS:  00007f5b25ffb640(0000) GS:ffff8f91ebbf6000(0000) knlGS:0000000000000000
[ 3754.366225] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3754.366226] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3754.366228] PKRU: 55555554
[ 3754.366228] Call Trace:
[ 3754.366230]  <TASK>
[ 3754.366231]  ? __pfx___wbinvd+0x10/0x10
[ 3754.366236]  on_each_cpu_cond_mask+0x28/0x50
[ 3754.366239]  wbinvd_on_all_cpus+0x29/0x40
[ 3754.366243]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3754.366250]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3754.366304]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3754.366359]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3754.366363]  change_protection+0xfc9/0x1200
[ 3754.366368]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.366372]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.366374]  ? update_load_avg+0x84/0x780
[ 3754.366378]  ? write_ibpb+0x21/0x40
[ 3754.366382]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3754.366435]  change_prot_numa+0x5b/0xe0
[ 3754.366441]  task_numa_work+0x3c5/0x9b0
[ 3754.366449]  task_work_run+0x64/0xa0
[ 3754.366453]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3754.366457]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3754.366509]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3754.366561]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.366564]  ? do_futex+0xc8/0x1d0
[ 3754.366566]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.366568]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.366572]  __x64_sys_ioctl+0xa0/0xf0
[ 3754.366576]  x64_sys_call+0x122e/0x2150
[ 3754.366579]  do_syscall_64+0x56/0x1e0
[ 3754.366582]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3754.366584] RIP: 0033:0x7f67bff03b4b
[ 3754.366586] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3754.366588] RSP: 002b:00007f5b25ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3754.366590] RAX: ffffffffffffffda RBX: 0000563db6063fa0 RCX: 00007f67bff03b4b
[ 3754.366591] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000cc
[ 3754.366593] RBP: 0000563db6063fa0 R08: 0000000000000000 R09: 0000000000000000
[ 3754.366594] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3754.366595] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3754.366600]  </TASK>
[ 3754.378145] watchdog: BUG: soft lockup - CPU#52 stuck for 101s! [qemu-system-x86:31251]
[ 3754.378150] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3754.378219] CPU: 52 UID: 0 PID: 31251 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3754.378223] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3754.378225] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3754.378226] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3754.378234] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3754.378236] RSP: 0018:ffffaab62acd38b8 EFLAGS: 00000202
[ 3754.378238] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3754.378240] RDX: 0000000000000001 RSI: ffff8f717fff9640 RDI: ffff8f72000bacd0
[ 3754.378241] RBP: ffffaab62acd3918 R08: 0000000000000007 R09: ffff8f72000bab90
[ 3754.378243] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3754.378244] R13: 0000000000000202 R14: ffff8f917e532a40 R15: 0000000000000080
[ 3754.378246] FS:  00007f5b457fa640(0000) GS:ffff8f91ebd36000(0000) knlGS:0000000000000000
[ 3754.378248] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3754.378249] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3754.378251] PKRU: 55555554
[ 3754.378252] Call Trace:
[ 3754.378254]  <TASK>
[ 3754.378257]  ? __pfx___wbinvd+0x10/0x10
[ 3754.378264]  on_each_cpu_cond_mask+0x28/0x50
[ 3754.378268]  wbinvd_on_all_cpus+0x29/0x40
[ 3754.378272]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3754.378282]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3754.378335]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3754.378390]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3754.378396]  change_protection+0xfc9/0x1200
[ 3754.378402]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.378408]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.378410]  ? update_load_avg+0x84/0x780
[ 3754.378415]  ? write_ibpb+0x21/0x40
[ 3754.378420]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3754.378472]  change_prot_numa+0x5b/0xe0
[ 3754.378479]  task_numa_work+0x3c5/0x9b0
[ 3754.378486]  task_work_run+0x64/0xa0
[ 3754.378491]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3754.378496]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3754.378548]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3754.378600]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.378603]  ? do_futex+0xc8/0x1d0
[ 3754.378605]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.378608]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.378611]  __x64_sys_ioctl+0xa0/0xf0
[ 3754.378617]  x64_sys_call+0x122e/0x2150
[ 3754.378619]  do_syscall_64+0x56/0x1e0
[ 3754.378623]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3754.378625] RIP: 0033:0x7f67bff03b4b
[ 3754.378627] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3754.378629] RSP: 002b:00007f5b457f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3754.378631] RAX: ffffffffffffffda RBX: 0000563db6027ac0 RCX: 00007f67bff03b4b
[ 3754.378632] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000c0
[ 3754.378634] RBP: 0000563db6027ac0 R08: 0000000000000000 R09: 0000000000000000
[ 3754.378635] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3754.378636] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3754.378641]  </TASK>
[ 3754.390144] watchdog: BUG: soft lockup - CPU#58 stuck for 101s! [qemu-system-x86:31335]
[ 3754.390150] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3754.390219] CPU: 58 UID: 0 PID: 31335 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3754.390223] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3754.390224] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3754.390226] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3754.390234] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3754.390236] RSP: 0018:ffffaab62b1ef8b8 EFLAGS: 00000202
[ 3754.390238] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3754.390240] RDX: 0000000000000001 RSI: ffff8f717fff9700 RDI: ffff8f72000bacf0
[ 3754.390241] RBP: ffffaab62b1ef918 R08: 0000000000000007 R09: ffff8f72000ba6e0
[ 3754.390243] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3754.390244] R13: 0000000000000202 R14: ffff8f917e6b2a40 R15: 0000000000000080
[ 3754.390246] FS:  00007f59c57fa640(0000) GS:ffff8f91ebeb6000(0000) knlGS:0000000000000000
[ 3754.390247] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3754.390249] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3754.390250] PKRU: 55555554
[ 3754.390251] Call Trace:
[ 3754.390253]  <TASK>
[ 3754.390257]  ? __pfx___wbinvd+0x10/0x10
[ 3754.390264]  on_each_cpu_cond_mask+0x28/0x50
[ 3754.390267]  wbinvd_on_all_cpus+0x29/0x40
[ 3754.390272]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3754.390280]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3754.390334]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3754.390390]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3754.390395]  change_protection+0xfc9/0x1200
[ 3754.390401]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.390405]  ? update_curr_dl_se+0x3b/0x1e0
[ 3754.390410]  ? dl_server_update+0x2e/0x40
[ 3754.390414]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.390417]  ? pick_next_task_fair+0x4f/0x490
[ 3754.390421]  change_prot_numa+0x5b/0xe0
[ 3754.390428]  task_numa_work+0x3c5/0x9b0
[ 3754.390436]  task_work_run+0x64/0xa0
[ 3754.390441]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3754.390445]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3754.390498]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3754.390550]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.390552]  ? do_futex+0xc8/0x1d0
[ 3754.390555]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.390557]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.390561]  __x64_sys_ioctl+0xa0/0xf0
[ 3754.390566]  x64_sys_call+0x122e/0x2150
[ 3754.390568]  do_syscall_64+0x56/0x1e0
[ 3754.390573]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3754.390575] RIP: 0033:0x7f67bff03b4b
[ 3754.390578] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3754.390580] RSP: 002b:00007f59c57f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3754.390582] RAX: ffffffffffffffda RBX: 0000563db637b6d0 RCX: 00007f67bff03b4b
[ 3754.390583] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000168
[ 3754.390584] RBP: 0000563db637b6d0 R08: 0000000000000000 R09: 0000000000000000
[ 3754.390586] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3754.390587] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3754.390592]  </TASK>
[ 3754.394144] watchdog: BUG: soft lockup - CPU#59 stuck for 101s! [qemu-system-x86:31330]
[ 3754.394146] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3754.394203] CPU: 59 UID: 0 PID: 31330 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3754.394206] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3754.394207] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3754.394208] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3754.394212] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3754.394213] RSP: 0018:ffffaab62b06b8b8 EFLAGS: 00000202
[ 3754.394215] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3754.394216] RDX: 0000000000000001 RSI: ffff8f717fff9720 RDI: ffff8f72000ba770
[ 3754.394218] RBP: ffffaab62b06b918 R08: 0000000000000007 R09: ffff8f72000baa50
[ 3754.394219] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3754.394220] R13: 0000000000000202 R14: ffff8f917e6f2a40 R15: 0000000000000080
[ 3754.394221] FS:  00007f59c7fff640(0000) GS:ffff8f91ebef6000(0000) knlGS:0000000000000000
[ 3754.394223] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3754.394224] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3754.394226] PKRU: 55555554
[ 3754.394227] Call Trace:
[ 3754.394228]  <TASK>
[ 3754.394230]  ? __pfx___wbinvd+0x10/0x10
[ 3754.394235]  on_each_cpu_cond_mask+0x28/0x50
[ 3754.394237]  wbinvd_on_all_cpus+0x29/0x40
[ 3754.394241]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3754.394249]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3754.394301]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3754.394355]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3754.394360]  change_protection+0xfc9/0x1200
[ 3754.394364]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.394368]  ? update_curr_dl_se+0x3b/0x1e0
[ 3754.394371]  ? dl_server_update+0x2e/0x40
[ 3754.394375]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.394378]  ? pick_next_task_fair+0x4f/0x490
[ 3754.394382]  change_prot_numa+0x5b/0xe0
[ 3754.394388]  task_numa_work+0x3c5/0x9b0
[ 3754.394396]  task_work_run+0x64/0xa0
[ 3754.394400]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3754.394404]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3754.394456]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3754.394508]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.394510]  ? do_futex+0xc8/0x1d0
[ 3754.394513]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.394515]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.394519]  __x64_sys_ioctl+0xa0/0xf0
[ 3754.394523]  x64_sys_call+0x122e/0x2150
[ 3754.394525]  do_syscall_64+0x56/0x1e0
[ 3754.394529]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3754.394531] RIP: 0033:0x7f67bff03b4b
[ 3754.394534] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3754.394535] RSP: 002b:00007f59c7ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3754.394537] RAX: ffffffffffffffda RBX: 0000563db6348c80 RCX: 00007f67bff03b4b
[ 3754.394539] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000015e
[ 3754.394540] RBP: 0000563db6348c80 R08: 0000000000000000 R09: 0000000000000000
[ 3754.394541] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3754.394542] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3754.394547]  </TASK>
[ 3754.442143] watchdog: BUG: soft lockup - CPU#70 stuck for 100s! [qemu-system-x86:31275]
[ 3754.442145] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3754.442205] CPU: 70 UID: 0 PID: 31275 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3754.442208] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3754.442209] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3754.442211] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3754.442214] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3754.442216] RSP: 0018:ffffaab62ade78b8 EFLAGS: 00000202
[ 3754.442218] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3754.442219] RDX: 0000000000000001 RSI: ffff8f717fff9880 RDI: ffff8f5287658fd0
[ 3754.442221] RBP: ffffaab62ade7918 R08: 0000000000000007 R09: ffff8f5287658700
[ 3754.442222] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3754.442223] R13: 0000000000000202 R14: ffff8f71807b2a40 R15: 0000000000000080
[ 3754.442225] FS:  00007f5ac77fe640(0000) GS:ffff8f71edfb6000(0000) knlGS:0000000000000000
[ 3754.442227] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3754.442228] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3754.442230] PKRU: 55555554
[ 3754.442230] Call Trace:
[ 3754.442232]  <TASK>
[ 3754.442233]  ? __pfx___wbinvd+0x10/0x10
[ 3754.442238]  on_each_cpu_cond_mask+0x28/0x50
[ 3754.442241]  wbinvd_on_all_cpus+0x29/0x40
[ 3754.442245]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3754.442252]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3754.442304]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3754.442359]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3754.442364]  change_protection+0xfc9/0x1200
[ 3754.442370]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.442372]  ? update_load_avg+0x84/0x780
[ 3754.442376]  ? write_ibpb+0x21/0x40
[ 3754.442380]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3754.442433]  change_prot_numa+0x5b/0xe0
[ 3754.442439]  task_numa_work+0x3c5/0x9b0
[ 3754.442447]  task_work_run+0x64/0xa0
[ 3754.442451]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3754.442455]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3754.442508]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3754.442560]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.442563]  ? do_futex+0xc8/0x1d0
[ 3754.442565]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.442567]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.442571]  __x64_sys_ioctl+0xa0/0xf0
[ 3754.442576]  x64_sys_call+0x122e/0x2150
[ 3754.442578]  do_syscall_64+0x56/0x1e0
[ 3754.442581]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3754.442583] RIP: 0033:0x7f67bff03b4b
[ 3754.442585] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3754.442587] RSP: 002b:00007f5ac77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3754.442589] RAX: ffffffffffffffda RBX: 0000563db611a960 RCX: 00007f67bff03b4b
[ 3754.442591] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000f0
[ 3754.442592] RBP: 0000563db611a960 R08: 0000000000000000 R09: 0000000000000000
[ 3754.442593] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3754.442594] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3754.442599]  </TASK>
[ 3754.442600] watchdog: BUG: soft lockup - CPU#69 stuck for 100s! [qemu-system-x86:31238]
[ 3754.442602] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3754.442659] CPU: 69 UID: 0 PID: 31238 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3754.442662] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3754.442663] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3754.442664] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3754.442667] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3754.442669] RSP: 0018:ffffaab62ac6b8b8 EFLAGS: 00000202
[ 3754.442671] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3754.442672] RDX: 0000000000000001 RSI: ffff8f717fff9860 RDI: ffff8f52876583e0
[ 3754.442673] RBP: ffffaab62ac6b918 R08: 0000000000000007 R09: ffff8f52876585e0
[ 3754.442674] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3754.442676] R13: 0000000000000202 R14: ffff8f7180772a40 R15: 0000000000000080
[ 3754.442677] FS:  00007f5b84ff9640(0000) GS:ffff8f71edf76000(0000) knlGS:0000000000000000
[ 3754.442679] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3754.442680] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3754.442681] PKRU: 55555554
[ 3754.442682] Call Trace:
[ 3754.442683]  <TASK>
[ 3754.442685]  ? __pfx___wbinvd+0x10/0x10
[ 3754.442690]  on_each_cpu_cond_mask+0x28/0x50
[ 3754.442693]  wbinvd_on_all_cpus+0x29/0x40
[ 3754.442696]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3754.442704]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3754.442755]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3754.442811]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3754.442815]  change_protection+0xfc9/0x1200
[ 3754.442819]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.442823]  ? asm_sysvec_apic_timer_interrupt+0x1f/0x30
[ 3754.442827]  ? write_ibpb+0x21/0x40
[ 3754.442830]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3754.442883]  change_prot_numa+0x5b/0xe0
[ 3754.442890]  task_numa_work+0x3c5/0x9b0
[ 3754.442897]  task_work_run+0x64/0xa0
[ 3754.442901]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3754.442905]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3754.442958]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3754.443011]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.443013]  ? do_futex+0xc8/0x1d0
[ 3754.443016]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.443018]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.443022]  __x64_sys_ioctl+0xa0/0xf0
[ 3754.443026]  x64_sys_call+0x122e/0x2150
[ 3754.443028]  do_syscall_64+0x56/0x1e0
[ 3754.443032]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3754.443034] RIP: 0033:0x7f67bff03b4b
[ 3754.443036] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3754.443038] RSP: 002b:00007f5b84ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3754.443040] RAX: ffffffffffffffda RBX: 0000563db5fa4ac0 RCX: 00007f67bff03b4b
[ 3754.443041] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000a6
[ 3754.443042] RBP: 0000563db5fa4ac0 R08: 0000000000000000 R09: 0000000000000000
[ 3754.443043] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3754.443045] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3754.443050]  </TASK>
[ 3754.446143] watchdog: BUG: soft lockup - CPU#72 stuck for 100s! [qemu-system-x86:31298]
[ 3754.446146] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3754.446207] CPU: 72 UID: 0 PID: 31298 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3754.446210] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3754.446211] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3754.446213] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3754.446217] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3754.446219] RSP: 0018:ffffaab62af378b8 EFLAGS: 00000202
[ 3754.446221] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3754.446222] RDX: 0000000000000001 RSI: ffff8f717fff98c0 RDI: ffff8f5287658550
[ 3754.446224] RBP: ffffaab62af37918 R08: 0000000000000007 R09: ffff8f5287658ca0
[ 3754.446225] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3754.446227] R13: 0000000000000202 R14: ffff8f7180832a40 R15: 0000000000000080
[ 3754.446229] FS:  00007f5a667fc640(0000) GS:ffff8f71ee036000(0000) knlGS:0000000000000000
[ 3754.446231] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3754.446232] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3754.446234] PKRU: 55555554
[ 3754.446235] Call Trace:
[ 3754.446236]  <TASK>
[ 3754.446238]  ? __pfx___wbinvd+0x10/0x10
[ 3754.446243]  on_each_cpu_cond_mask+0x28/0x50
[ 3754.446246]  wbinvd_on_all_cpus+0x29/0x40
[ 3754.446250]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3754.446258]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3754.446310]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3754.446365]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3754.446369]  change_protection+0xfc9/0x1200
[ 3754.446374]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.446378]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.446380]  ? update_load_avg+0x84/0x780
[ 3754.446384]  ? write_ibpb+0x21/0x40
[ 3754.446387]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3754.446440]  change_prot_numa+0x5b/0xe0
[ 3754.446447]  task_numa_work+0x3c5/0x9b0
[ 3754.446455]  task_work_run+0x64/0xa0
[ 3754.446459]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3754.446463]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3754.446515]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3754.446567]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.446569]  ? do_futex+0xc8/0x1d0
[ 3754.446571]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.446574]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.446577]  __x64_sys_ioctl+0xa0/0xf0
[ 3754.446582]  x64_sys_call+0x122e/0x2150
[ 3754.446584]  do_syscall_64+0x56/0x1e0
[ 3754.446588]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3754.446590] RIP: 0033:0x7f67bff03b4b
[ 3754.446592] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3754.446594] RSP: 002b:00007f5a667fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3754.446596] RAX: ffffffffffffffda RBX: 0000563db62051d0 RCX: 00007f67bff03b4b
[ 3754.446597] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000011e
[ 3754.446598] RBP: 0000563db62051d0 R08: 0000000000000000 R09: 0000000000000000
[ 3754.446600] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3754.446601] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3754.446606]  </TASK>
[ 3754.450143] watchdog: BUG: soft lockup - CPU#74 stuck for 100s! [qemu-system-x86:31394]
[ 3754.450145] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3754.450203] CPU: 74 UID: 0 PID: 31394 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3754.450206] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3754.450207] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3754.450208] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3754.450211] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3754.450213] RSP: 0018:ffffaab62c1ab8b8 EFLAGS: 00000202
[ 3754.450215] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3754.450216] RDX: 0000000000000001 RSI: ffff8f717fff9900 RDI: ffff8f5287658a20
[ 3754.450217] RBP: ffffaab62c1ab918 R08: 0000000000000007 R09: ffff8f5287658a30
[ 3754.450219] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3754.450220] R13: 0000000000000202 R14: ffff8f71808b2a40 R15: 0000000000000080
[ 3754.450221] FS:  00007f58a77fe640(0000) GS:ffff8f71ee0b6000(0000) knlGS:0000000000000000
[ 3754.450223] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3754.450224] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3754.450226] PKRU: 55555554
[ 3754.450227] Call Trace:
[ 3754.450228]  <TASK>
[ 3754.450229]  ? __pfx___wbinvd+0x10/0x10
[ 3754.450234]  on_each_cpu_cond_mask+0x28/0x50
[ 3754.450237]  wbinvd_on_all_cpus+0x29/0x40
[ 3754.450241]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3754.450248]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3754.450300]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3754.450354]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3754.450359]  change_protection+0xfc9/0x1200
[ 3754.450363]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.450367]  ? pick_eevdf+0x7c/0x1a0
[ 3754.450371]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.450375]  ? pick_next_task_fair+0x4f/0x490
[ 3754.450378]  change_prot_numa+0x5b/0xe0
[ 3754.450383]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.450385]  ? update_load_avg+0x84/0x780
[ 3754.450388]  ? __dequeue_entity+0x3cd/0x4a0
[ 3754.450392]  task_numa_work+0x3c5/0x9b0
[ 3754.450399]  task_work_run+0x64/0xa0
[ 3754.450403]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3754.450407]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3754.450460]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3754.450511]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.450514]  ? do_futex+0xc8/0x1d0
[ 3754.450516]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.450519]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.450522]  __x64_sys_ioctl+0xa0/0xf0
[ 3754.450527]  x64_sys_call+0x122e/0x2150
[ 3754.450529]  do_syscall_64+0x56/0x1e0
[ 3754.450533]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3754.450535] RIP: 0033:0x7f67bff03b4b
[ 3754.450537] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3754.450539] RSP: 002b:00007f58a77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3754.450541] RAX: ffffffffffffffda RBX: 0000563db65cf480 RCX: 00007f67bff03b4b
[ 3754.450542] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001de
[ 3754.450544] RBP: 0000563db65cf480 R08: 0000000000000000 R09: 0000000000000000
[ 3754.450545] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3754.450546] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3754.450551]  </TASK>
[ 3754.474142] watchdog: BUG: soft lockup - CPU#84 stuck for 100s! [qemu-system-x86:31416]
[ 3754.474145] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3754.474204] CPU: 84 UID: 0 PID: 31416 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3754.474208] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3754.474208] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3754.474210] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3754.474214] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3754.474216] RSP: 0018:ffffaab62b6078b8 EFLAGS: 00000202
[ 3754.474218] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3754.474219] RDX: 0000000000000001 RSI: ffff8f717fff9a40 RDI: ffff8f52889c6360
[ 3754.474221] RBP: ffffaab62b607918 R08: 0000000000000007 R09: ffff8f52889c68c0
[ 3754.474223] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3754.474224] R13: 0000000000000202 R14: ffff8f7180b32a40 R15: 0000000000000080
[ 3754.474226] FS:  00007f5846ffd640(0000) GS:ffff8f71ee336000(0000) knlGS:0000000000000000
[ 3754.474228] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3754.474229] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3754.474231] PKRU: 55555554
[ 3754.474232] Call Trace:
[ 3754.474233]  <TASK>
[ 3754.474235]  ? __pfx___wbinvd+0x10/0x10
[ 3754.474240]  on_each_cpu_cond_mask+0x28/0x50
[ 3754.474243]  wbinvd_on_all_cpus+0x29/0x40
[ 3754.474247]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3754.474254]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3754.474306]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3754.474361]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3754.474365]  change_protection+0xfc9/0x1200
[ 3754.474370]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.474373]  ? update_curr_dl_se+0x3b/0x1e0
[ 3754.474377]  ? dl_server_update+0x2e/0x40
[ 3754.474381]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.474384]  ? pick_next_task_fair+0x4f/0x490
[ 3754.474388]  change_prot_numa+0x5b/0xe0
[ 3754.474392]  ? sched_clock_cpu+0x14/0x1a0
[ 3754.474398]  task_numa_work+0x3c5/0x9b0
[ 3754.474405]  task_work_run+0x64/0xa0
[ 3754.474409]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3754.474413]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3754.474466]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3754.474518]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.474520]  ? do_futex+0xc8/0x1d0
[ 3754.474522]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.474525]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.474528]  __x64_sys_ioctl+0xa0/0xf0
[ 3754.474533]  x64_sys_call+0x122e/0x2150
[ 3754.474535]  do_syscall_64+0x56/0x1e0
[ 3754.474539]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3754.474541] RIP: 0033:0x7f67bff03b4b
[ 3754.474543] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3754.474545] RSP: 002b:00007f5846ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3754.474547] RAX: ffffffffffffffda RBX: 0000563db66aed00 RCX: 00007f67bff03b4b
[ 3754.474549] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000020a
[ 3754.474550] RBP: 0000563db66aed00 R08: 0000000000000000 R09: 0000000000000000
[ 3754.474551] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3754.474553] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3754.474558]  </TASK>
[ 3754.498143] watchdog: BUG: soft lockup - CPU#95 stuck for 100s! [qemu-system-x86:31343]
[ 3754.498149] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3754.498240] CPU: 95 UID: 0 PID: 31343 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3754.498245] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3754.498247] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3754.498248] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3754.498257] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3754.498260] RSP: 0018:ffffaab62b22f8b8 EFLAGS: 00000202
[ 3754.498263] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3754.498265] RDX: 0000000000000001 RSI: ffff8f717fff9ba0 RDI: ffff8f52889c6900
[ 3754.498267] RBP: ffffaab62b22f918 R08: 0000000000000007 R09: ffff8f52889c6960
[ 3754.498268] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3754.498270] R13: 0000000000000202 R14: ffff8f7180df2a40 R15: 0000000000000080
[ 3754.498272] FS:  00007f59a4ff9640(0000) GS:ffff8f71ee5f6000(0000) knlGS:0000000000000000
[ 3754.498274] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3754.498276] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3754.498278] PKRU: 55555554
[ 3754.498279] Call Trace:
[ 3754.498281]  <TASK>
[ 3754.498285]  ? __pfx___wbinvd+0x10/0x10
[ 3754.498294]  on_each_cpu_cond_mask+0x28/0x50
[ 3754.498297]  wbinvd_on_all_cpus+0x29/0x40
[ 3754.498303]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3754.498320]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3754.498399]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3754.498479]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3754.498487]  change_protection+0xfc9/0x1200
[ 3754.498493]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.498498]  ? pick_eevdf+0x7c/0x1a0
[ 3754.498504]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.498507]  ? pick_next_task_fair+0x4f/0x490
[ 3754.498511]  change_prot_numa+0x5b/0xe0
[ 3754.498517]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.498520]  ? dl_server_update+0x2e/0x40
[ 3754.498525]  ? update_curr+0x1d2/0x250
[ 3754.498532]  task_numa_work+0x3c5/0x9b0
[ 3754.498542]  task_work_run+0x64/0xa0
[ 3754.498547]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3754.498553]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3754.498629]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3754.498703]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.498706]  ? do_futex+0xc8/0x1d0
[ 3754.498709]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.498712]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.498716]  __x64_sys_ioctl+0xa0/0xf0
[ 3754.498722]  x64_sys_call+0x122e/0x2150
[ 3754.498725]  do_syscall_64+0x56/0x1e0
[ 3754.498731]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3754.498734] RIP: 0033:0x7f67bff03b4b
[ 3754.498738] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3754.498740] RSP: 002b:00007f59a4ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3754.498745] RAX: ffffffffffffffda RBX: 0000563db63cc4a0 RCX: 00007f67bff03b4b
[ 3754.498747] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000178
[ 3754.498750] RBP: 0000563db63cc4a0 R08: 0000000000000000 R09: 0000000000000000
[ 3754.498752] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3754.498754] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3754.498762]  </TASK>
[ 3754.546141] watchdog: BUG: soft lockup - CPU#115 stuck for 100s! [qemu-system-x86:31385]
[ 3754.546144] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3754.546201] CPU: 115 UID: 0 PID: 31385 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3754.546205] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3754.546206] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3754.546207] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3754.546211] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3754.546213] RSP: 0018:ffffaab62c2078b8 EFLAGS: 00000202
[ 3754.546215] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3754.546216] RDX: 0000000000000001 RSI: ffff8f717fff9e20 RDI: ffff8f72000ba950
[ 3754.546218] RBP: ffffaab62c207918 R08: 0000000000000007 R09: ffff8f72000ba010
[ 3754.546219] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3754.546221] R13: 0000000000000202 R14: ffff8f917ecf2a40 R15: 0000000000000080
[ 3754.546222] FS:  00007f58e4ff9640(0000) GS:ffff8f91ec4f6000(0000) knlGS:0000000000000000
[ 3754.546224] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3754.546225] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3754.546227] PKRU: 55555554
[ 3754.546228] Call Trace:
[ 3754.546229]  <TASK>
[ 3754.546231]  ? __pfx___wbinvd+0x10/0x10
[ 3754.546236]  on_each_cpu_cond_mask+0x28/0x50
[ 3754.546239]  wbinvd_on_all_cpus+0x29/0x40
[ 3754.546243]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3754.546250]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3754.546303]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3754.546358]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3754.546362]  change_protection+0xfc9/0x1200
[ 3754.546368]  ? update_cfs_group+0xb0/0xc0
[ 3754.546373]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.546377]  ? pick_next_task_fair+0x4f/0x490
[ 3754.546380]  change_prot_numa+0x5b/0xe0
[ 3754.546384]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.546387]  ? update_load_avg+0x84/0x780
[ 3754.546389]  ? __dequeue_entity+0x3cd/0x4a0
[ 3754.546394]  task_numa_work+0x3c5/0x9b0
[ 3754.546401]  task_work_run+0x64/0xa0
[ 3754.546405]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3754.546409]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3754.546461]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3754.546513]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.546516]  ? do_futex+0xc8/0x1d0
[ 3754.546518]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.546520]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.546524]  __x64_sys_ioctl+0xa0/0xf0
[ 3754.546529]  x64_sys_call+0x122e/0x2150
[ 3754.546531]  do_syscall_64+0x56/0x1e0
[ 3754.546535]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3754.546537] RIP: 0033:0x7f67bff03b4b
[ 3754.546538] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3754.546540] RSP: 002b:00007f58e4ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3754.546542] RAX: ffffffffffffffda RBX: 0000563db6574780 RCX: 00007f67bff03b4b
[ 3754.546544] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001cc
[ 3754.546545] RBP: 0000563db6574780 R08: 0000000000000000 R09: 0000000000000000
[ 3754.546546] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3754.546548] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3754.546553]  </TASK>
[ 3754.558140] watchdog: BUG: soft lockup - CPU#121 stuck for 100s! [qemu-system-x86:31230]
[ 3754.558143] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3754.558203] CPU: 121 UID: 0 PID: 31230 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3754.558207] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3754.558208] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3754.558210] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3754.558214] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3754.558216] RSP: 0018:ffffaab62abbb8b8 EFLAGS: 00000202
[ 3754.558217] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3754.558219] RDX: 0000000000000001 RSI: ffff8f717fff9ee0 RDI: ffff8f7207fa2f60
[ 3754.558220] RBP: ffffaab62abbb918 R08: 0000000000000007 R09: ffff8f7207fa2ab0
[ 3754.558222] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3754.558223] R13: 0000000000000202 R14: ffff8f917ee72a40 R15: 0000000000000080
[ 3754.558225] FS:  00007f5ba57fa640(0000) GS:ffff8f91ec676000(0000) knlGS:0000000000000000
[ 3754.558226] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3754.558228] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3754.558229] PKRU: 55555554
[ 3754.558230] Call Trace:
[ 3754.558232]  <TASK>
[ 3754.558234]  ? __pfx___wbinvd+0x10/0x10
[ 3754.558239]  on_each_cpu_cond_mask+0x28/0x50
[ 3754.558242]  wbinvd_on_all_cpus+0x29/0x40
[ 3754.558246]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3754.558254]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3754.558306]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3754.558361]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3754.558365]  change_protection+0xfc9/0x1200
[ 3754.558371]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.558374]  ? update_load_avg+0x84/0x780
[ 3754.558378]  ? write_ibpb+0x21/0x40
[ 3754.558382]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3754.558434]  change_prot_numa+0x5b/0xe0
[ 3754.558441]  task_numa_work+0x3c5/0x9b0
[ 3754.558449]  task_work_run+0x64/0xa0
[ 3754.558452]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3754.558457]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3754.558509]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3754.558561]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.558563]  ? do_futex+0xc8/0x1d0
[ 3754.558566]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.558568]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3754.558572]  __x64_sys_ioctl+0xa0/0xf0
[ 3754.558576]  x64_sys_call+0x122e/0x2150
[ 3754.558579]  do_syscall_64+0x56/0x1e0
[ 3754.558582]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3754.558584] RIP: 0033:0x7f67bff03b4b
[ 3754.558586] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3754.558588] RSP: 002b:00007f5ba57f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3754.558590] RAX: ffffffffffffffda RBX: 0000563db5f53b20 RCX: 00007f67bff03b4b
[ 3754.558591] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000096
[ 3754.558593] RBP: 0000563db5f53b20 R08: 0000000000000000 R09: 0000000000000000
[ 3754.558594] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3754.558595] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3754.558600]  </TASK>
[ 3758.374064] watchdog: BUG: soft lockup - CPU#51 stuck for 101s! [qemu-system-x86:31370]
[ 3758.374069] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3758.374137] CPU: 51 UID: 0 PID: 31370 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3758.374141] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3758.374142] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3758.374144] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3758.374151] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3758.374153] RSP: 0018:ffffaab62b4878b8 EFLAGS: 00000202
[ 3758.374155] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3758.374156] RDX: 0000000000000001 RSI: ffff8f717fff9620 RDI: ffff8f72000baf00
[ 3758.374157] RBP: ffffaab62b487918 R08: 0000000000000007 R09: ffff8f72000bade0
[ 3758.374159] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3758.374160] R13: 0000000000000202 R14: ffff8f917e4f2a40 R15: 0000000000000080
[ 3758.374161] FS:  00007f59257fa640(0000) GS:ffff8f91ebcf6000(0000) knlGS:0000000000000000
[ 3758.374163] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3758.374164] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3758.374166] PKRU: 55555554
[ 3758.374167] Call Trace:
[ 3758.374168]  <TASK>
[ 3758.374172]  ? __pfx___wbinvd+0x10/0x10
[ 3758.374178]  on_each_cpu_cond_mask+0x28/0x50
[ 3758.374181]  wbinvd_on_all_cpus+0x29/0x40
[ 3758.374186]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3758.374194]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3758.374247]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3758.374302]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3758.374308]  change_protection+0xfc9/0x1200
[ 3758.374315]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.374318]  ? update_load_avg+0x84/0x780
[ 3758.374323]  ? write_ibpb+0x21/0x40
[ 3758.374328]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3758.374380]  change_prot_numa+0x5b/0xe0
[ 3758.374385]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.374387]  ? update_load_avg+0x84/0x780
[ 3758.374390]  ? __dequeue_entity+0x3cd/0x4a0
[ 3758.374394]  task_numa_work+0x3c5/0x9b0
[ 3758.374401]  task_work_run+0x64/0xa0
[ 3758.374406]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3758.374412]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3758.374464]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3758.374516]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.374518]  ? do_futex+0xc8/0x1d0
[ 3758.374520]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.374523]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.374526]  __x64_sys_ioctl+0xa0/0xf0
[ 3758.374532]  x64_sys_call+0x122e/0x2150
[ 3758.374534]  do_syscall_64+0x56/0x1e0
[ 3758.374537]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3758.374539] RIP: 0033:0x7f67bff03b4b
[ 3758.374542] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3758.374543] RSP: 002b:00007f59257f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3758.374546] RAX: ffffffffffffffda RBX: 0000563db64dd830 RCX: 00007f67bff03b4b
[ 3758.374547] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001ae
[ 3758.374548] RBP: 0000563db64dd830 R08: 0000000000000000 R09: 0000000000000000
[ 3758.374549] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3758.374551] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3758.374556]  </TASK>
[ 3758.434062] watchdog: BUG: soft lockup - CPU#66 stuck for 101s! [qemu-system-x86:31354]
[ 3758.434068] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3758.434140] CPU: 66 UID: 0 PID: 31354 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3758.434145] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3758.434146] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3758.434148] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3758.434155] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3758.434157] RSP: 0018:ffffaab62b2878b8 EFLAGS: 00000202
[ 3758.434159] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3758.434161] RDX: 0000000000000001 RSI: ffff8f717fff9800 RDI: ffff8f52876581f0
[ 3758.434162] RBP: ffffaab62b287918 R08: 0000000000000007 R09: ffff8f5287658390
[ 3758.434164] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3758.434165] R13: 0000000000000202 R14: ffff8f71806b2a40 R15: 0000000000000080
[ 3758.434167] FS:  00007f59667fc640(0000) GS:ffff8f71edeb6000(0000) knlGS:0000000000000000
[ 3758.434169] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3758.434170] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3758.434172] PKRU: 55555554
[ 3758.434173] Call Trace:
[ 3758.434174]  <TASK>
[ 3758.434178]  ? __pfx___wbinvd+0x10/0x10
[ 3758.434185]  on_each_cpu_cond_mask+0x28/0x50
[ 3758.434188]  wbinvd_on_all_cpus+0x29/0x40
[ 3758.434193]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3758.434202]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3758.434256]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3758.434312]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3758.434318]  change_protection+0xfc9/0x1200
[ 3758.434326]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.434329]  ? update_load_avg+0x84/0x780
[ 3758.434335]  ? write_ibpb+0x21/0x40
[ 3758.434340]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3758.434393]  change_prot_numa+0x5b/0xe0
[ 3758.434401]  task_numa_work+0x3c5/0x9b0
[ 3758.434408]  task_work_run+0x64/0xa0
[ 3758.434413]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3758.434419]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3758.434472]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3758.434525]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.434527]  ? do_futex+0xc8/0x1d0
[ 3758.434530]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.434532]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.434536]  __x64_sys_ioctl+0xa0/0xf0
[ 3758.434541]  x64_sys_call+0x122e/0x2150
[ 3758.434543]  do_syscall_64+0x56/0x1e0
[ 3758.434547]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3758.434549] RIP: 0033:0x7f67bff03b4b
[ 3758.434552] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3758.434553] RSP: 002b:00007f59667fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3758.434556] RAX: ffffffffffffffda RBX: 0000563db643b550 RCX: 00007f67bff03b4b
[ 3758.434557] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000018e
[ 3758.434558] RBP: 0000563db643b550 R08: 0000000000000000 R09: 0000000000000000
[ 3758.434560] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3758.434561] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3758.434566]  </TASK>
[ 3758.454063] watchdog: BUG: soft lockup - CPU#75 stuck for 101s! [qemu-system-x86:31407]
[ 3758.454067] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3758.454137] CPU: 75 UID: 0 PID: 31407 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3758.454141] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3758.454143] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3758.454144] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3758.454152] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3758.454154] RSP: 0018:ffffaab62bf278b8 EFLAGS: 00000202
[ 3758.454156] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3758.454158] RDX: 0000000000000001 RSI: ffff8f717fff9920 RDI: ffff8f52876580a0
[ 3758.454160] RBP: ffffaab62bf27918 R08: 0000000000000007 R09: ffff8f5287658b80
[ 3758.454162] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3758.454163] R13: 0000000000000202 R14: ffff8f71808f2a40 R15: 0000000000000080
[ 3758.454165] FS:  00007f5867fff640(0000) GS:ffff8f71ee0f6000(0000) knlGS:0000000000000000
[ 3758.454167] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3758.454168] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3758.454170] PKRU: 55555554
[ 3758.454171] Call Trace:
[ 3758.454174]  <TASK>
[ 3758.454177]  ? __pfx___wbinvd+0x10/0x10
[ 3758.454184]  on_each_cpu_cond_mask+0x28/0x50
[ 3758.454187]  wbinvd_on_all_cpus+0x29/0x40
[ 3758.454191]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3758.454200]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3758.454253]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3758.454308]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3758.454315]  change_protection+0xfc9/0x1200
[ 3758.454321]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.454326]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.454328]  ? update_load_avg+0x84/0x780
[ 3758.454333]  ? write_ibpb+0x21/0x40
[ 3758.454339]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3758.454391]  change_prot_numa+0x5b/0xe0
[ 3758.454398]  task_numa_work+0x3c5/0x9b0
[ 3758.454406]  task_work_run+0x64/0xa0
[ 3758.454411]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3758.454417]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3758.454469]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3758.454521]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.454524]  ? do_futex+0xc8/0x1d0
[ 3758.454526]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.454528]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.454532]  __x64_sys_ioctl+0xa0/0xf0
[ 3758.454538]  x64_sys_call+0x122e/0x2150
[ 3758.454540]  do_syscall_64+0x56/0x1e0
[ 3758.454544]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3758.454546] RIP: 0033:0x7f67bff03b4b
[ 3758.454549] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3758.454550] RSP: 002b:00007f5867ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3758.454552] RAX: ffffffffffffffda RBX: 0000563db6654290 RCX: 00007f67bff03b4b
[ 3758.454554] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001f8
[ 3758.454555] RBP: 0000563db6654290 R08: 0000000000000000 R09: 0000000000000000
[ 3758.454556] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3758.454557] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3758.454562]  </TASK>
[ 3758.466062] watchdog: BUG: soft lockup - CPU#80 stuck for 101s! [qemu-system-x86:31301]
[ 3758.466068] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3758.466136] CPU: 80 UID: 0 PID: 31301 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3758.466140] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3758.466142] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3758.466144] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3758.466151] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3758.466153] RSP: 0018:ffffaab62af4f8b8 EFLAGS: 00000202
[ 3758.466156] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3758.466157] RDX: 0000000000000001 RSI: ffff8f717fff99c0 RDI: ffff8f5287658500
[ 3758.466159] RBP: ffffaab62af4f918 R08: 0000000000000007 R09: ffff8f52876581c0
[ 3758.466160] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3758.466162] R13: 0000000000000202 R14: ffff8f7180a32a40 R15: 0000000000000080
[ 3758.466163] FS:  00007f5a64ff9640(0000) GS:ffff8f71ee236000(0000) knlGS:0000000000000000
[ 3758.466165] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3758.466166] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3758.466168] PKRU: 55555554
[ 3758.466169] Call Trace:
[ 3758.466171]  <TASK>
[ 3758.466174]  ? __pfx___wbinvd+0x10/0x10
[ 3758.466182]  on_each_cpu_cond_mask+0x28/0x50
[ 3758.466185]  wbinvd_on_all_cpus+0x29/0x40
[ 3758.466189]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3758.466198]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3758.466252]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3758.466307]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3758.466313]  change_protection+0xfc9/0x1200
[ 3758.466320]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.466324]  ? update_curr_dl_se+0x3b/0x1e0
[ 3758.466329]  ? dl_server_update+0x2e/0x40
[ 3758.466333]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.466336]  ? pick_next_task_fair+0x4f/0x490
[ 3758.466341]  change_prot_numa+0x5b/0xe0
[ 3758.466348]  task_numa_work+0x3c5/0x9b0
[ 3758.466356]  task_work_run+0x64/0xa0
[ 3758.466361]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3758.466366]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3758.466419]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3758.466470]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.466473]  ? do_futex+0xc8/0x1d0
[ 3758.466475]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.466478]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.466481]  __x64_sys_ioctl+0xa0/0xf0
[ 3758.466487]  x64_sys_call+0x122e/0x2150
[ 3758.466489]  do_syscall_64+0x56/0x1e0
[ 3758.466495]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3758.466497] RIP: 0033:0x7f67bff03b4b
[ 3758.466500] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3758.466502] RSP: 002b:00007f5a64ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3758.466504] RAX: ffffffffffffffda RBX: 0000563db62230e0 RCX: 00007f67bff03b4b
[ 3758.466506] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000124
[ 3758.466507] RBP: 0000563db62230e0 R08: 0000000000000000 R09: 0000000000000000
[ 3758.466508] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3758.466509] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3758.466515]  </TASK>
[ 3758.470061] watchdog: BUG: soft lockup - CPU#82 stuck for 101s! [qemu-system-x86:31267]
[ 3758.470064] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3758.470121] CPU: 82 UID: 0 PID: 31267 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3758.470124] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3758.470125] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3758.470126] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3758.470130] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3758.470132] RSP: 0018:ffffaab62ad538b8 EFLAGS: 00000202
[ 3758.470133] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3758.470135] RDX: 0000000000000001 RSI: ffff8f717fff9a00 RDI: ffff8f5287658c00
[ 3758.470136] RBP: ffffaab62ad53918 R08: 0000000000000007 R09: ffff8f5287658750
[ 3758.470137] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3758.470139] R13: 0000000000000202 R14: ffff8f7180ab2a40 R15: 0000000000000080
[ 3758.470140] FS:  00007f5ae7fff640(0000) GS:ffff8f71ee2b6000(0000) knlGS:0000000000000000
[ 3758.470142] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3758.470143] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3758.470145] PKRU: 55555554
[ 3758.470146] Call Trace:
[ 3758.470147]  <TASK>
[ 3758.470149]  ? __pfx___wbinvd+0x10/0x10
[ 3758.470154]  on_each_cpu_cond_mask+0x28/0x50
[ 3758.470157]  wbinvd_on_all_cpus+0x29/0x40
[ 3758.470160]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3758.470168]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3758.470219]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3758.470274]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3758.470279]  change_protection+0xfc9/0x1200
[ 3758.470285]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.470288]  ? update_load_avg+0x84/0x780
[ 3758.470292]  ? write_ibpb+0x21/0x40
[ 3758.470295]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3758.470348]  change_prot_numa+0x5b/0xe0
[ 3758.470354]  task_numa_work+0x3c5/0x9b0
[ 3758.470362]  task_work_run+0x64/0xa0
[ 3758.470366]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3758.470370]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3758.470422]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3758.470474]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.470476]  ? do_futex+0xc8/0x1d0
[ 3758.470479]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.470481]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.470485]  __x64_sys_ioctl+0xa0/0xf0
[ 3758.470489]  x64_sys_call+0x122e/0x2150
[ 3758.470491]  do_syscall_64+0x56/0x1e0
[ 3758.470495]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3758.470497] RIP: 0033:0x7f67bff03b4b
[ 3758.470499] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3758.470501] RSP: 002b:00007f5ae7ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3758.470503] RAX: ffffffffffffffda RBX: 0000563db60c97b0 RCX: 00007f67bff03b4b
[ 3758.470504] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000e0
[ 3758.470505] RBP: 0000563db60c97b0 R08: 0000000000000000 R09: 0000000000000000
[ 3758.470507] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3758.470508] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3758.470513]  </TASK>
[ 3758.534060] watchdog: BUG: soft lockup - CPU#111 stuck for 101s! [qemu-system-x86:31376]
[ 3758.534066] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3758.534135] CPU: 111 UID: 0 PID: 31376 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3758.534140] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3758.534141] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3758.534143] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3758.534151] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3758.534154] RSP: 0018:ffffaab62b5b38b8 EFLAGS: 00000202
[ 3758.534156] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3758.534158] RDX: 0000000000000001 RSI: ffff8f717fff9da0 RDI: ffff8f7206c6ac70
[ 3758.534160] RBP: ffffaab62b5b3918 R08: 0000000000000007 R09: ffff8f7206c6adf0
[ 3758.534162] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3758.534163] R13: 0000000000000202 R14: ffff8f917ebf2a40 R15: 0000000000000080
[ 3758.534165] FS:  00007f5905ffb640(0000) GS:ffff8f91ec3f6000(0000) knlGS:0000000000000000
[ 3758.534167] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3758.534169] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3758.534171] PKRU: 55555554
[ 3758.534172] Call Trace:
[ 3758.534173]  <TASK>
[ 3758.534177]  ? __pfx___wbinvd+0x10/0x10
[ 3758.534184]  on_each_cpu_cond_mask+0x28/0x50
[ 3758.534187]  wbinvd_on_all_cpus+0x29/0x40
[ 3758.534192]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3758.534201]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3758.534254]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3758.534310]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3758.534317]  change_protection+0xfc9/0x1200
[ 3758.534322]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.534327]  ? update_curr_dl_se+0x3b/0x1e0
[ 3758.534331]  ? dl_server_update+0x2e/0x40
[ 3758.534335]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.534339]  ? pick_next_task_fair+0x4f/0x490
[ 3758.534343]  change_prot_numa+0x5b/0xe0
[ 3758.534351]  task_numa_work+0x3c5/0x9b0
[ 3758.534358]  task_work_run+0x64/0xa0
[ 3758.534363]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3758.534369]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3758.534422]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3758.534474]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.534477]  ? do_futex+0xc8/0x1d0
[ 3758.534479]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.534481]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3758.534485]  __x64_sys_ioctl+0xa0/0xf0
[ 3758.534491]  x64_sys_call+0x122e/0x2150
[ 3758.534493]  do_syscall_64+0x56/0x1e0
[ 3758.534499]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3758.534501] RIP: 0033:0x7f67bff03b4b
[ 3758.534503] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3758.534505] RSP: 002b:00007f5905ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3758.534507] RAX: ffffffffffffffda RBX: 0000563db6519e20 RCX: 00007f67bff03b4b
[ 3758.534509] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001ba
[ 3758.534510] RBP: 0000563db6519e20 R08: 0000000000000000 R09: 0000000000000000
[ 3758.534511] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3758.534513] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3758.534518]  </TASK>
[ 3766.553899] watchdog: BUG: soft lockup - CPU#119 stuck for 74s! [qemu-system-x86:30243]
[ 3766.553904] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3766.553973] CPU: 119 UID: 0 PID: 30243 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3766.553977] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3766.553978] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3766.553980] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3766.553986] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3766.553988] RSP: 0018:ffffaab6285c78b8 EFLAGS: 00000202
[ 3766.553990] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3766.553992] RDX: 0000000000000001 RSI: ffff8f717fff9ea0 RDI: ffff8f7207fa2e90
[ 3766.553993] RBP: ffffaab6285c7918 R08: 0000000000000007 R09: ffff8f7207fa2310
[ 3766.553994] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3766.553995] R13: 0000000000000202 R14: ffff8f917edf2a40 R15: 0000000000000080
[ 3766.553997] FS:  00007fd92adfd640(0000) GS:ffff8f91ec5f6000(0000) knlGS:0000000000000000
[ 3766.553999] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3766.554000] CR2: 0000000000000000 CR3: 000000208b92101d CR4: 0000000000770ef0
[ 3766.554002] PKRU: 55555554
[ 3766.554003] Call Trace:
[ 3766.554005]  <TASK>
[ 3766.554008]  ? __pfx___wbinvd+0x10/0x10
[ 3766.554015]  on_each_cpu_cond_mask+0x28/0x50
[ 3766.554018]  wbinvd_on_all_cpus+0x29/0x40
[ 3766.554022]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3766.554032]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3766.554090]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3766.554147]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3766.554153]  change_protection+0xfc9/0x1200
[ 3766.554158]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3766.554162]  ? native_apic_msr_write+0x32/0x40
[ 3766.554166]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3766.554169]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3766.554171]  ? timerqueue_add+0x72/0xd0
[ 3766.554177]  ? enqueue_hrtimer+0x3c/0x90
[ 3766.554181]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3766.554184]  ? hrtimer_start_range_ns+0x137/0x430
[ 3766.554189]  change_prot_numa+0x5b/0xe0
[ 3766.554194]  ? kvm_lapic_reg_write+0x82/0x7d0 [kvm]
[ 3766.554251]  task_numa_work+0x3c5/0x9b0
[ 3766.554259]  task_work_run+0x64/0xa0
[ 3766.554264]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3766.554269]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3766.554324]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3766.554377]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3766.554380]  ? do_futex+0xc8/0x1d0
[ 3766.554382]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3766.554384]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3766.554388]  __x64_sys_ioctl+0xa0/0xf0
[ 3766.554393]  x64_sys_call+0x122e/0x2150
[ 3766.554396]  do_syscall_64+0x56/0x1e0
[ 3766.554400]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3766.554402] RIP: 0033:0x7fe43bd03b4b
[ 3766.554405] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3766.554406] RSP: 002b:00007fd92adfc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3766.554409] RAX: ffffffffffffffda RBX: 0000555f8587ce30 RCX: 00007fe43bd03b4b
[ 3766.554410] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000020
[ 3766.554411] RBP: 0000555f8587ce30 R08: 0000000000000000 R09: 0000000000000000
[ 3766.554413] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3766.554414] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3766.554419]  </TASK>
[ 3774.389741] watchdog: BUG: soft lockup - CPU#57 stuck for 123s! [qemu-system-x86:31333]
[ 3774.389746] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3774.389814] CPU: 57 UID: 0 PID: 31333 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3774.389818] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3774.389819] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3774.389821] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3774.389827] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3774.389829] RSP: 0018:ffffaab62b1df8b8 EFLAGS: 00000202
[ 3774.389831] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3774.389832] RDX: 0000000000000001 RSI: ffff8f717fff96e0 RDI: ffff8f72000babf0
[ 3774.389834] RBP: ffffaab62b1df918 R08: 0000000000000007 R09: ffff8f72000bab00
[ 3774.389835] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3774.389836] R13: 0000000000000202 R14: ffff8f917e672a40 R15: 0000000000000080
[ 3774.389838] FS:  00007f59c67fc640(0000) GS:ffff8f91ebe76000(0000) knlGS:0000000000000000
[ 3774.389839] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3774.389841] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3774.389842] PKRU: 55555554
[ 3774.389843] Call Trace:
[ 3774.389845]  <TASK>
[ 3774.389848]  ? __pfx___wbinvd+0x10/0x10
[ 3774.389854]  on_each_cpu_cond_mask+0x28/0x50
[ 3774.389857]  wbinvd_on_all_cpus+0x29/0x40
[ 3774.389862]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3774.389871]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3774.389924]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3774.389979]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3774.389985]  change_protection+0xfc9/0x1200
[ 3774.389990]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3774.389994]  ? update_curr_dl_se+0x3b/0x1e0
[ 3774.389998]  ? dl_server_update+0x2e/0x40
[ 3774.390002]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3774.390006]  ? pick_next_task_fair+0x4f/0x490
[ 3774.390011]  change_prot_numa+0x5b/0xe0
[ 3774.390015]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3774.390021]  task_numa_work+0x3c5/0x9b0
[ 3774.390029]  task_work_run+0x64/0xa0
[ 3774.390034]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3774.390039]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3774.390091]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3774.390143]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3774.390145]  ? do_futex+0xc8/0x1d0
[ 3774.390148]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3774.390150]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3774.390154]  __x64_sys_ioctl+0xa0/0xf0
[ 3774.390160]  x64_sys_call+0x122e/0x2150
[ 3774.390162]  do_syscall_64+0x56/0x1e0
[ 3774.390167]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3774.390169] RIP: 0033:0x7f67bff03b4b
[ 3774.390172] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3774.390173] RSP: 002b:00007f59c67fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3774.390176] RAX: ffffffffffffffda RBX: 0000563db63677d0 RCX: 00007f67bff03b4b
[ 3774.390177] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000164
[ 3774.390178] RBP: 0000563db63677d0 R08: 0000000000000000 R09: 0000000000000000
[ 3774.390179] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3774.390181] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3774.390186]  </TASK>
[ 3774.421740] watchdog: BUG: soft lockup - CPU#64 stuck for 123s! [qemu-system-x86:30221]
[ 3774.421745] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3774.421817] CPU: 64 UID: 0 PID: 30221 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3774.421822] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3774.421823] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3774.421825] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3774.421833] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3774.421835] RSP: 0000:ffffaab62c787a40 EFLAGS: 00000202
[ 3774.421837] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3774.421839] RDX: 0000000000000001 RSI: ffff8f717fff97c0 RDI: ffff8f5287658460
[ 3774.421841] RBP: ffffaab62c787aa0 R08: 0000000000000007 R09: ffff8f5287658f30
[ 3774.421842] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3774.421843] R13: 0000000000000202 R14: ffff8f7180632a40 R15: 0000000000000080
[ 3774.421845] FS:  00007fe43be09c80(0000) GS:ffff8f71ede36000(0000) knlGS:0000000000000000
[ 3774.421847] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3774.421849] CR2: 0000000000000000 CR3: 000000208b92101d CR4: 0000000000770ef0
[ 3774.421850] PKRU: 55555554
[ 3774.421852] Call Trace:
[ 3774.421854]  <TASK>
[ 3774.421857]  ? __pfx___wbinvd+0x10/0x10
[ 3774.421865]  on_each_cpu_cond_mask+0x28/0x50
[ 3774.421868]  wbinvd_on_all_cpus+0x29/0x40
[ 3774.421873]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3774.421882]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3774.421936]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3774.421992]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3774.421998]  change_protection+0xfc9/0x1200
[ 3774.422008]  ? sched_balance_rq+0x214/0xf80
[ 3774.422013]  change_prot_numa+0x5b/0xe0
[ 3774.422020]  task_numa_work+0x3c5/0x9b0
[ 3774.422028]  task_work_run+0x64/0xa0
[ 3774.422034]  irqentry_exit_to_user_mode+0x15d/0x170
[ 3774.422039]  irqentry_exit+0x3f/0x50
[ 3774.422043]  sysvec_apic_timer_interrupt+0x51/0x90
[ 3774.422046]  asm_sysvec_apic_timer_interrupt+0x1f/0x30
[ 3774.422050] RIP: 0033:0x555f731496f0
[ 3774.422052] Code: 5f 31 d2 31 f6 31 ff 45 31 c0 c3 0f 1f 80 00 00 00 00 8b 05 6a 71 07 01 85 c0 74 0a 48 8b 45 00 83 78 08 01 74 64 48 8b 43 20 <ba> 31 02 00 00 4c 89 fe 4c 89 e7 48 89 45 38 4c 8b 73 10 48 c7 43
[ 3774.422054] RSP: 002b:00007fff0a821250 EFLAGS: 00000246
[ 3774.422056] RAX: 0000000000000000 RBX: 0000555f86a813c0 RCX: 0000000000000000
[ 3774.422057] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
[ 3774.422058] RBP: 0000555f85541f10 R08: 0000000000000000 R09: 0000000000000000
[ 3774.422060] R10: 00007fe43c625000 R11: 00007fe43c625010 R12: 0000555f85541f18
[ 3774.422061] R13: 0000000000000001 R14: 0000555f741dfff0 R15: 0000555f7335b2af
[ 3774.422066]  </TASK>
[ 3774.481739] watchdog: BUG: soft lockup - CPU#87 stuck for 123s! [qemu-system-x86:31402]
[ 3774.481745] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3774.481814] CPU: 87 UID: 0 PID: 31402 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3774.481819] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3774.481820] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3774.481823] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3774.481830] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3774.481832] RSP: 0018:ffffaab62bf578b8 EFLAGS: 00000202
[ 3774.481835] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3774.481836] RDX: 0000000000000001 RSI: ffff8f717fff9aa0 RDI: ffff8f52889c6230
[ 3774.481838] RBP: ffffaab62bf57918 R08: 0000000000000007 R09: ffff8f52889c6420
[ 3774.481839] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3774.481840] R13: 0000000000000202 R14: ffff8f7180bf2a40 R15: 0000000000000080
[ 3774.481842] FS:  00007f5886ffd640(0000) GS:ffff8f71ee3f6000(0000) knlGS:0000000000000000
[ 3774.481844] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3774.481845] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3774.481847] PKRU: 55555554
[ 3774.481849] Call Trace:
[ 3774.481851]  <TASK>
[ 3774.481854]  ? __pfx___wbinvd+0x10/0x10
[ 3774.481862]  on_each_cpu_cond_mask+0x28/0x50
[ 3774.481865]  wbinvd_on_all_cpus+0x29/0x40
[ 3774.481870]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3774.481879]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3774.481933]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3774.481988]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3774.481995]  change_protection+0xfc9/0x1200
[ 3774.482001]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3774.482006]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3774.482009]  ? update_load_avg+0x84/0x780
[ 3774.482014]  ? write_ibpb+0x21/0x40
[ 3774.482020]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3774.482072]  change_prot_numa+0x5b/0xe0
[ 3774.482080]  task_numa_work+0x3c5/0x9b0
[ 3774.482088]  task_work_run+0x64/0xa0
[ 3774.482093]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3774.482098]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3774.482151]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3774.482202]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3774.482205]  ? do_futex+0xc8/0x1d0
[ 3774.482208]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3774.482210]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3774.482214]  __x64_sys_ioctl+0xa0/0xf0
[ 3774.482220]  x64_sys_call+0x122e/0x2150
[ 3774.482222]  do_syscall_64+0x56/0x1e0
[ 3774.482226]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3774.482228] RIP: 0033:0x7f67bff03b4b
[ 3774.482231] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3774.482233] RSP: 002b:00007f5886ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3774.482235] RAX: ffffffffffffffda RBX: 0000563db66207e0 RCX: 00007f67bff03b4b
[ 3774.482236] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001ee
[ 3774.482237] RBP: 0000563db66207e0 R08: 0000000000000000 R09: 0000000000000000
[ 3774.482239] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3774.482240] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3774.482245]  </TASK>
[ 3774.505738] watchdog: BUG: soft lockup - CPU#98 stuck for 123s! [qemu-system-x86:31373]
[ 3774.505744] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3774.505814] CPU: 98 UID: 0 PID: 31373 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3774.505819] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3774.505820] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3774.505822] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3774.505830] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3774.505833] RSP: 0018:ffffaab6274978b8 EFLAGS: 00000202
[ 3774.505835] RAX: 0000000000000055 RBX: 0000000000000001 RCX: 0000000000000001
[ 3774.505837] RDX: 0000000000000001 RSI: ffff8f7180b79c00 RDI: ffff8f7206c6a630
[ 3774.505838] RBP: ffffaab627497918 R08: 0000000000000055 R09: ffff8f7206c6add0
[ 3774.505840] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3774.505841] R13: 0000000000000202 R14: ffff8f917e8b2a40 R15: 0000000000000080
[ 3774.505843] FS:  00007f59077fe640(0000) GS:ffff8f91ec0b6000(0000) knlGS:0000000000000000
[ 3774.505845] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3774.505847] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3774.505848] PKRU: 55555554
[ 3774.505850] Call Trace:
[ 3774.505851]  <TASK>
[ 3774.505855]  ? __pfx___wbinvd+0x10/0x10
[ 3774.505862]  on_each_cpu_cond_mask+0x28/0x50
[ 3774.505866]  wbinvd_on_all_cpus+0x29/0x40
[ 3774.505870]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3774.505879]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3774.505932]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3774.505987]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3774.505993]  change_protection+0xfc9/0x1200
[ 3774.506000]  ? update_cfs_group+0xb0/0xc0
[ 3774.506007]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3774.506011]  ? pick_next_task_fair+0x4f/0x490
[ 3774.506015]  change_prot_numa+0x5b/0xe0
[ 3774.506020]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3774.506026]  task_numa_work+0x3c5/0x9b0
[ 3774.506034]  task_work_run+0x64/0xa0
[ 3774.506039]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3774.506044]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3774.506096]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3774.506148]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3774.506151]  ? do_futex+0xc8/0x1d0
[ 3774.506153]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3774.506156]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3774.506159]  __x64_sys_ioctl+0xa0/0xf0
[ 3774.506165]  x64_sys_call+0x122e/0x2150
[ 3774.506167]  do_syscall_64+0x56/0x1e0
[ 3774.506173]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3774.506175] RIP: 0033:0x7f67bff03b4b
[ 3774.506178] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3774.506179] RSP: 002b:00007f59077fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3774.506182] RAX: ffffffffffffffda RBX: 0000563db64fb700 RCX: 00007f67bff03b4b
[ 3774.506183] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001b4
[ 3774.506184] RBP: 0000563db64fb700 R08: 0000000000000000 R09: 0000000000000000
[ 3774.506185] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3774.506187] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3774.506192]  </TASK>
[ 3778.273662] watchdog: BUG: soft lockup - CPU#6 stuck for 126s! [qemu-system-x86:31395]
[ 3778.273668] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3778.273735] CPU: 6 UID: 0 PID: 31395 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3778.273739] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3778.273740] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3778.273742] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3778.273748] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3778.273750] RSP: 0018:ffffaab62c1a38b8 EFLAGS: 00000202
[ 3778.273752] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3778.273754] RDX: 0000000000000001 RSI: ffff8f717fff9080 RDI: ffff8f5280a320c0
[ 3778.273755] RBP: ffffaab62c1a3918 R08: 0000000000000007 R09: ffff8f5280a32bb0
[ 3778.273756] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3778.273758] R13: 0000000000000202 R14: ffff8f717ffb2a40 R15: 0000000000000080
[ 3778.273759] FS:  00007f58a6ffd640(0000) GS:ffff8f71ed7b6000(0000) knlGS:0000000000000000
[ 3778.273761] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3778.273762] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3778.273763] PKRU: 55555554
[ 3778.273764] Call Trace:
[ 3778.273766]  <TASK>
[ 3778.273769]  ? __pfx___wbinvd+0x10/0x10
[ 3778.273776]  on_each_cpu_cond_mask+0x28/0x50
[ 3778.273779]  wbinvd_on_all_cpus+0x29/0x40
[ 3778.273784]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3778.273793]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3778.273846]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3778.273901]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3778.273908]  change_protection+0xfc9/0x1200
[ 3778.273914]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.273918]  ? update_curr_dl_se+0x3b/0x1e0
[ 3778.273922]  ? dl_server_update+0x2e/0x40
[ 3778.273926]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.273930]  ? pick_next_task_fair+0x4f/0x490
[ 3778.273934]  change_prot_numa+0x5b/0xe0
[ 3778.273938]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3778.273944]  task_numa_work+0x3c5/0x9b0
[ 3778.273952]  task_work_run+0x64/0xa0
[ 3778.273957]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3778.273962]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3778.274014]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3778.274066]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.274069]  ? do_futex+0xc8/0x1d0
[ 3778.274071]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.274073]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.274077]  __x64_sys_ioctl+0xa0/0xf0
[ 3778.274082]  x64_sys_call+0x122e/0x2150
[ 3778.274084]  do_syscall_64+0x56/0x1e0
[ 3778.274090]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3778.274092] RIP: 0033:0x7f67bff03b4b
[ 3778.274094] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3778.274096] RSP: 002b:00007f58a6ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3778.274098] RAX: ffffffffffffffda RBX: 0000563db65d9840 RCX: 00007f67bff03b4b
[ 3778.274099] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001e0
[ 3778.274101] RBP: 0000563db65d9840 R08: 0000000000000000 R09: 0000000000000000
[ 3778.274102] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3778.274103] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3778.274108]  </TASK>
[ 3778.297662] watchdog: BUG: soft lockup - CPU#17 stuck for 126s! [qemu-system-x86:31404]
[ 3778.297667] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3778.297737] CPU: 17 UID: 0 PID: 31404 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3778.297741] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3778.297742] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3778.297744] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3778.297752] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3778.297754] RSP: 0018:ffffaab62bf3f8b8 EFLAGS: 00000202
[ 3778.297756] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3778.297758] RDX: 0000000000000001 RSI: ffff8f717fff91e0 RDI: ffff8f52872d0b00
[ 3778.297759] RBP: ffffaab62bf3f918 R08: 0000000000000007 R09: ffff8f52872d0850
[ 3778.297761] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3778.297762] R13: 0000000000000202 R14: ffff8f7180272a40 R15: 0000000000000080
[ 3778.297764] FS:  00007f5885ffb640(0000) GS:ffff8f71eda76000(0000) knlGS:0000000000000000
[ 3778.297766] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3778.297767] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3778.297769] PKRU: 55555554
[ 3778.297770] Call Trace:
[ 3778.297772]  <TASK>
[ 3778.297775]  ? __pfx___wbinvd+0x10/0x10
[ 3778.297783]  on_each_cpu_cond_mask+0x28/0x50
[ 3778.297786]  wbinvd_on_all_cpus+0x29/0x40
[ 3778.297791]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3778.297799]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3778.297853]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3778.297909]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3778.297915]  change_protection+0xfc9/0x1200
[ 3778.297921]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.297926]  ? update_curr_dl_se+0x3b/0x1e0
[ 3778.297930]  ? dl_server_update+0x2e/0x40
[ 3778.297934]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.297938]  ? pick_next_task_fair+0x4f/0x490
[ 3778.297942]  change_prot_numa+0x5b/0xe0
[ 3778.297947]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3778.297953]  task_numa_work+0x3c5/0x9b0
[ 3778.297961]  task_work_run+0x64/0xa0
[ 3778.297966]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3778.297972]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3778.298024]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3778.298075]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.298078]  ? do_futex+0xc8/0x1d0
[ 3778.298081]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.298083]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.298087]  __x64_sys_ioctl+0xa0/0xf0
[ 3778.298093]  x64_sys_call+0x122e/0x2150
[ 3778.298095]  do_syscall_64+0x56/0x1e0
[ 3778.298100]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3778.298102] RIP: 0033:0x7f67bff03b4b
[ 3778.298105] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3778.298107] RSP: 002b:00007f5885ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3778.298109] RAX: ffffffffffffffda RBX: 0000563db6636340 RCX: 00007f67bff03b4b
[ 3778.298111] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001f2
[ 3778.298112] RBP: 0000563db6636340 R08: 0000000000000000 R09: 0000000000000000
[ 3778.298113] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3778.298114] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3778.298119]  </TASK>
[ 3778.301662] watchdog: BUG: soft lockup - CPU#19 stuck for 126s! [qemu-system-x86:31326]
[ 3778.301668] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3778.301746] CPU: 19 UID: 0 PID: 31326 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3778.301751] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3778.301752] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3778.301754] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3778.301759] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3778.301763] RSP: 0018:ffffaab62b0338b8 EFLAGS: 00000202
[ 3778.301766] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3778.301768] RDX: 0000000000000001 RSI: ffff8f717fff9220 RDI: ffff8f52872d0a50
[ 3778.301770] RBP: ffffaab62b033918 R08: 0000000000000007 R09: ffff8f52872d0b70
[ 3778.301771] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3778.301773] R13: 0000000000000202 R14: ffff8f71802f2a40 R15: 0000000000000080
[ 3778.301775] FS:  00007f59e67fc640(0000) GS:ffff8f71edaf6000(0000) knlGS:0000000000000000
[ 3778.301777] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3778.301778] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3778.301780] PKRU: 55555554
[ 3778.301781] Call Trace:
[ 3778.301783]  <TASK>
[ 3778.301786]  ? __pfx___wbinvd+0x10/0x10
[ 3778.301793]  on_each_cpu_cond_mask+0x28/0x50
[ 3778.301796]  wbinvd_on_all_cpus+0x29/0x40
[ 3778.301800]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3778.301812]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3778.301894]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3778.301971]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3778.301978]  change_protection+0xfc9/0x1200
[ 3778.301985]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.301989]  ? update_curr_dl_se+0x3b/0x1e0
[ 3778.301993]  ? dl_server_update+0x2e/0x40
[ 3778.301997]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.302001]  ? pick_next_task_fair+0x4f/0x490
[ 3778.302005]  change_prot_numa+0x5b/0xe0
[ 3778.302010]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3778.302015]  task_numa_work+0x3c5/0x9b0
[ 3778.302024]  task_work_run+0x64/0xa0
[ 3778.302028]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3778.302033]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3778.302117]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3778.302188]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.302192]  ? do_futex+0xc8/0x1d0
[ 3778.302195]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.302200]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.302205]  __x64_sys_ioctl+0xa0/0xf0
[ 3778.302211]  x64_sys_call+0x122e/0x2150
[ 3778.302213]  do_syscall_64+0x56/0x1e0
[ 3778.302218]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3778.302220] RIP: 0033:0x7f67bff03b4b
[ 3778.302224] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3778.302226] RSP: 002b:00007f59e67fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3778.302229] RAX: ffffffffffffffda RBX: 0000563db6320030 RCX: 00007f67bff03b4b
[ 3778.302231] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000156
[ 3778.302232] RBP: 0000563db6320030 R08: 0000000000000000 R09: 0000000000000000
[ 3778.302234] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3778.302235] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3778.302241]  </TASK>
[ 3778.325661] watchdog: BUG: soft lockup - CPU#30 stuck for 126s! [qemu-system-x86:31241]
[ 3778.325666] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3778.325735] CPU: 30 UID: 0 PID: 31241 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3778.325740] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3778.325741] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3778.325743] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3778.325751] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3778.325753] RSP: 0018:ffffaab62ac838b8 EFLAGS: 00000202
[ 3778.325755] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3778.325757] RDX: 0000000000000001 RSI: ffff8f717fff9380 RDI: ffff8f52872d0570
[ 3778.325758] RBP: ffffaab62ac83918 R08: 0000000000000007 R09: ffff8f52872d0ae0
[ 3778.325760] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3778.325761] R13: 0000000000000202 R14: ffff8f71805b2a40 R15: 0000000000000080
[ 3778.325762] FS:  00007f5b66ffd640(0000) GS:ffff8f71eddb6000(0000) knlGS:0000000000000000
[ 3778.325764] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3778.325766] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3778.325767] PKRU: 55555554
[ 3778.325768] Call Trace:
[ 3778.325770]  <TASK>
[ 3778.325773]  ? __pfx___wbinvd+0x10/0x10
[ 3778.325781]  on_each_cpu_cond_mask+0x28/0x50
[ 3778.325784]  wbinvd_on_all_cpus+0x29/0x40
[ 3778.325789]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3778.325798]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3778.325852]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3778.325907]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3778.325913]  change_protection+0xfc9/0x1200
[ 3778.325919]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.325925]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.325927]  ? update_load_avg+0x84/0x780
[ 3778.325932]  ? write_ibpb+0x21/0x40
[ 3778.325938]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3778.325990]  change_prot_numa+0x5b/0xe0
[ 3778.325998]  task_numa_work+0x3c5/0x9b0
[ 3778.326005]  task_work_run+0x64/0xa0
[ 3778.326011]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3778.326016]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3778.326068]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3778.326120]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.326123]  ? do_futex+0xc8/0x1d0
[ 3778.326126]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.326128]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.326131]  __x64_sys_ioctl+0xa0/0xf0
[ 3778.326137]  x64_sys_call+0x122e/0x2150
[ 3778.326139]  do_syscall_64+0x56/0x1e0
[ 3778.326143]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3778.326145] RIP: 0033:0x7f67bff03b4b
[ 3778.326147] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3778.326149] RSP: 002b:00007f5b66ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3778.326151] RAX: ffffffffffffffda RBX: 0000563db5fc29d0 RCX: 00007f67bff03b4b
[ 3778.326153] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000ac
[ 3778.326154] RBP: 0000563db5fc29d0 R08: 0000000000000000 R09: 0000000000000000
[ 3778.326155] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3778.326156] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3778.326162]  </TASK>
[ 3778.326163] watchdog: BUG: soft lockup - CPU#29 stuck for 100s! [kworker/u516:3:39511]
[ 3778.326165] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3778.326223] CPU: 29 UID: 0 PID: 39511 Comm: kworker/u516:3 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3778.326226] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3778.326227] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3778.326229] Workqueue: writeback wb_workfn (flush-253:1)
[ 3778.326235] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3778.326238] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3778.326240] RSP: 0018:ffffaab6926c35d8 EFLAGS: 00000202
[ 3778.326241] RAX: 0000000000000056 RBX: 0000000000000001 RCX: 0000000000000011
[ 3778.326243] RDX: 0000000000000001 RSI: ffff8f7180bb9360 RDI: ffff8f52872d07a0
[ 3778.326244] RBP: ffffaab6926c3638 R08: 0000000000000056 R09: ffff8f52872d0970
[ 3778.326246] R10: 0000000000000002 R11: 0000000000000002 R12: ffff8f7180570b00
[ 3778.326247] R13: ffff8f52872d0e00 R14: ffff8f7180572a40 R15: 0000000000000080
[ 3778.326248] FS:  0000000000000000(0000) GS:ffff8f71edd76000(0000) knlGS:0000000000000000
[ 3778.326250] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3778.326251] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3778.326253] PKRU: 55555554
[ 3778.326254] Call Trace:
[ 3778.326255]  <TASK>
[ 3778.326257]  ? __pfx_flush_tlb_func+0x10/0x10
[ 3778.326262]  on_each_cpu_cond_mask+0x28/0x50
[ 3778.326265]  native_flush_tlb_multi+0xec/0x140
[ 3778.326268]  ? __pte_offset_map_lock+0x9a/0x110
[ 3778.326271]  flush_tlb_mm_range+0x1d6/0x5d0
[ 3778.326274]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.326277]  ? page_vma_mapped_walk+0x7bb/0xac0
[ 3778.326281]  ptep_clear_flush+0x64/0x80
[ 3778.326284]  page_vma_mkclean_one.constprop.0+0x113/0x270
[ 3778.326289]  page_mkclean_one+0x8c/0xb0
[ 3778.326293]  __rmap_walk_file+0xe3/0x190
[ 3778.326297]  rmap_walk+0x49/0x70
[ 3778.326300]  folio_mkclean+0xb0/0xc0
[ 3778.326304]  ? __pfx_page_mkclean_one+0x10/0x10
[ 3778.326306]  ? __pfx_invalid_mkclean_vma+0x10/0x10
[ 3778.326309]  folio_clear_dirty_for_io+0x60/0x190
[ 3778.326314]  writeback_iter+0x10b/0x310
[ 3778.326318]  iomap_writepages+0x6d/0x990
[ 3778.326323]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.326325]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.326328]  ? mpt3sas_scsih_scsi_lookup_get+0x4f/0xe0 [mpt3sas]
[ 3778.326339]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.326344]  xfs_vm_writepages+0x88/0x100 [xfs]
[ 3778.326462]  do_writepages+0xc8/0x160
[ 3778.326466]  __writeback_single_inode+0x44/0x340
[ 3778.326471]  writeback_sb_inodes+0x249/0x540
[ 3778.326484]  __writeback_inodes_wb+0x56/0xf0
[ 3778.326488]  wb_writeback+0x192/0x300
[ 3778.326494]  wb_workfn+0x26a/0x410
[ 3778.326500]  process_one_work+0x19f/0x3e0
[ 3778.326504]  worker_thread+0x2ad/0x3c0
[ 3778.326507]  kthread+0x10b/0x220
[ 3778.326510]  ? __pfx_worker_thread+0x10/0x10
[ 3778.326513]  ? __pfx_kthread+0x10/0x10
[ 3778.326516]  ret_from_fork+0x8e/0x100
[ 3778.326519]  ? __pfx_kthread+0x10/0x10
[ 3778.326522]  ret_from_fork_asm+0x1a/0x30
[ 3778.326528]  </TASK>
[ 3778.349661] watchdog: BUG: soft lockup - CPU#40 stuck for 126s! [qemu-system-x86:31268]
[ 3778.349666] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3778.349736] CPU: 40 UID: 0 PID: 31268 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3778.349740] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3778.349741] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3778.349743] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3778.349750] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3778.349752] RSP: 0018:ffffaab62ad5b8b8 EFLAGS: 00000202
[ 3778.349754] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3778.349756] RDX: 0000000000000001 RSI: ffff8f717fff94c0 RDI: ffff8f72066e39e0
[ 3778.349758] RBP: ffffaab62ad5b918 R08: 0000000000000007 R09: ffff8f72066e3c40
[ 3778.349759] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3778.349761] R13: 0000000000000202 R14: ffff8f917e232a40 R15: 0000000000000080
[ 3778.349762] FS:  00007f5ae77fe640(0000) GS:ffff8f91eba36000(0000) knlGS:0000000000000000
[ 3778.349764] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3778.349766] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3778.349767] PKRU: 55555554
[ 3778.349769] Call Trace:
[ 3778.349770]  <TASK>
[ 3778.349774]  ? __pfx___wbinvd+0x10/0x10
[ 3778.349781]  on_each_cpu_cond_mask+0x28/0x50
[ 3778.349784]  wbinvd_on_all_cpus+0x29/0x40
[ 3778.349789]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3778.349798]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3778.349851]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3778.349906]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3778.349912]  change_protection+0xfc9/0x1200
[ 3778.349919]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.349923]  ? update_load_avg+0x84/0x780
[ 3778.349928]  ? write_ibpb+0x21/0x40
[ 3778.349934]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3778.349986]  change_prot_numa+0x5b/0xe0
[ 3778.349993]  task_numa_work+0x3c5/0x9b0
[ 3778.350001]  task_work_run+0x64/0xa0
[ 3778.350007]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3778.350012]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3778.350064]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3778.350116]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.350118]  ? do_futex+0xc8/0x1d0
[ 3778.350121]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.350124]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.350127]  __x64_sys_ioctl+0xa0/0xf0
[ 3778.350133]  x64_sys_call+0x122e/0x2150
[ 3778.350135]  do_syscall_64+0x56/0x1e0
[ 3778.350139]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3778.350141] RIP: 0033:0x7f67bff03b4b
[ 3778.350144] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3778.350146] RSP: 002b:00007f5ae77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3778.350148] RAX: ffffffffffffffda RBX: 0000563db60d3df0 RCX: 00007f67bff03b4b
[ 3778.350149] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000e2
[ 3778.350151] RBP: 0000563db60d3df0 R08: 0000000000000000 R09: 0000000000000000
[ 3778.350152] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3778.350153] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3778.350158]  </TASK>
[ 3778.385660] watchdog: BUG: soft lockup - CPU#55 stuck for 74s! [qemu-system-x86:30270]
[ 3778.385666] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3778.385737] CPU: 55 UID: 0 PID: 30270 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3778.385741] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3778.385743] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3778.385745] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3778.385752] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3778.385754] RSP: 0018:ffffaab62c8978b8 EFLAGS: 00000202
[ 3778.385757] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3778.385758] RDX: 0000000000000001 RSI: ffff8f717fff96a0 RDI: ffff8f72000ba410
[ 3778.385760] RBP: ffffaab62c897918 R08: 0000000000000007 R09: ffff8f72000ba7c0
[ 3778.385761] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3778.385762] R13: 0000000000000202 R14: ffff8f917e5f2a40 R15: 0000000000000080
[ 3778.385764] FS:  00007fd8a3fff640(0000) GS:ffff8f91ebdf6000(0000) knlGS:0000000000000000
[ 3778.385766] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3778.385768] CR2: 00007fb38e38e1a0 CR3: 000000208b92101d CR4: 0000000000770ef0
[ 3778.385769] PKRU: 55555554
[ 3778.385771] Call Trace:
[ 3778.385772]  <TASK>
[ 3778.385776]  ? __pfx___wbinvd+0x10/0x10
[ 3778.385783]  on_each_cpu_cond_mask+0x28/0x50
[ 3778.385786]  wbinvd_on_all_cpus+0x29/0x40
[ 3778.385791]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3778.385800]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3778.385858]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3778.385914]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3778.385920]  change_protection+0xfc9/0x1200
[ 3778.385926]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.385930]  ? native_apic_msr_write+0x32/0x40
[ 3778.385934]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.385937]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.385940]  ? timerqueue_add+0x72/0xd0
[ 3778.385945]  ? enqueue_hrtimer+0x3c/0x90
[ 3778.385950]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.385952]  ? hrtimer_start_range_ns+0x137/0x430
[ 3778.385957]  change_prot_numa+0x5b/0xe0
[ 3778.385963]  ? kvm_lapic_reg_write+0x82/0x7d0 [kvm]
[ 3778.386019]  task_numa_work+0x3c5/0x9b0
[ 3778.386028]  task_work_run+0x64/0xa0
[ 3778.386033]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3778.386038]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3778.386092]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3778.386144]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.386147]  ? do_futex+0xc8/0x1d0
[ 3778.386149]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.386152]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.386155]  __x64_sys_ioctl+0xa0/0xf0
[ 3778.386161]  x64_sys_call+0x122e/0x2150
[ 3778.386163]  do_syscall_64+0x56/0x1e0
[ 3778.386168]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3778.386170] RIP: 0033:0x7fe43bd03b4b
[ 3778.386173] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3778.386174] RSP: 002b:00007fd8a3ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3778.386177] RAX: ffffffffffffffda RBX: 0000555f859840f0 RCX: 00007fe43bd03b4b
[ 3778.386178] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000054
[ 3778.386179] RBP: 0000555f859840f0 R08: 0000000000000000 R09: 0000000000000000
[ 3778.386181] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3778.386182] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3778.386187]  </TASK>
[ 3778.393661] watchdog: BUG: soft lockup - CPU#60 stuck for 126s! [qemu-system-x86:31338]
[ 3778.393668] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3778.393753] CPU: 60 UID: 0 PID: 31338 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3778.393761] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3778.393763] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3778.393764] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3778.393772] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3778.393775] RSP: 0018:ffffaab62b2078b8 EFLAGS: 00000202
[ 3778.393778] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3778.393780] RDX: 0000000000000001 RSI: ffff8f717fff9740 RDI: ffff8f72000ba610
[ 3778.393782] RBP: ffffaab62b207918 R08: 0000000000000007 R09: ffff8f72000ba170
[ 3778.393784] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3778.393785] R13: 0000000000000202 R14: ffff8f917e732a40 R15: 0000000000000080
[ 3778.393787] FS:  00007f59a77fe640(0000) GS:ffff8f91ebf36000(0000) knlGS:0000000000000000
[ 3778.393789] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3778.393791] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3778.393793] PKRU: 55555554
[ 3778.393794] Call Trace:
[ 3778.393796]  <TASK>
[ 3778.393802]  ? __pfx___wbinvd+0x10/0x10
[ 3778.393810]  on_each_cpu_cond_mask+0x28/0x50
[ 3778.393814]  wbinvd_on_all_cpus+0x29/0x40
[ 3778.393820]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3778.393839]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3778.393921]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3778.394001]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3778.394008]  change_protection+0xfc9/0x1200
[ 3778.394014]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.394019]  ? update_curr_dl_se+0x3b/0x1e0
[ 3778.394024]  ? dl_server_update+0x2e/0x40
[ 3778.394028]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.394032]  ? pick_next_task_fair+0x4f/0x490
[ 3778.394037]  change_prot_numa+0x5b/0xe0
[ 3778.394045]  task_numa_work+0x3c5/0x9b0
[ 3778.394054]  task_work_run+0x64/0xa0
[ 3778.394063]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3778.394069]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3778.394143]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3778.394216]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.394220]  ? do_futex+0xc8/0x1d0
[ 3778.394223]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.394225]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.394229]  __x64_sys_ioctl+0xa0/0xf0
[ 3778.394235]  x64_sys_call+0x122e/0x2150
[ 3778.394238]  do_syscall_64+0x56/0x1e0
[ 3778.394244]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3778.394246] RIP: 0033:0x7f67bff03b4b
[ 3778.394249] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3778.394252] RSP: 002b:00007f59a77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3778.394255] RAX: ffffffffffffffda RBX: 0000563db6399de0 RCX: 00007f67bff03b4b
[ 3778.394256] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000016e
[ 3778.394258] RBP: 0000563db6399de0 R08: 0000000000000000 R09: 0000000000000000
[ 3778.394259] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3778.394261] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3778.394267]  </TASK>
[ 3778.429659] watchdog: BUG: soft lockup - CPU#65 stuck for 126s! [qemu-system-x86:31406]
[ 3778.429661] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3778.429720] CPU: 65 UID: 0 PID: 31406 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3778.429724] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3778.429725] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3778.429727] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3778.429730] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3778.429732] RSP: 0018:ffffaab62bf2f8b8 EFLAGS: 00000202
[ 3778.429734] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3778.429736] RDX: 0000000000000001 RSI: ffff8f717fff97e0 RDI: ffff8f5287658e40
[ 3778.429737] RBP: ffffaab62bf2f918 R08: 0000000000000007 R09: ffff8f5287658ed0
[ 3778.429738] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3778.429740] R13: 0000000000000202 R14: ffff8f7180672a40 R15: 0000000000000080
[ 3778.429742] FS:  00007f5884ff9640(0000) GS:ffff8f71ede76000(0000) knlGS:0000000000000000
[ 3778.429743] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3778.429745] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3778.429747] PKRU: 55555554
[ 3778.429748] Call Trace:
[ 3778.429749]  <TASK>
[ 3778.429751]  ? __pfx___wbinvd+0x10/0x10
[ 3778.429756]  on_each_cpu_cond_mask+0x28/0x50
[ 3778.429758]  wbinvd_on_all_cpus+0x29/0x40
[ 3778.429762]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3778.429770]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3778.429822]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3778.429877]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3778.429881]  change_protection+0xfc9/0x1200
[ 3778.429886]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.429889]  ? update_curr_dl_se+0x3b/0x1e0
[ 3778.429892]  ? dl_server_update+0x2e/0x40
[ 3778.429896]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.429900]  ? pick_next_task_fair+0x4f/0x490
[ 3778.429903]  change_prot_numa+0x5b/0xe0
[ 3778.429908]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.429910]  ? update_load_avg+0x84/0x780
[ 3778.429913]  ? __dequeue_entity+0x3cd/0x4a0
[ 3778.429917]  task_numa_work+0x3c5/0x9b0
[ 3778.429924]  task_work_run+0x64/0xa0
[ 3778.429928]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3778.429932]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3778.429985]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3778.430036]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.430039]  ? do_futex+0xc8/0x1d0
[ 3778.430041]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.430044]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.430047]  __x64_sys_ioctl+0xa0/0xf0
[ 3778.430052]  x64_sys_call+0x122e/0x2150
[ 3778.430054]  do_syscall_64+0x56/0x1e0
[ 3778.430058]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3778.430060] RIP: 0033:0x7f67bff03b4b
[ 3778.430062] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3778.430064] RSP: 002b:00007f5884ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3778.430066] RAX: ffffffffffffffda RBX: 0000563db664a2e0 RCX: 00007f67bff03b4b
[ 3778.430067] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001f6
[ 3778.430068] RBP: 0000563db664a2e0 R08: 0000000000000000 R09: 0000000000000000
[ 3778.430069] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3778.430071] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3778.430076]  </TASK>
[ 3778.437659] watchdog: BUG: soft lockup - CPU#68 stuck for 126s! [qemu-system-x86:31300]
[ 3778.437664] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3778.437749] CPU: 68 UID: 0 PID: 31300 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3778.437754] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3778.437756] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3778.437757] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3778.437763] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3778.437766] RSP: 0018:ffffaab62af478b8 EFLAGS: 00000202
[ 3778.437769] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3778.437771] RDX: 0000000000000001 RSI: ffff8f717fff9840 RDI: ffff8f5287658670
[ 3778.437772] RBP: ffffaab62af47918 R08: 0000000000000007 R09: ffff8f5287658210
[ 3778.437774] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3778.437775] R13: 0000000000000202 R14: ffff8f7180732a40 R15: 0000000000000080
[ 3778.437777] FS:  00007f5a657fa640(0000) GS:ffff8f71edf36000(0000) knlGS:0000000000000000
[ 3778.437779] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3778.437781] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3778.437783] PKRU: 55555554
[ 3778.437784] Call Trace:
[ 3778.437785]  <TASK>
[ 3778.437789]  ? __pfx___wbinvd+0x10/0x10
[ 3778.437795]  on_each_cpu_cond_mask+0x28/0x50
[ 3778.437798]  wbinvd_on_all_cpus+0x29/0x40
[ 3778.437803]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3778.437815]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3778.437904]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3778.438005]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3778.438011]  change_protection+0xfc9/0x1200
[ 3778.438017]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.438021]  ? pick_eevdf+0x7c/0x1a0
[ 3778.438026]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.438030]  ? pick_next_task_fair+0x4f/0x490
[ 3778.438034]  change_prot_numa+0x5b/0xe0
[ 3778.438038]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3778.438044]  task_numa_work+0x3c5/0x9b0
[ 3778.438052]  task_work_run+0x64/0xa0
[ 3778.438056]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3778.438061]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3778.438138]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3778.438209]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.438213]  ? do_futex+0xc8/0x1d0
[ 3778.438217]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.438221]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.438228]  __x64_sys_ioctl+0xa0/0xf0
[ 3778.438234]  x64_sys_call+0x122e/0x2150
[ 3778.438237]  do_syscall_64+0x56/0x1e0
[ 3778.438243]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3778.438246] RIP: 0033:0x7f67bff03b4b
[ 3778.438250] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3778.438254] RSP: 002b:00007f5a657f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3778.438258] RAX: ffffffffffffffda RBX: 0000563db62190f0 RCX: 00007f67bff03b4b
[ 3778.438260] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000122
[ 3778.438262] RBP: 0000563db62190f0 R08: 0000000000000000 R09: 0000000000000000
[ 3778.438265] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3778.438267] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3778.438275]  </TASK>
[ 3778.445658] watchdog: BUG: soft lockup - CPU#71 stuck for 126s! [qemu-system-x86:31278]
[ 3778.445661] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3778.445717] CPU: 71 UID: 0 PID: 31278 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3778.445720] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3778.445721] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3778.445722] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3778.445725] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3778.445727] RSP: 0018:ffffaab62ae8b8b8 EFLAGS: 00000202
[ 3778.445728] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3778.445730] RDX: 0000000000000001 RSI: ffff8f717fff98a0 RDI: ffff8f5287658880
[ 3778.445731] RBP: ffffaab62ae8b918 R08: 0000000000000007 R09: ffff8f52876588a0
[ 3778.445732] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3778.445734] R13: 0000000000000202 R14: ffff8f71807f2a40 R15: 0000000000000080
[ 3778.445735] FS:  00007f5ac5ffb640(0000) GS:ffff8f71edff6000(0000) knlGS:0000000000000000
[ 3778.445737] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3778.445738] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3778.445739] PKRU: 55555554
[ 3778.445740] Call Trace:
[ 3778.445741]  <TASK>
[ 3778.445743]  ? __pfx___wbinvd+0x10/0x10
[ 3778.445748]  on_each_cpu_cond_mask+0x28/0x50
[ 3778.445751]  wbinvd_on_all_cpus+0x29/0x40
[ 3778.445754]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3778.445762]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3778.445813]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3778.445868]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3778.445872]  change_protection+0xfc9/0x1200
[ 3778.445876]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.445880]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.445883]  ? update_load_avg+0x84/0x780
[ 3778.445887]  ? write_ibpb+0x21/0x40
[ 3778.445890]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3778.445942]  change_prot_numa+0x5b/0xe0
[ 3778.445949]  task_numa_work+0x3c5/0x9b0
[ 3778.445956]  task_work_run+0x64/0xa0
[ 3778.445960]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3778.445964]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3778.446017]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3778.446068]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.446071]  ? do_futex+0xc8/0x1d0
[ 3778.446073]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.446076]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.446079]  __x64_sys_ioctl+0xa0/0xf0
[ 3778.446084]  x64_sys_call+0x122e/0x2150
[ 3778.446086]  do_syscall_64+0x56/0x1e0
[ 3778.446090]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3778.446092] RIP: 0033:0x7f67bff03b4b
[ 3778.446093] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3778.446095] RSP: 002b:00007f5ac5ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3778.446097] RAX: ffffffffffffffda RBX: 0000563db61390c0 RCX: 00007f67bff03b4b
[ 3778.446099] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000f6
[ 3778.446100] RBP: 0000563db61390c0 R08: 0000000000000000 R09: 0000000000000000
[ 3778.446101] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3778.446102] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3778.446107]  </TASK>
[ 3778.457659] watchdog: BUG: soft lockup - CPU#77 stuck for 126s! [qemu-system-x86:31293]
[ 3778.457665] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3778.457736] CPU: 77 UID: 0 PID: 31293 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3778.457740] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3778.457742] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3778.457743] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3778.457751] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3778.457754] RSP: 0018:ffffaab62af0f8b8 EFLAGS: 00000202
[ 3778.457756] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3778.457758] RDX: 0000000000000001 RSI: ffff8f717fff9960 RDI: ffff8f5287658b10
[ 3778.457760] RBP: ffffaab62af0f918 R08: 0000000000000007 R09: ffff8f52876589e0
[ 3778.457761] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3778.457763] R13: 0000000000000202 R14: ffff8f7180972a40 R15: 0000000000000080
[ 3778.457764] FS:  00007f5a857fa640(0000) GS:ffff8f71ee176000(0000) knlGS:0000000000000000
[ 3778.457767] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3778.457768] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3778.457770] PKRU: 55555554
[ 3778.457771] Call Trace:
[ 3778.457773]  <TASK>
[ 3778.457776]  ? __pfx___wbinvd+0x10/0x10
[ 3778.457784]  on_each_cpu_cond_mask+0x28/0x50
[ 3778.457787]  wbinvd_on_all_cpus+0x29/0x40
[ 3778.457791]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3778.457800]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3778.457854]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3778.457910]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3778.457917]  change_protection+0xfc9/0x1200
[ 3778.457922]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.457927]  ? pick_eevdf+0x7c/0x1a0
[ 3778.457933]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.457936]  ? pick_next_task_fair+0x4f/0x490
[ 3778.457940]  change_prot_numa+0x5b/0xe0
[ 3778.457945]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.457948]  ? update_load_avg+0x84/0x780
[ 3778.457952]  task_numa_work+0x3c5/0x9b0
[ 3778.457959]  task_work_run+0x64/0xa0
[ 3778.457965]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3778.457970]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3778.458023]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3778.458075]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.458078]  ? do_futex+0xc8/0x1d0
[ 3778.458080]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.458082]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.458086]  __x64_sys_ioctl+0xa0/0xf0
[ 3778.458092]  x64_sys_call+0x122e/0x2150
[ 3778.458094]  do_syscall_64+0x56/0x1e0
[ 3778.458100]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3778.458102] RIP: 0033:0x7f67bff03b4b
[ 3778.458105] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3778.458107] RSP: 002b:00007f5a857f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3778.458109] RAX: ffffffffffffffda RBX: 0000563db61d1ba0 RCX: 00007f67bff03b4b
[ 3778.458110] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000114
[ 3778.458112] RBP: 0000563db61d1ba0 R08: 0000000000000000 R09: 0000000000000000
[ 3778.458113] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3778.458114] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3778.458119]  </TASK>
[ 3778.458121] watchdog: BUG: soft lockup - CPU#76 stuck for 126s! [qemu-system-x86:31260]
[ 3778.458123] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3778.458182] CPU: 76 UID: 0 PID: 31260 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3778.458186] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3778.458187] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3778.458188] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3778.458192] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3778.458194] RSP: 0018:ffffaab62ad1b8b8 EFLAGS: 00000202
[ 3778.458196] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3778.458197] RDX: 0000000000000001 RSI: ffff8f717fff9940 RDI: ffff8f5287658010
[ 3778.458198] RBP: ffffaab62ad1b918 R08: 0000000000000007 R09: ffff8f52876589f0
[ 3778.458199] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3778.458201] R13: 0000000000000202 R14: ffff8f7180932a40 R15: 0000000000000080
[ 3778.458202] FS:  00007f5b07fff640(0000) GS:ffff8f71ee136000(0000) knlGS:0000000000000000
[ 3778.458204] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3778.458205] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3778.458207] PKRU: 55555554
[ 3778.458208] Call Trace:
[ 3778.458209]  <TASK>
[ 3778.458211]  ? __pfx___wbinvd+0x10/0x10
[ 3778.458216]  on_each_cpu_cond_mask+0x28/0x50
[ 3778.458219]  wbinvd_on_all_cpus+0x29/0x40
[ 3778.458222]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3778.458231]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3778.458285]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3778.458340]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3778.458345]  change_protection+0xfc9/0x1200
[ 3778.458349]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.458353]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.458356]  ? update_load_avg+0x84/0x780
[ 3778.458360]  ? write_ibpb+0x21/0x40
[ 3778.458363]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3778.458416]  change_prot_numa+0x5b/0xe0
[ 3778.458423]  task_numa_work+0x3c5/0x9b0
[ 3778.458430]  task_work_run+0x64/0xa0
[ 3778.458434]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3778.458439]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3778.458491]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3778.458543]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.458546]  ? do_futex+0xc8/0x1d0
[ 3778.458548]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.458550]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.458554]  __x64_sys_ioctl+0xa0/0xf0
[ 3778.458559]  x64_sys_call+0x122e/0x2150
[ 3778.458561]  do_syscall_64+0x56/0x1e0
[ 3778.458564]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3778.458566] RIP: 0033:0x7f67bff03b4b
[ 3778.458568] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3778.458570] RSP: 002b:00007f5b07ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3778.458572] RAX: ffffffffffffffda RBX: 0000563db60831d0 RCX: 00007f67bff03b4b
[ 3778.458574] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000d2
[ 3778.458575] RBP: 0000563db60831d0 R08: 0000000000000000 R09: 0000000000000000
[ 3778.458576] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3778.458577] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3778.458582]  </TASK>
[ 3778.461658] watchdog: BUG: soft lockup - CPU#79 stuck for 126s! [qemu-system-x86:31405]
[ 3778.461660] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3778.461717] CPU: 79 UID: 0 PID: 31405 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3778.461720] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3778.461721] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3778.461722] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3778.461726] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3778.461727] RSP: 0018:ffffaab62bf378b8 EFLAGS: 00000202
[ 3778.461729] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3778.461730] RDX: 0000000000000001 RSI: ffff8f717fff99a0 RDI: ffff8f5287658600
[ 3778.461732] RBP: ffffaab62bf37918 R08: 0000000000000007 R09: ffff8f5287658dc0
[ 3778.461733] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3778.461734] R13: 0000000000000202 R14: ffff8f71809f2a40 R15: 0000000000000080
[ 3778.461736] FS:  00007f58857fa640(0000) GS:ffff8f71ee1f6000(0000) knlGS:0000000000000000
[ 3778.461737] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3778.461739] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3778.461740] PKRU: 55555554
[ 3778.461741] Call Trace:
[ 3778.461742]  <TASK>
[ 3778.461744]  ? __pfx___wbinvd+0x10/0x10
[ 3778.461749]  on_each_cpu_cond_mask+0x28/0x50
[ 3778.461752]  wbinvd_on_all_cpus+0x29/0x40
[ 3778.461756]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3778.461763]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3778.461816]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3778.461871]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3778.461876]  change_protection+0xfc9/0x1200
[ 3778.461881]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.461884]  ? update_curr_dl_se+0x3b/0x1e0
[ 3778.461888]  ? dl_server_update+0x2e/0x40
[ 3778.461892]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.461896]  ? pick_next_task_fair+0x4f/0x490
[ 3778.461899]  change_prot_numa+0x5b/0xe0
[ 3778.461904]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.461906]  ? update_load_avg+0x84/0x780
[ 3778.461909]  ? __dequeue_entity+0x3cd/0x4a0
[ 3778.461913]  task_numa_work+0x3c5/0x9b0
[ 3778.461920]  task_work_run+0x64/0xa0
[ 3778.461924]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3778.461928]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3778.461981]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3778.462034]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.462036]  ? do_futex+0xc8/0x1d0
[ 3778.462038]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.462041]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.462044]  __x64_sys_ioctl+0xa0/0xf0
[ 3778.462049]  x64_sys_call+0x122e/0x2150
[ 3778.462051]  do_syscall_64+0x56/0x1e0
[ 3778.462055]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3778.462057] RIP: 0033:0x7f67bff03b4b
[ 3778.462059] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3778.462061] RSP: 002b:00007f58857f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3778.462063] RAX: ffffffffffffffda RBX: 0000563db66402f0 RCX: 00007f67bff03b4b
[ 3778.462064] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001f4
[ 3778.462065] RBP: 0000563db66402f0 R08: 0000000000000000 R09: 0000000000000000
[ 3778.462067] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3778.462068] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3778.462073]  </TASK>
[ 3778.462074] watchdog: BUG: soft lockup - CPU#78 stuck for 126s! [qemu-system-x86:31355]
[ 3778.462077] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3778.462133] CPU: 78 UID: 0 PID: 31355 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3778.462136] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3778.462137] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3778.462138] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3778.462141] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3778.462143] RSP: 0018:ffffaab62b28f8b8 EFLAGS: 00000202
[ 3778.462145] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3778.462146] RDX: 0000000000000001 RSI: ffff8f717fff9980 RDI: ffff8f5287658f10
[ 3778.462147] RBP: ffffaab62b28f918 R08: 0000000000000007 R09: ffff8f5287658d90
[ 3778.462148] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3778.462150] R13: 0000000000000202 R14: ffff8f71809b2a40 R15: 0000000000000080
[ 3778.462151] FS:  00007f5965ffb640(0000) GS:ffff8f71ee1b6000(0000) knlGS:0000000000000000
[ 3778.462153] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3778.462154] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3778.462156] PKRU: 55555554
[ 3778.462157] Call Trace:
[ 3778.462158]  <TASK>
[ 3778.462159]  ? __pfx___wbinvd+0x10/0x10
[ 3778.462165]  on_each_cpu_cond_mask+0x28/0x50
[ 3778.462167]  wbinvd_on_all_cpus+0x29/0x40
[ 3778.462171]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3778.462179]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3778.462230]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3778.462285]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3778.462289]  change_protection+0xfc9/0x1200
[ 3778.462294]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.462298]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.462300]  ? update_load_avg+0x84/0x780
[ 3778.462304]  ? write_ibpb+0x21/0x40
[ 3778.462308]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3778.462360]  change_prot_numa+0x5b/0xe0
[ 3778.462367]  task_numa_work+0x3c5/0x9b0
[ 3778.462374]  task_work_run+0x64/0xa0
[ 3778.462378]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3778.462382]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3778.462434]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3778.462486]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.462488]  ? do_futex+0xc8/0x1d0
[ 3778.462491]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.462493]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.462497]  __x64_sys_ioctl+0xa0/0xf0
[ 3778.462501]  x64_sys_call+0x122e/0x2150
[ 3778.462503]  do_syscall_64+0x56/0x1e0
[ 3778.462507]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3778.462509] RIP: 0033:0x7f67bff03b4b
[ 3778.462511] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3778.462513] RSP: 002b:00007f5965ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3778.462515] RAX: ffffffffffffffda RBX: 0000563db64454a0 RCX: 00007f67bff03b4b
[ 3778.462516] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000190
[ 3778.462518] RBP: 0000563db64454a0 R08: 0000000000000000 R09: 0000000000000000
[ 3778.462519] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3778.462520] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3778.462525]  </TASK>
[ 3778.485658] watchdog: BUG: soft lockup - CPU#90 stuck for 126s! [qemu-system-x86:31229]
[ 3778.485663] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3778.485740] CPU: 90 UID: 0 PID: 31229 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3778.485745] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3778.485746] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3778.485747] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3778.485752] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3778.485754] RSP: 0018:ffffaab62abb38b8 EFLAGS: 00000202
[ 3778.485757] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3778.485759] RDX: 0000000000000001 RSI: ffff8f717fff9b00 RDI: ffff8f52889c6c20
[ 3778.485761] RBP: ffffaab62abb3918 R08: 0000000000000007 R09: ffff8f52889c6d70
[ 3778.485762] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3778.485764] R13: 0000000000000202 R14: ffff8f7180cb2a40 R15: 0000000000000080
[ 3778.485766] FS:  00007f5ba5ffb640(0000) GS:ffff8f71ee4b6000(0000) knlGS:0000000000000000
[ 3778.485768] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3778.485770] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3778.485772] PKRU: 55555554
[ 3778.485773] Call Trace:
[ 3778.485775]  <TASK>
[ 3778.485777]  ? __pfx___wbinvd+0x10/0x10
[ 3778.485783]  on_each_cpu_cond_mask+0x28/0x50
[ 3778.485787]  wbinvd_on_all_cpus+0x29/0x40
[ 3778.485791]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3778.485802]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3778.485889]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3778.485970]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3778.485976]  change_protection+0xfc9/0x1200
[ 3778.485981]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.485985]  ? update_curr_dl_se+0x3b/0x1e0
[ 3778.485990]  ? dl_server_update+0x2e/0x40
[ 3778.485994]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.485998]  ? pick_next_task_fair+0x4f/0x490
[ 3778.486003]  change_prot_numa+0x5b/0xe0
[ 3778.486008]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3778.486017]  task_numa_work+0x3c5/0x9b0
[ 3778.486027]  task_work_run+0x64/0xa0
[ 3778.486031]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3778.486036]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3778.486116]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3778.486189]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.486193]  ? do_futex+0xc8/0x1d0
[ 3778.486195]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.486198]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.486202]  __x64_sys_ioctl+0xa0/0xf0
[ 3778.486207]  x64_sys_call+0x122e/0x2150
[ 3778.486210]  do_syscall_64+0x56/0x1e0
[ 3778.486214]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3778.486217] RIP: 0033:0x7f67bff03b4b
[ 3778.486219] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3778.486222] RSP: 002b:00007f5ba5ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3778.486226] RAX: ffffffffffffffda RBX: 0000563db5f493b0 RCX: 00007f67bff03b4b
[ 3778.486229] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000094
[ 3778.486231] RBP: 0000563db5f493b0 R08: 0000000000000000 R09: 0000000000000000
[ 3778.486232] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3778.486234] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3778.486240]  </TASK>
[ 3778.497657] watchdog: BUG: soft lockup - CPU#94 stuck for 127s! [qemu-system-x86:31408]
[ 3778.497659] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3778.497715] CPU: 94 UID: 0 PID: 31408 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3778.497718] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3778.497719] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3778.497720] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3778.497723] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3778.497725] RSP: 0018:ffffaab6270878b8 EFLAGS: 00000202
[ 3778.497727] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3778.497728] RDX: 0000000000000001 RSI: ffff8f717fff9b80 RDI: ffff8f52889c6630
[ 3778.497730] RBP: ffffaab627087918 R08: 0000000000000007 R09: ffff8f52889c6dd0
[ 3778.497731] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3778.497732] R13: 0000000000000202 R14: ffff8f7180db2a40 R15: 0000000000000080
[ 3778.497734] FS:  00007f58677fe640(0000) GS:ffff8f71ee5b6000(0000) knlGS:0000000000000000
[ 3778.497735] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3778.497737] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3778.497738] PKRU: 55555554
[ 3778.497739] Call Trace:
[ 3778.497740]  <TASK>
[ 3778.497741]  ? __pfx___wbinvd+0x10/0x10
[ 3778.497746]  on_each_cpu_cond_mask+0x28/0x50
[ 3778.497749]  wbinvd_on_all_cpus+0x29/0x40
[ 3778.497753]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3778.497760]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3778.497812]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3778.497867]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3778.497871]  change_protection+0xfc9/0x1200
[ 3778.497877]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.497880]  ? update_load_avg+0x84/0x780
[ 3778.497883]  ? write_ibpb+0x21/0x40
[ 3778.497887]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3778.497939]  change_prot_numa+0x5b/0xe0
[ 3778.497946]  task_numa_work+0x3c5/0x9b0
[ 3778.497953]  task_work_run+0x64/0xa0
[ 3778.497957]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3778.497961]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3778.498014]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3778.498066]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.498069]  ? do_futex+0xc8/0x1d0
[ 3778.498071]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.498073]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.498077]  __x64_sys_ioctl+0xa0/0xf0
[ 3778.498081]  x64_sys_call+0x122e/0x2150
[ 3778.498084]  do_syscall_64+0x56/0x1e0
[ 3778.498087]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3778.498089] RIP: 0033:0x7f67bff03b4b
[ 3778.498091] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3778.498093] RSP: 002b:00007f58677fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3778.498095] RAX: ffffffffffffffda RBX: 0000563db665ee40 RCX: 00007f67bff03b4b
[ 3778.498096] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001fa
[ 3778.498097] RBP: 0000563db665ee40 R08: 0000000000000000 R09: 0000000000000000
[ 3778.498098] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3778.498100] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3778.498105]  </TASK>
[ 3778.509657] watchdog: BUG: soft lockup - CPU#99 stuck for 127s! [qemu-system-x86:31305]
[ 3778.509662] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3778.509732] CPU: 99 UID: 0 PID: 31305 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3778.509736] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3778.509737] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3778.509739] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3778.509746] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3778.509749] RSP: 0018:ffffaab62af6f8b8 EFLAGS: 00000202
[ 3778.509751] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3778.509753] RDX: 0000000000000001 RSI: ffff8f717fff9c20 RDI: ffff8f7206c6a900
[ 3778.509755] RBP: ffffaab62af6f918 R08: 0000000000000007 R09: ffff8f7206c6a960
[ 3778.509756] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3778.509758] R13: 0000000000000202 R14: ffff8f917e8f2a40 R15: 0000000000000080
[ 3778.509759] FS:  00007f5a467fc640(0000) GS:ffff8f91ec0f6000(0000) knlGS:0000000000000000
[ 3778.509761] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3778.509762] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3778.509764] PKRU: 55555554
[ 3778.509765] Call Trace:
[ 3778.509766]  <TASK>
[ 3778.509769]  ? __pfx___wbinvd+0x10/0x10
[ 3778.509777]  on_each_cpu_cond_mask+0x28/0x50
[ 3778.509780]  wbinvd_on_all_cpus+0x29/0x40
[ 3778.509784]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3778.509793]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3778.509845]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3778.509901]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3778.509907]  change_protection+0xfc9/0x1200
[ 3778.509912]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.509917]  ? update_curr_dl_se+0x3b/0x1e0
[ 3778.509921]  ? dl_server_update+0x2e/0x40
[ 3778.509925]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.509929]  ? pick_next_task_fair+0x4f/0x490
[ 3778.509933]  change_prot_numa+0x5b/0xe0
[ 3778.509940]  task_numa_work+0x3c5/0x9b0
[ 3778.509948]  task_work_run+0x64/0xa0
[ 3778.509953]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3778.509958]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3778.510010]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3778.510062]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.510064]  ? do_futex+0xc8/0x1d0
[ 3778.510067]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.510069]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.510073]  __x64_sys_ioctl+0xa0/0xf0
[ 3778.510079]  x64_sys_call+0x122e/0x2150
[ 3778.510081]  do_syscall_64+0x56/0x1e0
[ 3778.510086]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3778.510088] RIP: 0033:0x7f67bff03b4b
[ 3778.510091] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3778.510092] RSP: 002b:00007f5a467fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3778.510094] RAX: ffffffffffffffda RBX: 0000563db624bbb0 RCX: 00007f67bff03b4b
[ 3778.510096] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000012c
[ 3778.510097] RBP: 0000563db624bbb0 R08: 0000000000000000 R09: 0000000000000000
[ 3778.510098] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3778.510099] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3778.510104]  </TASK>
[ 3778.513657] watchdog: BUG: soft lockup - CPU#102 stuck for 101s! [migration/102:635]
[ 3778.513660] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3778.513718] CPU: 102 UID: 0 PID: 635 Comm: migration/102 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3778.513721] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3778.513722] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3778.513723] Stopper: multi_cpu_stop+0x0/0x110 <- migrate_swap+0xad/0x120
[ 3778.513730] RIP: 0010:stop_machine_yield+0x6/0x10
[ 3778.513733] Code: ff b8 fe ff ff ff eb e0 e8 57 eb dd 00 0f 1f 80 00 00 00 00 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 66 0f 1f 00 f3 90 <e9> c0 39 d0 ff 0f 1f 44 00 00 90 90 90 90 90 90 90 90 90 90 90 90
[ 3778.513735] RSP: 0018:ffffaab60e04fe20 EFLAGS: 00000246
[ 3778.513736] RAX: 0000000000000286 RBX: ffffaab6920bbb2c RCX: 0000000000000002
[ 3778.513738] RDX: ffffaab6920bbb08 RSI: 0000000000000282 RDI: ffffffff91814360
[ 3778.513739] RBP: ffffaab60e04fe60 R08: 0000000000000001 R09: 000000000000030d
[ 3778.513740] R10: 0000000000000000 R11: 0000000000000001 R12: 0000000000000001
[ 3778.513742] R13: ffffffff91814360 R14: 0000000000000001 R15: ffffaab6920bbb08
[ 3778.513743] FS:  0000000000000000(0000) GS:ffff8f91ec1b6000(0000) knlGS:0000000000000000
[ 3778.513745] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3778.513746] CR2: 00007fac4c502638 CR3: 00000020b12b4006 CR4: 0000000000770ef0
[ 3778.513748] PKRU: 55555554
[ 3778.513749] Call Trace:
[ 3778.513750]  <TASK>
[ 3778.513751]  ? multi_cpu_stop+0x9e/0x110
[ 3778.513755]  ? __pfx_multi_cpu_stop+0x10/0x10
[ 3778.513757]  cpu_stopper_thread+0x97/0x140
[ 3778.513761]  smpboot_thread_fn+0x101/0x230
[ 3778.513765]  kthread+0x10b/0x220
[ 3778.513768]  ? __pfx_smpboot_thread_fn+0x10/0x10
[ 3778.513771]  ? __pfx_kthread+0x10/0x10
[ 3778.513775]  ret_from_fork+0x8e/0x100
[ 3778.513778]  ? __pfx_kthread+0x10/0x10
[ 3778.513781]  ret_from_fork_asm+0x1a/0x30
[ 3778.513787]  </TASK>
[ 3778.537656] watchdog: BUG: soft lockup - CPU#112 stuck for 127s! [qemu-system-x86:31254]
[ 3778.537659] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3778.537717] CPU: 112 UID: 0 PID: 31254 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3778.537721] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3778.537722] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3778.537723] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3778.537727] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3778.537728] RSP: 0018:ffffaab62aceb8b8 EFLAGS: 00000202
[ 3778.537730] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3778.537732] RDX: 0000000000000001 RSI: ffff8f717fff9dc0 RDI: ffff8f7206c6a1e0
[ 3778.537733] RBP: ffffaab62aceb918 R08: 0000000000000007 R09: ffff8f7206c6a910
[ 3778.537735] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3778.537736] R13: 0000000000000202 R14: ffff8f917ec32a40 R15: 0000000000000080
[ 3778.537738] FS:  00007f5b277fe640(0000) GS:ffff8f91ec436000(0000) knlGS:0000000000000000
[ 3778.537740] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3778.537741] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3778.537743] PKRU: 55555554
[ 3778.537744] Call Trace:
[ 3778.537745]  <TASK>
[ 3778.537747]  ? __pfx___wbinvd+0x10/0x10
[ 3778.537752]  on_each_cpu_cond_mask+0x28/0x50
[ 3778.537755]  wbinvd_on_all_cpus+0x29/0x40
[ 3778.537759]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3778.537767]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3778.537819]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3778.537873]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3778.537877]  change_protection+0xfc9/0x1200
[ 3778.537882]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.537887]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.537889]  ? update_load_avg+0x84/0x780
[ 3778.537893]  ? write_ibpb+0x21/0x40
[ 3778.537896]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3778.537949]  change_prot_numa+0x5b/0xe0
[ 3778.537955]  task_numa_work+0x3c5/0x9b0
[ 3778.537963]  task_work_run+0x64/0xa0
[ 3778.537967]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3778.537971]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3778.538023]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3778.538075]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.538078]  ? do_futex+0xc8/0x1d0
[ 3778.538080]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.538082]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.538086]  __x64_sys_ioctl+0xa0/0xf0
[ 3778.538091]  x64_sys_call+0x122e/0x2150
[ 3778.538093]  do_syscall_64+0x56/0x1e0
[ 3778.538096]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3778.538098] RIP: 0033:0x7f67bff03b4b
[ 3778.538101] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3778.538102] RSP: 002b:00007f5b277fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3778.538104] RAX: ffffffffffffffda RBX: 0000563db60459d0 RCX: 00007f67bff03b4b
[ 3778.538106] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000c6
[ 3778.538107] RBP: 0000563db60459d0 R08: 0000000000000000 R09: 0000000000000000
[ 3778.538108] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3778.538109] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3778.538114]  </TASK>
[ 3778.565657] watchdog: BUG: soft lockup - CPU#125 stuck for 127s! [qemu-system-x86:31339]
[ 3778.565661] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3778.565732] CPU: 125 UID: 0 PID: 31339 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3778.565736] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3778.565737] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3778.565739] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3778.565743] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3778.565746] RSP: 0018:ffffaab62b20f8b8 EFLAGS: 00000202
[ 3778.565748] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3778.565750] RDX: 0000000000000001 RSI: ffff8f717fff9f60 RDI: ffff8f7207fa2fc0
[ 3778.565752] RBP: ffffaab62b20f918 R08: 0000000000000007 R09: ffff8f7207fa22a0
[ 3778.565753] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3778.565755] R13: 0000000000000202 R14: ffff8f917ef72a40 R15: 0000000000000080
[ 3778.565756] FS:  00007f59a6ffd640(0000) GS:ffff8f91ec776000(0000) knlGS:0000000000000000
[ 3778.565758] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3778.565760] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3778.565762] PKRU: 55555554
[ 3778.565763] Call Trace:
[ 3778.565764]  <TASK>
[ 3778.565767]  ? __pfx___wbinvd+0x10/0x10
[ 3778.565773]  on_each_cpu_cond_mask+0x28/0x50
[ 3778.565777]  wbinvd_on_all_cpus+0x29/0x40
[ 3778.565781]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3778.565792]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3778.565867]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3778.565940]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3778.565944]  change_protection+0xfc9/0x1200
[ 3778.565950]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.565954]  ? update_curr_dl_se+0x3b/0x1e0
[ 3778.565957]  ? dl_server_update+0x2e/0x40
[ 3778.565962]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.565966]  ? pick_next_task_fair+0x4f/0x490
[ 3778.565969]  change_prot_numa+0x5b/0xe0
[ 3778.565977]  task_numa_work+0x3c5/0x9b0
[ 3778.565985]  task_work_run+0x64/0xa0
[ 3778.565990]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3778.565994]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3778.566064]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3778.566134]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.566137]  ? do_futex+0xc8/0x1d0
[ 3778.566140]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.566142]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3778.566146]  __x64_sys_ioctl+0xa0/0xf0
[ 3778.566151]  x64_sys_call+0x122e/0x2150
[ 3778.566154]  do_syscall_64+0x56/0x1e0
[ 3778.566158]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3778.566160] RIP: 0033:0x7f67bff03b4b
[ 3778.566164] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3778.566166] RSP: 002b:00007f59a6ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3778.566168] RAX: ffffffffffffffda RBX: 0000563db63a3d90 RCX: 00007f67bff03b4b
[ 3778.566170] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000170
[ 3778.566171] RBP: 0000563db63a3d90 R08: 0000000000000000 R09: 0000000000000000
[ 3778.566173] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3778.566174] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3778.566180]  </TASK>
[ 3782.229582] watchdog: BUG: soft lockup - CPU#0 stuck for 130s! [qemu-system-x86:31247]
[ 3782.229587] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3782.229656] CPU: 0 UID: 0 PID: 31247 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3782.229660] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3782.229661] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3782.229663] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3782.229670] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3782.229672] RSP: 0018:ffffaab62acb38b8 EFLAGS: 00000202
[ 3782.229674] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3782.229676] RDX: 0000000000000001 RSI: ffff8f717fff7be0 RDI: ffff8f5280265790
[ 3782.229677] RBP: ffffaab62acb3918 R08: 0000000000000007 R09: ffff8f52802654d0
[ 3782.229678] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3782.229680] R13: 0000000000000202 R14: ffff8f717fe32a40 R15: 0000000000000080
[ 3782.229681] FS:  00007f5b477fe640(0000) GS:ffff8f71ed636000(0000) knlGS:0000000000000000
[ 3782.229683] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3782.229684] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3782.229686] PKRU: 55555554
[ 3782.229687] Call Trace:
[ 3782.229689]  <TASK>
[ 3782.229692]  ? __pfx___wbinvd+0x10/0x10
[ 3782.229699]  on_each_cpu_cond_mask+0x28/0x50
[ 3782.229702]  wbinvd_on_all_cpus+0x29/0x40
[ 3782.229707]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3782.229715]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3782.229768]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3782.229823]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3782.229829]  change_protection+0xfc9/0x1200
[ 3782.229835]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.229839]  ? update_curr_dl_se+0x3b/0x1e0
[ 3782.229843]  ? dl_server_update+0x2e/0x40
[ 3782.229847]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.229851]  ? pick_next_task_fair+0x4f/0x490
[ 3782.229854]  change_prot_numa+0x5b/0xe0
[ 3782.229862]  task_numa_work+0x3c5/0x9b0
[ 3782.229869]  task_work_run+0x64/0xa0
[ 3782.229874]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3782.229879]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3782.229931]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3782.229983]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.229986]  ? do_futex+0xc8/0x1d0
[ 3782.229988]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.229990]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.229994]  __x64_sys_ioctl+0xa0/0xf0
[ 3782.230000]  x64_sys_call+0x122e/0x2150
[ 3782.230002]  do_syscall_64+0x56/0x1e0
[ 3782.230007]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3782.230009] RIP: 0033:0x7f67bff03b4b
[ 3782.230012] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3782.230013] RSP: 002b:00007f5b477fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3782.230015] RAX: ffffffffffffffda RBX: 0000563db5fff400 RCX: 00007f67bff03b4b
[ 3782.230017] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000b8
[ 3782.230018] RBP: 0000563db5fff400 R08: 0000000000000000 R09: 0000000000000000
[ 3782.230019] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3782.230020] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3782.230025]  </TASK>
[ 3782.261581] watchdog: BUG: soft lockup - CPU#2 stuck for 127s! [qemu-system-x86:31389]
[ 3782.261584] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3782.261641] CPU: 2 UID: 0 PID: 31389 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3782.261644] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3782.261645] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3782.261646] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3782.261650] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3782.261652] RSP: 0018:ffffaab62c1d38b8 EFLAGS: 00000202
[ 3782.261653] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3782.261655] RDX: 0000000000000001 RSI: ffff8f717fff9000 RDI: ffff8f5280a32a50
[ 3782.261656] RBP: ffffaab62c1d3918 R08: 0000000000000007 R09: ffff8f5280a32b70
[ 3782.261657] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3782.261659] R13: 0000000000000202 R14: ffff8f717feb2a40 R15: 0000000000000080
[ 3782.261660] FS:  00007f58c67fc640(0000) GS:ffff8f71ed6b6000(0000) knlGS:0000000000000000
[ 3782.261662] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3782.261663] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3782.261665] PKRU: 55555554
[ 3782.261666] Call Trace:
[ 3782.261667]  <TASK>
[ 3782.261669]  ? __pfx___wbinvd+0x10/0x10
[ 3782.261674]  on_each_cpu_cond_mask+0x28/0x50
[ 3782.261676]  wbinvd_on_all_cpus+0x29/0x40
[ 3782.261680]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3782.261688]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3782.261740]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3782.261794]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3782.261799]  change_protection+0xfc9/0x1200
[ 3782.261803]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.261807]  ? update_curr_dl_se+0x3b/0x1e0
[ 3782.261810]  ? dl_server_update+0x2e/0x40
[ 3782.261814]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.261817]  ? pick_next_task_fair+0x4f/0x490
[ 3782.261821]  change_prot_numa+0x5b/0xe0
[ 3782.261825]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.261828]  ? update_load_avg+0x84/0x780
[ 3782.261830]  ? __dequeue_entity+0x3cd/0x4a0
[ 3782.261834]  task_numa_work+0x3c5/0x9b0
[ 3782.261841]  task_work_run+0x64/0xa0
[ 3782.261845]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3782.261849]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3782.261902]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3782.261954]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.261956]  ? do_futex+0xc8/0x1d0
[ 3782.261958]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.261961]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.261964]  __x64_sys_ioctl+0xa0/0xf0
[ 3782.261969]  x64_sys_call+0x122e/0x2150
[ 3782.261971]  do_syscall_64+0x56/0x1e0
[ 3782.261975]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3782.261977] RIP: 0033:0x7f67bff03b4b
[ 3782.261979] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3782.261981] RSP: 002b:00007f58c67fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3782.261983] RAX: ffffffffffffffda RBX: 0000563db659ce40 RCX: 00007f67bff03b4b
[ 3782.261984] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001d4
[ 3782.261985] RBP: 0000563db659ce40 R08: 0000000000000000 R09: 0000000000000000
[ 3782.261987] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3782.261988] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3782.261993]  </TASK>
[ 3782.261994] watchdog: BUG: soft lockup - CPU#1 stuck for 130s! [qemu-system-x86:31314]
[ 3782.261996] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3782.262053] CPU: 1 UID: 0 PID: 31314 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3782.262056] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3782.262057] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3782.262058] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3782.262061] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3782.262063] RSP: 0018:ffffaab62afb78b8 EFLAGS: 00000202
[ 3782.262065] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3782.262066] RDX: 0000000000000001 RSI: ffff8f717fff8fe0 RDI: ffff8f5280a32cf0
[ 3782.262067] RBP: ffffaab62afb7918 R08: 0000000000000007 R09: ffff8f5280a326e0
[ 3782.262069] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3782.262070] R13: 0000000000000202 R14: ffff8f717fe72a40 R15: 0000000000000080
[ 3782.262072] FS:  00007f5a257fa640(0000) GS:ffff8f71ed676000(0000) knlGS:0000000000000000
[ 3782.262073] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3782.262074] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3782.262076] PKRU: 55555554
[ 3782.262077] Call Trace:
[ 3782.262078]  <TASK>
[ 3782.262080]  ? __pfx___wbinvd+0x10/0x10
[ 3782.262085]  on_each_cpu_cond_mask+0x28/0x50
[ 3782.262087]  wbinvd_on_all_cpus+0x29/0x40
[ 3782.262091]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3782.262099]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3782.262150]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3782.262204]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3782.262208]  change_protection+0xfc9/0x1200
[ 3782.262214]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.262217]  ? update_load_avg+0x84/0x780
[ 3782.262221]  ? write_ibpb+0x21/0x40
[ 3782.262225]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3782.262277]  change_prot_numa+0x5b/0xe0
[ 3782.262282]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.262284]  ? update_load_avg+0x84/0x780
[ 3782.262286]  ? __dequeue_entity+0x3cd/0x4a0
[ 3782.262291]  task_numa_work+0x3c5/0x9b0
[ 3782.262298]  task_work_run+0x64/0xa0
[ 3782.262302]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3782.262306]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3782.262358]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3782.262410]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.262412]  ? do_futex+0xc8/0x1d0
[ 3782.262415]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.262417]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.262421]  __x64_sys_ioctl+0xa0/0xf0
[ 3782.262425]  x64_sys_call+0x122e/0x2150
[ 3782.262427]  do_syscall_64+0x56/0x1e0
[ 3782.262431]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3782.262433] RIP: 0033:0x7f67bff03b4b
[ 3782.262435] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3782.262436] RSP: 002b:00007f5a257f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3782.262438] RAX: ffffffffffffffda RBX: 0000563db62a68f0 RCX: 00007f67bff03b4b
[ 3782.262440] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000013e
[ 3782.262441] RBP: 0000563db62a68f0 R08: 0000000000000000 R09: 0000000000000000
[ 3782.262442] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3782.262443] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3782.262448]  </TASK>
[ 3782.265581] watchdog: BUG: soft lockup - CPU#3 stuck for 127s! [qemu-system-x86:31397]
[ 3782.265584] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3782.265641] CPU: 3 UID: 0 PID: 31397 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3782.265644] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3782.265645] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3782.265646] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3782.265649] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3782.265651] RSP: 0018:ffffaab62c1938b8 EFLAGS: 00000202
[ 3782.265653] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3782.265654] RDX: 0000000000000001 RSI: ffff8f717fff9020 RDI: ffff8f5280a32490
[ 3782.265656] RBP: ffffaab62c193918 R08: 0000000000000007 R09: ffff8f5280a32d40
[ 3782.265657] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3782.265658] R13: 0000000000000202 R14: ffff8f717fef2a40 R15: 0000000000000080
[ 3782.265660] FS:  00007f58a5ffb640(0000) GS:ffff8f71ed6f6000(0000) knlGS:0000000000000000
[ 3782.265661] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3782.265663] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3782.265664] PKRU: 55555554
[ 3782.265665] Call Trace:
[ 3782.265666]  <TASK>
[ 3782.265668]  ? __pfx___wbinvd+0x10/0x10
[ 3782.265673]  on_each_cpu_cond_mask+0x28/0x50
[ 3782.265676]  wbinvd_on_all_cpus+0x29/0x40
[ 3782.265679]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3782.265687]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3782.265739]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3782.265793]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3782.265798]  change_protection+0xfc9/0x1200
[ 3782.265804]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.265807]  ? update_load_avg+0x84/0x780
[ 3782.265810]  ? write_ibpb+0x21/0x40
[ 3782.265814]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3782.265866]  change_prot_numa+0x5b/0xe0
[ 3782.265873]  task_numa_work+0x3c5/0x9b0
[ 3782.265880]  task_work_run+0x64/0xa0
[ 3782.265884]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3782.265888]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3782.265940]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3782.265992]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.265995]  ? do_futex+0xc8/0x1d0
[ 3782.265997]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.265999]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.266003]  __x64_sys_ioctl+0xa0/0xf0
[ 3782.266007]  x64_sys_call+0x122e/0x2150
[ 3782.266009]  do_syscall_64+0x56/0x1e0
[ 3782.266013]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3782.266015] RIP: 0033:0x7f67bff03b4b
[ 3782.266017] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3782.266019] RSP: 002b:00007f58a5ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3782.266021] RAX: ffffffffffffffda RBX: 0000563db65eddb0 RCX: 00007f67bff03b4b
[ 3782.266022] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001e4
[ 3782.266023] RBP: 0000563db65eddb0 R08: 0000000000000000 R09: 0000000000000000
[ 3782.266025] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3782.266026] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3782.266031]  </TASK>
[ 3782.269581] watchdog: BUG: soft lockup - CPU#5 stuck for 127s! [qemu-system-x86:31362]
[ 3782.269583] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3782.269640] CPU: 5 UID: 0 PID: 31362 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3782.269643] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3782.269644] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3782.269645] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3782.269648] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3782.269650] RSP: 0018:ffffaab62b2c78b8 EFLAGS: 00000202
[ 3782.269652] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3782.269653] RDX: 0000000000000001 RSI: ffff8f717fff9060 RDI: ffff8f5280a32260
[ 3782.269654] RBP: ffffaab62b2c7918 R08: 0000000000000007 R09: ffff8f5280a32eb0
[ 3782.269656] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3782.269657] R13: 0000000000000202 R14: ffff8f717ff72a40 R15: 0000000000000080
[ 3782.269658] FS:  00007f5945ffb640(0000) GS:ffff8f71ed776000(0000) knlGS:0000000000000000
[ 3782.269660] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3782.269661] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3782.269663] PKRU: 55555554
[ 3782.269664] Call Trace:
[ 3782.269665]  <TASK>
[ 3782.269667]  ? __pfx___wbinvd+0x10/0x10
[ 3782.269672]  on_each_cpu_cond_mask+0x28/0x50
[ 3782.269675]  wbinvd_on_all_cpus+0x29/0x40
[ 3782.269678]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3782.269686]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3782.269738]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3782.269793]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3782.269797]  change_protection+0xfc9/0x1200
[ 3782.269803]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.269806]  ? update_load_avg+0x84/0x780
[ 3782.269810]  ? write_ibpb+0x21/0x40
[ 3782.269813]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3782.269866]  change_prot_numa+0x5b/0xe0
[ 3782.269873]  task_numa_work+0x3c5/0x9b0
[ 3782.269880]  task_work_run+0x64/0xa0
[ 3782.269884]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3782.269888]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3782.269940]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3782.269992]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.269994]  ? do_futex+0xc8/0x1d0
[ 3782.269996]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.269999]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.270002]  __x64_sys_ioctl+0xa0/0xf0
[ 3782.270007]  x64_sys_call+0x122e/0x2150
[ 3782.270009]  do_syscall_64+0x56/0x1e0
[ 3782.270013]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3782.270015] RIP: 0033:0x7f67bff03b4b
[ 3782.270017] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3782.270018] RSP: 002b:00007f5945ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3782.270020] RAX: ffffffffffffffda RBX: 0000563db648caa0 RCX: 00007f67bff03b4b
[ 3782.270022] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000019e
[ 3782.270023] RBP: 0000563db648caa0 R08: 0000000000000000 R09: 0000000000000000
[ 3782.270024] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3782.270025] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3782.270031]  </TASK>
[ 3782.285582] watchdog: BUG: soft lockup - CPU#11 stuck for 127s! [qemu-system-x86:31294]
[ 3782.285588] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3782.285659] CPU: 11 UID: 0 PID: 31294 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3782.285664] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3782.285665] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3782.285667] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3782.285675] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3782.285678] RSP: 0018:ffffaab62af178b8 EFLAGS: 00000202
[ 3782.285680] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3782.285682] RDX: 0000000000000001 RSI: ffff8f717fff9120 RDI: ffff8f5280a32cc0
[ 3782.285684] RBP: ffffaab62af17918 R08: 0000000000000007 R09: ffff8f5280a32500
[ 3782.285686] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3782.285687] R13: 0000000000000202 R14: ffff8f71800f2a40 R15: 0000000000000080
[ 3782.285689] FS:  00007f5a84ff9640(0000) GS:ffff8f71ed8f6000(0000) knlGS:0000000000000000
[ 3782.285691] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3782.285692] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3782.285694] PKRU: 55555554
[ 3782.285695] Call Trace:
[ 3782.285696]  <TASK>
[ 3782.285700]  ? __pfx___wbinvd+0x10/0x10
[ 3782.285708]  on_each_cpu_cond_mask+0x28/0x50
[ 3782.285711]  wbinvd_on_all_cpus+0x29/0x40
[ 3782.285715]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3782.285724]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3782.285778]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3782.285834]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3782.285840]  change_protection+0xfc9/0x1200
[ 3782.285848]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.285851]  ? update_load_avg+0x84/0x780
[ 3782.285856]  ? write_ibpb+0x21/0x40
[ 3782.285861]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3782.285913]  change_prot_numa+0x5b/0xe0
[ 3782.285921]  task_numa_work+0x3c5/0x9b0
[ 3782.285928]  task_work_run+0x64/0xa0
[ 3782.285934]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3782.285939]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3782.285991]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3782.286044]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.286046]  ? do_futex+0xc8/0x1d0
[ 3782.286049]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.286051]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.286055]  __x64_sys_ioctl+0xa0/0xf0
[ 3782.286060]  x64_sys_call+0x122e/0x2150
[ 3782.286062]  do_syscall_64+0x56/0x1e0
[ 3782.286066]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3782.286068] RIP: 0033:0x7f67bff03b4b
[ 3782.286071] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3782.286072] RSP: 002b:00007f5a84ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3782.286074] RAX: ffffffffffffffda RBX: 0000563db61dc570 RCX: 00007f67bff03b4b
[ 3782.286076] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000116
[ 3782.286077] RBP: 0000563db61dc570 R08: 0000000000000000 R09: 0000000000000000
[ 3782.286078] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3782.286079] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3782.286084]  </TASK>
[ 3782.289581] watchdog: BUG: soft lockup - CPU#13 stuck for 127s! [qemu-system-x86:31324]
[ 3782.289583] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3782.289640] CPU: 13 UID: 0 PID: 31324 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3782.289643] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3782.289644] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3782.289645] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3782.289649] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3782.289651] RSP: 0018:ffffaab62b0238b8 EFLAGS: 00000202
[ 3782.289653] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3782.289654] RDX: 0000000000000001 RSI: ffff8f717fff9160 RDI: ffff8f5280a32f70
[ 3782.289655] RBP: ffffaab62b023918 R08: 0000000000000007 R09: ffff8f5280a32c00
[ 3782.289657] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3782.289658] R13: 0000000000000202 R14: ffff8f7180172a40 R15: 0000000000000080
[ 3782.289659] FS:  00007f59e77fe640(0000) GS:ffff8f71ed976000(0000) knlGS:0000000000000000
[ 3782.289661] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3782.289662] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3782.289664] PKRU: 55555554
[ 3782.289665] Call Trace:
[ 3782.289666]  <TASK>
[ 3782.289667]  ? __pfx___wbinvd+0x10/0x10
[ 3782.289672]  on_each_cpu_cond_mask+0x28/0x50
[ 3782.289675]  wbinvd_on_all_cpus+0x29/0x40
[ 3782.289679]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3782.289687]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3782.289738]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3782.289793]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3782.289798]  change_protection+0xfc9/0x1200
[ 3782.289803]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.289807]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.289809]  ? update_load_avg+0x84/0x780
[ 3782.289813]  ? write_ibpb+0x21/0x40
[ 3782.289816]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3782.289870]  change_prot_numa+0x5b/0xe0
[ 3782.289876]  task_numa_work+0x3c5/0x9b0
[ 3782.289884]  task_work_run+0x64/0xa0
[ 3782.289888]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3782.289892]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3782.289944]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3782.289997]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.289999]  ? do_futex+0xc8/0x1d0
[ 3782.290001]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.290004]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.290007]  __x64_sys_ioctl+0xa0/0xf0
[ 3782.290012]  x64_sys_call+0x122e/0x2150
[ 3782.290014]  do_syscall_64+0x56/0x1e0
[ 3782.290018]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3782.290020] RIP: 0033:0x7f67bff03b4b
[ 3782.290022] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3782.290024] RSP: 002b:00007f59e77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3782.290026] RAX: ffffffffffffffda RBX: 0000563db630c090 RCX: 00007f67bff03b4b
[ 3782.290027] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000152
[ 3782.290028] RBP: 0000563db630c090 R08: 0000000000000000 R09: 0000000000000000
[ 3782.290030] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3782.290031] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3782.290036]  </TASK>
[ 3782.293581] watchdog: BUG: soft lockup - CPU#15 stuck for 127s! [qemu-system-x86:31363]
[ 3782.293583] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3782.293641] CPU: 15 UID: 0 PID: 31363 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3782.293644] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3782.293645] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3782.293646] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3782.293650] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3782.293652] RSP: 0018:ffffaab62b2cf8b8 EFLAGS: 00000202
[ 3782.293653] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3782.293654] RDX: 0000000000000001 RSI: ffff8f717fff91a0 RDI: ffff8f52872d07c0
[ 3782.293656] RBP: ffffaab62b2cf918 R08: 0000000000000007 R09: ffff8f52872d0930
[ 3782.293657] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3782.293658] R13: 0000000000000202 R14: ffff8f71801f2a40 R15: 0000000000000080
[ 3782.293660] FS:  00007f59457fa640(0000) GS:ffff8f71ed9f6000(0000) knlGS:0000000000000000
[ 3782.293661] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3782.293663] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3782.293664] PKRU: 55555554
[ 3782.293665] Call Trace:
[ 3782.293666]  <TASK>
[ 3782.293668]  ? __pfx___wbinvd+0x10/0x10
[ 3782.293673]  on_each_cpu_cond_mask+0x28/0x50
[ 3782.293676]  wbinvd_on_all_cpus+0x29/0x40
[ 3782.293679]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3782.293687]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3782.293738]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3782.293793]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3782.293797]  change_protection+0xfc9/0x1200
[ 3782.293803]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.293806]  ? update_load_avg+0x84/0x780
[ 3782.293810]  ? write_ibpb+0x21/0x40
[ 3782.293813]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3782.293866]  change_prot_numa+0x5b/0xe0
[ 3782.293872]  task_numa_work+0x3c5/0x9b0
[ 3782.293880]  task_work_run+0x64/0xa0
[ 3782.293884]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3782.293888]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3782.293940]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3782.293992]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.293995]  ? do_futex+0xc8/0x1d0
[ 3782.293997]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.293999]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.294003]  __x64_sys_ioctl+0xa0/0xf0
[ 3782.294008]  x64_sys_call+0x122e/0x2150
[ 3782.294010]  do_syscall_64+0x56/0x1e0
[ 3782.294014]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3782.294015] RIP: 0033:0x7f67bff03b4b
[ 3782.294017] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3782.294019] RSP: 002b:00007f59457f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3782.294021] RAX: ffffffffffffffda RBX: 0000563db6496a50 RCX: 00007f67bff03b4b
[ 3782.294022] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001a0
[ 3782.294024] RBP: 0000563db6496a50 R08: 0000000000000000 R09: 0000000000000000
[ 3782.294025] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3782.294026] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3782.294031]  </TASK>
[ 3782.297581] watchdog: BUG: soft lockup - CPU#18 stuck for 127s! [qemu-system-x86:31310]
[ 3782.297587] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3782.297656] CPU: 18 UID: 0 PID: 31310 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3782.297661] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3782.297662] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3782.297664] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3782.297672] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3782.297674] RSP: 0018:ffffaab62af978b8 EFLAGS: 00000202
[ 3782.297676] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3782.297678] RDX: 0000000000000001 RSI: ffff8f717fff9200 RDI: ffff8f52872d06e0
[ 3782.297680] RBP: ffffaab62af97918 R08: 0000000000000007 R09: ffff8f52872d0800
[ 3782.297681] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3782.297683] R13: 0000000000000202 R14: ffff8f71802b2a40 R15: 0000000000000080
[ 3782.297684] FS:  00007f5a277fe640(0000) GS:ffff8f71edab6000(0000) knlGS:0000000000000000
[ 3782.297686] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3782.297688] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3782.297689] PKRU: 55555554
[ 3782.297691] Call Trace:
[ 3782.297692]  <TASK>
[ 3782.297696]  ? __pfx___wbinvd+0x10/0x10
[ 3782.297703]  on_each_cpu_cond_mask+0x28/0x50
[ 3782.297707]  wbinvd_on_all_cpus+0x29/0x40
[ 3782.297711]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3782.297720]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3782.297773]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3782.297829]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3782.297835]  change_protection+0xfc9/0x1200
[ 3782.297841]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.297846]  ? update_curr_dl_se+0x3b/0x1e0
[ 3782.297851]  ? dl_server_update+0x2e/0x40
[ 3782.297855]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.297858]  ? pick_next_task_fair+0x4f/0x490
[ 3782.297862]  change_prot_numa+0x5b/0xe0
[ 3782.297868]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.297870]  ? update_load_avg+0x84/0x780
[ 3782.297873]  ? __dequeue_entity+0x3cd/0x4a0
[ 3782.297877]  task_numa_work+0x3c5/0x9b0
[ 3782.297884]  task_work_run+0x64/0xa0
[ 3782.297890]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3782.297895]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3782.297947]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3782.297999]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.298002]  ? do_futex+0xc8/0x1d0
[ 3782.298004]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.298006]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.298010]  __x64_sys_ioctl+0xa0/0xf0
[ 3782.298016]  x64_sys_call+0x122e/0x2150
[ 3782.298018]  do_syscall_64+0x56/0x1e0
[ 3782.298023]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3782.298025] RIP: 0033:0x7f67bff03b4b
[ 3782.298028] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3782.298029] RSP: 002b:00007f5a277fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3782.298032] RAX: ffffffffffffffda RBX: 0000563db627ea30 RCX: 00007f67bff03b4b
[ 3782.298033] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000136
[ 3782.298034] RBP: 0000563db627ea30 R08: 0000000000000000 R09: 0000000000000000
[ 3782.298035] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3782.298036] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3782.298042]  </TASK>
[ 3782.309580] watchdog: BUG: soft lockup - CPU#22 stuck for 127s! [qemu-system-x86:31334]
[ 3782.309583] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3782.309640] CPU: 22 UID: 0 PID: 31334 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3782.309643] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3782.309644] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3782.309645] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3782.309649] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3782.309651] RSP: 0018:ffffaab62b1e78b8 EFLAGS: 00000202
[ 3782.309652] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3782.309654] RDX: 0000000000000001 RSI: ffff8f717fff9280 RDI: ffff8f52872d0480
[ 3782.309655] RBP: ffffaab62b1e7918 R08: 0000000000000007 R09: ffff8f52872d08d0
[ 3782.309656] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3782.309658] R13: 0000000000000202 R14: ffff8f71803b2a40 R15: 0000000000000080
[ 3782.309659] FS:  00007f59c5ffb640(0000) GS:ffff8f71edbb6000(0000) knlGS:0000000000000000
[ 3782.309661] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3782.309662] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3782.309663] PKRU: 55555554
[ 3782.309664] Call Trace:
[ 3782.309665]  <TASK>
[ 3782.309667]  ? __pfx___wbinvd+0x10/0x10
[ 3782.309672]  on_each_cpu_cond_mask+0x28/0x50
[ 3782.309675]  wbinvd_on_all_cpus+0x29/0x40
[ 3782.309679]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3782.309686]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3782.309738]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3782.309792]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3782.309797]  change_protection+0xfc9/0x1200
[ 3782.309802]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.309805]  ? update_curr_dl_se+0x3b/0x1e0
[ 3782.309808]  ? dl_server_update+0x2e/0x40
[ 3782.309812]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.309816]  ? pick_next_task_fair+0x4f/0x490
[ 3782.309819]  change_prot_numa+0x5b/0xe0
[ 3782.309826]  task_numa_work+0x3c5/0x9b0
[ 3782.309833]  task_work_run+0x64/0xa0
[ 3782.309837]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3782.309841]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3782.309894]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3782.309945]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.309948]  ? do_futex+0xc8/0x1d0
[ 3782.309950]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.309952]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.309956]  __x64_sys_ioctl+0xa0/0xf0
[ 3782.309961]  x64_sys_call+0x122e/0x2150
[ 3782.309963]  do_syscall_64+0x56/0x1e0
[ 3782.309967]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3782.309969] RIP: 0033:0x7f67bff03b4b
[ 3782.309971] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3782.309973] RSP: 002b:00007f59c5ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3782.309975] RAX: ffffffffffffffda RBX: 0000563db6371720 RCX: 00007f67bff03b4b
[ 3782.309976] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000166
[ 3782.309977] RBP: 0000563db6371720 R08: 0000000000000000 R09: 0000000000000000
[ 3782.309978] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3782.309980] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3782.309985]  </TASK>
[ 3782.361580] watchdog: BUG: soft lockup - CPU#46 stuck for 127s! [qemu-system-x86:31353]
[ 3782.361585] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3782.361655] CPU: 46 UID: 0 PID: 31353 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3782.361659] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3782.361660] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3782.361662] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3782.361669] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3782.361672] RSP: 0018:ffffaab62b27f8b8 EFLAGS: 00000202
[ 3782.361674] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3782.361675] RDX: 0000000000000001 RSI: ffff8f717fff9580 RDI: ffff8f72066e3a60
[ 3782.361677] RBP: ffffaab62b27f918 R08: 0000000000000007 R09: ffff8f72066e3360
[ 3782.361678] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3782.361680] R13: 0000000000000202 R14: ffff8f917e3b2a40 R15: 0000000000000080
[ 3782.361681] FS:  00007f5966ffd640(0000) GS:ffff8f91ebbb6000(0000) knlGS:0000000000000000
[ 3782.361683] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3782.361685] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3782.361686] PKRU: 55555554
[ 3782.361687] Call Trace:
[ 3782.361689]  <TASK>
[ 3782.361692]  ? __pfx___wbinvd+0x10/0x10
[ 3782.361700]  on_each_cpu_cond_mask+0x28/0x50
[ 3782.361703]  wbinvd_on_all_cpus+0x29/0x40
[ 3782.361707]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3782.361716]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3782.361768]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3782.361824]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3782.361830]  change_protection+0xfc9/0x1200
[ 3782.361838]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.361841]  ? update_load_avg+0x84/0x780
[ 3782.361846]  ? write_ibpb+0x21/0x40
[ 3782.361851]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3782.361903]  change_prot_numa+0x5b/0xe0
[ 3782.361911]  task_numa_work+0x3c5/0x9b0
[ 3782.361918]  task_work_run+0x64/0xa0
[ 3782.361923]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3782.361929]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3782.361981]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3782.362033]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.362035]  ? do_futex+0xc8/0x1d0
[ 3782.362037]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.362040]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.362043]  __x64_sys_ioctl+0xa0/0xf0
[ 3782.362049]  x64_sys_call+0x122e/0x2150
[ 3782.362051]  do_syscall_64+0x56/0x1e0
[ 3782.362055]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3782.362057] RIP: 0033:0x7f67bff03b4b
[ 3782.362059] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3782.362061] RSP: 002b:00007f5966ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3782.362063] RAX: ffffffffffffffda RBX: 0000563db6431560 RCX: 00007f67bff03b4b
[ 3782.362065] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000018c
[ 3782.362066] RBP: 0000563db6431560 R08: 0000000000000000 R09: 0000000000000000
[ 3782.362067] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3782.362068] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3782.362073]  </TASK>
[ 3782.365579] watchdog: BUG: soft lockup - CPU#47 stuck for 127s! [qemu-system-x86:31257]
[ 3782.365582] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3782.365640] CPU: 47 UID: 0 PID: 31257 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3782.365643] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3782.365644] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3782.365645] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3782.365648] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3782.365650] RSP: 0018:ffffaab62ad038b8 EFLAGS: 00000202
[ 3782.365652] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3782.365653] RDX: 0000000000000001 RSI: ffff8f717fff95a0 RDI: ffff8f72066e36c0
[ 3782.365654] RBP: ffffaab62ad03918 R08: 0000000000000007 R09: ffff8f72066e3e10
[ 3782.365656] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3782.365657] R13: 0000000000000202 R14: ffff8f917e3f2a40 R15: 0000000000000080
[ 3782.365658] FS:  00007f5b25ffb640(0000) GS:ffff8f91ebbf6000(0000) knlGS:0000000000000000
[ 3782.365660] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3782.365661] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3782.365663] PKRU: 55555554
[ 3782.365664] Call Trace:
[ 3782.365665]  <TASK>
[ 3782.365667]  ? __pfx___wbinvd+0x10/0x10
[ 3782.365672]  on_each_cpu_cond_mask+0x28/0x50
[ 3782.365675]  wbinvd_on_all_cpus+0x29/0x40
[ 3782.365678]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3782.365686]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3782.365738]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3782.365793]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3782.365798]  change_protection+0xfc9/0x1200
[ 3782.365802]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.365806]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.365809]  ? update_load_avg+0x84/0x780
[ 3782.365813]  ? write_ibpb+0x21/0x40
[ 3782.365816]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3782.365869]  change_prot_numa+0x5b/0xe0
[ 3782.365875]  task_numa_work+0x3c5/0x9b0
[ 3782.365883]  task_work_run+0x64/0xa0
[ 3782.365887]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3782.365891]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3782.365943]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3782.365995]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.365997]  ? do_futex+0xc8/0x1d0
[ 3782.366000]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.366002]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.366005]  __x64_sys_ioctl+0xa0/0xf0
[ 3782.366010]  x64_sys_call+0x122e/0x2150
[ 3782.366012]  do_syscall_64+0x56/0x1e0
[ 3782.366016]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3782.366018] RIP: 0033:0x7f67bff03b4b
[ 3782.366020] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3782.366022] RSP: 002b:00007f5b25ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3782.366024] RAX: ffffffffffffffda RBX: 0000563db6063fa0 RCX: 00007f67bff03b4b
[ 3782.366025] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000cc
[ 3782.366026] RBP: 0000563db6063fa0 R08: 0000000000000000 R09: 0000000000000000
[ 3782.366028] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3782.366029] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3782.366034]  </TASK>
[ 3782.377579] watchdog: BUG: soft lockup - CPU#52 stuck for 127s! [qemu-system-x86:31251]
[ 3782.377585] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3782.377655] CPU: 52 UID: 0 PID: 31251 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3782.377659] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3782.377660] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3782.377662] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3782.377669] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3782.377671] RSP: 0018:ffffaab62acd38b8 EFLAGS: 00000202
[ 3782.377673] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3782.377675] RDX: 0000000000000001 RSI: ffff8f717fff9640 RDI: ffff8f72000bacd0
[ 3782.377676] RBP: ffffaab62acd3918 R08: 0000000000000007 R09: ffff8f72000bab90
[ 3782.377678] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3782.377679] R13: 0000000000000202 R14: ffff8f917e532a40 R15: 0000000000000080
[ 3782.377681] FS:  00007f5b457fa640(0000) GS:ffff8f91ebd36000(0000) knlGS:0000000000000000
[ 3782.377683] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3782.377684] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3782.377686] PKRU: 55555554
[ 3782.377687] Call Trace:
[ 3782.377688]  <TASK>
[ 3782.377692]  ? __pfx___wbinvd+0x10/0x10
[ 3782.377699]  on_each_cpu_cond_mask+0x28/0x50
[ 3782.377702]  wbinvd_on_all_cpus+0x29/0x40
[ 3782.377707]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3782.377715]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3782.377768]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3782.377824]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3782.377829]  change_protection+0xfc9/0x1200
[ 3782.377835]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.377840]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.377843]  ? update_load_avg+0x84/0x780
[ 3782.377847]  ? write_ibpb+0x21/0x40
[ 3782.377852]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3782.377904]  change_prot_numa+0x5b/0xe0
[ 3782.377911]  task_numa_work+0x3c5/0x9b0
[ 3782.377918]  task_work_run+0x64/0xa0
[ 3782.377923]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3782.377928]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3782.377980]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3782.378032]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.378034]  ? do_futex+0xc8/0x1d0
[ 3782.378037]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.378039]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.378043]  __x64_sys_ioctl+0xa0/0xf0
[ 3782.378048]  x64_sys_call+0x122e/0x2150
[ 3782.378051]  do_syscall_64+0x56/0x1e0
[ 3782.378054]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3782.378056] RIP: 0033:0x7f67bff03b4b
[ 3782.378059] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3782.378061] RSP: 002b:00007f5b457f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3782.378063] RAX: ffffffffffffffda RBX: 0000563db6027ac0 RCX: 00007f67bff03b4b
[ 3782.378064] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000c0
[ 3782.378065] RBP: 0000563db6027ac0 R08: 0000000000000000 R09: 0000000000000000
[ 3782.378067] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3782.378068] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3782.378073]  </TASK>
[ 3782.389579] watchdog: BUG: soft lockup - CPU#58 stuck for 127s! [qemu-system-x86:31335]
[ 3782.389584] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3782.389653] CPU: 58 UID: 0 PID: 31335 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3782.389657] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3782.389659] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3782.389661] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3782.389667] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3782.389670] RSP: 0018:ffffaab62b1ef8b8 EFLAGS: 00000202
[ 3782.389673] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3782.389674] RDX: 0000000000000001 RSI: ffff8f717fff9700 RDI: ffff8f72000bacf0
[ 3782.389676] RBP: ffffaab62b1ef918 R08: 0000000000000007 R09: ffff8f72000ba6e0
[ 3782.389678] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3782.389679] R13: 0000000000000202 R14: ffff8f917e6b2a40 R15: 0000000000000080
[ 3782.389681] FS:  00007f59c57fa640(0000) GS:ffff8f91ebeb6000(0000) knlGS:0000000000000000
[ 3782.389683] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3782.389685] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3782.389686] PKRU: 55555554
[ 3782.389688] Call Trace:
[ 3782.389689]  <TASK>
[ 3782.389693]  ? __pfx___wbinvd+0x10/0x10
[ 3782.389700]  on_each_cpu_cond_mask+0x28/0x50
[ 3782.389703]  wbinvd_on_all_cpus+0x29/0x40
[ 3782.389708]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3782.389716]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3782.389769]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3782.389824]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3782.389830]  change_protection+0xfc9/0x1200
[ 3782.389835]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.389840]  ? update_curr_dl_se+0x3b/0x1e0
[ 3782.389844]  ? dl_server_update+0x2e/0x40
[ 3782.389848]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.389852]  ? pick_next_task_fair+0x4f/0x490
[ 3782.389855]  change_prot_numa+0x5b/0xe0
[ 3782.389863]  task_numa_work+0x3c5/0x9b0
[ 3782.389870]  task_work_run+0x64/0xa0
[ 3782.389875]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3782.389880]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3782.389933]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3782.389984]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.389987]  ? do_futex+0xc8/0x1d0
[ 3782.389989]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.389991]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.389995]  __x64_sys_ioctl+0xa0/0xf0
[ 3782.390001]  x64_sys_call+0x122e/0x2150
[ 3782.390003]  do_syscall_64+0x56/0x1e0
[ 3782.390008]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3782.390010] RIP: 0033:0x7f67bff03b4b
[ 3782.390013] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3782.390014] RSP: 002b:00007f59c57f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3782.390017] RAX: ffffffffffffffda RBX: 0000563db637b6d0 RCX: 00007f67bff03b4b
[ 3782.390018] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000168
[ 3782.390019] RBP: 0000563db637b6d0 R08: 0000000000000000 R09: 0000000000000000
[ 3782.390020] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3782.390022] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3782.390027]  </TASK>
[ 3782.393579] watchdog: BUG: soft lockup - CPU#59 stuck for 127s! [qemu-system-x86:31330]
[ 3782.393581] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3782.393638] CPU: 59 UID: 0 PID: 31330 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3782.393641] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3782.393642] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3782.393643] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3782.393647] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3782.393648] RSP: 0018:ffffaab62b06b8b8 EFLAGS: 00000202
[ 3782.393650] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3782.393651] RDX: 0000000000000001 RSI: ffff8f717fff9720 RDI: ffff8f72000ba770
[ 3782.393653] RBP: ffffaab62b06b918 R08: 0000000000000007 R09: ffff8f72000baa50
[ 3782.393654] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3782.393655] R13: 0000000000000202 R14: ffff8f917e6f2a40 R15: 0000000000000080
[ 3782.393657] FS:  00007f59c7fff640(0000) GS:ffff8f91ebef6000(0000) knlGS:0000000000000000
[ 3782.393658] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3782.393660] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3782.393661] PKRU: 55555554
[ 3782.393662] Call Trace:
[ 3782.393663]  <TASK>
[ 3782.393665]  ? __pfx___wbinvd+0x10/0x10
[ 3782.393670]  on_each_cpu_cond_mask+0x28/0x50
[ 3782.393672]  wbinvd_on_all_cpus+0x29/0x40
[ 3782.393676]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3782.393684]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3782.393736]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3782.393792]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3782.393796]  change_protection+0xfc9/0x1200
[ 3782.393801]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.393804]  ? update_curr_dl_se+0x3b/0x1e0
[ 3782.393807]  ? dl_server_update+0x2e/0x40
[ 3782.393811]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.393815]  ? pick_next_task_fair+0x4f/0x490
[ 3782.393818]  change_prot_numa+0x5b/0xe0
[ 3782.393825]  task_numa_work+0x3c5/0x9b0
[ 3782.393832]  task_work_run+0x64/0xa0
[ 3782.393836]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3782.393840]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3782.393893]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3782.393946]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.393948]  ? do_futex+0xc8/0x1d0
[ 3782.393950]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.393953]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.393956]  __x64_sys_ioctl+0xa0/0xf0
[ 3782.393961]  x64_sys_call+0x122e/0x2150
[ 3782.393963]  do_syscall_64+0x56/0x1e0
[ 3782.393967]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3782.393969] RIP: 0033:0x7f67bff03b4b
[ 3782.393971] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3782.393973] RSP: 002b:00007f59c7ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3782.393975] RAX: ffffffffffffffda RBX: 0000563db6348c80 RCX: 00007f67bff03b4b
[ 3782.393976] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000015e
[ 3782.393977] RBP: 0000563db6348c80 R08: 0000000000000000 R09: 0000000000000000
[ 3782.393979] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3782.393980] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3782.393985]  </TASK>
[ 3782.441578] watchdog: BUG: soft lockup - CPU#69 stuck for 126s! [qemu-system-x86:31238]
[ 3782.441580] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3782.441641] CPU: 69 UID: 0 PID: 31238 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3782.441645] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3782.441646] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3782.441647] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3782.441651] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3782.441652] RSP: 0018:ffffaab62ac6b8b8 EFLAGS: 00000202
[ 3782.441654] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3782.441656] RDX: 0000000000000001 RSI: ffff8f717fff9860 RDI: ffff8f52876583e0
[ 3782.441657] RBP: ffffaab62ac6b918 R08: 0000000000000007 R09: ffff8f52876585e0
[ 3782.441659] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3782.441660] R13: 0000000000000202 R14: ffff8f7180772a40 R15: 0000000000000080
[ 3782.441662] FS:  00007f5b84ff9640(0000) GS:ffff8f71edf76000(0000) knlGS:0000000000000000
[ 3782.441664] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3782.441665] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3782.441666] PKRU: 55555554
[ 3782.441667] Call Trace:
[ 3782.441668]  <TASK>
[ 3782.441670]  ? __pfx___wbinvd+0x10/0x10
[ 3782.441675]  on_each_cpu_cond_mask+0x28/0x50
[ 3782.441678]  wbinvd_on_all_cpus+0x29/0x40
[ 3782.441681]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3782.441689]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3782.441741]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3782.441797]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3782.441801]  change_protection+0xfc9/0x1200
[ 3782.441805]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.441809]  ? asm_sysvec_apic_timer_interrupt+0x1f/0x30
[ 3782.441813]  ? write_ibpb+0x21/0x40
[ 3782.441817]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3782.441869]  change_prot_numa+0x5b/0xe0
[ 3782.441876]  task_numa_work+0x3c5/0x9b0
[ 3782.441883]  task_work_run+0x64/0xa0
[ 3782.441887]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3782.441891]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3782.441944]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3782.441997]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.442000]  ? do_futex+0xc8/0x1d0
[ 3782.442002]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.442004]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.442008]  __x64_sys_ioctl+0xa0/0xf0
[ 3782.442012]  x64_sys_call+0x122e/0x2150
[ 3782.442014]  do_syscall_64+0x56/0x1e0
[ 3782.442018]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3782.442020] RIP: 0033:0x7f67bff03b4b
[ 3782.442022] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3782.442023] RSP: 002b:00007f5b84ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3782.442025] RAX: ffffffffffffffda RBX: 0000563db5fa4ac0 RCX: 00007f67bff03b4b
[ 3782.442027] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000a6
[ 3782.442028] RBP: 0000563db5fa4ac0 R08: 0000000000000000 R09: 0000000000000000
[ 3782.442029] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3782.442030] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3782.442035]  </TASK>
[ 3782.442037] watchdog: BUG: soft lockup - CPU#70 stuck for 126s! [qemu-system-x86:31275]
[ 3782.442039] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3782.442102] CPU: 70 UID: 0 PID: 31275 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3782.442106] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3782.442107] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3782.442108] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3782.442112] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3782.442114] RSP: 0018:ffffaab62ade78b8 EFLAGS: 00000202
[ 3782.442116] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3782.442117] RDX: 0000000000000001 RSI: ffff8f717fff9880 RDI: ffff8f5287658fd0
[ 3782.442119] RBP: ffffaab62ade7918 R08: 0000000000000007 R09: ffff8f5287658700
[ 3782.442120] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3782.442121] R13: 0000000000000202 R14: ffff8f71807b2a40 R15: 0000000000000080
[ 3782.442123] FS:  00007f5ac77fe640(0000) GS:ffff8f71edfb6000(0000) knlGS:0000000000000000
[ 3782.442125] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3782.442127] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3782.442128] PKRU: 55555554
[ 3782.442129] Call Trace:
[ 3782.442131]  <TASK>
[ 3782.442133]  ? __pfx___wbinvd+0x10/0x10
[ 3782.442138]  on_each_cpu_cond_mask+0x28/0x50
[ 3782.442141]  wbinvd_on_all_cpus+0x29/0x40
[ 3782.442145]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3782.442153]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3782.442206]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3782.442261]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3782.442266]  change_protection+0xfc9/0x1200
[ 3782.442273]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.442276]  ? update_load_avg+0x84/0x780
[ 3782.442280]  ? write_ibpb+0x21/0x40
[ 3782.442283]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3782.442337]  change_prot_numa+0x5b/0xe0
[ 3782.442344]  task_numa_work+0x3c5/0x9b0
[ 3782.442352]  task_work_run+0x64/0xa0
[ 3782.442357]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3782.442361]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3782.442414]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3782.442467]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.442469]  ? do_futex+0xc8/0x1d0
[ 3782.442472]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.442475]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.442478]  __x64_sys_ioctl+0xa0/0xf0
[ 3782.442483]  x64_sys_call+0x122e/0x2150
[ 3782.442486]  do_syscall_64+0x56/0x1e0
[ 3782.442490]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3782.442492] RIP: 0033:0x7f67bff03b4b
[ 3782.442494] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3782.442496] RSP: 002b:00007f5ac77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3782.442498] RAX: ffffffffffffffda RBX: 0000563db611a960 RCX: 00007f67bff03b4b
[ 3782.442500] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000f0
[ 3782.442501] RBP: 0000563db611a960 R08: 0000000000000000 R09: 0000000000000000
[ 3782.442503] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3782.442504] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3782.442510]  </TASK>
[ 3782.445578] watchdog: BUG: soft lockup - CPU#72 stuck for 126s! [qemu-system-x86:31298]
[ 3782.445581] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3782.445641] CPU: 72 UID: 0 PID: 31298 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3782.445644] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3782.445646] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3782.445647] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3782.445651] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3782.445653] RSP: 0018:ffffaab62af378b8 EFLAGS: 00000202
[ 3782.445655] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3782.445657] RDX: 0000000000000001 RSI: ffff8f717fff98c0 RDI: ffff8f5287658550
[ 3782.445659] RBP: ffffaab62af37918 R08: 0000000000000007 R09: ffff8f5287658ca0
[ 3782.445660] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3782.445661] R13: 0000000000000202 R14: ffff8f7180832a40 R15: 0000000000000080
[ 3782.445663] FS:  00007f5a667fc640(0000) GS:ffff8f71ee036000(0000) knlGS:0000000000000000
[ 3782.445665] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3782.445666] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3782.445668] PKRU: 55555554
[ 3782.445669] Call Trace:
[ 3782.445670]  <TASK>
[ 3782.445672]  ? __pfx___wbinvd+0x10/0x10
[ 3782.445677]  on_each_cpu_cond_mask+0x28/0x50
[ 3782.445680]  wbinvd_on_all_cpus+0x29/0x40
[ 3782.445683]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3782.445691]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3782.445743]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3782.445797]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3782.445802]  change_protection+0xfc9/0x1200
[ 3782.445806]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.445810]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.445813]  ? update_load_avg+0x84/0x780
[ 3782.445817]  ? write_ibpb+0x21/0x40
[ 3782.445820]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3782.445872]  change_prot_numa+0x5b/0xe0
[ 3782.445879]  task_numa_work+0x3c5/0x9b0
[ 3782.445887]  task_work_run+0x64/0xa0
[ 3782.445891]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3782.445895]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3782.445947]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3782.445999]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.446001]  ? do_futex+0xc8/0x1d0
[ 3782.446004]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.446006]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.446010]  __x64_sys_ioctl+0xa0/0xf0
[ 3782.446014]  x64_sys_call+0x122e/0x2150
[ 3782.446016]  do_syscall_64+0x56/0x1e0
[ 3782.446020]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3782.446022] RIP: 0033:0x7f67bff03b4b
[ 3782.446024] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3782.446026] RSP: 002b:00007f5a667fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3782.446028] RAX: ffffffffffffffda RBX: 0000563db62051d0 RCX: 00007f67bff03b4b
[ 3782.446029] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000011e
[ 3782.446031] RBP: 0000563db62051d0 R08: 0000000000000000 R09: 0000000000000000
[ 3782.446032] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3782.446033] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3782.446038]  </TASK>
[ 3782.449578] watchdog: BUG: soft lockup - CPU#74 stuck for 126s! [qemu-system-x86:31394]
[ 3782.449580] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3782.449637] CPU: 74 UID: 0 PID: 31394 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3782.449640] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3782.449641] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3782.449642] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3782.449646] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3782.449648] RSP: 0018:ffffaab62c1ab8b8 EFLAGS: 00000202
[ 3782.449649] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3782.449651] RDX: 0000000000000001 RSI: ffff8f717fff9900 RDI: ffff8f5287658a20
[ 3782.449652] RBP: ffffaab62c1ab918 R08: 0000000000000007 R09: ffff8f5287658a30
[ 3782.449653] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3782.449655] R13: 0000000000000202 R14: ffff8f71808b2a40 R15: 0000000000000080
[ 3782.449656] FS:  00007f58a77fe640(0000) GS:ffff8f71ee0b6000(0000) knlGS:0000000000000000
[ 3782.449658] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3782.449659] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3782.449661] PKRU: 55555554
[ 3782.449662] Call Trace:
[ 3782.449663]  <TASK>
[ 3782.449665]  ? __pfx___wbinvd+0x10/0x10
[ 3782.449670]  on_each_cpu_cond_mask+0x28/0x50
[ 3782.449673]  wbinvd_on_all_cpus+0x29/0x40
[ 3782.449676]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3782.449684]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3782.449735]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3782.449789]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3782.449793]  change_protection+0xfc9/0x1200
[ 3782.449798]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.449803]  ? pick_eevdf+0x7c/0x1a0
[ 3782.449807]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.449810]  ? pick_next_task_fair+0x4f/0x490
[ 3782.449813]  change_prot_numa+0x5b/0xe0
[ 3782.449818]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.449820]  ? update_load_avg+0x84/0x780
[ 3782.449823]  ? __dequeue_entity+0x3cd/0x4a0
[ 3782.449827]  task_numa_work+0x3c5/0x9b0
[ 3782.449834]  task_work_run+0x64/0xa0
[ 3782.449838]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3782.449842]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3782.449894]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3782.449946]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.449949]  ? do_futex+0xc8/0x1d0
[ 3782.449951]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.449954]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.449957]  __x64_sys_ioctl+0xa0/0xf0
[ 3782.449962]  x64_sys_call+0x122e/0x2150
[ 3782.449964]  do_syscall_64+0x56/0x1e0
[ 3782.449968]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3782.449970] RIP: 0033:0x7f67bff03b4b
[ 3782.449972] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3782.449973] RSP: 002b:00007f58a77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3782.449976] RAX: ffffffffffffffda RBX: 0000563db65cf480 RCX: 00007f67bff03b4b
[ 3782.449977] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001de
[ 3782.449978] RBP: 0000563db65cf480 R08: 0000000000000000 R09: 0000000000000000
[ 3782.449980] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3782.449981] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3782.449986]  </TASK>
[ 3782.473578] watchdog: BUG: soft lockup - CPU#84 stuck for 126s! [qemu-system-x86:31416]
[ 3782.473582] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3782.473642] CPU: 84 UID: 0 PID: 31416 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3782.473646] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3782.473647] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3782.473648] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3782.473653] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3782.473655] RSP: 0018:ffffaab62b6078b8 EFLAGS: 00000202
[ 3782.473657] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3782.473658] RDX: 0000000000000001 RSI: ffff8f717fff9a40 RDI: ffff8f52889c6360
[ 3782.473660] RBP: ffffaab62b607918 R08: 0000000000000007 R09: ffff8f52889c68c0
[ 3782.473661] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3782.473663] R13: 0000000000000202 R14: ffff8f7180b32a40 R15: 0000000000000080
[ 3782.473664] FS:  00007f5846ffd640(0000) GS:ffff8f71ee336000(0000) knlGS:0000000000000000
[ 3782.473666] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3782.473668] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3782.473669] PKRU: 55555554
[ 3782.473670] Call Trace:
[ 3782.473672]  <TASK>
[ 3782.473675]  ? __pfx___wbinvd+0x10/0x10
[ 3782.473680]  on_each_cpu_cond_mask+0x28/0x50
[ 3782.473683]  wbinvd_on_all_cpus+0x29/0x40
[ 3782.473687]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3782.473695]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3782.473747]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3782.473801]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3782.473806]  change_protection+0xfc9/0x1200
[ 3782.473811]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.473814]  ? update_curr_dl_se+0x3b/0x1e0
[ 3782.473817]  ? dl_server_update+0x2e/0x40
[ 3782.473821]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.473825]  ? pick_next_task_fair+0x4f/0x490
[ 3782.473828]  change_prot_numa+0x5b/0xe0
[ 3782.473833]  ? sched_clock_cpu+0x14/0x1a0
[ 3782.473838]  task_numa_work+0x3c5/0x9b0
[ 3782.473846]  task_work_run+0x64/0xa0
[ 3782.473850]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3782.473854]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3782.473906]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3782.473958]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.473961]  ? do_futex+0xc8/0x1d0
[ 3782.473963]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.473965]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.473969]  __x64_sys_ioctl+0xa0/0xf0
[ 3782.473974]  x64_sys_call+0x122e/0x2150
[ 3782.473976]  do_syscall_64+0x56/0x1e0
[ 3782.473980]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3782.473982] RIP: 0033:0x7f67bff03b4b
[ 3782.473984] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3782.473985] RSP: 002b:00007f5846ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3782.473987] RAX: ffffffffffffffda RBX: 0000563db66aed00 RCX: 00007f67bff03b4b
[ 3782.473989] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000020a
[ 3782.473990] RBP: 0000563db66aed00 R08: 0000000000000000 R09: 0000000000000000
[ 3782.473991] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3782.473992] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3782.473997]  </TASK>
[ 3782.497578] watchdog: BUG: soft lockup - CPU#95 stuck for 126s! [qemu-system-x86:31343]
[ 3782.497583] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3782.497661] CPU: 95 UID: 0 PID: 31343 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3782.497666] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3782.497667] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3782.497669] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3782.497677] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3782.497680] RSP: 0018:ffffaab62b22f8b8 EFLAGS: 00000202
[ 3782.497682] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3782.497684] RDX: 0000000000000001 RSI: ffff8f717fff9ba0 RDI: ffff8f52889c6900
[ 3782.497686] RBP: ffffaab62b22f918 R08: 0000000000000007 R09: ffff8f52889c6960
[ 3782.497687] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3782.497688] R13: 0000000000000202 R14: ffff8f7180df2a40 R15: 0000000000000080
[ 3782.497690] FS:  00007f59a4ff9640(0000) GS:ffff8f71ee5f6000(0000) knlGS:0000000000000000
[ 3782.497692] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3782.497694] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3782.497695] PKRU: 55555554
[ 3782.497696] Call Trace:
[ 3782.497698]  <TASK>
[ 3782.497702]  ? __pfx___wbinvd+0x10/0x10
[ 3782.497709]  on_each_cpu_cond_mask+0x28/0x50
[ 3782.497712]  wbinvd_on_all_cpus+0x29/0x40
[ 3782.497718]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3782.497727]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3782.497787]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3782.497844]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3782.497850]  change_protection+0xfc9/0x1200
[ 3782.497856]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.497861]  ? pick_eevdf+0x7c/0x1a0
[ 3782.497866]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.497869]  ? pick_next_task_fair+0x4f/0x490
[ 3782.497873]  change_prot_numa+0x5b/0xe0
[ 3782.497878]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.497880]  ? dl_server_update+0x2e/0x40
[ 3782.497884]  ? update_curr+0x1d2/0x250
[ 3782.497888]  task_numa_work+0x3c5/0x9b0
[ 3782.497896]  task_work_run+0x64/0xa0
[ 3782.497901]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3782.497906]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3782.497960]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3782.498013]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.498016]  ? do_futex+0xc8/0x1d0
[ 3782.498018]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.498021]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.498024]  __x64_sys_ioctl+0xa0/0xf0
[ 3782.498030]  x64_sys_call+0x122e/0x2150
[ 3782.498033]  do_syscall_64+0x56/0x1e0
[ 3782.498038]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3782.498040] RIP: 0033:0x7f67bff03b4b
[ 3782.498044] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3782.498046] RSP: 002b:00007f59a4ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3782.498048] RAX: ffffffffffffffda RBX: 0000563db63cc4a0 RCX: 00007f67bff03b4b
[ 3782.498049] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000178
[ 3782.498051] RBP: 0000563db63cc4a0 R08: 0000000000000000 R09: 0000000000000000
[ 3782.498052] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3782.498054] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3782.498059]  </TASK>
[ 3782.545576] watchdog: BUG: soft lockup - CPU#115 stuck for 126s! [qemu-system-x86:31385]
[ 3782.545580] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3782.545641] CPU: 115 UID: 0 PID: 31385 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3782.545644] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3782.545645] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3782.545647] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3782.545651] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3782.545653] RSP: 0018:ffffaab62c2078b8 EFLAGS: 00000202
[ 3782.545655] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3782.545657] RDX: 0000000000000001 RSI: ffff8f717fff9e20 RDI: ffff8f72000ba950
[ 3782.545658] RBP: ffffaab62c207918 R08: 0000000000000007 R09: ffff8f72000ba010
[ 3782.545660] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3782.545661] R13: 0000000000000202 R14: ffff8f917ecf2a40 R15: 0000000000000080
[ 3782.545663] FS:  00007f58e4ff9640(0000) GS:ffff8f91ec4f6000(0000) knlGS:0000000000000000
[ 3782.545665] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3782.545666] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3782.545668] PKRU: 55555554
[ 3782.545669] Call Trace:
[ 3782.545670]  <TASK>
[ 3782.545673]  ? __pfx___wbinvd+0x10/0x10
[ 3782.545678]  on_each_cpu_cond_mask+0x28/0x50
[ 3782.545681]  wbinvd_on_all_cpus+0x29/0x40
[ 3782.545685]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3782.545693]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3782.545747]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3782.545803]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3782.545807]  change_protection+0xfc9/0x1200
[ 3782.545813]  ? update_cfs_group+0xb0/0xc0
[ 3782.545818]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.545822]  ? pick_next_task_fair+0x4f/0x490
[ 3782.545825]  change_prot_numa+0x5b/0xe0
[ 3782.545830]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.545832]  ? update_load_avg+0x84/0x780
[ 3782.545835]  ? __dequeue_entity+0x3cd/0x4a0
[ 3782.545839]  task_numa_work+0x3c5/0x9b0
[ 3782.545846]  task_work_run+0x64/0xa0
[ 3782.545851]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3782.545855]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3782.545908]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3782.545961]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.545964]  ? do_futex+0xc8/0x1d0
[ 3782.545966]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.545968]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.545972]  __x64_sys_ioctl+0xa0/0xf0
[ 3782.545977]  x64_sys_call+0x122e/0x2150
[ 3782.545979]  do_syscall_64+0x56/0x1e0
[ 3782.545983]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3782.545985] RIP: 0033:0x7f67bff03b4b
[ 3782.545987] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3782.545989] RSP: 002b:00007f58e4ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3782.545991] RAX: ffffffffffffffda RBX: 0000563db6574780 RCX: 00007f67bff03b4b
[ 3782.545992] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001cc
[ 3782.545993] RBP: 0000563db6574780 R08: 0000000000000000 R09: 0000000000000000
[ 3782.545995] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3782.545996] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3782.546001]  </TASK>
[ 3782.557576] watchdog: BUG: soft lockup - CPU#121 stuck for 126s! [qemu-system-x86:31230]
[ 3782.557580] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3782.557639] CPU: 121 UID: 0 PID: 31230 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3782.557643] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3782.557644] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3782.557645] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3782.557649] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3782.557651] RSP: 0018:ffffaab62abbb8b8 EFLAGS: 00000202
[ 3782.557653] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3782.557655] RDX: 0000000000000001 RSI: ffff8f717fff9ee0 RDI: ffff8f7207fa2f60
[ 3782.557656] RBP: ffffaab62abbb918 R08: 0000000000000007 R09: ffff8f7207fa2ab0
[ 3782.557658] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3782.557659] R13: 0000000000000202 R14: ffff8f917ee72a40 R15: 0000000000000080
[ 3782.557661] FS:  00007f5ba57fa640(0000) GS:ffff8f91ec676000(0000) knlGS:0000000000000000
[ 3782.557662] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3782.557664] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3782.557665] PKRU: 55555554
[ 3782.557666] Call Trace:
[ 3782.557668]  <TASK>
[ 3782.557671]  ? __pfx___wbinvd+0x10/0x10
[ 3782.557676]  on_each_cpu_cond_mask+0x28/0x50
[ 3782.557679]  wbinvd_on_all_cpus+0x29/0x40
[ 3782.557683]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3782.557691]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3782.557743]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3782.557799]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3782.557804]  change_protection+0xfc9/0x1200
[ 3782.557810]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.557813]  ? update_load_avg+0x84/0x780
[ 3782.557817]  ? write_ibpb+0x21/0x40
[ 3782.557821]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3782.557874]  change_prot_numa+0x5b/0xe0
[ 3782.557881]  task_numa_work+0x3c5/0x9b0
[ 3782.557888]  task_work_run+0x64/0xa0
[ 3782.557892]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3782.557896]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3782.557949]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3782.558002]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.558005]  ? do_futex+0xc8/0x1d0
[ 3782.558007]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.558009]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3782.558013]  __x64_sys_ioctl+0xa0/0xf0
[ 3782.558018]  x64_sys_call+0x122e/0x2150
[ 3782.558020]  do_syscall_64+0x56/0x1e0
[ 3782.558024]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3782.558026] RIP: 0033:0x7f67bff03b4b
[ 3782.558028] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3782.558030] RSP: 002b:00007f5ba57f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3782.558032] RAX: ffffffffffffffda RBX: 0000563db5f53b20 RCX: 00007f67bff03b4b
[ 3782.558033] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000096
[ 3782.558034] RBP: 0000563db5f53b20 R08: 0000000000000000 R09: 0000000000000000
[ 3782.558036] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3782.558037] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3782.558042]  </TASK>
[ 3786.373499] watchdog: BUG: soft lockup - CPU#51 stuck for 127s! [qemu-system-x86:31370]
[ 3786.373505] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3786.373573] CPU: 51 UID: 0 PID: 31370 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3786.373577] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3786.373578] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3786.373579] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3786.373586] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3786.373588] RSP: 0018:ffffaab62b4878b8 EFLAGS: 00000202
[ 3786.373590] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3786.373592] RDX: 0000000000000001 RSI: ffff8f717fff9620 RDI: ffff8f72000baf00
[ 3786.373593] RBP: ffffaab62b487918 R08: 0000000000000007 R09: ffff8f72000bade0
[ 3786.373594] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3786.373596] R13: 0000000000000202 R14: ffff8f917e4f2a40 R15: 0000000000000080
[ 3786.373597] FS:  00007f59257fa640(0000) GS:ffff8f91ebcf6000(0000) knlGS:0000000000000000
[ 3786.373599] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3786.373600] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3786.373602] PKRU: 55555554
[ 3786.373603] Call Trace:
[ 3786.373604]  <TASK>
[ 3786.373608]  ? __pfx___wbinvd+0x10/0x10
[ 3786.373615]  on_each_cpu_cond_mask+0x28/0x50
[ 3786.373618]  wbinvd_on_all_cpus+0x29/0x40
[ 3786.373622]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3786.373631]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3786.373684]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3786.373741]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3786.373746]  change_protection+0xfc9/0x1200
[ 3786.373753]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.373757]  ? update_load_avg+0x84/0x780
[ 3786.373761]  ? write_ibpb+0x21/0x40
[ 3786.373766]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3786.373819]  change_prot_numa+0x5b/0xe0
[ 3786.373824]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.373826]  ? update_load_avg+0x84/0x780
[ 3786.373829]  ? __dequeue_entity+0x3cd/0x4a0
[ 3786.373833]  task_numa_work+0x3c5/0x9b0
[ 3786.373840]  task_work_run+0x64/0xa0
[ 3786.373845]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3786.373850]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3786.373903]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3786.373955]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.373958]  ? do_futex+0xc8/0x1d0
[ 3786.373960]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.373963]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.373966]  __x64_sys_ioctl+0xa0/0xf0
[ 3786.373972]  x64_sys_call+0x122e/0x2150
[ 3786.373974]  do_syscall_64+0x56/0x1e0
[ 3786.373977]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3786.373979] RIP: 0033:0x7f67bff03b4b
[ 3786.373981] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3786.373983] RSP: 002b:00007f59257f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3786.373985] RAX: ffffffffffffffda RBX: 0000563db64dd830 RCX: 00007f67bff03b4b
[ 3786.373987] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001ae
[ 3786.373988] RBP: 0000563db64dd830 R08: 0000000000000000 R09: 0000000000000000
[ 3786.373989] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3786.373990] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3786.373995]  </TASK>
[ 3786.433497] watchdog: BUG: soft lockup - CPU#66 stuck for 127s! [qemu-system-x86:31354]
[ 3786.433502] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3786.433574] CPU: 66 UID: 0 PID: 31354 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3786.433578] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3786.433580] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3786.433581] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3786.433589] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3786.433591] RSP: 0018:ffffaab62b2878b8 EFLAGS: 00000202
[ 3786.433593] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3786.433594] RDX: 0000000000000001 RSI: ffff8f717fff9800 RDI: ffff8f52876581f0
[ 3786.433596] RBP: ffffaab62b287918 R08: 0000000000000007 R09: ffff8f5287658390
[ 3786.433598] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3786.433599] R13: 0000000000000202 R14: ffff8f71806b2a40 R15: 0000000000000080
[ 3786.433600] FS:  00007f59667fc640(0000) GS:ffff8f71edeb6000(0000) knlGS:0000000000000000
[ 3786.433602] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3786.433604] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3786.433605] PKRU: 55555554
[ 3786.433606] Call Trace:
[ 3786.433608]  <TASK>
[ 3786.433611]  ? __pfx___wbinvd+0x10/0x10
[ 3786.433619]  on_each_cpu_cond_mask+0x28/0x50
[ 3786.433622]  wbinvd_on_all_cpus+0x29/0x40
[ 3786.433627]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3786.433635]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3786.433689]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3786.433746]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3786.433752]  change_protection+0xfc9/0x1200
[ 3786.433759]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.433763]  ? update_load_avg+0x84/0x780
[ 3786.433768]  ? write_ibpb+0x21/0x40
[ 3786.433773]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3786.433826]  change_prot_numa+0x5b/0xe0
[ 3786.433833]  task_numa_work+0x3c5/0x9b0
[ 3786.433841]  task_work_run+0x64/0xa0
[ 3786.433846]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3786.433851]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3786.433904]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3786.433957]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.433960]  ? do_futex+0xc8/0x1d0
[ 3786.433962]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.433965]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.433968]  __x64_sys_ioctl+0xa0/0xf0
[ 3786.433974]  x64_sys_call+0x122e/0x2150
[ 3786.433976]  do_syscall_64+0x56/0x1e0
[ 3786.433980]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3786.433982] RIP: 0033:0x7f67bff03b4b
[ 3786.433985] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3786.433986] RSP: 002b:00007f59667fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3786.433989] RAX: ffffffffffffffda RBX: 0000563db643b550 RCX: 00007f67bff03b4b
[ 3786.433990] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000018e
[ 3786.433991] RBP: 0000563db643b550 R08: 0000000000000000 R09: 0000000000000000
[ 3786.433993] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3786.433994] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3786.433999]  </TASK>
[ 3786.453498] watchdog: BUG: soft lockup - CPU#75 stuck for 127s! [qemu-system-x86:31407]
[ 3786.453504] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3786.453573] CPU: 75 UID: 0 PID: 31407 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3786.453577] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3786.453579] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3786.453581] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3786.453589] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3786.453591] RSP: 0018:ffffaab62bf278b8 EFLAGS: 00000202
[ 3786.453593] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3786.453594] RDX: 0000000000000001 RSI: ffff8f717fff9920 RDI: ffff8f52876580a0
[ 3786.453596] RBP: ffffaab62bf27918 R08: 0000000000000007 R09: ffff8f5287658b80
[ 3786.453597] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3786.453599] R13: 0000000000000202 R14: ffff8f71808f2a40 R15: 0000000000000080
[ 3786.453600] FS:  00007f5867fff640(0000) GS:ffff8f71ee0f6000(0000) knlGS:0000000000000000
[ 3786.453602] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3786.453603] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3786.453604] PKRU: 55555554
[ 3786.453605] Call Trace:
[ 3786.453608]  <TASK>
[ 3786.453611]  ? __pfx___wbinvd+0x10/0x10
[ 3786.453619]  on_each_cpu_cond_mask+0x28/0x50
[ 3786.453622]  wbinvd_on_all_cpus+0x29/0x40
[ 3786.453627]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3786.453635]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3786.453688]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3786.453744]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3786.453751]  change_protection+0xfc9/0x1200
[ 3786.453757]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.453762]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.453764]  ? update_load_avg+0x84/0x780
[ 3786.453769]  ? write_ibpb+0x21/0x40
[ 3786.453774]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3786.453827]  change_prot_numa+0x5b/0xe0
[ 3786.453835]  task_numa_work+0x3c5/0x9b0
[ 3786.453842]  task_work_run+0x64/0xa0
[ 3786.453847]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3786.453853]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3786.453906]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3786.453958]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.453961]  ? do_futex+0xc8/0x1d0
[ 3786.453964]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.453966]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.453970]  __x64_sys_ioctl+0xa0/0xf0
[ 3786.453976]  x64_sys_call+0x122e/0x2150
[ 3786.453978]  do_syscall_64+0x56/0x1e0
[ 3786.453982]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3786.453984] RIP: 0033:0x7f67bff03b4b
[ 3786.453987] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3786.453988] RSP: 002b:00007f5867ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3786.453990] RAX: ffffffffffffffda RBX: 0000563db6654290 RCX: 00007f67bff03b4b
[ 3786.453992] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001f8
[ 3786.453993] RBP: 0000563db6654290 R08: 0000000000000000 R09: 0000000000000000
[ 3786.453995] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3786.453996] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3786.454001]  </TASK>
[ 3786.465497] watchdog: BUG: soft lockup - CPU#80 stuck for 127s! [qemu-system-x86:31301]
[ 3786.465502] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3786.465572] CPU: 80 UID: 0 PID: 31301 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3786.465576] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3786.465577] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3786.465579] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3786.465587] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3786.465589] RSP: 0018:ffffaab62af4f8b8 EFLAGS: 00000202
[ 3786.465591] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3786.465593] RDX: 0000000000000001 RSI: ffff8f717fff99c0 RDI: ffff8f5287658500
[ 3786.465594] RBP: ffffaab62af4f918 R08: 0000000000000007 R09: ffff8f52876581c0
[ 3786.465596] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3786.465597] R13: 0000000000000202 R14: ffff8f7180a32a40 R15: 0000000000000080
[ 3786.465599] FS:  00007f5a64ff9640(0000) GS:ffff8f71ee236000(0000) knlGS:0000000000000000
[ 3786.465601] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3786.465602] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3786.465604] PKRU: 55555554
[ 3786.465605] Call Trace:
[ 3786.465607]  <TASK>
[ 3786.465610]  ? __pfx___wbinvd+0x10/0x10
[ 3786.465618]  on_each_cpu_cond_mask+0x28/0x50
[ 3786.465621]  wbinvd_on_all_cpus+0x29/0x40
[ 3786.465626]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3786.465634]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3786.465687]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3786.465742]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3786.465748]  change_protection+0xfc9/0x1200
[ 3786.465754]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.465758]  ? update_curr_dl_se+0x3b/0x1e0
[ 3786.465763]  ? dl_server_update+0x2e/0x40
[ 3786.465767]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.465770]  ? pick_next_task_fair+0x4f/0x490
[ 3786.465775]  change_prot_numa+0x5b/0xe0
[ 3786.465782]  task_numa_work+0x3c5/0x9b0
[ 3786.465790]  task_work_run+0x64/0xa0
[ 3786.465795]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3786.465801]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3786.465853]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3786.465905]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.465908]  ? do_futex+0xc8/0x1d0
[ 3786.465911]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.465913]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.465917]  __x64_sys_ioctl+0xa0/0xf0
[ 3786.465922]  x64_sys_call+0x122e/0x2150
[ 3786.465924]  do_syscall_64+0x56/0x1e0
[ 3786.465930]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3786.465932] RIP: 0033:0x7f67bff03b4b
[ 3786.465935] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3786.465936] RSP: 002b:00007f5a64ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3786.465938] RAX: ffffffffffffffda RBX: 0000563db62230e0 RCX: 00007f67bff03b4b
[ 3786.465940] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000124
[ 3786.465941] RBP: 0000563db62230e0 R08: 0000000000000000 R09: 0000000000000000
[ 3786.465942] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3786.465943] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3786.465948]  </TASK>
[ 3786.469496] watchdog: BUG: soft lockup - CPU#82 stuck for 127s! [qemu-system-x86:31267]
[ 3786.469499] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3786.469556] CPU: 82 UID: 0 PID: 31267 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3786.469559] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3786.469560] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3786.469561] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3786.469564] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3786.469566] RSP: 0018:ffffaab62ad538b8 EFLAGS: 00000202
[ 3786.469568] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3786.469569] RDX: 0000000000000001 RSI: ffff8f717fff9a00 RDI: ffff8f5287658c00
[ 3786.469570] RBP: ffffaab62ad53918 R08: 0000000000000007 R09: ffff8f5287658750
[ 3786.469572] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3786.469573] R13: 0000000000000202 R14: ffff8f7180ab2a40 R15: 0000000000000080
[ 3786.469574] FS:  00007f5ae7fff640(0000) GS:ffff8f71ee2b6000(0000) knlGS:0000000000000000
[ 3786.469576] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3786.469577] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3786.469579] PKRU: 55555554
[ 3786.469579] Call Trace:
[ 3786.469580]  <TASK>
[ 3786.469582]  ? __pfx___wbinvd+0x10/0x10
[ 3786.469587]  on_each_cpu_cond_mask+0x28/0x50
[ 3786.469590]  wbinvd_on_all_cpus+0x29/0x40
[ 3786.469594]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3786.469602]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3786.469654]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3786.469709]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3786.469713]  change_protection+0xfc9/0x1200
[ 3786.469720]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.469722]  ? update_load_avg+0x84/0x780
[ 3786.469727]  ? write_ibpb+0x21/0x40
[ 3786.469730]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3786.469784]  change_prot_numa+0x5b/0xe0
[ 3786.469790]  task_numa_work+0x3c5/0x9b0
[ 3786.469798]  task_work_run+0x64/0xa0
[ 3786.469802]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3786.469806]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3786.469859]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3786.469912]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.469915]  ? do_futex+0xc8/0x1d0
[ 3786.469917]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.469919]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.469923]  __x64_sys_ioctl+0xa0/0xf0
[ 3786.469928]  x64_sys_call+0x122e/0x2150
[ 3786.469930]  do_syscall_64+0x56/0x1e0
[ 3786.469933]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3786.469935] RIP: 0033:0x7f67bff03b4b
[ 3786.469938] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3786.469940] RSP: 002b:00007f5ae7ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3786.469942] RAX: ffffffffffffffda RBX: 0000563db60c97b0 RCX: 00007f67bff03b4b
[ 3786.469943] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000e0
[ 3786.469944] RBP: 0000563db60c97b0 R08: 0000000000000000 R09: 0000000000000000
[ 3786.469945] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3786.469947] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3786.469952]  </TASK>
[ 3786.533496] watchdog: BUG: soft lockup - CPU#111 stuck for 127s! [qemu-system-x86:31376]
[ 3786.533501] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3786.533571] CPU: 111 UID: 0 PID: 31376 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3786.533576] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3786.533577] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3786.533579] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3786.533586] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3786.533588] RSP: 0018:ffffaab62b5b38b8 EFLAGS: 00000202
[ 3786.533591] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3786.533592] RDX: 0000000000000001 RSI: ffff8f717fff9da0 RDI: ffff8f7206c6ac70
[ 3786.533594] RBP: ffffaab62b5b3918 R08: 0000000000000007 R09: ffff8f7206c6adf0
[ 3786.533595] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3786.533596] R13: 0000000000000202 R14: ffff8f917ebf2a40 R15: 0000000000000080
[ 3786.533598] FS:  00007f5905ffb640(0000) GS:ffff8f91ec3f6000(0000) knlGS:0000000000000000
[ 3786.533599] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3786.533601] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3786.533603] PKRU: 55555554
[ 3786.533604] Call Trace:
[ 3786.533606]  <TASK>
[ 3786.533609]  ? __pfx___wbinvd+0x10/0x10
[ 3786.533616]  on_each_cpu_cond_mask+0x28/0x50
[ 3786.533620]  wbinvd_on_all_cpus+0x29/0x40
[ 3786.533624]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3786.533633]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3786.533686]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3786.533742]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3786.533749]  change_protection+0xfc9/0x1200
[ 3786.533755]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.533759]  ? update_curr_dl_se+0x3b/0x1e0
[ 3786.533763]  ? dl_server_update+0x2e/0x40
[ 3786.533767]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.533771]  ? pick_next_task_fair+0x4f/0x490
[ 3786.533775]  change_prot_numa+0x5b/0xe0
[ 3786.533782]  task_numa_work+0x3c5/0x9b0
[ 3786.533790]  task_work_run+0x64/0xa0
[ 3786.533795]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3786.533801]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3786.533854]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3786.533906]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.533909]  ? do_futex+0xc8/0x1d0
[ 3786.533911]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.533913]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3786.533917]  __x64_sys_ioctl+0xa0/0xf0
[ 3786.533923]  x64_sys_call+0x122e/0x2150
[ 3786.533925]  do_syscall_64+0x56/0x1e0
[ 3786.533931]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3786.533932] RIP: 0033:0x7f67bff03b4b
[ 3786.533935] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3786.533937] RSP: 002b:00007f5905ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3786.533939] RAX: ffffffffffffffda RBX: 0000563db6519e20 RCX: 00007f67bff03b4b
[ 3786.533941] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001ba
[ 3786.533942] RBP: 0000563db6519e20 R08: 0000000000000000 R09: 0000000000000000
[ 3786.533943] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3786.533944] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3786.533950]  </TASK>
[ 3790.329419] watchdog: BUG: soft lockup - CPU#31 stuck for 23s! [qemu-system-x86:30264]
[ 3790.329424] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3790.329508] CPU: 31 UID: 0 PID: 30264 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3790.329513] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3790.329514] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3790.329516] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3790.329523] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3790.329525] RSP: 0018:ffffaab62c8678b8 EFLAGS: 00000202
[ 3790.329527] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3790.329529] RDX: 0000000000000001 RSI: ffff8f717fff93a0 RDI: ffff8f52872d0f30
[ 3790.329530] RBP: ffffaab62c867918 R08: 0000000000000007 R09: ffff8f52872d07d0
[ 3790.329532] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3790.329533] R13: 0000000000000202 R14: ffff8f71805f2a40 R15: 0000000000000080
[ 3790.329534] FS:  00007fd8c37fe640(0000) GS:ffff8f71eddf6000(0000) knlGS:0000000000000000
[ 3790.329536] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3790.329538] CR2: 00007f68978171a0 CR3: 000000208b92101d CR4: 0000000000770ef0
[ 3790.329539] PKRU: 55555554
[ 3790.329540] Call Trace:
[ 3790.329542]  <TASK>
[ 3790.329546]  ? __pfx___wbinvd+0x10/0x10
[ 3790.329554]  on_each_cpu_cond_mask+0x28/0x50
[ 3790.329557]  wbinvd_on_all_cpus+0x29/0x40
[ 3790.329562]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3790.329571]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3790.329627]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3790.329684]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3790.329690]  change_protection+0xfc9/0x1200
[ 3790.329695]  ? kvm_tdp_mmu_map+0x47e/0x840 [kvm]
[ 3790.329751]  ? kvm_tdp_mmu_map+0x343/0x840 [kvm]
[ 3790.329800]  ? dl_scaled_delta_exec+0x3e/0xc0
[ 3790.329805]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3790.329808]  ? update_load_avg+0x84/0x780
[ 3790.329812]  ? dl_server_update+0x2e/0x40
[ 3790.329814]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3790.329819]  change_prot_numa+0x5b/0xe0
[ 3790.329824]  ? write_ibpb+0x21/0x40
[ 3790.329828]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3790.329831]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3790.329884]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3790.329888]  task_numa_work+0x3c5/0x9b0
[ 3790.329891]  ? __entry_text_end+0x101bf6/0x101bf9
[ 3790.329898]  task_work_run+0x64/0xa0
[ 3790.329903]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3790.329909]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3790.329962]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3790.330014]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3790.330016]  ? do_futex+0xc8/0x1d0
[ 3790.330019]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3790.330021]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3790.330025]  __x64_sys_ioctl+0xa0/0xf0
[ 3790.330030]  x64_sys_call+0x122e/0x2150
[ 3790.330032]  do_syscall_64+0x56/0x1e0
[ 3790.330036]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3790.330038] RIP: 0033:0x7fe43bd03b4b
[ 3790.330041] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3790.330043] RSP: 002b:00007fd8c37fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3790.330045] RAX: ffffffffffffffda RBX: 0000555f85946e10 RCX: 00007fe43bd03b4b
[ 3790.330047] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000048
[ 3790.330048] RBP: 0000555f85946e10 R08: 0000000000000000 R09: 0000000000000000
[ 3790.330049] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3790.330050] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3790.330055]  </TASK>
[ 3794.553334] watchdog: BUG: soft lockup - CPU#119 stuck for 100s! [qemu-system-x86:30243]
[ 3794.553340] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3794.553410] CPU: 119 UID: 0 PID: 30243 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3794.553414] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3794.553416] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3794.553417] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3794.553423] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3794.553425] RSP: 0018:ffffaab6285c78b8 EFLAGS: 00000202
[ 3794.553427] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3794.553429] RDX: 0000000000000001 RSI: ffff8f717fff9ea0 RDI: ffff8f7207fa2e90
[ 3794.553430] RBP: ffffaab6285c7918 R08: 0000000000000007 R09: ffff8f7207fa2310
[ 3794.553431] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3794.553433] R13: 0000000000000202 R14: ffff8f917edf2a40 R15: 0000000000000080
[ 3794.553434] FS:  00007fd92adfd640(0000) GS:ffff8f91ec5f6000(0000) knlGS:0000000000000000
[ 3794.553436] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3794.553437] CR2: 0000000000000000 CR3: 000000208b92101d CR4: 0000000000770ef0
[ 3794.553439] PKRU: 55555554
[ 3794.553440] Call Trace:
[ 3794.553441]  <TASK>
[ 3794.553444]  ? __pfx___wbinvd+0x10/0x10
[ 3794.553451]  on_each_cpu_cond_mask+0x28/0x50
[ 3794.553454]  wbinvd_on_all_cpus+0x29/0x40
[ 3794.553459]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3794.553469]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3794.553526]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3794.553581]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3794.553587]  change_protection+0xfc9/0x1200
[ 3794.553592]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3794.553596]  ? native_apic_msr_write+0x32/0x40
[ 3794.553600]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3794.553603]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3794.553605]  ? timerqueue_add+0x72/0xd0
[ 3794.553611]  ? enqueue_hrtimer+0x3c/0x90
[ 3794.553615]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3794.553617]  ? hrtimer_start_range_ns+0x137/0x430
[ 3794.553622]  change_prot_numa+0x5b/0xe0
[ 3794.553627]  ? kvm_lapic_reg_write+0x82/0x7d0 [kvm]
[ 3794.553684]  task_numa_work+0x3c5/0x9b0
[ 3794.553693]  task_work_run+0x64/0xa0
[ 3794.553698]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3794.553703]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3794.553757]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3794.553809]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3794.553811]  ? do_futex+0xc8/0x1d0
[ 3794.553814]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3794.553816]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3794.553819]  __x64_sys_ioctl+0xa0/0xf0
[ 3794.553825]  x64_sys_call+0x122e/0x2150
[ 3794.553827]  do_syscall_64+0x56/0x1e0
[ 3794.553832]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3794.553834] RIP: 0033:0x7fe43bd03b4b
[ 3794.553837] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3794.553839] RSP: 002b:00007fd92adfc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3794.553841] RAX: ffffffffffffffda RBX: 0000555f8587ce30 RCX: 00007fe43bd03b4b
[ 3794.553842] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000020
[ 3794.553844] RBP: 0000555f8587ce30 R08: 0000000000000000 R09: 0000000000000000
[ 3794.553845] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3794.553846] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3794.553851]  </TASK>
[ 3802.285179] watchdog: BUG: soft lockup - CPU#12 stuck for 149s! [qemu-system-x86:31256]
[ 3802.285184] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3802.285254] CPU: 12 UID: 0 PID: 31256 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3802.285259] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3802.285260] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3802.285261] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3802.285268] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3802.285271] RSP: 0018:ffffaab62acfb8b8 EFLAGS: 00000202
[ 3802.285273] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3802.285274] RDX: 0000000000000001 RSI: ffff8f717fff9140 RDI: ffff8f5280a32920
[ 3802.285275] RBP: ffffaab62acfb918 R08: 0000000000000007 R09: ffff8f5280a320d0
[ 3802.285277] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3802.285278] R13: 0000000000000202 R14: ffff8f7180132a40 R15: 0000000000000080
[ 3802.285280] FS:  00007f5b267fc640(0000) GS:ffff8f71ed936000(0000) knlGS:0000000000000000
[ 3802.285281] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3802.285283] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3802.285284] PKRU: 55555554
[ 3802.285285] Call Trace:
[ 3802.285287]  <TASK>
[ 3802.285290]  ? __pfx___wbinvd+0x10/0x10
[ 3802.285298]  on_each_cpu_cond_mask+0x28/0x50
[ 3802.285300]  wbinvd_on_all_cpus+0x29/0x40
[ 3802.285305]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3802.285314]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3802.285369]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3802.285425]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3802.285431]  change_protection+0xfc9/0x1200
[ 3802.285437]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3802.285442]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3802.285444]  ? update_load_avg+0x84/0x780
[ 3802.285449]  ? write_ibpb+0x21/0x40
[ 3802.285453]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3802.285507]  change_prot_numa+0x5b/0xe0
[ 3802.285514]  task_numa_work+0x3c5/0x9b0
[ 3802.285522]  task_work_run+0x64/0xa0
[ 3802.285527]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3802.285532]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3802.285585]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3802.285638]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3802.285640]  ? do_futex+0xc8/0x1d0
[ 3802.285643]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3802.285645]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3802.285649]  __x64_sys_ioctl+0xa0/0xf0
[ 3802.285654]  x64_sys_call+0x122e/0x2150
[ 3802.285657]  do_syscall_64+0x56/0x1e0
[ 3802.285660]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3802.285662] RIP: 0033:0x7f67bff03b4b
[ 3802.285665] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3802.285666] RSP: 002b:00007f5b267fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3802.285668] RAX: ffffffffffffffda RBX: 0000563db6059ff0 RCX: 00007f67bff03b4b
[ 3802.285670] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000ca
[ 3802.285671] RBP: 0000563db6059ff0 R08: 0000000000000000 R09: 0000000000000000
[ 3802.285672] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3802.285673] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3802.285679]  </TASK>
[ 3802.389176] watchdog: BUG: soft lockup - CPU#57 stuck for 149s! [qemu-system-x86:31333]
[ 3802.389181] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3802.389252] CPU: 57 UID: 0 PID: 31333 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3802.389256] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3802.389257] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3802.389259] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3802.389266] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3802.389268] RSP: 0018:ffffaab62b1df8b8 EFLAGS: 00000202
[ 3802.389271] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3802.389272] RDX: 0000000000000001 RSI: ffff8f717fff96e0 RDI: ffff8f72000babf0
[ 3802.389274] RBP: ffffaab62b1df918 R08: 0000000000000007 R09: ffff8f72000bab00
[ 3802.389276] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3802.389277] R13: 0000000000000202 R14: ffff8f917e672a40 R15: 0000000000000080
[ 3802.389279] FS:  00007f59c67fc640(0000) GS:ffff8f91ebe76000(0000) knlGS:0000000000000000
[ 3802.389281] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3802.389282] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3802.389284] PKRU: 55555554
[ 3802.389285] Call Trace:
[ 3802.389287]  <TASK>
[ 3802.389290]  ? __pfx___wbinvd+0x10/0x10
[ 3802.389298]  on_each_cpu_cond_mask+0x28/0x50
[ 3802.389301]  wbinvd_on_all_cpus+0x29/0x40
[ 3802.389306]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3802.389315]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3802.389369]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3802.389425]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3802.389431]  change_protection+0xfc9/0x1200
[ 3802.389437]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3802.389441]  ? update_curr_dl_se+0x3b/0x1e0
[ 3802.389446]  ? dl_server_update+0x2e/0x40
[ 3802.389450]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3802.389453]  ? pick_next_task_fair+0x4f/0x490
[ 3802.389457]  change_prot_numa+0x5b/0xe0
[ 3802.389462]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3802.389468]  task_numa_work+0x3c5/0x9b0
[ 3802.389476]  task_work_run+0x64/0xa0
[ 3802.389481]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3802.389486]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3802.389539]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3802.389591]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3802.389593]  ? do_futex+0xc8/0x1d0
[ 3802.389596]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3802.389598]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3802.389602]  __x64_sys_ioctl+0xa0/0xf0
[ 3802.389608]  x64_sys_call+0x122e/0x2150
[ 3802.389611]  do_syscall_64+0x56/0x1e0
[ 3802.389616]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3802.389618] RIP: 0033:0x7f67bff03b4b
[ 3802.389621] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3802.389623] RSP: 002b:00007f59c67fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3802.389625] RAX: ffffffffffffffda RBX: 0000563db63677d0 RCX: 00007f67bff03b4b
[ 3802.389626] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000164
[ 3802.389628] RBP: 0000563db63677d0 R08: 0000000000000000 R09: 0000000000000000
[ 3802.389629] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3802.389630] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3802.389635]  </TASK>
[ 3802.421175] watchdog: BUG: soft lockup - CPU#64 stuck for 149s! [qemu-system-x86:30221]
[ 3802.421180] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3802.421250] CPU: 64 UID: 0 PID: 30221 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3802.421254] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3802.421256] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3802.421257] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3802.421265] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3802.421267] RSP: 0000:ffffaab62c787a40 EFLAGS: 00000202
[ 3802.421269] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3802.421271] RDX: 0000000000000001 RSI: ffff8f717fff97c0 RDI: ffff8f5287658460
[ 3802.421272] RBP: ffffaab62c787aa0 R08: 0000000000000007 R09: ffff8f5287658f30
[ 3802.421274] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3802.421275] R13: 0000000000000202 R14: ffff8f7180632a40 R15: 0000000000000080
[ 3802.421277] FS:  00007fe43be09c80(0000) GS:ffff8f71ede36000(0000) knlGS:0000000000000000
[ 3802.421279] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3802.421280] CR2: 0000000000000000 CR3: 000000208b92101d CR4: 0000000000770ef0
[ 3802.421282] PKRU: 55555554
[ 3802.421283] Call Trace:
[ 3802.421285]  <TASK>
[ 3802.421288]  ? __pfx___wbinvd+0x10/0x10
[ 3802.421295]  on_each_cpu_cond_mask+0x28/0x50
[ 3802.421298]  wbinvd_on_all_cpus+0x29/0x40
[ 3802.421303]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3802.421311]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3802.421365]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3802.421421]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3802.421427]  change_protection+0xfc9/0x1200
[ 3802.421437]  ? sched_balance_rq+0x214/0xf80
[ 3802.421441]  change_prot_numa+0x5b/0xe0
[ 3802.421448]  task_numa_work+0x3c5/0x9b0
[ 3802.421456]  task_work_run+0x64/0xa0
[ 3802.421461]  irqentry_exit_to_user_mode+0x15d/0x170
[ 3802.421467]  irqentry_exit+0x3f/0x50
[ 3802.421470]  sysvec_apic_timer_interrupt+0x51/0x90
[ 3802.421474]  asm_sysvec_apic_timer_interrupt+0x1f/0x30
[ 3802.421477] RIP: 0033:0x555f731496f0
[ 3802.421480] Code: 5f 31 d2 31 f6 31 ff 45 31 c0 c3 0f 1f 80 00 00 00 00 8b 05 6a 71 07 01 85 c0 74 0a 48 8b 45 00 83 78 08 01 74 64 48 8b 43 20 <ba> 31 02 00 00 4c 89 fe 4c 89 e7 48 89 45 38 4c 8b 73 10 48 c7 43
[ 3802.421481] RSP: 002b:00007fff0a821250 EFLAGS: 00000246
[ 3802.421483] RAX: 0000000000000000 RBX: 0000555f86a813c0 RCX: 0000000000000000
[ 3802.421484] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
[ 3802.421486] RBP: 0000555f85541f10 R08: 0000000000000000 R09: 0000000000000000
[ 3802.421487] R10: 00007fe43c625000 R11: 00007fe43c625010 R12: 0000555f85541f18
[ 3802.421488] R13: 0000000000000001 R14: 0000555f741dfff0 R15: 0000555f7335b2af
[ 3802.421493]  </TASK>
[ 3802.481174] watchdog: BUG: soft lockup - CPU#87 stuck for 149s! [qemu-system-x86:31402]
[ 3802.481179] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3802.481249] CPU: 87 UID: 0 PID: 31402 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3802.481253] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3802.481254] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3802.481256] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3802.481264] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3802.481266] RSP: 0018:ffffaab62bf578b8 EFLAGS: 00000202
[ 3802.481269] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3802.481270] RDX: 0000000000000001 RSI: ffff8f717fff9aa0 RDI: ffff8f52889c6230
[ 3802.481272] RBP: ffffaab62bf57918 R08: 0000000000000007 R09: ffff8f52889c6420
[ 3802.481273] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3802.481274] R13: 0000000000000202 R14: ffff8f7180bf2a40 R15: 0000000000000080
[ 3802.481276] FS:  00007f5886ffd640(0000) GS:ffff8f71ee3f6000(0000) knlGS:0000000000000000
[ 3802.481278] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3802.481280] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3802.481281] PKRU: 55555554
[ 3802.481282] Call Trace:
[ 3802.481284]  <TASK>
[ 3802.481288]  ? __pfx___wbinvd+0x10/0x10
[ 3802.481295]  on_each_cpu_cond_mask+0x28/0x50
[ 3802.481299]  wbinvd_on_all_cpus+0x29/0x40
[ 3802.481303]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3802.481312]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3802.481365]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3802.481420]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3802.481427]  change_protection+0xfc9/0x1200
[ 3802.481433]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3802.481438]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3802.481441]  ? update_load_avg+0x84/0x780
[ 3802.481445]  ? write_ibpb+0x21/0x40
[ 3802.481450]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3802.481503]  change_prot_numa+0x5b/0xe0
[ 3802.481510]  task_numa_work+0x3c5/0x9b0
[ 3802.481518]  task_work_run+0x64/0xa0
[ 3802.481523]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3802.481528]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3802.481580]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3802.481632]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3802.481635]  ? do_futex+0xc8/0x1d0
[ 3802.481637]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3802.481640]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3802.481643]  __x64_sys_ioctl+0xa0/0xf0
[ 3802.481649]  x64_sys_call+0x122e/0x2150
[ 3802.481651]  do_syscall_64+0x56/0x1e0
[ 3802.481655]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3802.481657] RIP: 0033:0x7f67bff03b4b
[ 3802.481660] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3802.481661] RSP: 002b:00007f5886ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3802.481664] RAX: ffffffffffffffda RBX: 0000563db66207e0 RCX: 00007f67bff03b4b
[ 3802.481665] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001ee
[ 3802.481666] RBP: 0000563db66207e0 R08: 0000000000000000 R09: 0000000000000000
[ 3802.481667] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3802.481668] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3802.481674]  </TASK>
[ 3802.505173] watchdog: BUG: soft lockup - CPU#98 stuck for 149s! [qemu-system-x86:31373]
[ 3802.505178] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3802.505248] CPU: 98 UID: 0 PID: 31373 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3802.505252] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3802.505253] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3802.505255] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3802.505263] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3802.505265] RSP: 0018:ffffaab6274978b8 EFLAGS: 00000202
[ 3802.505267] RAX: 0000000000000055 RBX: 0000000000000001 RCX: 0000000000000011
[ 3802.505269] RDX: 0000000000000001 RSI: ffff8f7180b79c00 RDI: ffff8f7206c6a630
[ 3802.505271] RBP: ffffaab627497918 R08: 0000000000000055 R09: ffff8f7206c6add0
[ 3802.505272] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3802.505273] R13: 0000000000000202 R14: ffff8f917e8b2a40 R15: 0000000000000080
[ 3802.505275] FS:  00007f59077fe640(0000) GS:ffff8f91ec0b6000(0000) knlGS:0000000000000000
[ 3802.505277] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3802.505278] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3802.505280] PKRU: 55555554
[ 3802.505281] Call Trace:
[ 3802.505283]  <TASK>
[ 3802.505286]  ? __pfx___wbinvd+0x10/0x10
[ 3802.505294]  on_each_cpu_cond_mask+0x28/0x50
[ 3802.505297]  wbinvd_on_all_cpus+0x29/0x40
[ 3802.505302]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3802.505311]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3802.505364]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3802.505419]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3802.505425]  change_protection+0xfc9/0x1200
[ 3802.505432]  ? update_cfs_group+0xb0/0xc0
[ 3802.505438]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3802.505443]  ? pick_next_task_fair+0x4f/0x490
[ 3802.505446]  change_prot_numa+0x5b/0xe0
[ 3802.505451]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3802.505457]  task_numa_work+0x3c5/0x9b0
[ 3802.505464]  task_work_run+0x64/0xa0
[ 3802.505469]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3802.505475]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3802.505527]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3802.505579]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3802.505582]  ? do_futex+0xc8/0x1d0
[ 3802.505585]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3802.505587]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3802.505591]  __x64_sys_ioctl+0xa0/0xf0
[ 3802.505596]  x64_sys_call+0x122e/0x2150
[ 3802.505598]  do_syscall_64+0x56/0x1e0
[ 3802.505604]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3802.505606] RIP: 0033:0x7f67bff03b4b
[ 3802.505609] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3802.505610] RSP: 002b:00007f59077fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3802.505612] RAX: ffffffffffffffda RBX: 0000563db64fb700 RCX: 00007f67bff03b4b
[ 3802.505614] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001b4
[ 3802.505615] RBP: 0000563db64fb700 R08: 0000000000000000 R09: 0000000000000000
[ 3802.505616] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3802.505617] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3802.505622]  </TASK>
[ 3806.297097] watchdog: BUG: soft lockup - CPU#17 stuck for 152s! [qemu-system-x86:31404]
[ 3806.297102] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3806.297168] CPU: 17 UID: 0 PID: 31404 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3806.297172] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3806.297173] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3806.297175] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3806.297182] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3806.297184] RSP: 0018:ffffaab62bf3f8b8 EFLAGS: 00000202
[ 3806.297186] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3806.297187] RDX: 0000000000000001 RSI: ffff8f717fff91e0 RDI: ffff8f52872d0b00
[ 3806.297189] RBP: ffffaab62bf3f918 R08: 0000000000000007 R09: ffff8f52872d0850
[ 3806.297190] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3806.297191] R13: 0000000000000202 R14: ffff8f7180272a40 R15: 0000000000000080
[ 3806.297193] FS:  00007f5885ffb640(0000) GS:ffff8f71eda76000(0000) knlGS:0000000000000000
[ 3806.297194] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3806.297196] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3806.297197] PKRU: 55555554
[ 3806.297198] Call Trace:
[ 3806.297200]  <TASK>
[ 3806.297203]  ? __pfx___wbinvd+0x10/0x10
[ 3806.297210]  on_each_cpu_cond_mask+0x28/0x50
[ 3806.297213]  wbinvd_on_all_cpus+0x29/0x40
[ 3806.297218]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3806.297226]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3806.297279]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3806.297335]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3806.297341]  change_protection+0xfc9/0x1200
[ 3806.297346]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.297350]  ? update_curr_dl_se+0x3b/0x1e0
[ 3806.297355]  ? dl_server_update+0x2e/0x40
[ 3806.297359]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.297362]  ? pick_next_task_fair+0x4f/0x490
[ 3806.297366]  change_prot_numa+0x5b/0xe0
[ 3806.297371]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3806.297377]  task_numa_work+0x3c5/0x9b0
[ 3806.297384]  task_work_run+0x64/0xa0
[ 3806.297389]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3806.297394]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3806.297447]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3806.297500]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.297502]  ? do_futex+0xc8/0x1d0
[ 3806.297505]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.297507]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.297511]  __x64_sys_ioctl+0xa0/0xf0
[ 3806.297516]  x64_sys_call+0x122e/0x2150
[ 3806.297518]  do_syscall_64+0x56/0x1e0
[ 3806.297524]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3806.297526] RIP: 0033:0x7f67bff03b4b
[ 3806.297528] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3806.297530] RSP: 002b:00007f5885ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3806.297532] RAX: ffffffffffffffda RBX: 0000563db6636340 RCX: 00007f67bff03b4b
[ 3806.297533] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001f2
[ 3806.297534] RBP: 0000563db6636340 R08: 0000000000000000 R09: 0000000000000000
[ 3806.297536] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3806.297537] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3806.297542]  </TASK>
[ 3806.301097] watchdog: BUG: soft lockup - CPU#19 stuck for 152s! [qemu-system-x86:31326]
[ 3806.301102] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3806.301183] CPU: 19 UID: 0 PID: 31326 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3806.301188] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3806.301189] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3806.301190] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3806.301195] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3806.301197] RSP: 0018:ffffaab62b0338b8 EFLAGS: 00000202
[ 3806.301199] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3806.301201] RDX: 0000000000000001 RSI: ffff8f717fff9220 RDI: ffff8f52872d0a50
[ 3806.301202] RBP: ffffaab62b033918 R08: 0000000000000007 R09: ffff8f52872d0b70
[ 3806.301204] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3806.301205] R13: 0000000000000202 R14: ffff8f71802f2a40 R15: 0000000000000080
[ 3806.301207] FS:  00007f59e67fc640(0000) GS:ffff8f71edaf6000(0000) knlGS:0000000000000000
[ 3806.301209] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3806.301211] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3806.301213] PKRU: 55555554
[ 3806.301214] Call Trace:
[ 3806.301215]  <TASK>
[ 3806.301219]  ? __pfx___wbinvd+0x10/0x10
[ 3806.301225]  on_each_cpu_cond_mask+0x28/0x50
[ 3806.301228]  wbinvd_on_all_cpus+0x29/0x40
[ 3806.301233]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3806.301248]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3806.301326]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3806.301405]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3806.301410]  change_protection+0xfc9/0x1200
[ 3806.301415]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.301420]  ? update_curr_dl_se+0x3b/0x1e0
[ 3806.301423]  ? dl_server_update+0x2e/0x40
[ 3806.301428]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.301431]  ? pick_next_task_fair+0x4f/0x490
[ 3806.301436]  change_prot_numa+0x5b/0xe0
[ 3806.301442]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3806.301449]  task_numa_work+0x3c5/0x9b0
[ 3806.301461]  task_work_run+0x64/0xa0
[ 3806.301468]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3806.301474]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3806.301550]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3806.301624]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.301627]  ? do_futex+0xc8/0x1d0
[ 3806.301630]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.301633]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.301637]  __x64_sys_ioctl+0xa0/0xf0
[ 3806.301642]  x64_sys_call+0x122e/0x2150
[ 3806.301644]  do_syscall_64+0x56/0x1e0
[ 3806.301649]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3806.301651] RIP: 0033:0x7f67bff03b4b
[ 3806.301654] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3806.301657] RSP: 002b:00007f59e67fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3806.301659] RAX: ffffffffffffffda RBX: 0000563db6320030 RCX: 00007f67bff03b4b
[ 3806.301661] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000156
[ 3806.301662] RBP: 0000563db6320030 R08: 0000000000000000 R09: 0000000000000000
[ 3806.301664] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3806.301665] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3806.301671]  </TASK>
[ 3806.325096] watchdog: BUG: soft lockup - CPU#30 stuck for 152s! [qemu-system-x86:31241]
[ 3806.325101] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3806.325171] CPU: 30 UID: 0 PID: 31241 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3806.325175] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3806.325176] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3806.325178] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3806.325186] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3806.325188] RSP: 0018:ffffaab62ac838b8 EFLAGS: 00000202
[ 3806.325190] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3806.325192] RDX: 0000000000000001 RSI: ffff8f717fff9380 RDI: ffff8f52872d0570
[ 3806.325193] RBP: ffffaab62ac83918 R08: 0000000000000007 R09: ffff8f52872d0ae0
[ 3806.325195] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3806.325196] R13: 0000000000000202 R14: ffff8f71805b2a40 R15: 0000000000000080
[ 3806.325198] FS:  00007f5b66ffd640(0000) GS:ffff8f71eddb6000(0000) knlGS:0000000000000000
[ 3806.325199] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3806.325201] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3806.325202] PKRU: 55555554
[ 3806.325203] Call Trace:
[ 3806.325205]  <TASK>
[ 3806.325208]  ? __pfx___wbinvd+0x10/0x10
[ 3806.325216]  on_each_cpu_cond_mask+0x28/0x50
[ 3806.325219]  wbinvd_on_all_cpus+0x29/0x40
[ 3806.325224]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3806.325232]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3806.325285]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3806.325341]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3806.325347]  change_protection+0xfc9/0x1200
[ 3806.325353]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.325359]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.325361]  ? update_load_avg+0x84/0x780
[ 3806.325366]  ? write_ibpb+0x21/0x40
[ 3806.325371]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3806.325423]  change_prot_numa+0x5b/0xe0
[ 3806.325430]  task_numa_work+0x3c5/0x9b0
[ 3806.325438]  task_work_run+0x64/0xa0
[ 3806.325443]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3806.325448]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3806.325500]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3806.325552]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.325554]  ? do_futex+0xc8/0x1d0
[ 3806.325557]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.325559]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.325563]  __x64_sys_ioctl+0xa0/0xf0
[ 3806.325569]  x64_sys_call+0x122e/0x2150
[ 3806.325571]  do_syscall_64+0x56/0x1e0
[ 3806.325574]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3806.325576] RIP: 0033:0x7f67bff03b4b
[ 3806.325579] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3806.325580] RSP: 002b:00007f5b66ffc738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3806.325582] RAX: ffffffffffffffda RBX: 0000563db5fc29d0 RCX: 00007f67bff03b4b
[ 3806.325584] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000ac
[ 3806.325585] RBP: 0000563db5fc29d0 R08: 0000000000000000 R09: 0000000000000000
[ 3806.325586] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3806.325587] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3806.325592]  </TASK>
[ 3806.325594] watchdog: BUG: soft lockup - CPU#29 stuck for 126s! [kworker/u516:3:39511]
[ 3806.325596] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3806.325654] CPU: 29 UID: 0 PID: 39511 Comm: kworker/u516:3 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3806.325657] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3806.325658] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3806.325660] Workqueue: writeback wb_workfn (flush-253:1)
[ 3806.325666] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3806.325669] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3806.325671] RSP: 0018:ffffaab6926c35d8 EFLAGS: 00000202
[ 3806.325673] RAX: 0000000000000056 RBX: 0000000000000001 RCX: 0000000000000001
[ 3806.325674] RDX: 0000000000000001 RSI: ffff8f7180bb9360 RDI: ffff8f52872d07a0
[ 3806.325675] RBP: ffffaab6926c3638 R08: 0000000000000056 R09: ffff8f52872d0970
[ 3806.325677] R10: 0000000000000002 R11: 0000000000000002 R12: ffff8f7180570b00
[ 3806.325678] R13: ffff8f52872d0e00 R14: ffff8f7180572a40 R15: 0000000000000080
[ 3806.325679] FS:  0000000000000000(0000) GS:ffff8f71edd76000(0000) knlGS:0000000000000000
[ 3806.325681] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3806.325682] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3806.325684] PKRU: 55555554
[ 3806.325685] Call Trace:
[ 3806.325686]  <TASK>
[ 3806.325687]  ? __pfx_flush_tlb_func+0x10/0x10
[ 3806.325693]  on_each_cpu_cond_mask+0x28/0x50
[ 3806.325696]  native_flush_tlb_multi+0xec/0x140
[ 3806.325698]  ? __pte_offset_map_lock+0x9a/0x110
[ 3806.325701]  flush_tlb_mm_range+0x1d6/0x5d0
[ 3806.325705]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.325707]  ? page_vma_mapped_walk+0x7bb/0xac0
[ 3806.325711]  ptep_clear_flush+0x64/0x80
[ 3806.325714]  page_vma_mkclean_one.constprop.0+0x113/0x270
[ 3806.325719]  page_mkclean_one+0x8c/0xb0
[ 3806.325723]  __rmap_walk_file+0xe3/0x190
[ 3806.325727]  rmap_walk+0x49/0x70
[ 3806.325730]  folio_mkclean+0xb0/0xc0
[ 3806.325734]  ? __pfx_page_mkclean_one+0x10/0x10
[ 3806.325736]  ? __pfx_invalid_mkclean_vma+0x10/0x10
[ 3806.325739]  folio_clear_dirty_for_io+0x60/0x190
[ 3806.325745]  writeback_iter+0x10b/0x310
[ 3806.325748]  iomap_writepages+0x6d/0x990
[ 3806.325753]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.325755]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.325758]  ? mpt3sas_scsih_scsi_lookup_get+0x4f/0xe0 [mpt3sas]
[ 3806.325769]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.325774]  xfs_vm_writepages+0x88/0x100 [xfs]
[ 3806.325892]  do_writepages+0xc8/0x160
[ 3806.325896]  __writeback_single_inode+0x44/0x340
[ 3806.325900]  writeback_sb_inodes+0x249/0x540
[ 3806.325914]  __writeback_inodes_wb+0x56/0xf0
[ 3806.325918]  wb_writeback+0x192/0x300
[ 3806.325924]  wb_workfn+0x26a/0x410
[ 3806.325930]  process_one_work+0x19f/0x3e0
[ 3806.325934]  worker_thread+0x2ad/0x3c0
[ 3806.325937]  kthread+0x10b/0x220
[ 3806.325940]  ? __pfx_worker_thread+0x10/0x10
[ 3806.325942]  ? __pfx_kthread+0x10/0x10
[ 3806.325946]  ret_from_fork+0x8e/0x100
[ 3806.325949]  ? __pfx_kthread+0x10/0x10
[ 3806.325952]  ret_from_fork_asm+0x1a/0x30
[ 3806.325958]  </TASK>
[ 3806.349096] watchdog: BUG: soft lockup - CPU#40 stuck for 152s! [qemu-system-x86:31268]
[ 3806.349101] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3806.349170] CPU: 40 UID: 0 PID: 31268 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3806.349174] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3806.349175] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3806.349177] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3806.349185] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3806.349187] RSP: 0018:ffffaab62ad5b8b8 EFLAGS: 00000202
[ 3806.349189] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3806.349191] RDX: 0000000000000001 RSI: ffff8f717fff94c0 RDI: ffff8f72066e39e0
[ 3806.349192] RBP: ffffaab62ad5b918 R08: 0000000000000007 R09: ffff8f72066e3c40
[ 3806.349194] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3806.349195] R13: 0000000000000202 R14: ffff8f917e232a40 R15: 0000000000000080
[ 3806.349197] FS:  00007f5ae77fe640(0000) GS:ffff8f91eba36000(0000) knlGS:0000000000000000
[ 3806.349199] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3806.349200] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3806.349202] PKRU: 55555554
[ 3806.349203] Call Trace:
[ 3806.349205]  <TASK>
[ 3806.349208]  ? __pfx___wbinvd+0x10/0x10
[ 3806.349216]  on_each_cpu_cond_mask+0x28/0x50
[ 3806.349219]  wbinvd_on_all_cpus+0x29/0x40
[ 3806.349223]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3806.349232]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3806.349284]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3806.349340]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3806.349346]  change_protection+0xfc9/0x1200
[ 3806.349353]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.349357]  ? update_load_avg+0x84/0x780
[ 3806.349361]  ? write_ibpb+0x21/0x40
[ 3806.349366]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3806.349419]  change_prot_numa+0x5b/0xe0
[ 3806.349426]  task_numa_work+0x3c5/0x9b0
[ 3806.349433]  task_work_run+0x64/0xa0
[ 3806.349439]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3806.349444]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3806.349496]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3806.349548]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.349550]  ? do_futex+0xc8/0x1d0
[ 3806.349553]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.349555]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.349559]  __x64_sys_ioctl+0xa0/0xf0
[ 3806.349564]  x64_sys_call+0x122e/0x2150
[ 3806.349567]  do_syscall_64+0x56/0x1e0
[ 3806.349570]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3806.349572] RIP: 0033:0x7f67bff03b4b
[ 3806.349575] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3806.349577] RSP: 002b:00007f5ae77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3806.349579] RAX: ffffffffffffffda RBX: 0000563db60d3df0 RCX: 00007f67bff03b4b
[ 3806.349580] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000e2
[ 3806.349581] RBP: 0000563db60d3df0 R08: 0000000000000000 R09: 0000000000000000
[ 3806.349583] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3806.349584] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3806.349589]  </TASK>
[ 3806.385095] watchdog: BUG: soft lockup - CPU#55 stuck for 100s! [qemu-system-x86:30270]
[ 3806.385100] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3806.385171] CPU: 55 UID: 0 PID: 30270 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3806.385176] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3806.385177] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3806.385179] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3806.385186] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3806.385189] RSP: 0018:ffffaab62c8978b8 EFLAGS: 00000202
[ 3806.385191] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3806.385192] RDX: 0000000000000001 RSI: ffff8f717fff96a0 RDI: ffff8f72000ba410
[ 3806.385194] RBP: ffffaab62c897918 R08: 0000000000000007 R09: ffff8f72000ba7c0
[ 3806.385195] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3806.385197] R13: 0000000000000202 R14: ffff8f917e5f2a40 R15: 0000000000000080
[ 3806.385198] FS:  00007fd8a3fff640(0000) GS:ffff8f91ebdf6000(0000) knlGS:0000000000000000
[ 3806.385200] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3806.385202] CR2: 00007fb38e38e1a0 CR3: 000000208b92101d CR4: 0000000000770ef0
[ 3806.385203] PKRU: 55555554
[ 3806.385205] Call Trace:
[ 3806.385206]  <TASK>
[ 3806.385210]  ? __pfx___wbinvd+0x10/0x10
[ 3806.385217]  on_each_cpu_cond_mask+0x28/0x50
[ 3806.385220]  wbinvd_on_all_cpus+0x29/0x40
[ 3806.385224]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3806.385234]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3806.385293]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3806.385350]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3806.385356]  change_protection+0xfc9/0x1200
[ 3806.385361]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.385365]  ? native_apic_msr_write+0x32/0x40
[ 3806.385369]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.385372]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.385374]  ? timerqueue_add+0x72/0xd0
[ 3806.385380]  ? enqueue_hrtimer+0x3c/0x90
[ 3806.385384]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.385387]  ? hrtimer_start_range_ns+0x137/0x430
[ 3806.385392]  change_prot_numa+0x5b/0xe0
[ 3806.385397]  ? kvm_lapic_reg_write+0x82/0x7d0 [kvm]
[ 3806.385454]  task_numa_work+0x3c5/0x9b0
[ 3806.385462]  task_work_run+0x64/0xa0
[ 3806.385467]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3806.385472]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3806.385527]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3806.385580]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.385583]  ? do_futex+0xc8/0x1d0
[ 3806.385585]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.385587]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.385591]  __x64_sys_ioctl+0xa0/0xf0
[ 3806.385597]  x64_sys_call+0x122e/0x2150
[ 3806.385599]  do_syscall_64+0x56/0x1e0
[ 3806.385603]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3806.385605] RIP: 0033:0x7fe43bd03b4b
[ 3806.385608] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3806.385610] RSP: 002b:00007fd8a3ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3806.385612] RAX: ffffffffffffffda RBX: 0000555f859840f0 RCX: 00007fe43bd03b4b
[ 3806.385614] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000054
[ 3806.385615] RBP: 0000555f859840f0 R08: 0000000000000000 R09: 0000000000000000
[ 3806.385616] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3806.385618] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3806.385623]  </TASK>
[ 3806.393096] watchdog: BUG: soft lockup - CPU#60 stuck for 152s! [qemu-system-x86:31338]
[ 3806.393102] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3806.393192] CPU: 60 UID: 0 PID: 31338 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3806.393198] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3806.393199] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3806.393201] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3806.393209] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3806.393212] RSP: 0018:ffffaab62b2078b8 EFLAGS: 00000202
[ 3806.393214] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3806.393216] RDX: 0000000000000001 RSI: ffff8f717fff9740 RDI: ffff8f72000ba610
[ 3806.393218] RBP: ffffaab62b207918 R08: 0000000000000007 R09: ffff8f72000ba170
[ 3806.393220] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3806.393221] R13: 0000000000000202 R14: ffff8f917e732a40 R15: 0000000000000080
[ 3806.393223] FS:  00007f59a77fe640(0000) GS:ffff8f91ebf36000(0000) knlGS:0000000000000000
[ 3806.393226] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3806.393228] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3806.393229] PKRU: 55555554
[ 3806.393231] Call Trace:
[ 3806.393232]  <TASK>
[ 3806.393237]  ? __pfx___wbinvd+0x10/0x10
[ 3806.393245]  on_each_cpu_cond_mask+0x28/0x50
[ 3806.393249]  wbinvd_on_all_cpus+0x29/0x40
[ 3806.393254]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3806.393266]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3806.393349]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3806.393426]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3806.393433]  change_protection+0xfc9/0x1200
[ 3806.393440]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.393444]  ? update_curr_dl_se+0x3b/0x1e0
[ 3806.393449]  ? dl_server_update+0x2e/0x40
[ 3806.393454]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.393458]  ? pick_next_task_fair+0x4f/0x490
[ 3806.393462]  change_prot_numa+0x5b/0xe0
[ 3806.393470]  task_numa_work+0x3c5/0x9b0
[ 3806.393479]  task_work_run+0x64/0xa0
[ 3806.393484]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3806.393492]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3806.393570]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3806.393645]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.393648]  ? do_futex+0xc8/0x1d0
[ 3806.393651]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.393654]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.393658]  __x64_sys_ioctl+0xa0/0xf0
[ 3806.393664]  x64_sys_call+0x122e/0x2150
[ 3806.393667]  do_syscall_64+0x56/0x1e0
[ 3806.393672]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3806.393675] RIP: 0033:0x7f67bff03b4b
[ 3806.393678] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3806.393680] RSP: 002b:00007f59a77fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3806.393683] RAX: ffffffffffffffda RBX: 0000563db6399de0 RCX: 00007f67bff03b4b
[ 3806.393685] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000016e
[ 3806.393686] RBP: 0000563db6399de0 R08: 0000000000000000 R09: 0000000000000000
[ 3806.393688] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3806.393689] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3806.393695]  </TASK>
[ 3806.429094] watchdog: BUG: soft lockup - CPU#65 stuck for 153s! [qemu-system-x86:31406]
[ 3806.429100] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3806.429171] CPU: 65 UID: 0 PID: 31406 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3806.429175] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3806.429176] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3806.429178] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3806.429185] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3806.429187] RSP: 0018:ffffaab62bf2f8b8 EFLAGS: 00000202
[ 3806.429190] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3806.429191] RDX: 0000000000000001 RSI: ffff8f717fff97e0 RDI: ffff8f5287658e40
[ 3806.429193] RBP: ffffaab62bf2f918 R08: 0000000000000007 R09: ffff8f5287658ed0
[ 3806.429194] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3806.429195] R13: 0000000000000202 R14: ffff8f7180672a40 R15: 0000000000000080
[ 3806.429197] FS:  00007f5884ff9640(0000) GS:ffff8f71ede76000(0000) knlGS:0000000000000000
[ 3806.429199] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3806.429200] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3806.429202] PKRU: 55555554
[ 3806.429203] Call Trace:
[ 3806.429205]  <TASK>
[ 3806.429208]  ? __pfx___wbinvd+0x10/0x10
[ 3806.429216]  on_each_cpu_cond_mask+0x28/0x50
[ 3806.429219]  wbinvd_on_all_cpus+0x29/0x40
[ 3806.429224]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3806.429232]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3806.429285]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3806.429340]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3806.429346]  change_protection+0xfc9/0x1200
[ 3806.429352]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.429356]  ? update_curr_dl_se+0x3b/0x1e0
[ 3806.429360]  ? dl_server_update+0x2e/0x40
[ 3806.429364]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.429368]  ? pick_next_task_fair+0x4f/0x490
[ 3806.429372]  change_prot_numa+0x5b/0xe0
[ 3806.429377]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.429379]  ? update_load_avg+0x84/0x780
[ 3806.429382]  ? __dequeue_entity+0x3cd/0x4a0
[ 3806.429386]  task_numa_work+0x3c5/0x9b0
[ 3806.429393]  task_work_run+0x64/0xa0
[ 3806.429398]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3806.429403]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3806.429456]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3806.429507]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.429510]  ? do_futex+0xc8/0x1d0
[ 3806.429512]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.429515]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.429518]  __x64_sys_ioctl+0xa0/0xf0
[ 3806.429524]  x64_sys_call+0x122e/0x2150
[ 3806.429527]  do_syscall_64+0x56/0x1e0
[ 3806.429532]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3806.429534] RIP: 0033:0x7f67bff03b4b
[ 3806.429537] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3806.429539] RSP: 002b:00007f5884ff8738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3806.429541] RAX: ffffffffffffffda RBX: 0000563db664a2e0 RCX: 00007f67bff03b4b
[ 3806.429542] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001f6
[ 3806.429543] RBP: 0000563db664a2e0 R08: 0000000000000000 R09: 0000000000000000
[ 3806.429545] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3806.429546] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3806.429551]  </TASK>
[ 3806.437095] watchdog: BUG: soft lockup - CPU#68 stuck for 153s! [qemu-system-x86:31300]
[ 3806.437099] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3806.437183] CPU: 68 UID: 0 PID: 31300 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3806.437188] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3806.437189] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3806.437191] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3806.437198] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3806.437201] RSP: 0018:ffffaab62af478b8 EFLAGS: 00000202
[ 3806.437204] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3806.437206] RDX: 0000000000000001 RSI: ffff8f717fff9840 RDI: ffff8f5287658670
[ 3806.437208] RBP: ffffaab62af47918 R08: 0000000000000007 R09: ffff8f5287658210
[ 3806.437211] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3806.437213] R13: 0000000000000202 R14: ffff8f7180732a40 R15: 0000000000000080
[ 3806.437216] FS:  00007f5a657fa640(0000) GS:ffff8f71edf36000(0000) knlGS:0000000000000000
[ 3806.437218] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3806.437221] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3806.437223] PKRU: 55555554
[ 3806.437225] Call Trace:
[ 3806.437226]  <TASK>
[ 3806.437230]  ? __pfx___wbinvd+0x10/0x10
[ 3806.437239]  on_each_cpu_cond_mask+0x28/0x50
[ 3806.437244]  wbinvd_on_all_cpus+0x29/0x40
[ 3806.437249]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3806.437265]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3806.437375]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3806.437460]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3806.437466]  change_protection+0xfc9/0x1200
[ 3806.437471]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.437476]  ? pick_eevdf+0x7c/0x1a0
[ 3806.437480]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.437484]  ? pick_next_task_fair+0x4f/0x490
[ 3806.437488]  change_prot_numa+0x5b/0xe0
[ 3806.437493]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3806.437499]  task_numa_work+0x3c5/0x9b0
[ 3806.437508]  task_work_run+0x64/0xa0
[ 3806.437512]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3806.437518]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3806.437597]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3806.437673]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.437676]  ? do_futex+0xc8/0x1d0
[ 3806.437679]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.437681]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.437685]  __x64_sys_ioctl+0xa0/0xf0
[ 3806.437690]  x64_sys_call+0x122e/0x2150
[ 3806.437693]  do_syscall_64+0x56/0x1e0
[ 3806.437697]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3806.437700] RIP: 0033:0x7f67bff03b4b
[ 3806.437703] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3806.437705] RSP: 002b:00007f5a657f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3806.437708] RAX: ffffffffffffffda RBX: 0000563db62190f0 RCX: 00007f67bff03b4b
[ 3806.437709] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000122
[ 3806.437711] RBP: 0000563db62190f0 R08: 0000000000000000 R09: 0000000000000000
[ 3806.437712] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3806.437714] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3806.437720]  </TASK>
[ 3806.445094] watchdog: BUG: soft lockup - CPU#71 stuck for 153s! [qemu-system-x86:31278]
[ 3806.445096] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3806.445153] CPU: 71 UID: 0 PID: 31278 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3806.445156] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3806.445157] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3806.445158] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3806.445161] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3806.445163] RSP: 0018:ffffaab62ae8b8b8 EFLAGS: 00000202
[ 3806.445165] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3806.445166] RDX: 0000000000000001 RSI: ffff8f717fff98a0 RDI: ffff8f5287658880
[ 3806.445167] RBP: ffffaab62ae8b918 R08: 0000000000000007 R09: ffff8f52876588a0
[ 3806.445169] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3806.445170] R13: 0000000000000202 R14: ffff8f71807f2a40 R15: 0000000000000080
[ 3806.445171] FS:  00007f5ac5ffb640(0000) GS:ffff8f71edff6000(0000) knlGS:0000000000000000
[ 3806.445173] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3806.445174] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3806.445176] PKRU: 55555554
[ 3806.445176] Call Trace:
[ 3806.445178]  <TASK>
[ 3806.445179]  ? __pfx___wbinvd+0x10/0x10
[ 3806.445184]  on_each_cpu_cond_mask+0x28/0x50
[ 3806.445187]  wbinvd_on_all_cpus+0x29/0x40
[ 3806.445191]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3806.445198]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3806.445249]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3806.445304]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3806.445308]  change_protection+0xfc9/0x1200
[ 3806.445313]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.445317]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.445319]  ? update_load_avg+0x84/0x780
[ 3806.445323]  ? write_ibpb+0x21/0x40
[ 3806.445326]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3806.445378]  change_prot_numa+0x5b/0xe0
[ 3806.445385]  task_numa_work+0x3c5/0x9b0
[ 3806.445392]  task_work_run+0x64/0xa0
[ 3806.445396]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3806.445400]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3806.445452]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3806.445504]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.445506]  ? do_futex+0xc8/0x1d0
[ 3806.445509]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.445511]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.445515]  __x64_sys_ioctl+0xa0/0xf0
[ 3806.445519]  x64_sys_call+0x122e/0x2150
[ 3806.445521]  do_syscall_64+0x56/0x1e0
[ 3806.445525]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3806.445527] RIP: 0033:0x7f67bff03b4b
[ 3806.445529] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3806.445531] RSP: 002b:00007f5ac5ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3806.445533] RAX: ffffffffffffffda RBX: 0000563db61390c0 RCX: 00007f67bff03b4b
[ 3806.445534] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000f6
[ 3806.445535] RBP: 0000563db61390c0 R08: 0000000000000000 R09: 0000000000000000
[ 3806.445536] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3806.445538] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3806.445543]  </TASK>
[ 3806.457094] watchdog: BUG: soft lockup - CPU#77 stuck for 153s! [qemu-system-x86:31293]
[ 3806.457099] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3806.457170] CPU: 77 UID: 0 PID: 31293 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3806.457175] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3806.457176] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3806.457178] RIP: 0010:smp_call_function_many_cond+0x2d4/0x4a0
[ 3806.457185] Code: d0 e8 b0 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00
[ 3806.457188] RSP: 0018:ffffaab62af0f8b8 EFLAGS: 00000202
[ 3806.457190] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000001
[ 3806.457191] RDX: 0000000000000001 RSI: ffff8f717fff9960 RDI: ffff8f5287658b10
[ 3806.457193] RBP: ffffaab62af0f918 R08: 0000000000000007 R09: ffff8f52876589e0
[ 3806.457194] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3806.457195] R13: 0000000000000202 R14: ffff8f7180972a40 R15: 0000000000000080
[ 3806.457197] FS:  00007f5a857fa640(0000) GS:ffff8f71ee176000(0000) knlGS:0000000000000000
[ 3806.457199] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3806.457200] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3806.457202] PKRU: 55555554
[ 3806.457203] Call Trace:
[ 3806.457205]  <TASK>
[ 3806.457209]  ? __pfx___wbinvd+0x10/0x10
[ 3806.457216]  on_each_cpu_cond_mask+0x28/0x50
[ 3806.457220]  wbinvd_on_all_cpus+0x29/0x40
[ 3806.457224]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3806.457233]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3806.457287]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3806.457343]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3806.457350]  change_protection+0xfc9/0x1200
[ 3806.457355]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.457361]  ? pick_eevdf+0x7c/0x1a0
[ 3806.457366]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.457369]  ? pick_next_task_fair+0x4f/0x490
[ 3806.457373]  change_prot_numa+0x5b/0xe0
[ 3806.457378]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.457380]  ? update_load_avg+0x84/0x780
[ 3806.457384]  task_numa_work+0x3c5/0x9b0
[ 3806.457392]  task_work_run+0x64/0xa0
[ 3806.457397]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3806.457402]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3806.457455]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3806.457508]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.457511]  ? do_futex+0xc8/0x1d0
[ 3806.457513]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.457515]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.457519]  __x64_sys_ioctl+0xa0/0xf0
[ 3806.457525]  x64_sys_call+0x122e/0x2150
[ 3806.457527]  do_syscall_64+0x56/0x1e0
[ 3806.457532]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3806.457535] RIP: 0033:0x7f67bff03b4b
[ 3806.457538] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3806.457540] RSP: 002b:00007f5a857f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3806.457542] RAX: ffffffffffffffda RBX: 0000563db61d1ba0 RCX: 00007f67bff03b4b
[ 3806.457543] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000114
[ 3806.457544] RBP: 0000563db61d1ba0 R08: 0000000000000000 R09: 0000000000000000
[ 3806.457546] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3806.457547] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3806.457552]  </TASK>
[ 3806.457553] watchdog: BUG: soft lockup - CPU#76 stuck for 153s! [qemu-system-x86:31260]
[ 3806.457555] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3806.457612] CPU: 76 UID: 0 PID: 31260 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3806.457616] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3806.457617] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3806.457618] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3806.457621] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3806.457623] RSP: 0018:ffffaab62ad1b8b8 EFLAGS: 00000202
[ 3806.457625] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3806.457626] RDX: 0000000000000001 RSI: ffff8f717fff9940 RDI: ffff8f5287658010
[ 3806.457627] RBP: ffffaab62ad1b918 R08: 0000000000000007 R09: ffff8f52876589f0
[ 3806.457629] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3806.457630] R13: 0000000000000202 R14: ffff8f7180932a40 R15: 0000000000000080
[ 3806.457631] FS:  00007f5b07fff640(0000) GS:ffff8f71ee136000(0000) knlGS:0000000000000000
[ 3806.457633] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3806.457634] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3806.457636] PKRU: 55555554
[ 3806.457636] Call Trace:
[ 3806.457638]  <TASK>
[ 3806.457640]  ? __pfx___wbinvd+0x10/0x10
[ 3806.457645]  on_each_cpu_cond_mask+0x28/0x50
[ 3806.457648]  wbinvd_on_all_cpus+0x29/0x40
[ 3806.457651]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3806.457659]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3806.457712]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3806.457768]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3806.457772]  change_protection+0xfc9/0x1200
[ 3806.457777]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.457781]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.457783]  ? update_load_avg+0x84/0x780
[ 3806.457787]  ? write_ibpb+0x21/0x40
[ 3806.457791]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3806.457844]  change_prot_numa+0x5b/0xe0
[ 3806.457850]  task_numa_work+0x3c5/0x9b0
[ 3806.457858]  task_work_run+0x64/0xa0
[ 3806.457862]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3806.457866]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3806.457919]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3806.457972]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.457975]  ? do_futex+0xc8/0x1d0
[ 3806.457977]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.457979]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.457983]  __x64_sys_ioctl+0xa0/0xf0
[ 3806.457988]  x64_sys_call+0x122e/0x2150
[ 3806.457990]  do_syscall_64+0x56/0x1e0
[ 3806.457994]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3806.457996] RIP: 0033:0x7f67bff03b4b
[ 3806.457997] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3806.458000] RSP: 002b:00007f5b07ffe738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3806.458002] RAX: ffffffffffffffda RBX: 0000563db60831d0 RCX: 00007f67bff03b4b
[ 3806.458003] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000000d2
[ 3806.458004] RBP: 0000563db60831d0 R08: 0000000000000000 R09: 0000000000000000
[ 3806.458006] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3806.458007] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3806.458012]  </TASK>
[ 3806.461093] watchdog: BUG: soft lockup - CPU#79 stuck for 153s! [qemu-system-x86:31405]
[ 3806.461095] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3806.461152] CPU: 79 UID: 0 PID: 31405 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3806.461156] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3806.461156] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3806.461158] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3806.461161] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3806.461163] RSP: 0018:ffffaab62bf378b8 EFLAGS: 00000202
[ 3806.461165] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3806.461166] RDX: 0000000000000001 RSI: ffff8f717fff99a0 RDI: ffff8f5287658600
[ 3806.461167] RBP: ffffaab62bf37918 R08: 0000000000000007 R09: ffff8f5287658dc0
[ 3806.461169] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3806.461170] R13: 0000000000000202 R14: ffff8f71809f2a40 R15: 0000000000000080
[ 3806.461171] FS:  00007f58857fa640(0000) GS:ffff8f71ee1f6000(0000) knlGS:0000000000000000
[ 3806.461173] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3806.461174] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3806.461176] PKRU: 55555554
[ 3806.461176] Call Trace:
[ 3806.461177]  <TASK>
[ 3806.461179]  ? __pfx___wbinvd+0x10/0x10
[ 3806.461184]  on_each_cpu_cond_mask+0x28/0x50
[ 3806.461187]  wbinvd_on_all_cpus+0x29/0x40
[ 3806.461190]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3806.461198]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3806.461251]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3806.461306]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3806.461310]  change_protection+0xfc9/0x1200
[ 3806.461315]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.461318]  ? update_curr_dl_se+0x3b/0x1e0
[ 3806.461323]  ? dl_server_update+0x2e/0x40
[ 3806.461327]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.461330]  ? pick_next_task_fair+0x4f/0x490
[ 3806.461333]  change_prot_numa+0x5b/0xe0
[ 3806.461338]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.461340]  ? update_load_avg+0x84/0x780
[ 3806.461343]  ? __dequeue_entity+0x3cd/0x4a0
[ 3806.461347]  task_numa_work+0x3c5/0x9b0
[ 3806.461355]  task_work_run+0x64/0xa0
[ 3806.461359]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3806.461363]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3806.461416]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3806.461468]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.461471]  ? do_futex+0xc8/0x1d0
[ 3806.461473]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.461475]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.461479]  __x64_sys_ioctl+0xa0/0xf0
[ 3806.461484]  x64_sys_call+0x122e/0x2150
[ 3806.461486]  do_syscall_64+0x56/0x1e0
[ 3806.461490]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3806.461492] RIP: 0033:0x7f67bff03b4b
[ 3806.461494] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3806.461496] RSP: 002b:00007f58857f9738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3806.461498] RAX: ffffffffffffffda RBX: 0000563db66402f0 RCX: 00007f67bff03b4b
[ 3806.461499] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001f4
[ 3806.461500] RBP: 0000563db66402f0 R08: 0000000000000000 R09: 0000000000000000
[ 3806.461502] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3806.461503] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3806.461508]  </TASK>
[ 3806.461509] watchdog: BUG: soft lockup - CPU#78 stuck for 153s! [qemu-system-x86:31355]
[ 3806.461512] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3806.461568] CPU: 78 UID: 0 PID: 31355 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3806.461571] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3806.461572] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3806.461573] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3806.461576] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3806.461578] RSP: 0018:ffffaab62b28f8b8 EFLAGS: 00000202
[ 3806.461579] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3806.461581] RDX: 0000000000000001 RSI: ffff8f717fff9980 RDI: ffff8f5287658f10
[ 3806.461582] RBP: ffffaab62b28f918 R08: 0000000000000007 R09: ffff8f5287658d90
[ 3806.461583] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3806.461584] R13: 0000000000000202 R14: ffff8f71809b2a40 R15: 0000000000000080
[ 3806.461586] FS:  00007f5965ffb640(0000) GS:ffff8f71ee1b6000(0000) knlGS:0000000000000000
[ 3806.461588] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3806.461589] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3806.461591] PKRU: 55555554
[ 3806.461592] Call Trace:
[ 3806.461593]  <TASK>
[ 3806.461594]  ? __pfx___wbinvd+0x10/0x10
[ 3806.461599]  on_each_cpu_cond_mask+0x28/0x50
[ 3806.461602]  wbinvd_on_all_cpus+0x29/0x40
[ 3806.461606]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3806.461614]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3806.461665]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3806.461719]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3806.461724]  change_protection+0xfc9/0x1200
[ 3806.461728]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.461732]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.461735]  ? update_load_avg+0x84/0x780
[ 3806.461739]  ? write_ibpb+0x21/0x40
[ 3806.461742]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3806.461794]  change_prot_numa+0x5b/0xe0
[ 3806.461801]  task_numa_work+0x3c5/0x9b0
[ 3806.461808]  task_work_run+0x64/0xa0
[ 3806.461813]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3806.461817]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3806.461869]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3806.461921]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.461923]  ? do_futex+0xc8/0x1d0
[ 3806.461925]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.461928]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.461931]  __x64_sys_ioctl+0xa0/0xf0
[ 3806.461936]  x64_sys_call+0x122e/0x2150
[ 3806.461938]  do_syscall_64+0x56/0x1e0
[ 3806.461942]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3806.461944] RIP: 0033:0x7f67bff03b4b
[ 3806.461946] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3806.461948] RSP: 002b:00007f5965ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3806.461950] RAX: ffffffffffffffda RBX: 0000563db64454a0 RCX: 00007f67bff03b4b
[ 3806.461951] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000190
[ 3806.461953] RBP: 0000563db64454a0 R08: 0000000000000000 R09: 0000000000000000
[ 3806.461954] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3806.461955] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3806.461960]  </TASK>
[ 3806.485093] watchdog: BUG: soft lockup - CPU#90 stuck for 153s! [qemu-system-x86:31229]
[ 3806.485098] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3806.485177] CPU: 90 UID: 0 PID: 31229 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3806.485182] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3806.485183] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3806.485185] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3806.485189] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3806.485192] RSP: 0018:ffffaab62abb38b8 EFLAGS: 00000202
[ 3806.485194] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3806.485196] RDX: 0000000000000001 RSI: ffff8f717fff9b00 RDI: ffff8f52889c6c20
[ 3806.485198] RBP: ffffaab62abb3918 R08: 0000000000000007 R09: ffff8f52889c6d70
[ 3806.485200] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3806.485201] R13: 0000000000000202 R14: ffff8f7180cb2a40 R15: 0000000000000080
[ 3806.485203] FS:  00007f5ba5ffb640(0000) GS:ffff8f71ee4b6000(0000) knlGS:0000000000000000
[ 3806.485205] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3806.485207] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3806.485209] PKRU: 55555554
[ 3806.485210] Call Trace:
[ 3806.485213]  <TASK>
[ 3806.485216]  ? __pfx___wbinvd+0x10/0x10
[ 3806.485222]  on_each_cpu_cond_mask+0x28/0x50
[ 3806.485226]  wbinvd_on_all_cpus+0x29/0x40
[ 3806.485230]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3806.485242]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3806.485322]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3806.485401]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3806.485406]  change_protection+0xfc9/0x1200
[ 3806.485411]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.485415]  ? update_curr_dl_se+0x3b/0x1e0
[ 3806.485420]  ? dl_server_update+0x2e/0x40
[ 3806.485425]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.485429]  ? pick_next_task_fair+0x4f/0x490
[ 3806.485433]  change_prot_numa+0x5b/0xe0
[ 3806.485438]  ? __x2apic_send_IPI_dest+0x30/0x40
[ 3806.485444]  task_numa_work+0x3c5/0x9b0
[ 3806.485453]  task_work_run+0x64/0xa0
[ 3806.485461]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3806.485466]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3806.485539]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3806.485613]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.485616]  ? do_futex+0xc8/0x1d0
[ 3806.485619]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.485621]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.485625]  __x64_sys_ioctl+0xa0/0xf0
[ 3806.485631]  x64_sys_call+0x122e/0x2150
[ 3806.485633]  do_syscall_64+0x56/0x1e0
[ 3806.485637]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3806.485640] RIP: 0033:0x7f67bff03b4b
[ 3806.485643] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3806.485645] RSP: 002b:00007f5ba5ffa738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3806.485647] RAX: ffffffffffffffda RBX: 0000563db5f493b0 RCX: 00007f67bff03b4b
[ 3806.485649] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000094
[ 3806.485651] RBP: 0000563db5f493b0 R08: 0000000000000000 R09: 0000000000000000
[ 3806.485652] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3806.485654] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3806.485660]  </TASK>
[ 3806.497092] watchdog: BUG: soft lockup - CPU#94 stuck for 153s! [qemu-system-x86:31408]
[ 3806.497094] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3806.497150] CPU: 94 UID: 0 PID: 31408 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3806.497153] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3806.497154] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3806.497155] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3806.497158] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3806.497160] RSP: 0018:ffffaab6270878b8 EFLAGS: 00000202
[ 3806.497162] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3806.497163] RDX: 0000000000000001 RSI: ffff8f717fff9b80 RDI: ffff8f52889c6630
[ 3806.497164] RBP: ffffaab627087918 R08: 0000000000000007 R09: ffff8f52889c6dd0
[ 3806.497165] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3806.497166] R13: 0000000000000202 R14: ffff8f7180db2a40 R15: 0000000000000080
[ 3806.497168] FS:  00007f58677fe640(0000) GS:ffff8f71ee5b6000(0000) knlGS:0000000000000000
[ 3806.497169] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3806.497171] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3806.497172] PKRU: 55555554
[ 3806.497173] Call Trace:
[ 3806.497174]  <TASK>
[ 3806.497176]  ? __pfx___wbinvd+0x10/0x10
[ 3806.497181]  on_each_cpu_cond_mask+0x28/0x50
[ 3806.497183]  wbinvd_on_all_cpus+0x29/0x40
[ 3806.497187]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3806.497195]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3806.497246]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3806.497302]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3806.497306]  change_protection+0xfc9/0x1200
[ 3806.497312]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.497315]  ? update_load_avg+0x84/0x780
[ 3806.497319]  ? write_ibpb+0x21/0x40
[ 3806.497322]  ? kvm_arch_vcpu_load+0xb8/0x2a0 [kvm]
[ 3806.497375]  change_prot_numa+0x5b/0xe0
[ 3806.497382]  task_numa_work+0x3c5/0x9b0
[ 3806.497389]  task_work_run+0x64/0xa0
[ 3806.497393]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3806.497397]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3806.497450]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3806.497503]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.497505]  ? do_futex+0xc8/0x1d0
[ 3806.497508]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.497510]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.497514]  __x64_sys_ioctl+0xa0/0xf0
[ 3806.497518]  x64_sys_call+0x122e/0x2150
[ 3806.497520]  do_syscall_64+0x56/0x1e0
[ 3806.497524]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3806.497526] RIP: 0033:0x7f67bff03b4b
[ 3806.497528] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3806.497530] RSP: 002b:00007f58677fd738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3806.497532] RAX: ffffffffffffffda RBX: 0000563db665ee40 RCX: 00007f67bff03b4b
[ 3806.497533] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 00000000000001fa
[ 3806.497534] RBP: 0000563db665ee40 R08: 0000000000000000 R09: 0000000000000000
[ 3806.497535] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3806.497537] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3806.497542]  </TASK>
[ 3806.509092] watchdog: BUG: soft lockup - CPU#99 stuck for 153s! [qemu-system-x86:31305]
[ 3806.509098] Modules linked in: tls ib_core xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT xt_tcpudp nft_compat x_tables nf_nat_tftp nf_conntrack_tftp bridge stp llc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set nf_tables nfnetlink sunrpc nls_iso8859_1 amd_atl intel_rapl_msr intel_rapl_common amd64_edac ipmi_ssif ee1004 kvm_amd kvm rapl wmi_bmof pcspkr efi_pstore acpi_power_meter i2c_piix4 k10temp ipmi_si acpi_ipmi i2c_smbus ipmi_devintf ipmi_msghandler mac_hid sch_fq_codel dmi_sysfs xfs mgag200 drm_client_lib i2c_algo_bit drm_shmem_helper drm_kms_helper ghash_clmulni_intel mpt3sas sha512_ssse3 drm sha1_ssse3 raid_class tg3 ccp sp5100_tco scsi_transport_sas wmi dm_mirror dm_region_hash dm_log msr autofs4 aesni_intel
[ 3806.509165] CPU: 99 UID: 0 PID: 31305 Comm: qemu-system-x86 Tainted: G      D      L      6.16.0-rc2-next-20250617-4325743c7e-4bfc276e73e #1 PREEMPT(voluntary) 
[ 3806.509169] Tainted: [D]=DIE, [L]=SOFTLOCKUP
[ 3806.509170] Hardware name: Dell Inc. PowerEdge R6515/07PXPY, BIOS 2.17.0 12/04/2024
[ 3806.509172] RIP: 0010:smp_call_function_many_cond+0x2d7/0x4a0
[ 3806.509179] Code: 00 5c 00 39 05 7a 66 95 01 0f 86 d0 fd ff ff 48 63 d0 49 8b 36 48 03 34 d5 80 df ed 91 8b 56 08 83 e2 01 74 0a f3 90 8b 4e 08 <83> e1 01 75 f6 83 c0 01 eb bd 83 7d a4 01 0f 84 44 01 00 00 7e 19
[ 3806.509181] RSP: 0018:ffffaab62af6f8b8 EFLAGS: 00000202
[ 3806.509183] RAX: 0000000000000007 RBX: 0000000000000001 RCX: 0000000000000011
[ 3806.509185] RDX: 0000000000000001 RSI: ffff8f717fff9c20 RDI: ffff8f7206c6a900
[ 3806.509186] RBP: ffffaab62af6f918 R08: 0000000000000007 R09: ffff8f7206c6a960
[ 3806.509188] R10: 0000000000000002 R11: 0000000000000002 R12: 0000000000000000
[ 3806.509189] R13: 0000000000000202 R14: ffff8f917e8f2a40 R15: 0000000000000080
[ 3806.509191] FS:  00007f5a467fc640(0000) GS:ffff8f91ec0f6000(0000) knlGS:0000000000000000
[ 3806.509192] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 3806.509194] CR2: 0000000000000000 CR3: 0000003661a22020 CR4: 0000000000770ef0
[ 3806.509195] PKRU: 55555554
[ 3806.509197] Call Trace:
[ 3806.509198]  <TASK>
[ 3806.509202]  ? __pfx___wbinvd+0x10/0x10
[ 3806.509209]  on_each_cpu_cond_mask+0x28/0x50
[ 3806.509212]  wbinvd_on_all_cpus+0x29/0x40
[ 3806.509217]  sev_guest_memory_reclaimed+0x34/0x40 [kvm_amd]
[ 3806.509226]  kvm_arch_guest_memory_reclaimed+0x12/0x20 [kvm]
[ 3806.509278]  kvm_mmu_notifier_invalidate_range_start+0x353/0x3f0 [kvm]
[ 3806.509334]  __mmu_notifier_invalidate_range_start+0x8c/0x1f0
[ 3806.509340]  change_protection+0xfc9/0x1200
[ 3806.509346]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.509350]  ? update_curr_dl_se+0x3b/0x1e0
[ 3806.509355]  ? dl_server_update+0x2e/0x40
[ 3806.509359]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.509362]  ? pick_next_task_fair+0x4f/0x490
[ 3806.509366]  change_prot_numa+0x5b/0xe0
[ 3806.509374]  task_numa_work+0x3c5/0x9b0
[ 3806.509381]  task_work_run+0x64/0xa0
[ 3806.509386]  xfer_to_guest_mode_handle_work+0xcd/0xf0
[ 3806.509392]  kvm_arch_vcpu_ioctl_run+0xf10/0x1ba0 [kvm]
[ 3806.509444]  kvm_vcpu_ioctl+0x26a/0x9b0 [kvm]
[ 3806.509496]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.509498]  ? do_futex+0xc8/0x1d0
[ 3806.509501]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.509503]  ? srso_alias_return_thunk+0x5/0xfbef5
[ 3806.509507]  __x64_sys_ioctl+0xa0/0xf0
[ 3806.509512]  x64_sys_call+0x122e/0x2150
[ 3806.509515]  do_syscall_64+0x56/0x1e0
[ 3806.509520]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 3806.509522] RIP: 0033:0x7f67bff03b4b
[ 3806.509525] Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 9d 52 0f 00 f7 d8 64 89 01 48
[ 3806.509526] RSP: 002b:00007f5a467fb738 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 3806.509529] RAX: ffffffffffffffda RBX: 0000563db624bbb0 RCX: 00007f67bff03b4b
[ 3806.509530] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 000000000000012c
[ 3806.509531] RBP: 0000563db624bbb0 R08: 0000000000000000 R09: 0000000000000000
[ 3806.509533] R10: 0000000000000000 R11: 0000000000000246 R12: 000000000000ae80
[ 3806.509534] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 3806.509539]  </TASK>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2025-06-18  4:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <CAE4VaGBLJxpd=NeRJXpSCuw=REhC5LWJpC29kDy-Zh2ZDyzQZA@mail.gmail.com>
2025-06-18  4:43 ` [BUG] Kernel panic in __migrate_swap_task() on 6.16-rc2 (NULL pointer dereference) Aithal, Srikanth
2025-06-18  4:48   ` Aithal, Srikanth

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox