stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] drm/ast: Blank with VGACR17 sync enable, always clear VGACRB6 sync off
@ 2025-10-14  8:46 Thomas Zimmermann
  2025-10-14  8:54 ` Jocelyn Falempe
  2025-10-22  3:27 ` [REGRESSION][BISECTED] Screen goes blank with ASpeed AST2300 in 6.18-rc2 (was: Re: [PATCH v2] drm/ast: Blank with VGACR17 sync enable, always clear VGACRB6 sync off) Peter Schneider
  0 siblings, 2 replies; 14+ messages in thread
From: Thomas Zimmermann @ 2025-10-14  8:46 UTC (permalink / raw)
  To: jfalempe, airlied, dianders, nbowler; +Cc: dri-devel, Thomas Zimmermann, stable

Blank the display by disabling sync pulses with VGACR17<7>. Unblank
by reenabling them. This VGA setting should be supported by all Aspeed
hardware.

Ast currently blanks via sync-off bits in VGACRB6. Not all BMCs handle
VGACRB6 correctly. After disabling sync during a reboot, some BMCs do
not reenable it after the soft reset. The display output remains dark.
When the display is off during boot, some BMCs set the sync-off bits in
VGACRB6, so the display remains dark. Observed with  Blackbird AST2500
BMCs. Clearing the sync-off bits unconditionally fixes these issues.

Also do not modify VGASR1's SD bit for blanking, as it only disables GPU
access to video memory.

v2:
- init vgacrb6 correctly (Jocelyn)

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Fixes: ce3d99c83495 ("drm: Call drm_atomic_helper_shutdown() at shutdown time for misc drivers")
Tested-by: Nick Bowler <nbowler@draconx.ca>
Reported-by: Nick Bowler <nbowler@draconx.ca>
Closes: https://lore.kernel.org/dri-devel/wpwd7rit6t4mnu6kdqbtsnk5bhftgslio6e2jgkz6kgw6cuvvr@xbfswsczfqsi/
Cc: Douglas Anderson <dianders@chromium.org>
Cc: Dave Airlie <airlied@redhat.com>
Cc: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Jocelyn Falempe <jfalempe@redhat.com>
Cc: dri-devel@lists.freedesktop.org
Cc: <stable@vger.kernel.org> # v6.7+
---
 drivers/gpu/drm/ast/ast_mode.c | 18 ++++++++++--------
 drivers/gpu/drm/ast/ast_reg.h  |  1 +
 2 files changed, 11 insertions(+), 8 deletions(-)

diff --git a/drivers/gpu/drm/ast/ast_mode.c b/drivers/gpu/drm/ast/ast_mode.c
index 6b9d510c509d..9b6a7c54fbb5 100644
--- a/drivers/gpu/drm/ast/ast_mode.c
+++ b/drivers/gpu/drm/ast/ast_mode.c
@@ -836,22 +836,24 @@ ast_crtc_helper_atomic_flush(struct drm_crtc *crtc,
 static void ast_crtc_helper_atomic_enable(struct drm_crtc *crtc, struct drm_atomic_state *state)
 {
 	struct ast_device *ast = to_ast_device(crtc->dev);
+	u8 vgacr17 = 0x00;
+	u8 vgacrb6 = 0xff;
 
-	ast_set_index_reg_mask(ast, AST_IO_VGACRI, 0xb6, 0xfc, 0x00);
-	ast_set_index_reg_mask(ast, AST_IO_VGASRI, 0x01, 0xdf, 0x00);
+	vgacr17 |= AST_IO_VGACR17_SYNC_ENABLE;
+	vgacrb6 &= ~(AST_IO_VGACRB6_VSYNC_OFF | AST_IO_VGACRB6_HSYNC_OFF);
+
+	ast_set_index_reg_mask(ast, AST_IO_VGACRI, 0x17, 0x7f, vgacr17);
+	ast_set_index_reg_mask(ast, AST_IO_VGACRI, 0xb6, 0xfc, vgacrb6);
 }
 
 static void ast_crtc_helper_atomic_disable(struct drm_crtc *crtc, struct drm_atomic_state *state)
 {
 	struct drm_crtc_state *old_crtc_state = drm_atomic_get_old_crtc_state(state, crtc);
 	struct ast_device *ast = to_ast_device(crtc->dev);
-	u8 vgacrb6;
+	u8 vgacr17 = 0xff;
 
-	ast_set_index_reg_mask(ast, AST_IO_VGASRI, 0x01, 0xdf, AST_IO_VGASR1_SD);
-
-	vgacrb6 = AST_IO_VGACRB6_VSYNC_OFF |
-		  AST_IO_VGACRB6_HSYNC_OFF;
-	ast_set_index_reg_mask(ast, AST_IO_VGACRI, 0xb6, 0xfc, vgacrb6);
+	vgacr17 &= ~AST_IO_VGACR17_SYNC_ENABLE;
+	ast_set_index_reg_mask(ast, AST_IO_VGACRI, 0x17, 0x7f, vgacr17);
 
 	/*
 	 * HW cursors require the underlying primary plane and CRTC to
diff --git a/drivers/gpu/drm/ast/ast_reg.h b/drivers/gpu/drm/ast/ast_reg.h
index e15adaf3a80e..30578e3b07e4 100644
--- a/drivers/gpu/drm/ast/ast_reg.h
+++ b/drivers/gpu/drm/ast/ast_reg.h
@@ -29,6 +29,7 @@
 #define AST_IO_VGAGRI			(0x4E)
 
 #define AST_IO_VGACRI			(0x54)
+#define AST_IO_VGACR17_SYNC_ENABLE	BIT(7) /* called "Hardware reset" in docs */
 #define AST_IO_VGACR80_PASSWORD		(0xa8)
 #define AST_IO_VGACR99_VGAMEM_RSRV_MASK	GENMASK(1, 0)
 #define AST_IO_VGACRA1_VGAIO_DISABLED	BIT(1)
-- 
2.51.0


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

* Re: [PATCH v2] drm/ast: Blank with VGACR17 sync enable, always clear VGACRB6 sync off
  2025-10-14  8:46 [PATCH v2] drm/ast: Blank with VGACR17 sync enable, always clear VGACRB6 sync off Thomas Zimmermann
@ 2025-10-14  8:54 ` Jocelyn Falempe
  2025-10-22  3:27 ` [REGRESSION][BISECTED] Screen goes blank with ASpeed AST2300 in 6.18-rc2 (was: Re: [PATCH v2] drm/ast: Blank with VGACR17 sync enable, always clear VGACRB6 sync off) Peter Schneider
  1 sibling, 0 replies; 14+ messages in thread
From: Jocelyn Falempe @ 2025-10-14  8:54 UTC (permalink / raw)
  To: Thomas Zimmermann, airlied, dianders, nbowler; +Cc: dri-devel, stable

On 14/10/2025 10:46, Thomas Zimmermann wrote:
> Blank the display by disabling sync pulses with VGACR17<7>. Unblank
> by reenabling them. This VGA setting should be supported by all Aspeed
> hardware.
> 
> Ast currently blanks via sync-off bits in VGACRB6. Not all BMCs handle
> VGACRB6 correctly. After disabling sync during a reboot, some BMCs do
> not reenable it after the soft reset. The display output remains dark.
> When the display is off during boot, some BMCs set the sync-off bits in
> VGACRB6, so the display remains dark. Observed with  Blackbird AST2500
> BMCs. Clearing the sync-off bits unconditionally fixes these issues.
> 
> Also do not modify VGASR1's SD bit for blanking, as it only disables GPU
> access to video memory.

Thanks, it looks good to me.

Reviewed-by: Jocelyn Falempe <jfalempe@redhat.com>

> 
> v2:
> - init vgacrb6 correctly (Jocelyn)
> 
> Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
> Fixes: ce3d99c83495 ("drm: Call drm_atomic_helper_shutdown() at shutdown time for misc drivers")
> Tested-by: Nick Bowler <nbowler@draconx.ca>
> Reported-by: Nick Bowler <nbowler@draconx.ca>
> Closes: https://lore.kernel.org/dri-devel/wpwd7rit6t4mnu6kdqbtsnk5bhftgslio6e2jgkz6kgw6cuvvr@xbfswsczfqsi/
> Cc: Douglas Anderson <dianders@chromium.org>
> Cc: Dave Airlie <airlied@redhat.com>
> Cc: Thomas Zimmermann <tzimmermann@suse.de>
> Cc: Jocelyn Falempe <jfalempe@redhat.com>
> Cc: dri-devel@lists.freedesktop.org
> Cc: <stable@vger.kernel.org> # v6.7+
> ---
>   drivers/gpu/drm/ast/ast_mode.c | 18 ++++++++++--------
>   drivers/gpu/drm/ast/ast_reg.h  |  1 +
>   2 files changed, 11 insertions(+), 8 deletions(-)
> 
> diff --git a/drivers/gpu/drm/ast/ast_mode.c b/drivers/gpu/drm/ast/ast_mode.c
> index 6b9d510c509d..9b6a7c54fbb5 100644
> --- a/drivers/gpu/drm/ast/ast_mode.c
> +++ b/drivers/gpu/drm/ast/ast_mode.c
> @@ -836,22 +836,24 @@ ast_crtc_helper_atomic_flush(struct drm_crtc *crtc,
>   static void ast_crtc_helper_atomic_enable(struct drm_crtc *crtc, struct drm_atomic_state *state)
>   {
>   	struct ast_device *ast = to_ast_device(crtc->dev);
> +	u8 vgacr17 = 0x00;
> +	u8 vgacrb6 = 0xff;
>   
> -	ast_set_index_reg_mask(ast, AST_IO_VGACRI, 0xb6, 0xfc, 0x00);
> -	ast_set_index_reg_mask(ast, AST_IO_VGASRI, 0x01, 0xdf, 0x00);
> +	vgacr17 |= AST_IO_VGACR17_SYNC_ENABLE;
> +	vgacrb6 &= ~(AST_IO_VGACRB6_VSYNC_OFF | AST_IO_VGACRB6_HSYNC_OFF);
> +
> +	ast_set_index_reg_mask(ast, AST_IO_VGACRI, 0x17, 0x7f, vgacr17);
> +	ast_set_index_reg_mask(ast, AST_IO_VGACRI, 0xb6, 0xfc, vgacrb6);
>   }
>   
>   static void ast_crtc_helper_atomic_disable(struct drm_crtc *crtc, struct drm_atomic_state *state)
>   {
>   	struct drm_crtc_state *old_crtc_state = drm_atomic_get_old_crtc_state(state, crtc);
>   	struct ast_device *ast = to_ast_device(crtc->dev);
> -	u8 vgacrb6;
> +	u8 vgacr17 = 0xff;
>   
> -	ast_set_index_reg_mask(ast, AST_IO_VGASRI, 0x01, 0xdf, AST_IO_VGASR1_SD);
> -
> -	vgacrb6 = AST_IO_VGACRB6_VSYNC_OFF |
> -		  AST_IO_VGACRB6_HSYNC_OFF;
> -	ast_set_index_reg_mask(ast, AST_IO_VGACRI, 0xb6, 0xfc, vgacrb6);
> +	vgacr17 &= ~AST_IO_VGACR17_SYNC_ENABLE;
> +	ast_set_index_reg_mask(ast, AST_IO_VGACRI, 0x17, 0x7f, vgacr17);
>   
>   	/*
>   	 * HW cursors require the underlying primary plane and CRTC to
> diff --git a/drivers/gpu/drm/ast/ast_reg.h b/drivers/gpu/drm/ast/ast_reg.h
> index e15adaf3a80e..30578e3b07e4 100644
> --- a/drivers/gpu/drm/ast/ast_reg.h
> +++ b/drivers/gpu/drm/ast/ast_reg.h
> @@ -29,6 +29,7 @@
>   #define AST_IO_VGAGRI			(0x4E)
>   
>   #define AST_IO_VGACRI			(0x54)
> +#define AST_IO_VGACR17_SYNC_ENABLE	BIT(7) /* called "Hardware reset" in docs */
>   #define AST_IO_VGACR80_PASSWORD		(0xa8)
>   #define AST_IO_VGACR99_VGAMEM_RSRV_MASK	GENMASK(1, 0)
>   #define AST_IO_VGACRA1_VGAIO_DISABLED	BIT(1)


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

* [REGRESSION][BISECTED] Screen goes blank with ASpeed AST2300 in 6.18-rc2 (was: Re: [PATCH v2] drm/ast: Blank with VGACR17 sync enable, always clear VGACRB6 sync off)
  2025-10-14  8:46 [PATCH v2] drm/ast: Blank with VGACR17 sync enable, always clear VGACRB6 sync off Thomas Zimmermann
  2025-10-14  8:54 ` Jocelyn Falempe
@ 2025-10-22  3:27 ` Peter Schneider
  2025-10-22  6:51   ` [REGRESSION][BISECTED] Screen goes blank with ASpeed AST2300 in 6.18-rc2 Thomas Zimmermann
  1 sibling, 1 reply; 14+ messages in thread
From: Peter Schneider @ 2025-10-22  3:27 UTC (permalink / raw)
  To: regressions, LKML
  Cc: dri-devel, stable, Thomas Zimmermann, jfalempe, airlied, dianders,
	nbowler, stable, Linus Torvalds, Greg Kroah-Hartman

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

#regzbot introduced: 6f719373b943a955fee6fc2012aed207b65e2854

Hi all,

I have encountered a serious (for me) regression with 6.18-rc2 on my 2-socket Ivy Bridge Xeon E5-2697 v2 server. After 
booting, my console screen goes blank and stays blank. 6.18-rc1 was still fine.

The machine has an Asus Z9PE-D16 server mainboard with an onboard ASpeed AST2300 VGA chip with 16MB VRAM. I have 
attached an older HP Monitor to it via old VGA jack/cable. It also has a second graphics card in a PCI-E slot; an older 
NVidia GTX 560. It is not connected to a monitor, but I have configured it via kernel command line for PCI-pass-through 
to VMs running on this server (I use Proxmox VE, i.e. QEMU/KVM virtual machines). Currently, no VMs use this yet, and 
also no VMs are autostarting with machine boot. So when this regression occurs, the server is idle. Pressing a key on 
the keyboard does not make the screen come alive. The server is running fine though, and I can access it via SSH. It 
just has no graphic output anymore. In case this is important, the machine also has a ASMB6 BMC (can be used via http).

I have attached dmesg output from both 6.18-rc1 which is fine, and 6.18-rc2 which exhibits this bug. I have bisected the 
issue, please see attached git bisect.log.

The bad commit is

commit 6f719373b943a955fee6fc2012aed207b65e2854
Author: Thomas Zimmermann <tzimmermann@suse.de>
Date:   Tue Oct 14 10:46:34 2025 +0200

     drm/ast: Blank with VGACR17 sync enable, always clear VGACRB6 sync off

     Blank the display by disabling sync pulses with VGACR17<7>. Unblank
     by reenabling them. This VGA setting should be supported by all Aspeed
     hardware.

When I revert this from 6.18-rc2, the issue goes away and my console screen works again.

I just saw that Greg just yesterday evening included the offending patch already in stable RCs 6.12.55-rc1 and 
6.17.5-rc1, so I'll test these seperately and send a mail to the stable mailing list, too, if affected (which I anticipate).

Beste Grüße,
Peter Schneider

-- 
Climb the mountain not to plant your flag, but to embrace the challenge,
enjoy the air and behold the view. Climb it so you can see the world,
not so the world can see you.                    -- David McCullough Jr.

OpenPGP:  0xA3828BD796CCE11A8CADE8866E3A92C92C3FF244
Download: https://www.peters-netzplatz.de/download/pschneider1968_pub.asc
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@googlemail.com
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@gmail.com





Am 14.10.2025 um 10:46 schrieb Thomas Zimmermann:
> Blank the display by disabling sync pulses with VGACR17<7>. Unblank
> by reenabling them. This VGA setting should be supported by all Aspeed
> hardware.
> 
> Ast currently blanks via sync-off bits in VGACRB6. Not all BMCs handle
> VGACRB6 correctly. After disabling sync during a reboot, some BMCs do
> not reenable it after the soft reset. The display output remains dark.
> When the display is off during boot, some BMCs set the sync-off bits in
> VGACRB6, so the display remains dark. Observed with  Blackbird AST2500
> BMCs. Clearing the sync-off bits unconditionally fixes these issues.
> 
> Also do not modify VGASR1's SD bit for blanking, as it only disables GPU
> access to video memory.
> 
> v2:
> - init vgacrb6 correctly (Jocelyn)
> 
> Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
> Fixes: ce3d99c83495 ("drm: Call drm_atomic_helper_shutdown() at shutdown time for misc drivers")
> Tested-by: Nick Bowler <nbowler@draconx.ca>
> Reported-by: Nick Bowler <nbowler@draconx.ca>
> Closes: https://lore.kernel.org/dri-devel/wpwd7rit6t4mnu6kdqbtsnk5bhftgslio6e2jgkz6kgw6cuvvr@xbfswsczfqsi/
> Cc: Douglas Anderson <dianders@chromium.org>
> Cc: Dave Airlie <airlied@redhat.com>
> Cc: Thomas Zimmermann <tzimmermann@suse.de>
> Cc: Jocelyn Falempe <jfalempe@redhat.com>
> Cc: dri-devel@lists.freedesktop.org
> Cc: <stable@vger.kernel.org> # v6.7+
> ---
>   drivers/gpu/drm/ast/ast_mode.c | 18 ++++++++++--------
>   drivers/gpu/drm/ast/ast_reg.h  |  1 +
>   2 files changed, 11 insertions(+), 8 deletions(-)
> 
> diff --git a/drivers/gpu/drm/ast/ast_mode.c b/drivers/gpu/drm/ast/ast_mode.c
> index 6b9d510c509d..9b6a7c54fbb5 100644
> --- a/drivers/gpu/drm/ast/ast_mode.c
> +++ b/drivers/gpu/drm/ast/ast_mode.c
> @@ -836,22 +836,24 @@ ast_crtc_helper_atomic_flush(struct drm_crtc *crtc,
>   static void ast_crtc_helper_atomic_enable(struct drm_crtc *crtc, struct drm_atomic_state *state)
>   {
>   	struct ast_device *ast = to_ast_device(crtc->dev);
> +	u8 vgacr17 = 0x00;
> +	u8 vgacrb6 = 0xff;
>   
> -	ast_set_index_reg_mask(ast, AST_IO_VGACRI, 0xb6, 0xfc, 0x00);
> -	ast_set_index_reg_mask(ast, AST_IO_VGASRI, 0x01, 0xdf, 0x00);
> +	vgacr17 |= AST_IO_VGACR17_SYNC_ENABLE;
> +	vgacrb6 &= ~(AST_IO_VGACRB6_VSYNC_OFF | AST_IO_VGACRB6_HSYNC_OFF);
> +
> +	ast_set_index_reg_mask(ast, AST_IO_VGACRI, 0x17, 0x7f, vgacr17);
> +	ast_set_index_reg_mask(ast, AST_IO_VGACRI, 0xb6, 0xfc, vgacrb6);
>   }
>   
>   static void ast_crtc_helper_atomic_disable(struct drm_crtc *crtc, struct drm_atomic_state *state)
>   {
>   	struct drm_crtc_state *old_crtc_state = drm_atomic_get_old_crtc_state(state, crtc);
>   	struct ast_device *ast = to_ast_device(crtc->dev);
> -	u8 vgacrb6;
> +	u8 vgacr17 = 0xff;
>   
> -	ast_set_index_reg_mask(ast, AST_IO_VGASRI, 0x01, 0xdf, AST_IO_VGASR1_SD);
> -
> -	vgacrb6 = AST_IO_VGACRB6_VSYNC_OFF |
> -		  AST_IO_VGACRB6_HSYNC_OFF;
> -	ast_set_index_reg_mask(ast, AST_IO_VGACRI, 0xb6, 0xfc, vgacrb6);
> +	vgacr17 &= ~AST_IO_VGACR17_SYNC_ENABLE;
> +	ast_set_index_reg_mask(ast, AST_IO_VGACRI, 0x17, 0x7f, vgacr17);
>   
>   	/*
>   	 * HW cursors require the underlying primary plane and CRTC to
> diff --git a/drivers/gpu/drm/ast/ast_reg.h b/drivers/gpu/drm/ast/ast_reg.h
> index e15adaf3a80e..30578e3b07e4 100644
> --- a/drivers/gpu/drm/ast/ast_reg.h
> +++ b/drivers/gpu/drm/ast/ast_reg.h
> @@ -29,6 +29,7 @@
>   #define AST_IO_VGAGRI			(0x4E)
>   
>   #define AST_IO_VGACRI			(0x54)
> +#define AST_IO_VGACR17_SYNC_ENABLE	BIT(7) /* called "Hardware reset" in docs */
>   #define AST_IO_VGACR80_PASSWORD		(0xa8)
>   #define AST_IO_VGACR99_VGAMEM_RSRV_MASK	GENMASK(1, 0)
>   #define AST_IO_VGACRA1_VGAIO_DISABLED	BIT(1)

[-- Attachment #2: dmesg_618rc1.txt --]
[-- Type: text/plain, Size: 119222 bytes --]

[    0.000000] Linux version 6.18.0-rc1 (root@linus.localdomain) (gcc (Debian 14.2.0-19) 14.2.0, GNU ld (GNU Binutils for Debian) 2.44) #1 SMP PREEMPT_DYNAMIC Mon Oct 20 16:32:35 CEST 2025
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-6.18.0-rc1 root=UUID=3842ebdd-e37f-4e4e-afd4-d7eb79b41984 ro quiet intel_iommu=on iommu=pt vfio-pci.ids=10de:1201,10de:0e0c
[    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] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000096fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000097000-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007cb5ffff] usable
[    0.000000] BIOS-e820: [mem 0x000000007cb60000-0x000000007cb8cfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007cb8d000-0x000000007cca4fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007cca5000-0x000000007d8defff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007d8df000-0x000000007eb06fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007eb07000-0x000000007effffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000080000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed3ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000407fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: ASUSTeK COMPUTER INC. Z9PE-D16 Series/Z9PE-D16 Series, BIOS 5601 06/11/2015
[    0.000000] DMI: Memory slots populated: 16/16
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2699.874 MHz processor
[    0.001184] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.001187] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.001195] last_pfn = 0x4080000 max_arch_pfn = 0x400000000
[    0.001205] total RAM covered: 262144M
[    0.001408] Found optimal setting for mtrr clean up
[    0.001409]  gran_size: 64K 	chunk_size: 64K 	num_reg: 8  	lose cover RAM: 0G
[    0.001413] MTRR map: 7 entries (5 fixed + 2 variable; max 25), built from 10 variable MTRRs
[    0.001416] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.002095] e820: update [mem 0x80000000-0xffffffff] usable ==> reserved
[    0.002099] last_pfn = 0x7cca5 max_arch_pfn = 0x400000000
[    0.012772] found SMP MP-table at [mem 0x000fdd40-0x000fdd4f]
[    0.012791] Using GB pages for direct mapping
[    0.013006] RAMDISK: [mem 0x197d0000-0x37feefff]
[    0.013021] ACPI: Early table checksum verification disabled
[    0.013025] ACPI: RSDP 0x00000000000F0490 000024 (v02 ALASKA)
[    0.013030] ACPI: XSDT 0x000000007CBC5090 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.013037] ACPI: FACP 0x000000007CBD27D8 00010C (v05 ALASKA A M I    01072009 AMI  00010013)
[    0.013044] ACPI: DSDT 0x000000007CBC51C8 00D609 (v02 ALASKA A M I    00000000 INTL 20051117)
[    0.013048] ACPI: FACS 0x000000007D8D6F80 000040
[    0.013052] ACPI: APIC 0x000000007CBD28E8 000304 (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.013056] ACPI: FPDT 0x000000007CBD2BF0 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.013060] ACPI: MCFG 0x000000007CBD2C38 00003C (v01 ALASKA OEMMCFG. 01072009 MSFT 00000097)
[    0.013063] ACPI: SRAT 0x000000007CBD2C78 0005B0 (v01 A M I  AMI SRAT 00000001 AMI. 00000000)
[    0.013067] ACPI: SLIT 0x000000007CBD3228 000030 (v01 A M I  AMI SLIT 00000000 AMI. 00000000)
[    0.013071] ACPI: HPET 0x000000007CBD3258 000038 (v01 ALASKA A M I    01072009 AMI. 00000005)
[    0.013075] ACPI: DMAR 0x000000007CCA44D0 000168 (v01 A M I  OEMDMAR  00000001 INTL 00000001)
[    0.013078] ACPI: PRAD 0x000000007CBD32E8 0000BE (v02 PRADID PRADTID  00000001 MSFT 03000001)
[    0.013082] ACPI: SPMI 0x000000007CBD33A8 000040 (v05 A M I  OEMSPMI  00000000 AMI. 00000000)
[    0.013086] ACPI: SSDT 0x000000007CBD33E8 0D0CB0 (v02 INTEL  CpuPm    00004000 INTL 20051117)
[    0.013089] ACPI: EINJ 0x000000007CCA4098 000130 (v01 AMI    AMI EINJ 00000000      00000000)
[    0.013093] ACPI: ERST 0x000000007CCA41C8 000230 (v01 AMIER  AMI ERST 00000000      00000000)
[    0.013097] ACPI: HEST 0x000000007CCA43F8 0000A8 (v01 AMI    AMI HEST 00000000      00000000)
[    0.013101] ACPI: BERT 0x000000007CCA44A0 000030 (v01 AMI    AMI BERT 00000000      00000000)
[    0.013103] ACPI: Reserving FACP table memory at [mem 0x7cbd27d8-0x7cbd28e3]
[    0.013105] ACPI: Reserving DSDT table memory at [mem 0x7cbc51c8-0x7cbd27d0]
[    0.013106] ACPI: Reserving FACS table memory at [mem 0x7d8d6f80-0x7d8d6fbf]
[    0.013107] ACPI: Reserving APIC table memory at [mem 0x7cbd28e8-0x7cbd2beb]
[    0.013108] ACPI: Reserving FPDT table memory at [mem 0x7cbd2bf0-0x7cbd2c33]
[    0.013109] ACPI: Reserving MCFG table memory at [mem 0x7cbd2c38-0x7cbd2c73]
[    0.013110] ACPI: Reserving SRAT table memory at [mem 0x7cbd2c78-0x7cbd3227]
[    0.013111] ACPI: Reserving SLIT table memory at [mem 0x7cbd3228-0x7cbd3257]
[    0.013112] ACPI: Reserving HPET table memory at [mem 0x7cbd3258-0x7cbd328f]
[    0.013113] ACPI: Reserving DMAR table memory at [mem 0x7cca44d0-0x7cca4637]
[    0.013114] ACPI: Reserving PRAD table memory at [mem 0x7cbd32e8-0x7cbd33a5]
[    0.013115] ACPI: Reserving SPMI table memory at [mem 0x7cbd33a8-0x7cbd33e7]
[    0.013116] ACPI: Reserving SSDT table memory at [mem 0x7cbd33e8-0x7cca4097]
[    0.013117] ACPI: Reserving EINJ table memory at [mem 0x7cca4098-0x7cca41c7]
[    0.013118] ACPI: Reserving ERST table memory at [mem 0x7cca41c8-0x7cca43f7]
[    0.013119] ACPI: Reserving HEST table memory at [mem 0x7cca43f8-0x7cca449f]
[    0.013120] ACPI: Reserving BERT table memory at [mem 0x7cca44a0-0x7cca44cf]
[    0.013163] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x7fffffff]
[    0.013165] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.013167] ACPI: SRAT: Node 1 PXM 1 [mem 0x2080000000-0x407fffffff]
[    0.013177] NUMA: Node 0 [mem 0x00001000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00001000-0x207fffffff]
[    0.013188] NODE_DATA(0) allocated [mem 0x207ffd5500-0x207fffffff]
[    0.013224] NODE_DATA(1) allocated [mem 0x407ffd4500-0x407fffefff]
[    0.013973] Zone ranges:
[    0.013974]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.013976]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.013978]   Normal   [mem 0x0000000100000000-0x000000407fffffff]
[    0.013979]   Device   empty
[    0.013981] Movable zone start for each node
[    0.013984] Early memory node ranges
[    0.013984]   node   0: [mem 0x0000000000001000-0x0000000000096fff]
[    0.013986]   node   0: [mem 0x0000000000100000-0x000000007cb5ffff]
[    0.013987]   node   0: [mem 0x0000000100000000-0x000000207fffffff]
[    0.014005]   node   1: [mem 0x0000002080000000-0x000000407fffffff]
[    0.014024] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fffffff]
[    0.014028] Initmem setup node 1 [mem 0x0000002080000000-0x000000407fffffff]
[    0.014033] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.014072] On node 0, zone DMA: 105 pages in unavailable ranges
[    0.278705] On node 0, zone Normal: 13472 pages in unavailable ranges
[    0.693461] ACPI: PM-Timer IO Port: 0x408
[    0.693489] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.693491] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.693492] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.693493] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.693495] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.693496] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.693497] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.693498] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.693499] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.693500] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.693501] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.693503] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.693504] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[    0.693505] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[    0.693506] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[    0.693507] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[    0.693508] ACPI: LAPIC_NMI (acpi_id[0x20] high edge lint[0x1])
[    0.693509] ACPI: LAPIC_NMI (acpi_id[0x22] high edge lint[0x1])
[    0.693510] ACPI: LAPIC_NMI (acpi_id[0x24] high edge lint[0x1])
[    0.693511] ACPI: LAPIC_NMI (acpi_id[0x26] high edge lint[0x1])
[    0.693512] ACPI: LAPIC_NMI (acpi_id[0x28] high edge lint[0x1])
[    0.693513] ACPI: LAPIC_NMI (acpi_id[0x2a] high edge lint[0x1])
[    0.693514] ACPI: LAPIC_NMI (acpi_id[0x2c] high edge lint[0x1])
[    0.693515] ACPI: LAPIC_NMI (acpi_id[0x2e] high edge lint[0x1])
[    0.693516] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.693517] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.693518] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.693519] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.693520] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.693521] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.693521] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.693522] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.693523] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.693524] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.693525] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.693526] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.693527] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[    0.693528] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[    0.693529] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[    0.693530] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[    0.693531] ACPI: LAPIC_NMI (acpi_id[0x21] high edge lint[0x1])
[    0.693532] ACPI: LAPIC_NMI (acpi_id[0x23] high edge lint[0x1])
[    0.693532] ACPI: LAPIC_NMI (acpi_id[0x25] high edge lint[0x1])
[    0.693533] ACPI: LAPIC_NMI (acpi_id[0x27] high edge lint[0x1])
[    0.693534] ACPI: LAPIC_NMI (acpi_id[0x29] high edge lint[0x1])
[    0.693535] ACPI: LAPIC_NMI (acpi_id[0x2b] high edge lint[0x1])
[    0.693536] ACPI: LAPIC_NMI (acpi_id[0x2d] high edge lint[0x1])
[    0.693537] ACPI: LAPIC_NMI (acpi_id[0x2f] high edge lint[0x1])
[    0.693549] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.693555] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
[    0.693560] IOAPIC[2]: apic_id 3, version 32, address 0xfec40000, GSI 48-71
[    0.693563] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.693565] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.693571] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.693573] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.693579] TSC deadline timer available
[    0.693585] CPU topo: Max. logical packages:   2
[    0.693586] CPU topo: Max. logical dies:       2
[    0.693587] CPU topo: Max. dies per package:   1
[    0.693592] CPU topo: Max. threads per core:   2
[    0.693594] CPU topo: Num. cores per package:    12
[    0.693595] CPU topo: Num. threads per package:  24
[    0.693596] CPU topo: Allowing 48 present CPUs plus 0 hotplug CPUs
[    0.693613] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.693615] PM: hibernation: Registered nosave memory: [mem 0x00097000-0x000fffff]
[    0.693617] PM: hibernation: Registered nosave memory: [mem 0x7cb60000-0xffffffff]
[    0.693620] [mem 0x90000000-0xfed1bfff] available for PCI devices
[    0.693621] Booting paravirtualized kernel on bare hardware
[    0.693624] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.693642] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:48 nr_cpu_ids:48 nr_node_ids:2
[    0.698620] percpu: Embedded 84 pages/cpu s221184 r8192 d114688 u524288
[    0.698628] pcpu-alloc: s221184 r8192 d114688 u524288 alloc=1*2097152
[    0.698631] pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07 
[    0.698638] pcpu-alloc: [0] 08 09 10 11 [0] 24 25 26 27 
[    0.698644] pcpu-alloc: [0] 28 29 30 31 [0] 32 33 34 35 
[    0.698650] pcpu-alloc: [1] 12 13 14 15 [1] 16 17 18 19 
[    0.698656] pcpu-alloc: [1] 20 21 22 23 [1] 36 37 38 39 
[    0.698662] pcpu-alloc: [1] 40 41 42 43 [1] 44 45 46 47 
[    0.698693] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.18.0-rc1 root=UUID=3842ebdd-e37f-4e4e-afd4-d7eb79b41984 ro quiet intel_iommu=on iommu=pt vfio-pci.ids=10de:1201,10de:0e0c
[    0.698768] DMAR: IOMMU enabled
[    0.698817] random: crng init done
[    0.698818] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    0.698819] printk: log_buf_len total cpu_extra contributions: 192512 bytes
[    0.698820] printk: log_buf_len min size: 262144 bytes
[    0.699450] printk: log buffer data + meta data: 524288 + 1835008 = 2359296 bytes
[    0.699452] printk: early log buf free: 249616(95%)
[    0.700386] software IO TLB: area num 64.
[    0.716920] Fallback order for Node 0: 0 1 
[    0.716929] Fallback order for Node 1: 1 0 
[    0.716954] Built 2 zonelists, mobility grouping on.  Total pages: 67095286
[    0.716957] Policy zone: Normal
[    0.716970] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[    1.635489] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=48, Nodes=2
[    1.635647] Kernel/User page tables isolation: enabled
[    1.647998] ftrace: allocating 58276 entries in 228 pages
[    1.648000] ftrace: allocated 228 pages with 4 groups
[    1.649368] Dynamic Preempt: voluntary
[    1.649808] rcu: Preemptible hierarchical RCU implementation.
[    1.649809] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=48.
[    1.649811] 	Trampoline variant of Tasks RCU enabled.
[    1.649812] 	Rude variant of Tasks RCU enabled.
[    1.649813] 	Tracing variant of Tasks RCU enabled.
[    1.649814] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    1.649815] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=48
[    1.649924] RCU Tasks: Setting shift to 6 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=48.
[    1.649936] RCU Tasks Rude: Setting shift to 6 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=48.
[    1.649956] RCU Tasks Trace: Setting shift to 6 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=48.
[    1.656525] NR_IRQS: 524544, nr_irqs: 1624, preallocated irqs: 16
[    1.656840] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    1.663191] Console: colour VGA+ 80x25
[    1.663195] printk: legacy console [tty0] enabled
[    1.663395] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    1.663400] ACPI: Core revision 20250807
[    1.663996] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    1.664012] APIC: Switch to symmetric I/O mode setup
[    1.664015] DMAR: Host address width 46
[    1.664017] DMAR: DRHD base: 0x000000fbffe000 flags: 0x0
[    1.664030] DMAR: dmar0: reg_base_addr fbffe000 ver 1:0 cap d2078c106f0466 ecap f020df
[    1.664033] DMAR: DRHD base: 0x000000cfffc000 flags: 0x1
[    1.664038] DMAR: dmar1: reg_base_addr cfffc000 ver 1:0 cap d2078c106f0466 ecap f020df
[    1.664040] DMAR: RMRR base: 0x0000007e953000 end: 0x0000007e969fff
[    1.664045] DMAR: ATSR flags: 0x0
[    1.664046] DMAR: RHSA base: 0x000000fbffe000 proximity domain: 0x1
[    1.664048] DMAR: RHSA base: 0x000000cfffc000 proximity domain: 0x0
[    1.664050] DMAR-IR: IOAPIC id 3 under DRHD base  0xfbffe000 IOMMU 0
[    1.664052] DMAR-IR: IOAPIC id 0 under DRHD base  0xcfffc000 IOMMU 1
[    1.664054] DMAR-IR: IOAPIC id 2 under DRHD base  0xcfffc000 IOMMU 1
[    1.664055] DMAR-IR: HPET id 0 under DRHD base 0xcfffc000
[    1.664057] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    1.664987] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    1.664990] x2apic enabled
[    1.665073] APIC: Switched APIC routing to: cluster x2apic
[    1.665740] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    1.670019] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x26eac72b37c, max_idle_ns: 440795222231 ns
[    1.670026] Calibrating delay loop (skipped), value calculated using timer frequency.. 5399.74 BogoMIPS (lpj=2699874)
[    1.670058] CPU0: Thermal monitoring enabled (TM1)
[    1.670160] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    1.670163] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 4
[    1.670167] process: using mwait in idle threads
[    1.670170] mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
[    1.670176] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    1.670178] Spectre V2 : Mitigation: Retpolines
[    1.670180] Spectre V2 : User space: Mitigation: STIBP via prctl
[    1.670181] MDS: Mitigation: Clear CPU buffers
[    1.670183] VMSCAPE: Mitigation: IBPB before exit to userspace
[    1.670185] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.670186] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
[    1.670188] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    1.670190] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    1.670198] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.670200] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.670201] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.670203] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    1.670206] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    1.699933] Freeing SMP alternatives memory: 52K
[    1.699938] pid_max: default: 49152 minimum: 384
[    1.700110] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm
[    1.700169] Yama: becoming mindful.
[    1.700310] AppArmor: AppArmor initialized
[    1.744629] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    1.766731] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    1.767353] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    1.768204] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    1.769206] smpboot: CPU0: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz (family: 0x6, model: 0x3e, stepping: 0x4)
[    1.769709] Performance Events: PEBS fmt1+, IvyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[    1.769736] ... version:                   3
[    1.769738] ... bit width:                 48
[    1.769739] ... generic counters:          4
[    1.769740] ... generic bitmap:            000000000000000f
[    1.769742] ... fixed-purpose counters:    3
[    1.769743] ... fixed-purpose bitmap:      0000000000000007
[    1.769744] ... value mask:                0000ffffffffffff
[    1.769746] ... max period:                00007fffffffffff
[    1.769748] ... global_ctrl mask:          000000070000000f
[    1.770076] signal: max sigframe size: 1776
[    1.770102] Estimated ratio of average max frequency by base frequency (times 1024): 1213
[    1.772624] rcu: Hierarchical SRCU implementation.
[    1.772626] rcu: 	Max phase no-delay instances is 400.
[    1.772746] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
[    1.777060] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    1.778045] smp: Bringing up secondary CPUs ...
[    1.778288] smpboot: x86: Booting SMP configuration:
[    1.778290] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11
[    1.782206] .... node  #1, CPUs:   #12 #13 #14 #15 #16 #17 #18 #19 #20 #21 #22 #23
[    1.808295] .... node  #0, CPUs:   #24 #25 #26 #27 #28 #29 #30 #31 #32 #33 #34 #35
[    1.813870] .... node  #1, CPUs:   #36 #37 #38 #39 #40 #41 #42 #43 #44 #45 #46 #47
[    1.818319] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    1.818319] VMSCAPE: SMT on, STIBP is required for full protection. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/vmscape.html for more details.
[    1.841168] smp: Brought up 2 nodes, 48 CPUs
[    1.841168] smpboot: Total of 48 processors activated (259187.90 BogoMIPS)
[    1.843376] Memory: 263268624K/268381144K available (21467K kernel code, 3852K rwdata, 15356K rodata, 4932K init, 5344K bss, 4833756K reserved, 0K cma-reserved)
[    1.861226] devtmpfs: initialized
[    1.861226] x86/mm: Memory block size: 2048MB
[    1.864931] ACPI: PM: Registering ACPI NVS region [mem 0x7cca5000-0x7d8defff] (12820480 bytes)
[    1.865202] ACPI: PM: Registering ACPI NVS region [mem 0x7eb07000-0x7effffff] (5214208 bytes)
[    1.865368] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    1.865368] posixtimers hash table entries: 32768 (order: 7, 524288 bytes, vmalloc)
[    1.866112] futex hash table entries: 8192 (524288 bytes on 2 NUMA nodes, total 1024 KiB, linear).
[    1.866383] pinctrl core: initialized pinctrl subsystem
[    1.866549] PM: RTC time: 16:36:18, date: 2025-10-20
[    1.868831] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    1.870732] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    1.871742] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    1.872753] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    1.872767] audit: initializing netlink subsys (disabled)
[    1.872787] audit: type=2000 audit(1760978178.208:1): state=initialized audit_enabled=0 res=1
[    1.873142] thermal_sys: Registered thermal governor 'fair_share'
[    1.873145] thermal_sys: Registered thermal governor 'bang_bang'
[    1.873147] thermal_sys: Registered thermal governor 'step_wise'
[    1.873148] thermal_sys: Registered thermal governor 'user_space'
[    1.873150] thermal_sys: Registered thermal governor 'power_allocator'
[    1.873163] cpuidle: using governor ladder
[    1.873163] cpuidle: using governor menu
[    1.873163] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    1.873298] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    1.873305] PCI: ECAM [mem 0x80000000-0x8fffffff] reserved as E820 entry
[    1.873321] PCI: Using configuration type 1 for base access
[    1.873385] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    1.873445] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    1.874182] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    1.874182] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    1.874182] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    1.874182] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    1.877458] ACPI: Added _OSI(Module Device)
[    1.877461] ACPI: Added _OSI(Processor Device)
[    1.877464] ACPI: Added _OSI(Processor Aggregator Device)
[    2.050582] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    2.078292] ACPI: Interpreter enabled
[    2.078313] ACPI: PM: (supports S0 S1 S5)
[    2.078316] ACPI: Using IOAPIC for interrupt routing
[    2.081943] HEST: Table parsing has been initialized.
[    2.082080] GHES: APEI firmware first mode is enabled by WHEA _OSC.
[    2.082085] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.082087] PCI: Using E820 reservations for host bridge windows
[    2.082681] ACPI: Enabled 8 GPEs in block 00 to 3F
[    2.084163] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    2.108591] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
[    2.108601] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.108710] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[    2.108897] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    2.109401] PCI host bridge to bus 0000:00
[    2.109406] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    2.109409] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    2.109411] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    2.109413] pci_bus 0000:00: root bus resource [io  0x0d00-0x9fff window]
[    2.109416] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[    2.109418] pci_bus 0000:00: root bus resource [mem 0x80000000-0xcfffffff window]
[    2.109421] pci_bus 0000:00: root bus resource [bus 00-7e]
[    2.109454] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000 PCIe Root Port
[    2.109540] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    2.109661] pci 0000:00:01.0: [8086:0e02] type 01 class 0x060400 PCIe Root Port
[    2.109685] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.109765] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    2.109960] pci 0000:00:01.1: [8086:0e03] type 01 class 0x060400 PCIe Root Port
[    2.109983] pci 0000:00:01.1: PCI bridge to [bus 02]
[    2.110063] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    2.110257] pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400 PCIe Root Port
[    2.110281] pci 0000:00:02.0: PCI bridge to [bus 03]
[    2.110359] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    2.110539] pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400 PCIe Root Port
[    2.110563] pci 0000:00:02.2: PCI bridge to [bus 04]
[    2.110571] pci 0000:00:02.2:   bridge window [mem 0xc8a00000-0xc8cfffff]
[    2.110646] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    2.110827] pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400 PCIe Root Port
[    2.110853] pci 0000:00:03.0: PCI bridge to [bus 05]
[    2.110858] pci 0000:00:03.0:   bridge window [io  0x8000-0x8fff]
[    2.110862] pci 0000:00:03.0:   bridge window [mem 0xb8000000-0xc60fffff]
[    2.110878] pci 0000:00:03.0: enabling Extended Tags
[    2.110944] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    2.111114] pci 0000:00:04.0: [8086:0e20] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.111151] pci 0000:00:04.0: BAR 0 [mem 0xc6120000-0xc6123fff 64bit]
[    2.111258] pci 0000:00:04.1: [8086:0e21] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.111293] pci 0000:00:04.1: BAR 0 [mem 0xc611c000-0xc611ffff 64bit]
[    2.111399] pci 0000:00:04.2: [8086:0e22] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.111433] pci 0000:00:04.2: BAR 0 [mem 0xc6118000-0xc611bfff 64bit]
[    2.111539] pci 0000:00:04.3: [8086:0e23] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.111575] pci 0000:00:04.3: BAR 0 [mem 0xc6114000-0xc6117fff 64bit]
[    2.111681] pci 0000:00:04.4: [8086:0e24] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.111715] pci 0000:00:04.4: BAR 0 [mem 0xc6110000-0xc6113fff 64bit]
[    2.111827] pci 0000:00:04.5: [8086:0e25] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.111862] pci 0000:00:04.5: BAR 0 [mem 0xc610c000-0xc610ffff 64bit]
[    2.111967] pci 0000:00:04.6: [8086:0e26] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.112001] pci 0000:00:04.6: BAR 0 [mem 0xc6108000-0xc610bfff 64bit]
[    2.112108] pci 0000:00:04.7: [8086:0e27] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.112142] pci 0000:00:04.7: BAR 0 [mem 0xc6104000-0xc6107fff 64bit]
[    2.112256] pci 0000:00:05.0: [8086:0e28] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.112376] pci 0000:00:05.2: [8086:0e2a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.112495] pci 0000:00:05.4: [8086:0e2c] type 00 class 0x080020 PCIe Root Complex Integrated Endpoint
[    2.112527] pci 0000:00:05.4: BAR 0 [mem 0xc612b000-0xc612bfff]
[    2.112645] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400 PCIe Root Port
[    2.112678] pci 0000:00:11.0: PCI bridge to [bus 06]
[    2.112686] pci 0000:00:11.0:   bridge window [io  0x7000-0x7fff]
[    2.112691] pci 0000:00:11.0:   bridge window [mem 0xc8400000-0xc88fffff]
[    2.112707] pci 0000:00:11.0:   bridge window [mem 0xcfe00000-0xcfefffff 64bit pref]
[    2.112784] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
[    2.112935] pci 0000:00:16.0: [8086:1d3a] type 00 class 0x078000 conventional PCI endpoint
[    2.112976] pci 0000:00:16.0: BAR 0 [mem 0xc612a000-0xc612a00f 64bit]
[    2.113014] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    2.113135] pci 0000:00:16.1: [8086:1d3b] type 00 class 0x078000 conventional PCI endpoint
[    2.113174] pci 0000:00:16.1: BAR 0 [mem 0xc6129000-0xc612900f 64bit]
[    2.113212] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    2.113328] pci 0000:00:1a.0: [8086:1d2d] type 00 class 0x0c0320 conventional PCI endpoint
[    2.113373] pci 0000:00:1a.0: BAR 0 [mem 0xc6127000-0xc61273ff]
[    2.113422] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    2.113535] pci 0000:00:1b.0: [8086:1d20] type 00 class 0x040300 PCIe Root Complex Integrated Endpoint
[    2.113574] pci 0000:00:1b.0: BAR 0 [mem 0xc6100000-0xc6103fff 64bit]
[    2.113630] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    2.113725] pci 0000:00:1c.0: [8086:1d10] type 01 class 0x060400 PCIe Root Port
[    2.113755] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    2.113761] pci 0000:00:1c.0:   bridge window [io  0x6000-0x6fff]
[    2.113765] pci 0000:00:1c.0:   bridge window [mem 0xc8e00000-0xc8efffff]
[    2.113835] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    2.113870] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    2.113873] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    2.114004] pci 0000:00:1c.7: [8086:1d1e] type 01 class 0x060400 PCIe Root Port
[    2.114035] pci 0000:00:1c.7: PCI bridge to [bus 09-0a]
[    2.114041] pci 0000:00:1c.7:   bridge window [io  0x5000-0x5fff]
[    2.114047] pci 0000:00:1c.7:   bridge window [mem 0xc7000000-0xc80fffff]
[    2.114117] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[    2.114145] pci 0000:00:1c.7: Enabling MPC IRBNCE
[    2.114148] pci 0000:00:1c.7: Intel PCH root port ACS workaround enabled
[    2.114277] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320 conventional PCI endpoint
[    2.114324] pci 0000:00:1d.0: BAR 0 [mem 0xc6126000-0xc61263ff]
[    2.114374] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    2.114489] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401 conventional PCI bridge
[    2.114514] pci 0000:00:1e.0: PCI bridge to [bus 0b] (subtractive decode)
[    2.114649] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100 conventional PCI endpoint
[    2.114865] pci 0000:00:1f.2: [8086:1d02] type 00 class 0x010601 conventional PCI endpoint
[    2.114899] pci 0000:00:1f.2: BAR 0 [io  0x9070-0x9077]
[    2.114903] pci 0000:00:1f.2: BAR 1 [io  0x9060-0x9063]
[    2.114906] pci 0000:00:1f.2: BAR 2 [io  0x9050-0x9057]
[    2.114911] pci 0000:00:1f.2: BAR 3 [io  0x9040-0x9043]
[    2.114914] pci 0000:00:1f.2: BAR 4 [io  0x9020-0x903f]
[    2.114917] pci 0000:00:1f.2: BAR 5 [mem 0xc6125000-0xc61257ff]
[    2.114954] pci 0000:00:1f.2: PME# supported from D3hot
[    2.115060] pci 0000:00:1f.3: [8086:1d22] type 00 class 0x0c0500 conventional PCI endpoint
[    2.115099] pci 0000:00:1f.3: BAR 0 [mem 0xc6124000-0xc61240ff 64bit]
[    2.115106] pci 0000:00:1f.3: BAR 4 [io  0x9000-0x901f]
[    2.115233] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.115286] pci 0000:00:01.1: PCI bridge to [bus 02]
[    2.115328] pci 0000:00:02.0: PCI bridge to [bus 03]
[    2.115390] pci 0000:04:00.0: [9005:0285] type 00 class 0x010400 PCIe Endpoint
[    2.115423] pci 0000:04:00.0: BAR 0 [mem 0xc8a00000-0xc8bfffff 64bit]
[    2.115429] pci 0000:04:00.0: ROM [mem 0xc8c00000-0xc8c7ffff pref]
[    2.115473] pci 0000:04:00.0: supports D1
[    2.115557] pci 0000:00:02.2: PCI bridge to [bus 04]
[    2.115614] pci 0000:05:00.0: [10de:1201] type 00 class 0x030000 PCIe Endpoint
[    2.115642] pci 0000:05:00.0: BAR 0 [mem 0xc4000000-0xc5ffffff]
[    2.115646] pci 0000:05:00.0: BAR 1 [mem 0xb8000000-0xbfffffff 64bit pref]
[    2.115652] pci 0000:05:00.0: BAR 3 [mem 0xc0000000-0xc3ffffff 64bit pref]
[    2.115655] pci 0000:05:00.0: BAR 5 [io  0x8000-0x807f]
[    2.115658] pci 0000:05:00.0: ROM [mem 0xc6000000-0xc607ffff pref]
[    2.115665] pci 0000:05:00.0: enabling Extended Tags
[    2.115800] pci 0000:05:00.1: [10de:0e0c] type 00 class 0x040300 PCIe Endpoint
[    2.115829] pci 0000:05:00.1: BAR 0 [mem 0xc6080000-0xc6083fff]
[    2.115841] pci 0000:05:00.1: enabling Extended Tags
[    2.115953] pci 0000:00:03.0: PCI bridge to [bus 05]
[    2.116038] pci 0000:06:00.0: [8086:1d6b] type 00 class 0x010700 PCIe Endpoint
[    2.116087] pci 0000:06:00.0: BAR 0 [mem 0xc8800000-0xc8803fff 64bit pref]
[    2.116092] pci 0000:06:00.0: BAR 2 [mem 0xc8400000-0xc87fffff 64bit pref]
[    2.116098] pci 0000:06:00.0: BAR 4 [io  0x7000-0x70ff]
[    2.116109] pci 0000:06:00.0: enabling Extended Tags
[    2.116237] pci 0000:06:00.0: VF BAR 0 [mem 0xcfe00000-0xcfe03fff 64bit pref]
[    2.116240] pci 0000:06:00.0: VF BAR 0 [mem 0xcfe00000-0xcfe7bfff 64bit pref]: contains BAR 0 for 31 VFs
[    2.116470] pci 0000:00:11.0: PCI bridge to [bus 06]
[    2.116582] pci 0000:07:00.0: [8086:1521] type 00 class 0x020000 PCIe Endpoint
[    2.116648] pci 0000:07:00.0: BAR 0 [mem 0xc8e20000-0xc8e3ffff]
[    2.116655] pci 0000:07:00.0: BAR 2 [io  0x6020-0x603f]
[    2.116661] pci 0000:07:00.0: BAR 3 [mem 0xc8ec4000-0xc8ec7fff]
[    2.116804] pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
[    2.116876] pci 0000:07:00.0: VF BAR 0 [mem 0xc8ea0000-0xc8ea3fff]
[    2.116880] pci 0000:07:00.0: VF BAR 0 [mem 0xc8ea0000-0xc8ebffff]: contains BAR 0 for 8 VFs
[    2.116888] pci 0000:07:00.0: VF BAR 3 [mem 0xc8e80000-0xc8e83fff]
[    2.116892] pci 0000:07:00.0: VF BAR 3 [mem 0xc8e80000-0xc8e9ffff]: contains BAR 3 for 8 VFs
[    2.117211] pci 0000:07:00.1: [8086:1521] type 00 class 0x020000 PCIe Endpoint
[    2.117280] pci 0000:07:00.1: BAR 0 [mem 0xc8e00000-0xc8e1ffff]
[    2.117288] pci 0000:07:00.1: BAR 2 [io  0x6000-0x601f]
[    2.117294] pci 0000:07:00.1: BAR 3 [mem 0xc8ec0000-0xc8ec3fff]
[    2.117429] pci 0000:07:00.1: PME# supported from D0 D3hot D3cold
[    2.117499] pci 0000:07:00.1: VF BAR 0 [mem 0xc8e60000-0xc8e63fff]
[    2.117503] pci 0000:07:00.1: VF BAR 0 [mem 0xc8e60000-0xc8e7ffff]: contains BAR 0 for 8 VFs
[    2.117512] pci 0000:07:00.1: VF BAR 3 [mem 0xc8e40000-0xc8e43fff]
[    2.117514] pci 0000:07:00.1: VF BAR 3 [mem 0xc8e40000-0xc8e5ffff]: contains BAR 3 for 8 VFs
[    2.117757] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    2.117874] pci 0000:09:00.0: [1a03:1150] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    2.117926] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    2.117940] pci 0000:09:00.0:   bridge window [io  0x5000-0x5fff]
[    2.117946] pci 0000:09:00.0:   bridge window [mem 0xc7000000-0xc80fffff]
[    2.118074] pci 0000:09:00.0: supports D1 D2
[    2.118076] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.118212] pci 0000:09:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    2.118234] pci 0000:00:1c.7: PCI bridge to [bus 09-0a]
[    2.118301] pci_bus 0000:0a: extended config space not accessible
[    2.118339] pci 0000:0a:00.0: [1a03:2000] type 00 class 0x030000 conventional PCI endpoint
[    2.118432] pci 0000:0a:00.0: BAR 0 [mem 0xc7000000-0xc7ffffff]
[    2.118437] pci 0000:0a:00.0: BAR 1 [mem 0xc8000000-0xc801ffff]
[    2.118441] pci 0000:0a:00.0: BAR 2 [io  0x5000-0x507f]
[    2.118478] pci 0000:0a:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    2.118529] pci 0000:0a:00.0: supports D1 D2
[    2.118532] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.118689] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    2.118741] pci_bus 0000:0b: extended config space not accessible
[    2.118794] pci 0000:00:1e.0: PCI bridge to [bus 0b] (subtractive decode)
[    2.118806] pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af window] (subtractive decode)
[    2.118808] pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7 window] (subtractive decode)
[    2.118811] pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03df window] (subtractive decode)
[    2.118813] pci 0000:00:1e.0:   bridge window [io  0x0d00-0x9fff window] (subtractive decode)
[    2.118816] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000dffff window] (subtractive decode)
[    2.118818] pci 0000:00:1e.0:   bridge window [mem 0x80000000-0xcfffffff window] (subtractive decode)
[    2.118863] pci_bus 0000:00: on NUMA node 0
[    2.119802] ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus 7f])
[    2.119809] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.119832] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[    2.119912] PCI host bridge to bus 0000:7f
[    2.119917] pci_bus 0000:7f: root bus resource [bus 7f]
[    2.119928] pci 0000:7f:08.0: [8086:0e80] type 00 class 0x088000 conventional PCI endpoint
[    2.119999] pci 0000:7f:09.0: [8086:0e90] type 00 class 0x088000 conventional PCI endpoint
[    2.120070] pci 0000:7f:0a.0: [8086:0ec0] type 00 class 0x088000 conventional PCI endpoint
[    2.120130] pci 0000:7f:0a.1: [8086:0ec1] type 00 class 0x088000 conventional PCI endpoint
[    2.120187] pci 0000:7f:0a.2: [8086:0ec2] type 00 class 0x088000 conventional PCI endpoint
[    2.120247] pci 0000:7f:0a.3: [8086:0ec3] type 00 class 0x088000 conventional PCI endpoint
[    2.120319] pci 0000:7f:0b.0: [8086:0e1e] type 00 class 0x088000 conventional PCI endpoint
[    2.120374] pci 0000:7f:0b.3: [8086:0e1f] type 00 class 0x088000 conventional PCI endpoint
[    2.120431] pci 0000:7f:0c.0: [8086:0ee0] type 00 class 0x088000 conventional PCI endpoint
[    2.120484] pci 0000:7f:0c.1: [8086:0ee2] type 00 class 0x088000 conventional PCI endpoint
[    2.120538] pci 0000:7f:0c.2: [8086:0ee4] type 00 class 0x088000 conventional PCI endpoint
[    2.120595] pci 0000:7f:0c.3: [8086:0ee6] type 00 class 0x088000 conventional PCI endpoint
[    2.120649] pci 0000:7f:0c.4: [8086:0ee8] type 00 class 0x088000 conventional PCI endpoint
[    2.120702] pci 0000:7f:0c.5: [8086:0eea] type 00 class 0x088000 conventional PCI endpoint
[    2.120767] pci 0000:7f:0d.0: [8086:0ee1] type 00 class 0x088000 conventional PCI endpoint
[    2.120820] pci 0000:7f:0d.1: [8086:0ee3] type 00 class 0x088000 conventional PCI endpoint
[    2.120875] pci 0000:7f:0d.2: [8086:0ee5] type 00 class 0x088000 conventional PCI endpoint
[    2.120934] pci 0000:7f:0d.3: [8086:0ee7] type 00 class 0x088000 conventional PCI endpoint
[    2.120987] pci 0000:7f:0d.4: [8086:0ee9] type 00 class 0x088000 conventional PCI endpoint
[    2.121044] pci 0000:7f:0d.5: [8086:0eeb] type 00 class 0x088000 conventional PCI endpoint
[    2.121101] pci 0000:7f:0e.0: [8086:0ea0] type 00 class 0x088000 conventional PCI endpoint
[    2.121158] pci 0000:7f:0e.1: [8086:0e30] type 00 class 0x110100 conventional PCI endpoint
[    2.121231] pci 0000:7f:0f.0: [8086:0ea8] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.121307] pci 0000:7f:0f.1: [8086:0e71] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.121380] pci 0000:7f:0f.2: [8086:0eaa] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.121455] pci 0000:7f:0f.3: [8086:0eab] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.121527] pci 0000:7f:0f.4: [8086:0eac] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.121604] pci 0000:7f:0f.5: [8086:0ead] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.121678] pci 0000:7f:10.0: [8086:0eb0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.121753] pci 0000:7f:10.1: [8086:0eb1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.121836] pci 0000:7f:10.2: [8086:0eb2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.121912] pci 0000:7f:10.3: [8086:0eb3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.121988] pci 0000:7f:10.4: [8086:0eb4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.122068] pci 0000:7f:10.5: [8086:0eb5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.122143] pci 0000:7f:10.6: [8086:0eb6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.122217] pci 0000:7f:10.7: [8086:0eb7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.122290] pci 0000:7f:13.0: [8086:0e1d] type 00 class 0x088000 conventional PCI endpoint
[    2.122344] pci 0000:7f:13.1: [8086:0e34] type 00 class 0x110100 conventional PCI endpoint
[    2.122410] pci 0000:7f:13.4: [8086:0e81] type 00 class 0x088000 conventional PCI endpoint
[    2.122464] pci 0000:7f:13.5: [8086:0e36] type 00 class 0x110100 conventional PCI endpoint
[    2.122530] pci 0000:7f:16.0: [8086:0ec8] type 00 class 0x088000 conventional PCI endpoint
[    2.122589] pci 0000:7f:16.1: [8086:0ec9] type 00 class 0x088000 conventional PCI endpoint
[    2.122645] pci 0000:7f:16.2: [8086:0eca] type 00 class 0x088000 conventional PCI endpoint
[    2.122708] pci 0000:7f:1c.0: [8086:0e60] type 00 class 0x088000 conventional PCI endpoint
[    2.122771] pci 0000:7f:1c.1: [8086:0e38] type 00 class 0x110100 conventional PCI endpoint
[    2.122837] pci 0000:7f:1d.0: [8086:0e68] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.122931] pci 0000:7f:1d.1: [8086:0e79] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.123010] pci 0000:7f:1d.2: [8086:0e6a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.123092] pci 0000:7f:1d.3: [8086:0e6b] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.123172] pci 0000:7f:1d.4: [8086:0e6c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.123248] pci 0000:7f:1d.5: [8086:0e6d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.123329] pci 0000:7f:1e.0: [8086:0ef0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.123407] pci 0000:7f:1e.1: [8086:0ef1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.123486] pci 0000:7f:1e.2: [8086:0ef2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.123579] pci 0000:7f:1e.3: [8086:0ef3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.123659] pci 0000:7f:1e.4: [8086:0ef4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.123736] pci 0000:7f:1e.5: [8086:0ef5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.123817] pci 0000:7f:1e.6: [8086:0ef6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.123893] pci 0000:7f:1e.7: [8086:0ef7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.123966] pci_bus 0000:7f: on NUMA node 0
[    2.124174] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-fe])
[    2.124182] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.124289] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[    2.124478] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    2.124726] PCI host bridge to bus 0000:80
[    2.124732] pci_bus 0000:80: root bus resource [io  0xa000-0xffff window]
[    2.124735] pci_bus 0000:80: root bus resource [mem 0xd0000000-0xfbffffff window]
[    2.124739] pci_bus 0000:80: root bus resource [bus 80-fe]
[    2.124770] pci 0000:80:00.0: [8086:0e01] type 01 class 0x060400 PCIe Root Port
[    2.124798] pci 0000:80:00.0: PCI bridge to [bus 81]
[    2.124883] pci 0000:80:00.0: PME# supported from D0 D3hot D3cold
[    2.125081] pci 0000:80:01.0: [8086:0e02] type 01 class 0x060400 PCIe Root Port
[    2.125107] pci 0000:80:01.0: PCI bridge to [bus 82]
[    2.125198] pci 0000:80:01.0: PME# supported from D0 D3hot D3cold
[    2.125390] pci 0000:80:02.0: [8086:0e04] type 01 class 0x060400 PCIe Root Port
[    2.125420] pci 0000:80:02.0: PCI bridge to [bus 83]
[    2.125508] pci 0000:80:02.0: PME# supported from D0 D3hot D3cold
[    2.125715] pci 0000:80:03.0: [8086:0e08] type 01 class 0x060400 PCIe Root Port
[    2.125741] pci 0000:80:03.0: PCI bridge to [bus 84]
[    2.125763] pci 0000:80:03.0: enabling Extended Tags
[    2.125837] pci 0000:80:03.0: PME# supported from D0 D3hot D3cold
[    2.126014] pci 0000:80:04.0: [8086:0e20] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.126057] pci 0000:80:04.0: BAR 0 [mem 0xfbf1c000-0xfbf1ffff 64bit]
[    2.126185] pci 0000:80:04.1: [8086:0e21] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.126224] pci 0000:80:04.1: BAR 0 [mem 0xfbf18000-0xfbf1bfff 64bit]
[    2.126338] pci 0000:80:04.2: [8086:0e22] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.126377] pci 0000:80:04.2: BAR 0 [mem 0xfbf14000-0xfbf17fff 64bit]
[    2.126494] pci 0000:80:04.3: [8086:0e23] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.126532] pci 0000:80:04.3: BAR 0 [mem 0xfbf10000-0xfbf13fff 64bit]
[    2.126648] pci 0000:80:04.4: [8086:0e24] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.126685] pci 0000:80:04.4: BAR 0 [mem 0xfbf0c000-0xfbf0ffff 64bit]
[    2.126800] pci 0000:80:04.5: [8086:0e25] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.126838] pci 0000:80:04.5: BAR 0 [mem 0xfbf08000-0xfbf0bfff 64bit]
[    2.126959] pci 0000:80:04.6: [8086:0e26] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.126998] pci 0000:80:04.6: BAR 0 [mem 0xfbf04000-0xfbf07fff 64bit]
[    2.127130] pci 0000:80:04.7: [8086:0e27] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.127168] pci 0000:80:04.7: BAR 0 [mem 0xfbf00000-0xfbf03fff 64bit]
[    2.127287] pci 0000:80:05.0: [8086:0e28] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.127416] pci 0000:80:05.2: [8086:0e2a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.127549] pci 0000:80:05.4: [8086:0e2c] type 00 class 0x080020 PCIe Root Complex Integrated Endpoint
[    2.127585] pci 0000:80:05.4: BAR 0 [mem 0xfbf20000-0xfbf20fff]
[    2.127746] pci 0000:80:00.0: PCI bridge to [bus 81]
[    2.127799] pci 0000:80:01.0: PCI bridge to [bus 82]
[    2.127845] pci 0000:80:02.0: PCI bridge to [bus 83]
[    2.127896] pci 0000:80:03.0: PCI bridge to [bus 84]
[    2.127926] pci_bus 0000:80: on NUMA node 1
[    2.128044] ACPI: PCI Root Bridge [UNC1] (domain 0000 [bus ff])
[    2.128052] acpi PNP0A03:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.128074] acpi PNP0A03:01: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[    2.128154] PCI host bridge to bus 0000:ff
[    2.128159] pci_bus 0000:ff: root bus resource [bus ff]
[    2.128171] pci 0000:ff:08.0: [8086:0e80] type 00 class 0x088000 conventional PCI endpoint
[    2.128249] pci 0000:ff:09.0: [8086:0e90] type 00 class 0x088000 conventional PCI endpoint
[    2.128319] pci 0000:ff:0a.0: [8086:0ec0] type 00 class 0x088000 conventional PCI endpoint
[    2.128385] pci 0000:ff:0a.1: [8086:0ec1] type 00 class 0x088000 conventional PCI endpoint
[    2.128463] pci 0000:ff:0a.2: [8086:0ec2] type 00 class 0x088000 conventional PCI endpoint
[    2.128527] pci 0000:ff:0a.3: [8086:0ec3] type 00 class 0x088000 conventional PCI endpoint
[    2.128595] pci 0000:ff:0b.0: [8086:0e1e] type 00 class 0x088000 conventional PCI endpoint
[    2.128656] pci 0000:ff:0b.3: [8086:0e1f] type 00 class 0x088000 conventional PCI endpoint
[    2.128718] pci 0000:ff:0c.0: [8086:0ee0] type 00 class 0x088000 conventional PCI endpoint
[    2.128782] pci 0000:ff:0c.1: [8086:0ee2] type 00 class 0x088000 conventional PCI endpoint
[    2.128844] pci 0000:ff:0c.2: [8086:0ee4] type 00 class 0x088000 conventional PCI endpoint
[    2.128909] pci 0000:ff:0c.3: [8086:0ee6] type 00 class 0x088000 conventional PCI endpoint
[    2.128990] pci 0000:ff:0c.4: [8086:0ee8] type 00 class 0x088000 conventional PCI endpoint
[    2.129056] pci 0000:ff:0c.5: [8086:0eea] type 00 class 0x088000 conventional PCI endpoint
[    2.129121] pci 0000:ff:0d.0: [8086:0ee1] type 00 class 0x088000 conventional PCI endpoint
[    2.129186] pci 0000:ff:0d.1: [8086:0ee3] type 00 class 0x088000 conventional PCI endpoint
[    2.129248] pci 0000:ff:0d.2: [8086:0ee5] type 00 class 0x088000 conventional PCI endpoint
[    2.129313] pci 0000:ff:0d.3: [8086:0ee7] type 00 class 0x088000 conventional PCI endpoint
[    2.129379] pci 0000:ff:0d.4: [8086:0ee9] type 00 class 0x088000 conventional PCI endpoint
[    2.129441] pci 0000:ff:0d.5: [8086:0eeb] type 00 class 0x088000 conventional PCI endpoint
[    2.129519] pci 0000:ff:0e.0: [8086:0ea0] type 00 class 0x088000 conventional PCI endpoint
[    2.129593] pci 0000:ff:0e.1: [8086:0e30] type 00 class 0x110100 conventional PCI endpoint
[    2.129676] pci 0000:ff:0f.0: [8086:0ea8] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.129766] pci 0000:ff:0f.1: [8086:0e71] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.129858] pci 0000:ff:0f.2: [8086:0eaa] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.129951] pci 0000:ff:0f.3: [8086:0eab] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.130049] pci 0000:ff:0f.4: [8086:0eac] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.130139] pci 0000:ff:0f.5: [8086:0ead] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.130247] pci 0000:ff:10.0: [8086:0eb0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.130337] pci 0000:ff:10.1: [8086:0eb1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.130428] pci 0000:ff:10.2: [8086:0eb2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.130517] pci 0000:ff:10.3: [8086:0eb3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.130609] pci 0000:ff:10.4: [8086:0eb4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.130699] pci 0000:ff:10.5: [8086:0eb5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.130788] pci 0000:ff:10.6: [8086:0eb6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.130880] pci 0000:ff:10.7: [8086:0eb7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.130984] pci 0000:ff:13.0: [8086:0e1d] type 00 class 0x088000 conventional PCI endpoint
[    2.131055] pci 0000:ff:13.1: [8086:0e34] type 00 class 0x110100 conventional PCI endpoint
[    2.131121] pci 0000:ff:13.4: [8086:0e81] type 00 class 0x088000 conventional PCI endpoint
[    2.131195] pci 0000:ff:13.5: [8086:0e36] type 00 class 0x110100 conventional PCI endpoint
[    2.131265] pci 0000:ff:16.0: [8086:0ec8] type 00 class 0x088000 conventional PCI endpoint
[    2.131328] pci 0000:ff:16.1: [8086:0ec9] type 00 class 0x088000 conventional PCI endpoint
[    2.131393] pci 0000:ff:16.2: [8086:0eca] type 00 class 0x088000 conventional PCI endpoint
[    2.131467] pci 0000:ff:1c.0: [8086:0e60] type 00 class 0x088000 conventional PCI endpoint
[    2.131554] pci 0000:ff:1c.1: [8086:0e38] type 00 class 0x110100 conventional PCI endpoint
[    2.131635] pci 0000:ff:1d.0: [8086:0e68] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.131730] pci 0000:ff:1d.1: [8086:0e79] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.131822] pci 0000:ff:1d.2: [8086:0e6a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.131916] pci 0000:ff:1d.3: [8086:0e6b] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.132007] pci 0000:ff:1d.4: [8086:0e6c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.132104] pci 0000:ff:1d.5: [8086:0e6d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.132198] pci 0000:ff:1e.0: [8086:0ef0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.132308] pci 0000:ff:1e.1: [8086:0ef1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.132400] pci 0000:ff:1e.2: [8086:0ef2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.132499] pci 0000:ff:1e.3: [8086:0ef3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.132591] pci 0000:ff:1e.4: [8086:0ef4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.132686] pci 0000:ff:1e.5: [8086:0ef5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.132777] pci 0000:ff:1e.6: [8086:0ef6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.132869] pci 0000:ff:1e.7: [8086:0ef7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.132958] pci_bus 0000:ff: on NUMA node 1
[    2.133099] ACPI: PCI: Interrupt link LNKA configured for IRQ 11
[    2.133163] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[    2.133225] ACPI: PCI: Interrupt link LNKC configured for IRQ 15
[    2.133286] ACPI: PCI: Interrupt link LNKD configured for IRQ 5
[    2.133349] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    2.133409] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    2.133471] ACPI: PCI: Interrupt link LNKG configured for IRQ 7
[    2.133532] ACPI: PCI: Interrupt link LNKH configured for IRQ 14
[    2.138033] iommu: Default domain type: Passthrough (set via kernel command line)
[    2.139328] SCSI subsystem initialized
[    2.139355] libata version 3.00 loaded.
[    2.139355] ACPI: bus type USB registered
[    2.139355] usbcore: registered new interface driver usbfs
[    2.139355] usbcore: registered new interface driver hub
[    2.139355] usbcore: registered new device driver usb
[    2.139355] pps_core: LinuxPPS API ver. 1 registered
[    2.139355] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    2.139355] PTP clock support registered
[    2.139355] EDAC MC: Ver: 3.0.0
[    2.140521] NetLabel: Initializing
[    2.140524] NetLabel:  domain hash size = 128
[    2.140526] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    2.140545] NetLabel:  unlabeled traffic allowed by default
[    2.141044] mctp: management component transport protocol core
[    2.141047] NET: Registered PF_MCTP protocol family
[    2.141071] PCI: Using ACPI for IRQ routing
[    2.145431] PCI: pci_cache_line_size set to 64 bytes
[    2.145663] e820: reserve RAM buffer [mem 0x00097000-0x0009ffff]
[    2.145666] e820: reserve RAM buffer [mem 0x7cb60000-0x7fffffff]
[    2.145702] pci 0000:05:00.0: vgaarb: setting as boot VGA device
[    2.145702] pci 0000:05:00.0: vgaarb: bridge control possible
[    2.145702] pci 0000:05:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    2.145702] pci 0000:0a:00.0: vgaarb: setting as boot VGA device (overriding previous)
[    2.145702] pci 0000:0a:00.0: vgaarb: bridge control possible
[    2.145702] pci 0000:0a:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    2.145702] vgaarb: loaded
[    2.145702] Monitor-Mwait will be used to enter C-1 state
[    2.145702] Monitor-Mwait will be used to enter C-2 state
[    2.148078] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    2.148088] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    2.150193] clocksource: Switched to clocksource tsc-early
[    2.150566] VFS: Disk quotas dquot_6.6.0
[    2.150589] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.150763] AppArmor: AppArmor Filesystem Enabled
[    2.150804] pnp: PnP ACPI init
[    2.150930] system 00:00: [mem 0xfc000000-0xfcffffff] has been reserved
[    2.150935] system 00:00: [mem 0xfd000000-0xfdffffff] has been reserved
[    2.150937] system 00:00: [mem 0xfe000000-0xfeafffff] has been reserved
[    2.150940] system 00:00: [mem 0xfeb00000-0xfebfffff] has been reserved
[    2.150942] system 00:00: [mem 0xfed00400-0xfed3ffff] could not be reserved
[    2.150945] system 00:00: [mem 0xfed45000-0xfedfffff] has been reserved
[    2.150947] system 00:00: [mem 0x00000400-0x000004ff] could not be reserved
[    2.151116] system 00:01: [mem 0xcfffc000-0xcfffdfff] could not be reserved
[    2.151324] system 00:02: [io  0x0290-0x029f] has been reserved
[    2.151494] system 00:04: [io  0x04d0-0x04d1] has been reserved
[    2.151823] pnp 00:06: [dma 0 disabled]
[    2.152117] pnp 00:07: [dma 0 disabled]
[    2.152491] system 00:08: [io  0x0400-0x0453] has been reserved
[    2.152495] system 00:08: [io  0x0458-0x047f] has been reserved
[    2.152497] system 00:08: [io  0x1180-0x119f] has been reserved
[    2.152500] system 00:08: [io  0x0500-0x057f] has been reserved
[    2.152503] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    2.152506] system 00:08: [mem 0xfec00000-0xfecfffff] could not be reserved
[    2.152508] system 00:08: [mem 0xfed08000-0xfed08fff] has been reserved
[    2.152510] system 00:08: [mem 0xff000000-0xffffffff] has been reserved
[    2.152872] system 00:0a: [mem 0xfbffe000-0xfbffffff] could not be reserved
[    2.153296] pnp: PnP ACPI: found 11 devices
[    2.159813] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    2.159976] NET: Registered PF_INET protocol family
[    2.160898] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.183076] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.183231] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    2.184298] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    2.185797] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.186071] TCP: Hash tables configured (established 524288 bind 65536)
[    2.186548] MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, vmalloc)
[    2.188204] UDP hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    2.190235] UDP-Lite hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    2.190989] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    2.191010] NET: Registered PF_XDP protocol family
[    2.191083] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.191108] pci 0000:00:01.1: PCI bridge to [bus 02]
[    2.191117] pci 0000:00:02.0: PCI bridge to [bus 03]
[    2.191127] pci 0000:00:02.2: PCI bridge to [bus 04]
[    2.191131] pci 0000:00:02.2:   bridge window [mem 0xc8a00000-0xc8cfffff]
[    2.191140] pci 0000:00:03.0: PCI bridge to [bus 05]
[    2.191142] pci 0000:00:03.0:   bridge window [io  0x8000-0x8fff]
[    2.191146] pci 0000:00:03.0:   bridge window [mem 0xb8000000-0xc60fffff]
[    2.191155] pci 0000:00:11.0: PCI bridge to [bus 06]
[    2.191157] pci 0000:00:11.0:   bridge window [io  0x7000-0x7fff]
[    2.191163] pci 0000:00:11.0:   bridge window [mem 0xc8400000-0xc88fffff]
[    2.191167] pci 0000:00:11.0:   bridge window [mem 0xcfe00000-0xcfefffff 64bit pref]
[    2.191184] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    2.191188] pci 0000:00:1c.0:   bridge window [io  0x6000-0x6fff]
[    2.191193] pci 0000:00:1c.0:   bridge window [mem 0xc8e00000-0xc8efffff]
[    2.191204] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    2.191207] pci 0000:09:00.0:   bridge window [io  0x5000-0x5fff]
[    2.191215] pci 0000:09:00.0:   bridge window [mem 0xc7000000-0xc80fffff]
[    2.191229] pci 0000:00:1c.7: PCI bridge to [bus 09-0a]
[    2.191232] pci 0000:00:1c.7:   bridge window [io  0x5000-0x5fff]
[    2.191237] pci 0000:00:1c.7:   bridge window [mem 0xc7000000-0xc80fffff]
[    2.191245] pci 0000:00:1e.0: PCI bridge to [bus 0b]
[    2.191256] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    2.191258] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    2.191260] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    2.191262] pci_bus 0000:00: resource 7 [io  0x0d00-0x9fff window]
[    2.191264] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
[    2.191267] pci_bus 0000:00: resource 9 [mem 0x80000000-0xcfffffff window]
[    2.191269] pci_bus 0000:04: resource 1 [mem 0xc8a00000-0xc8cfffff]
[    2.191272] pci_bus 0000:05: resource 0 [io  0x8000-0x8fff]
[    2.191274] pci_bus 0000:05: resource 1 [mem 0xb8000000-0xc60fffff]
[    2.191277] pci_bus 0000:06: resource 0 [io  0x7000-0x7fff]
[    2.191279] pci_bus 0000:06: resource 1 [mem 0xc8400000-0xc88fffff]
[    2.191281] pci_bus 0000:06: resource 2 [mem 0xcfe00000-0xcfefffff 64bit pref]
[    2.191284] pci_bus 0000:07: resource 0 [io  0x6000-0x6fff]
[    2.191286] pci_bus 0000:07: resource 1 [mem 0xc8e00000-0xc8efffff]
[    2.191287] pci_bus 0000:09: resource 0 [io  0x5000-0x5fff]
[    2.191289] pci_bus 0000:09: resource 1 [mem 0xc7000000-0xc80fffff]
[    2.191291] pci_bus 0000:0a: resource 0 [io  0x5000-0x5fff]
[    2.191293] pci_bus 0000:0a: resource 1 [mem 0xc7000000-0xc80fffff]
[    2.191295] pci_bus 0000:0b: resource 4 [io  0x0000-0x03af window]
[    2.191297] pci_bus 0000:0b: resource 5 [io  0x03e0-0x0cf7 window]
[    2.191299] pci_bus 0000:0b: resource 6 [io  0x03b0-0x03df window]
[    2.191301] pci_bus 0000:0b: resource 7 [io  0x0d00-0x9fff window]
[    2.191302] pci_bus 0000:0b: resource 8 [mem 0x000a0000-0x000dffff window]
[    2.191304] pci_bus 0000:0b: resource 9 [mem 0x80000000-0xcfffffff window]
[    2.191432] pci 0000:80:00.0: PCI bridge to [bus 81]
[    2.191444] pci 0000:80:01.0: PCI bridge to [bus 82]
[    2.191454] pci 0000:80:02.0: PCI bridge to [bus 83]
[    2.191464] pci 0000:80:03.0: PCI bridge to [bus 84]
[    2.191477] pci_bus 0000:80: resource 4 [io  0xa000-0xffff window]
[    2.191479] pci_bus 0000:80: resource 5 [mem 0xd0000000-0xfbffffff window]
[    2.191562] pci 0000:00:05.0: disabled boot interrupts on device [8086:0e28]
[    2.207210] pci 0000:00:1a.0: quirk_usb_early_handoff+0x0/0x730 took 15262 usecs
[    2.223197] pci 0000:00:1d.0: quirk_usb_early_handoff+0x0/0x730 took 15587 usecs
[    2.223230] pci 0000:05:00.1: extending delay after power-on from D3hot to 20 msec
[    2.223291] pci 0000:05:00.1: D0 power state depends on 0000:05:00.0
[    2.223458] pci 0000:80:05.0: disabled boot interrupts on device [8086:0e28]
[    2.223589] PCI: CLS 64 bytes, default 64
[    2.223723] DMAR: No SATC found
[    2.223726] DMAR: dmar0: Using Queued invalidation
[    2.223730] DMAR: dmar1: Using Queued invalidation
[    2.223754] Trying to unpack rootfs image as initramfs...
[    2.223875] pci 0000:80:00.0: Adding to iommu group 0
[    2.223919] pci 0000:80:01.0: Adding to iommu group 1
[    2.223959] pci 0000:80:02.0: Adding to iommu group 2
[    2.224003] pci 0000:80:03.0: Adding to iommu group 3
[    2.224052] pci 0000:80:04.0: Adding to iommu group 4
[    2.224092] pci 0000:80:04.1: Adding to iommu group 5
[    2.224133] pci 0000:80:04.2: Adding to iommu group 6
[    2.224179] pci 0000:80:04.3: Adding to iommu group 7
[    2.224218] pci 0000:80:04.4: Adding to iommu group 8
[    2.224257] pci 0000:80:04.5: Adding to iommu group 9
[    2.224299] pci 0000:80:04.6: Adding to iommu group 10
[    2.224343] pci 0000:80:04.7: Adding to iommu group 11
[    2.224437] pci 0000:00:00.0: Adding to iommu group 12
[    2.224477] pci 0000:00:01.0: Adding to iommu group 13
[    2.224517] pci 0000:00:01.1: Adding to iommu group 14
[    2.224559] pci 0000:00:02.0: Adding to iommu group 15
[    2.224599] pci 0000:00:02.2: Adding to iommu group 16
[    2.224639] pci 0000:00:03.0: Adding to iommu group 17
[    2.224677] pci 0000:00:04.0: Adding to iommu group 18
[    2.224717] pci 0000:00:04.1: Adding to iommu group 19
[    2.224755] pci 0000:00:04.2: Adding to iommu group 20
[    2.224793] pci 0000:00:04.3: Adding to iommu group 21
[    2.224833] pci 0000:00:04.4: Adding to iommu group 22
[    2.224872] pci 0000:00:04.5: Adding to iommu group 23
[    2.224909] pci 0000:00:04.6: Adding to iommu group 24
[    2.224948] pci 0000:00:04.7: Adding to iommu group 25
[    2.224988] pci 0000:00:05.0: Adding to iommu group 26
[    2.225034] pci 0000:00:05.2: Adding to iommu group 27
[    2.225076] pci 0000:00:05.4: Adding to iommu group 28
[    2.225115] pci 0000:00:11.0: Adding to iommu group 29
[    2.225216] pci 0000:00:16.0: Adding to iommu group 30
[    2.225257] pci 0000:00:16.1: Adding to iommu group 30
[    2.225296] pci 0000:00:1a.0: Adding to iommu group 31
[    2.225336] pci 0000:00:1b.0: Adding to iommu group 32
[    2.225378] pci 0000:00:1c.0: Adding to iommu group 33
[    2.225418] pci 0000:00:1c.7: Adding to iommu group 34
[    2.225457] pci 0000:00:1d.0: Adding to iommu group 35
[    2.225496] pci 0000:00:1e.0: Adding to iommu group 36
[    2.225626] pci 0000:00:1f.0: Adding to iommu group 37
[    2.225669] pci 0000:00:1f.2: Adding to iommu group 37
[    2.225710] pci 0000:00:1f.3: Adding to iommu group 37
[    2.225751] pci 0000:04:00.0: Adding to iommu group 38
[    2.225854] pci 0000:05:00.0: Adding to iommu group 39
[    2.225899] pci 0000:05:00.1: Adding to iommu group 39
[    2.225971] pci 0000:06:00.0: Adding to iommu group 40
[    2.226012] pci 0000:07:00.0: Adding to iommu group 41
[    2.226059] pci 0000:07:00.1: Adding to iommu group 42
[    2.226111] pci 0000:09:00.0: Adding to iommu group 43
[    2.226118] pci 0000:0a:00.0: Adding to iommu group 43
[    2.226187] pci 0000:7f:08.0: Adding to iommu group 44
[    2.226256] pci 0000:7f:09.0: Adding to iommu group 45
[    2.226416] pci 0000:7f:0a.0: Adding to iommu group 46
[    2.226461] pci 0000:7f:0a.1: Adding to iommu group 46
[    2.226506] pci 0000:7f:0a.2: Adding to iommu group 46
[    2.226549] pci 0000:7f:0a.3: Adding to iommu group 46
[    2.226650] pci 0000:7f:0b.0: Adding to iommu group 47
[    2.226696] pci 0000:7f:0b.3: Adding to iommu group 47
[    2.226916] pci 0000:7f:0c.0: Adding to iommu group 48
[    2.226962] pci 0000:7f:0c.1: Adding to iommu group 48
[    2.227007] pci 0000:7f:0c.2: Adding to iommu group 48
[    2.227060] pci 0000:7f:0c.3: Adding to iommu group 48
[    2.227105] pci 0000:7f:0c.4: Adding to iommu group 48
[    2.227150] pci 0000:7f:0c.5: Adding to iommu group 48
[    2.227380] pci 0000:7f:0d.0: Adding to iommu group 49
[    2.227426] pci 0000:7f:0d.1: Adding to iommu group 49
[    2.227471] pci 0000:7f:0d.2: Adding to iommu group 49
[    2.227516] pci 0000:7f:0d.3: Adding to iommu group 49
[    2.227561] pci 0000:7f:0d.4: Adding to iommu group 49
[    2.227607] pci 0000:7f:0d.5: Adding to iommu group 49
[    2.227706] pci 0000:7f:0e.0: Adding to iommu group 50
[    2.227752] pci 0000:7f:0e.1: Adding to iommu group 50
[    2.227791] pci 0000:7f:0f.0: Adding to iommu group 51
[    2.227829] pci 0000:7f:0f.1: Adding to iommu group 52
[    2.227868] pci 0000:7f:0f.2: Adding to iommu group 53
[    2.227909] pci 0000:7f:0f.3: Adding to iommu group 54
[    2.227947] pci 0000:7f:0f.4: Adding to iommu group 55
[    2.227986] pci 0000:7f:0f.5: Adding to iommu group 56
[    2.228032] pci 0000:7f:10.0: Adding to iommu group 57
[    2.228072] pci 0000:7f:10.1: Adding to iommu group 58
[    2.228111] pci 0000:7f:10.2: Adding to iommu group 59
[    2.228157] pci 0000:7f:10.3: Adding to iommu group 60
[    2.228206] pci 0000:7f:10.4: Adding to iommu group 61
[    2.228244] pci 0000:7f:10.5: Adding to iommu group 62
[    2.228287] pci 0000:7f:10.6: Adding to iommu group 63
[    2.228332] pci 0000:7f:10.7: Adding to iommu group 64
[    2.228493] pci 0000:7f:13.0: Adding to iommu group 65
[    2.228542] pci 0000:7f:13.1: Adding to iommu group 65
[    2.228592] pci 0000:7f:13.4: Adding to iommu group 65
[    2.228641] pci 0000:7f:13.5: Adding to iommu group 65
[    2.228769] pci 0000:7f:16.0: Adding to iommu group 66
[    2.228820] pci 0000:7f:16.1: Adding to iommu group 66
[    2.228874] pci 0000:7f:16.2: Adding to iommu group 66
[    2.228974] pci 0000:7f:1c.0: Adding to iommu group 67
[    2.229030] pci 0000:7f:1c.1: Adding to iommu group 67
[    2.229071] pci 0000:7f:1d.0: Adding to iommu group 68
[    2.229113] pci 0000:7f:1d.1: Adding to iommu group 69
[    2.229153] pci 0000:7f:1d.2: Adding to iommu group 70
[    2.229193] pci 0000:7f:1d.3: Adding to iommu group 71
[    2.229232] pci 0000:7f:1d.4: Adding to iommu group 72
[    2.229275] pci 0000:7f:1d.5: Adding to iommu group 73
[    2.229315] pci 0000:7f:1e.0: Adding to iommu group 74
[    2.229359] pci 0000:7f:1e.1: Adding to iommu group 75
[    2.229399] pci 0000:7f:1e.2: Adding to iommu group 76
[    2.229442] pci 0000:7f:1e.3: Adding to iommu group 77
[    2.229482] pci 0000:7f:1e.4: Adding to iommu group 78
[    2.229521] pci 0000:7f:1e.5: Adding to iommu group 79
[    2.229561] pci 0000:7f:1e.6: Adding to iommu group 80
[    2.229603] pci 0000:7f:1e.7: Adding to iommu group 81
[    2.229644] pci 0000:80:05.0: Adding to iommu group 82
[    2.229683] pci 0000:80:05.2: Adding to iommu group 83
[    2.229725] pci 0000:80:05.4: Adding to iommu group 84
[    2.229794] pci 0000:ff:08.0: Adding to iommu group 85
[    2.229863] pci 0000:ff:09.0: Adding to iommu group 86
[    2.230021] pci 0000:ff:0a.0: Adding to iommu group 87
[    2.230085] pci 0000:ff:0a.1: Adding to iommu group 87
[    2.230154] pci 0000:ff:0a.2: Adding to iommu group 87
[    2.230221] pci 0000:ff:0a.3: Adding to iommu group 87
[    2.230321] pci 0000:ff:0b.0: Adding to iommu group 88
[    2.230379] pci 0000:ff:0b.3: Adding to iommu group 88
[    2.230597] pci 0000:ff:0c.0: Adding to iommu group 89
[    2.230659] pci 0000:ff:0c.1: Adding to iommu group 89
[    2.230717] pci 0000:ff:0c.2: Adding to iommu group 89
[    2.230775] pci 0000:ff:0c.3: Adding to iommu group 89
[    2.230833] pci 0000:ff:0c.4: Adding to iommu group 89
[    2.230892] pci 0000:ff:0c.5: Adding to iommu group 89
[    2.231115] pci 0000:ff:0d.0: Adding to iommu group 90
[    2.231180] pci 0000:ff:0d.1: Adding to iommu group 90
[    2.231247] pci 0000:ff:0d.2: Adding to iommu group 90
[    2.231307] pci 0000:ff:0d.3: Adding to iommu group 90
[    2.231367] pci 0000:ff:0d.4: Adding to iommu group 90
[    2.231426] pci 0000:ff:0d.5: Adding to iommu group 90
[    2.231525] pci 0000:ff:0e.0: Adding to iommu group 91
[    2.231586] pci 0000:ff:0e.1: Adding to iommu group 91
[    2.231628] pci 0000:ff:0f.0: Adding to iommu group 92
[    2.231668] pci 0000:ff:0f.1: Adding to iommu group 93
[    2.231708] pci 0000:ff:0f.2: Adding to iommu group 94
[    2.231748] pci 0000:ff:0f.3: Adding to iommu group 95
[    2.231791] pci 0000:ff:0f.4: Adding to iommu group 96
[    2.231831] pci 0000:ff:0f.5: Adding to iommu group 97
[    2.231871] pci 0000:ff:10.0: Adding to iommu group 98
[    2.231913] pci 0000:ff:10.1: Adding to iommu group 99
[    2.231953] pci 0000:ff:10.2: Adding to iommu group 100
[    2.231993] pci 0000:ff:10.3: Adding to iommu group 101
[    2.232038] pci 0000:ff:10.4: Adding to iommu group 102
[    2.232081] pci 0000:ff:10.5: Adding to iommu group 103
[    2.232132] pci 0000:ff:10.6: Adding to iommu group 104
[    2.232171] pci 0000:ff:10.7: Adding to iommu group 105
[    2.232330] pci 0000:ff:13.0: Adding to iommu group 106
[    2.232397] pci 0000:ff:13.1: Adding to iommu group 106
[    2.232460] pci 0000:ff:13.4: Adding to iommu group 106
[    2.232522] pci 0000:ff:13.5: Adding to iommu group 106
[    2.232656] pci 0000:ff:16.0: Adding to iommu group 107
[    2.232719] pci 0000:ff:16.1: Adding to iommu group 107
[    2.232783] pci 0000:ff:16.2: Adding to iommu group 107
[    2.232886] pci 0000:ff:1c.0: Adding to iommu group 108
[    2.232950] pci 0000:ff:1c.1: Adding to iommu group 108
[    2.232990] pci 0000:ff:1d.0: Adding to iommu group 109
[    2.233044] pci 0000:ff:1d.1: Adding to iommu group 110
[    2.233097] pci 0000:ff:1d.2: Adding to iommu group 111
[    2.233139] pci 0000:ff:1d.3: Adding to iommu group 112
[    2.233179] pci 0000:ff:1d.4: Adding to iommu group 113
[    2.233218] pci 0000:ff:1d.5: Adding to iommu group 114
[    2.233257] pci 0000:ff:1e.0: Adding to iommu group 115
[    2.233300] pci 0000:ff:1e.1: Adding to iommu group 116
[    2.233340] pci 0000:ff:1e.2: Adding to iommu group 117
[    2.233381] pci 0000:ff:1e.3: Adding to iommu group 118
[    2.233420] pci 0000:ff:1e.4: Adding to iommu group 119
[    2.233463] pci 0000:ff:1e.5: Adding to iommu group 120
[    2.233509] pci 0000:ff:1e.6: Adding to iommu group 121
[    2.233549] pci 0000:ff:1e.7: Adding to iommu group 122
[    2.233635] DMAR: Intel(R) Virtualization Technology for Directed I/O
[    2.233637] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    2.233639] software IO TLB: mapped [mem 0x0000000078b60000-0x000000007cb60000] (64MB)
[    2.264434] Initialise system trusted keyrings
[    2.264460] Key type blacklist registered
[    2.264717] workingset: timestamp_bits=36 max_order=26 bucket_order=0
[    2.265282] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    2.265598] fuse: init (API version 7.45)
[    2.265961] integrity: Platform Keyring initialized
[    2.265968] integrity: Machine keyring initialized
[    2.280036] Key type asymmetric registered
[    2.280040] Asymmetric key parser 'x509' registered
[    2.280116] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
[    2.280247] io scheduler mq-deadline registered
[    2.283239] ledtrig-cpu: registered to indicate activity on CPUs
[    2.283706] pcieport 0000:00:01.0: PME: Signaling with IRQ 26
[    2.284014] pcieport 0000:00:01.1: PME: Signaling with IRQ 27
[    2.284391] pcieport 0000:00:02.0: PME: Signaling with IRQ 29
[    2.284720] pcieport 0000:00:02.2: PME: Signaling with IRQ 30
[    2.285073] pcieport 0000:00:03.0: PME: Signaling with IRQ 32
[    2.285382] pcieport 0000:00:11.0: PME: Signaling with IRQ 33
[    2.285635] pcieport 0000:00:1c.0: PME: Signaling with IRQ 34
[    2.285855] pcieport 0000:00:1c.7: PME: Signaling with IRQ 35
[    2.286494] pcieport 0000:80:00.0: PME: Signaling with IRQ 37
[    2.286874] pcieport 0000:80:01.0: PME: Signaling with IRQ 39
[    2.287263] pcieport 0000:80:02.0: PME: Signaling with IRQ 41
[    2.287591] pcieport 0000:80:03.0: PME: Signaling with IRQ 43
[    2.288224] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    2.288326] ACPI: button: Power Button [PWRB]
[    2.288382] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    2.288435] ACPI: button: Power Button [PWRF]
[    2.351610] ERST: Error Record Serialization Table (ERST) support is initialized.
[    2.351726] pstore: Using crash dump compression: deflate
[    2.351728] pstore: Registered erst as persistent store backend
[    2.352033] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    2.372782] 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    2.394371] 00:07: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    2.398019] Linux agpgart interface v0.103
[    2.398310] ACPI: bus type drm_connector registered
[    2.409476] loop: module loaded
[    2.409982] tun: Universal TUN/TAP device driver, 1.6
[    2.410044] PPP generic driver version 2.4.2
[    2.410182] i8042: PNP: PS/2 Controller [PNP0f03:PS2M] at 0x60,0x64 irq 12
[    2.410186] i8042: PNP: PS/2 controller doesn't have KBD irq; using default 1
[    2.412929] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.412941] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.413080] mousedev: PS/2 mouse device common for all mice
[    2.413239] rtc_cmos 00:03: RTC can wake from S4
[    2.413498] rtc_cmos 00:03: registered as rtc0
[    2.413532] rtc_cmos 00:03: setting system clock to 2025-10-20T16:36:19 UTC (1760978179)
[    2.413574] rtc_cmos 00:03: alarms up to one month, y3k, 114 bytes nvram
[    2.413586] i2c_dev: i2c /dev entries driver
[    2.415566] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    2.415596] device-mapper: uevent: version 1.0.3
[    2.415698] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists.linux.dev
[    2.415708] intel_pstate: Intel P-state driver initializing
[    2.419293] drop_monitor: Initializing network drop monitor service
[    2.419471] NET: Registered PF_INET6 protocol family
[    2.420225] Segment Routing with IPv6
[    2.420235] In-situ OAM (IOAM) with IPv6
[    2.420256] NET: Registered PF_PACKET protocol family
[    2.420296] Bridge firewalling registered
[    2.420457] Key type dns_resolver registered
[    2.426286] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    2.428161] microcode: Current revision: 0x0000042e
[    2.428164] microcode: Updated early from: 0x00000424
[    2.430158] IPI shorthand broadcast: enabled
[    2.432407] sched_clock: Marking stable (2424883558, 7143821)->(2650017368, -217989989)
[    2.432821] registered taskstats version 1
[    2.437907] Loading compiled-in X.509 certificates
[    2.438738] Loaded X.509 cert 'Build time autogenerated kernel key: 255135fc134f9dd0c687e889b29114d6d31e0dbb'
[    2.444492] Demotion targets for Node 0: null
[    2.444495] Demotion targets for Node 1: null
[    2.444793] Key type .fscrypt registered
[    2.444797] Key type fscrypt-provisioning registered
[    3.295169] tsc: Refined TSC clocksource calibration: 2699.998 MHz
[    3.295205] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x26eb3cc21a9, max_idle_ns: 440795299783 ns
[    3.295336] clocksource: Switched to clocksource tsc
[    7.226122] Freeing initrd memory: 499836K
[    7.244317] Key type encrypted registered
[    7.244322] AppArmor: AppArmor sha256 policy hashing enabled
[    7.244337] ima: No TPM chip found, activating TPM-bypass!
[    7.244346] Loading compiled-in module X.509 certificates
[    7.244974] Loaded X.509 cert 'Build time autogenerated kernel key: 255135fc134f9dd0c687e889b29114d6d31e0dbb'
[    7.244977] ima: Allocated hash algorithm: sha256
[    7.244997] ima: No architecture policies found
[    7.245030] evm: Initialising EVM extended attributes:
[    7.245032] evm: security.selinux
[    7.245033] evm: security.SMACK64
[    7.245034] evm: security.SMACK64EXEC
[    7.245035] evm: security.SMACK64TRANSMUTE
[    7.245036] evm: security.SMACK64MMAP
[    7.245037] evm: security.apparmor
[    7.245038] evm: security.ima
[    7.245039] evm: security.capability
[    7.245040] evm: HMAC attrs: 0x1
[    7.245574] PM:   Magic number: 13:805:641
[    7.247403] RAS: Correctable Errors collector initialized.
[    7.252401] clk: Disabling unused clocks
[    7.252405] PM: genpd: Disabling unused power domains
[    7.254512] Freeing unused decrypted memory: 2028K
[    7.256262] Freeing unused kernel image (initmem) memory: 4932K
[    7.256394] Write protecting the kernel read-only data: 38912k
[    7.257101] Freeing unused kernel image (text/rodata gap) memory: 1060K
[    7.257691] Freeing unused kernel image (rodata/data gap) memory: 1028K
[    7.304591] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    7.304595] x86/mm: Checking user space page tables
[    7.346575] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    7.346584] Run /init as init process
[    7.346585]   with arguments:
[    7.346587]     /init
[    7.346588]   with environment:
[    7.346589]     HOME=/
[    7.346590]     TERM=linux
[    7.570682] dca service started, version 1.12.1
[    7.583798] ioatdma: Intel(R) QuickData Technology Driver 5.00
[    7.585543] Adaptec aacraid driver 1.2.1[50983]-custom
[    7.590753] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    7.590766] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    7.590780] ehci-pci 0000:00:1a.0: debug port 2
[    7.594698] ehci-pci 0000:00:1a.0: irq 17, io mem 0xc6127000
[    7.594734] ahci 0000:00:1f.2: AHCI vers 0001.0300, 32 command slots, 6 Gbps, SATA mode
[    7.594737] ahci 0000:00:1f.2: 6/6 ports implemented (port mask 0x3f)
[    7.594740] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst 
[    7.598467] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    7.603903] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    7.603996] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.18
[    7.603999] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    7.604001] usb usb1: Product: EHCI Host Controller
[    7.604003] usb usb1: Manufacturer: Linux 6.18.0-rc1 ehci_hcd
[    7.604005] usb usb1: SerialNumber: 0000:00:1a.0
[    7.604225] hub 1-0:1.0: USB hub found
[    7.604237] hub 1-0:1.0: 2 ports detected
[    7.604506] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    7.604513] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    7.604525] ehci-pci 0000:00:1d.0: debug port 2
[    7.607331] igb: Intel(R) Gigabit Ethernet Network Driver
[    7.607335] igb: Copyright (c) 2007-2014 Intel Corporation.
[    7.608508] aacraid: Comm Interface enabled
[    7.612505] ehci-pci 0000:00:1d.0: irq 23, io mem 0xc6126000
[    7.612958] i2c i2c-0: Successfully instantiated SPD at 0x56
[    7.618277] scsi host1: ahci
[    7.621668] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    7.621742] scsi host2: ahci
[    7.621874] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.18
[    7.621878] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    7.621883] usb usb2: Product: EHCI Host Controller
[    7.621885] usb usb2: Manufacturer: Linux 6.18.0-rc1 ehci_hcd
[    7.621886] usb usb2: SerialNumber: 0000:00:1d.0
[    7.622067] scsi host3: ahci
[    7.622191] hub 2-0:1.0: USB hub found
[    7.622244] hub 2-0:1.0: 2 ports detected
[    7.622353] scsi host4: ahci
[    7.622642] scsi host5: ahci
[    7.622862] scsi host6: ahci
[    7.622924] ata1: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125100 irq 44 lpm-pol 1 ext
[    7.622927] ata2: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125180 irq 44 lpm-pol 1 ext
[    7.622930] ata3: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125200 irq 44 lpm-pol 1 ext
[    7.622932] ata4: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125280 irq 44 lpm-pol 1 ext
[    7.622934] ata5: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125300 irq 44 lpm-pol 1 ext
[    7.622936] ata6: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125380 irq 44 lpm-pol 1 ext
[    7.649399] isci: Intel(R) C600 SAS Controller Driver - version 1.2.0
[    7.652517] isci 0000:06:00.0: driver configured for rev: 6 silicon
[    7.652532] isci 0000:06:00.0: OEM parameter table found in OROM
[    7.652536] isci 0000:06:00.0: OEM SAS parameters (version: 1.1) loaded (platform)
[    7.656066] isci 0000:06:00.0: SCU controller 0: phy 3-0 cables: {short, short, short, short}
[    7.658371] scsi host7: isci
[    7.700195] igb 0000:07:00.0: DCA enabled
[    7.700497] igb 0000:07:00.0: added PHC on eth0
[    7.700533] igb 0000:07:00.0: Intel(R) Gigabit Ethernet Network Connection
[    7.700535] igb 0000:07:00.0: eth0: (PCIe:5.0Gb/s:Width x4) e0:3f:49:e7:2a:31
[    7.700612] igb 0000:07:00.0: eth0: PBA No: 104900-000
[    7.700614] igb 0000:07:00.0: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
[    7.755710] igb 0000:07:00.1: DCA enabled
[    7.755882] igb 0000:07:00.1: added PHC on eth1
[    7.755903] igb 0000:07:00.1: Intel(R) Gigabit Ethernet Network Connection
[    7.755905] igb 0000:07:00.1: eth1: (PCIe:5.0Gb/s:Width x4) e0:3f:49:e7:2a:32
[    7.755980] igb 0000:07:00.1: eth1: PBA No: 104900-000
[    7.755982] igb 0000:07:00.1: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
[    7.813568] AAC0: kernel 5.2-0[18948] Apr 13 2012
[    7.813573] AAC0: monitor 5.2-0[18948]
[    7.813575] AAC0: bios 5.2-0[18948]
[    7.813578] AAC0: serial 3E4313486E1
[    7.813579] AAC0: Non-DASD support enabled.
[    7.813580] AAC0: 64bit support enabled.
[    7.813582] aacraid 0000:04:00.0: 64 Bit DAC enabled
[    7.828244] scsi host0: aacraid
[    7.828650] scsi 0:0:0:0: Direct-Access     Adaptec  linus_raid1_1tb  V1.0 PQ: 0 ANSI: 2
[    7.828821] scsi 0:0:1:0: Direct-Access     Adaptec  linus_raid5_5tb  V1.0 PQ: 0 ANSI: 2
[    7.839205] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    7.839547] scsi 0:1:0:0: Direct-Access              Samsung SSD 860  RVM0 PQ: 1 ANSI: 5
[    7.842736] scsi 0:1:1:0: Direct-Access              Samsung SSD 860  RVM0 PQ: 1 ANSI: 5
[    7.846042] scsi 0:1:2:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    7.849524] scsi 0:1:3:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    7.853141] scsi 0:1:4:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    7.856801] scsi 0:1:5:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    7.860436] scsi 0:1:6:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    7.863152] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    7.864067] scsi 0:1:7:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    7.932734] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    7.932898] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    7.933067] ata2.00: ATA-9: M4-CT256M4SSD2, 0309, max UDMA/100
[    7.933236] ata2.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    7.933349] ata5: SATA link down (SStatus 0 SControl 300)
[    7.933376] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    7.933397] ata6: SATA link down (SStatus 0 SControl 300)
[    7.933417] ata4: SATA link down (SStatus 0 SControl 300)
[    7.933603] ata2.00: configured for UDMA/100
[    7.933676] ata1.00: ATA-9: M4-CT256M4SSD2, 0309, max UDMA/100
[    7.933882] ata1.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    7.934333] ata1.00: configured for UDMA/100
[    7.934693] ata3.00: ATAPI: ATAPI   iHAS124   W, HL0F, max UDMA/100
[    7.936773] ata3.00: configured for UDMA/100
[    7.944535] scsi: waiting for bus probes to complete ...
[    7.951214] scsi 0:3:0:0: Enclosure         ADAPTEC  Virtual SGPIO  0 0001 PQ: 0 ANSI: 5
[    7.964618] usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[    7.964623] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    7.964931] hub 1-1:1.0: USB hub found
[    7.964991] hub 1-1:1.0: 6 ports detected
[    7.988614] usb 2-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[    7.988619] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    7.988935] hub 2-1:1.0: USB hub found
[    7.989009] hub 2-1:1.0: 8 ports detected
[    8.244030] scsi 0:3:0:0: scsi_get_vpd_size: long VPD page 0 length: 516 bytes
[    8.248227] usb 1-1.3: new high-speed USB device number 3 using ehci-pci
[    8.272212] usb 2-1.1: new low-speed USB device number 3 using ehci-pci
[    8.354647] usb 2-1.1: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.02
[    8.354651] usb 2-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    8.354653] usb 2-1.1: Product: USB Keyboard
[    8.354655] usb 2-1.1: Manufacturer: Logitech
[    8.358392] input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input4
[    8.372539] hid: raw HID events driver (C) Jiri Kosina
[    8.552495] usb 1-1.3: New USB device found, idVendor=046b, idProduct=ff01, bcdDevice= 1.00
[    8.552499] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    8.552501] usb 1-1.3: Product: Virtual Hub
[    8.552502] usb 1-1.3: Manufacturer: American Megatrends Inc.
[    8.552503] usb 1-1.3: SerialNumber: serial
[    8.553009] hub 1-1.3:1.0: USB hub found
[    8.553115] hub 1-1.3:1.0: 5 ports detected
[    8.874226] usb 1-1.3.1: new low-speed USB device number 4 using ehci-pci
[    9.016368] usb 1-1.3.1: New USB device found, idVendor=046b, idProduct=ff10, bcdDevice= 1.00
[    9.016373] usb 1-1.3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    9.016375] usb 1-1.3.1: Product: Virtual Keyboard and Mouse
[    9.016376] usb 1-1.3.1: Manufacturer: American Megatrends Inc.
[    9.071986] usbcore: registered new interface driver usbhid
[    9.071989] usbhid: USB HID core driver
[    9.132229] usb 1-1.3.2: new high-speed USB device number 5 using ehci-pci
[    9.274252] usb 1-1.3.2: New USB device found, idVendor=046b, idProduct=ff20, bcdDevice= 1.00
[    9.274265] usb 1-1.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    9.274271] usb 1-1.3.2: Product: Virtual Cdrom Device
[    9.274275] usb 1-1.3.2: Manufacturer: American Megatrends Inc.
[    9.274291] usb 1-1.3.2: SerialNumber: AAAABBBBCCCC1
[    9.285737] usb-storage 1-1.3.2:1.0: USB Mass Storage device detected
[    9.286182] scsi host8: usb-storage 1-1.3.2:1.0
[    9.286384] usbcore: registered new interface driver usb-storage
[    9.390224] usb 1-1.3.3: new high-speed USB device number 6 using ehci-pci
[    9.532255] usb 1-1.3.3: New USB device found, idVendor=046b, idProduct=ff40, bcdDevice= 1.00
[    9.532267] usb 1-1.3.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    9.532273] usb 1-1.3.3: Product: Virtual Floppy Device
[    9.532290] usb 1-1.3.3: Manufacturer: American Megatrends Inc.
[    9.532292] usb 1-1.3.3: SerialNumber: AAAABBBBCCCC2
[    9.532632] usb-storage 1-1.3.3:1.0: USB Mass Storage device detected
[    9.533008] usb-storage 1-1.3.3:1.0: Quirks match for vid 046b pid ff40: 200
[    9.533077] scsi host9: usb-storage 1-1.3.3:1.0
[    9.538564] usbcore: registered new interface driver uas
[    9.648223] usb 1-1.3.4: new high-speed USB device number 7 using ehci-pci
[    9.790118] usb 1-1.3.4: New USB device found, idVendor=046b, idProduct=ff31, bcdDevice= 1.00
[    9.790122] usb 1-1.3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    9.790124] usb 1-1.3.4: Product: Virtual HardDisk Device
[    9.790126] usb 1-1.3.4: Manufacturer: American Megatrends Inc.
[    9.790127] usb 1-1.3.4: SerialNumber: AAAABBBBCCCC3
[    9.790514] usb-storage 1-1.3.4:1.0: USB Mass Storage device detected
[    9.790707] scsi host10: usb-storage 1-1.3.4:1.0
[   10.336090] scsi 8:0:0:0: CD-ROM            AMI      Virtual CDROM0   1.00 PQ: 0 ANSI: 0 CCS
[   10.592078] scsi 9:0:0:0: Direct-Access     AMI      Virtual Floppy0  1.00 PQ: 0 ANSI: 0 CCS
[   10.848087] scsi 10:0:0:0: Direct-Access     AMI      Virtual HDISK0   1.00 PQ: 0 ANSI: 0 CCS
[   37.274159] scsi 0:3:1:0: Enclosure         ADAPTEC  Virtual SGPIO  1 0001 PQ: 0 ANSI: 5
[   66.400517] sd 0:0:0:0: [sda] 1998565376 512-byte logical blocks: (1.02 TB/953 GiB)
[   66.400528] sd 0:0:0:0: [sda] Write Protect is off
[   66.400533] sd 0:0:0:0: [sda] Mode Sense: 12 00 10 08
[   66.400546] sd 0:0:0:0: Attached scsi generic sg0 type 0
[   66.400549] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, supports DPO and FUA
[   66.400807] sd 0:0:1:0: Attached scsi generic sg1 type 0
[   66.400906] sd 0:0:1:0: [sdb] Very big device. Trying to use READ CAPACITY(16).
[   66.400920] sd 0:0:1:0: [sdb] 9762222080 512-byte logical blocks: (5.00 TB/4.54 TiB)
[   66.400928] sd 0:0:1:0: [sdb] Write Protect is off
[   66.400932] sd 0:0:1:0: [sdb] Mode Sense: 12 00 10 08
[   66.400947] sd 0:0:1:0: [sdb] Write cache: disabled, read cache: enabled, supports DPO and FUA
[   66.400991] scsi 0:1:0:0: Attached scsi generic sg2 type 0
[   66.401222] scsi 0:1:1:0: Attached scsi generic sg3 type 0
[   66.401416] scsi 0:1:2:0: Attached scsi generic sg4 type 0
[   66.401602] scsi 0:1:3:0: Attached scsi generic sg5 type 0
[   66.401778] scsi 0:1:4:0: Attached scsi generic sg6 type 0
[   66.401943] scsi 0:1:5:0: Attached scsi generic sg7 type 0
[   66.402095] scsi 0:1:6:0: Attached scsi generic sg8 type 0
[   66.402277] scsi 0:1:7:0: Attached scsi generic sg9 type 0
[   66.402477] scsi 0:3:0:0: Attached scsi generic sg10 type 13
[   66.402667] scsi 0:3:1:0: Attached scsi generic sg11 type 13
[   66.402871] scsi 1:0:0:0: Direct-Access     ATA      M4-CT256M4SSD2   0309 PQ: 0 ANSI: 5
[   66.403144] sd 1:0:0:0: Attached scsi generic sg12 type 0
[   66.403226] scsi: waiting for bus probes to complete ...
[   66.403289] sd 1:0:0:0: [sdc] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[   66.403303] sd 1:0:0:0: [sdc] Write Protect is off
[   66.403306] sd 1:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[   66.403323] sd 1:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   66.403349] sd 1:0:0:0: [sdc] Preferred minimum I/O size 512 bytes
[   66.405610] sr 8:0:0:0: [sr0] scsi-1 drive
[   66.405614] cdrom: Uniform CD-ROM driver Revision: 3.20
[   66.420386] sr 8:0:0:0: Attached scsi CD-ROM sr0
[   66.420434] sd 0:0:1:0: [sdb] Very big device. Trying to use READ CAPACITY(16).
[   66.420528] sr 8:0:0:0: Attached scsi generic sg13 type 5
[   66.420780] sd 9:0:0:0: Attached scsi generic sg14 type 0
[   66.421012] sd 10:0:0:0: Attached scsi generic sg15 type 0
[   66.421207] scsi 2:0:0:0: Direct-Access     ATA      M4-CT256M4SSD2   0309 PQ: 0 ANSI: 5
[   66.421508] sd 2:0:0:0: Attached scsi generic sg16 type 0
[   66.421598] sd 2:0:0:0: [sdf] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[   66.421610] sd 2:0:0:0: [sdf] Write Protect is off
[   66.421614] sd 2:0:0:0: [sdf] Mode Sense: 00 3a 00 00
[   66.421634] sd 2:0:0:0: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   66.421659] sd 2:0:0:0: [sdf] Preferred minimum I/O size 512 bytes
[   66.421672] sd 9:0:0:0: [sdd] Media removed, stopped polling
[   66.421819] sd 10:0:0:0: [sde] Media removed, stopped polling
[   66.422305] scsi 3:0:0:0: CD-ROM            ATAPI    iHAS124   W      HL0F PQ: 0 ANSI: 5
[   66.424469] sd 0:0:0:0: [sda] Attached SCSI removable disk
[   66.428354] sd 10:0:0:0: [sde] Attached SCSI removable disk
[   66.429653]  sdc: sdc1 sdc2 < sdc5 >
[   66.429856] sd 1:0:0:0: [sdc] Attached SCSI disk
[   66.430348] sd 0:0:1:0: [sdb] Attached SCSI removable disk
[   66.433331] sd 9:0:0:0: [sdd] Attached SCSI removable disk
[   66.442522]  sdf: sdf1
[   66.442644] sd 2:0:0:0: [sdf] Attached SCSI disk
[   66.476868] sr 3:0:0:0: [sr1] scsi3-mmc drive: 188x/125x writer dvd-ram cd/rw xa/form2 cdda tray
[   66.504312] sr 3:0:0:0: Attached scsi CD-ROM sr1
[   66.504477] sr 3:0:0:0: Attached scsi generic sg17 type 5
[   66.509368] usbcore: registered new interface driver usbkbd
[   66.509611] usbcore: registered new interface driver usbmouse
[   66.516750] igb 0000:07:00.0 enp7s0f0: renamed from eth0
[   66.517604] igb 0000:07:00.1 enp7s0f1: renamed from eth1
[   66.521111] input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.0/0003:046D:C31C.0001/input/input5
[   66.571406] hid-generic 0003:046D:C31C.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-0000:00:1d.0-1.1/input0
[   66.571645] input: Logitech USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.1/0003:046D:C31C.0002/input/input6
[   66.622340] input: Logitech USB Keyboard System Control as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.1/0003:046D:C31C.0002/input/input7
[   66.622467] hid-generic 0003:046D:C31C.0002: input,hiddev0,hidraw1: USB HID v1.10 Device [Logitech USB Keyboard] on usb-0000:00:1d.0-1.1/input1
[   66.622717] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3.1/1-1.3.1:1.0/0003:046B:FF10.0003/input/input8
[   66.622820] hid-generic 0003:046B:FF10.0003: input,hidraw2: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.0-1.3.1/input0
[   66.622970] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3.1/1-1.3.1:1.1/0003:046B:FF10.0004/input/input9
[   66.623065] hid-generic 0003:046B:FF10.0004: input,hidraw3: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.0-1.3.1/input1
[   69.832222] device-mapper: thin: Data device (dm-1) discard unsupported: Disabling discard passdown.
[   78.405173] device-mapper: thin: Data device (dm-3) discard unsupported: Disabling discard passdown.
[   78.481157] raid6: sse2x4   gen() 12697 MB/s
[   78.498185] raid6: sse2x2   gen()  8310 MB/s
[   78.515166] raid6: sse2x1   gen()  8342 MB/s
[   78.515168] raid6: using algorithm sse2x4 gen() 12697 MB/s
[   78.532178] raid6: .... xor() 7177 MB/s, rmw enabled
[   78.532181] raid6: using ssse3x2 recovery algorithm
[   78.534668] xor: automatically using best checksumming function   avx       
[   78.762674] Btrfs loaded, zoned=yes, fsverity=yes
[   78.895526] PM: Image not found (code -22)
[   78.935636] EXT4-fs (sdc1): mounted filesystem 3842ebdd-e37f-4e4e-afd4-d7eb79b41984 ro with ordered data mode. Quota mode: none.
[   79.269737] systemd[1]: Inserted module 'autofs4'
[   79.301626] systemd[1]: systemd 257.8-1~deb13u2 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +IPE +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF -XKBCOMMON -UTMP +SYSVINIT +LIBARCHIVE)
[   79.301633] systemd[1]: Detected architecture x86-64.
[   79.306252] systemd[1]: Hostname set to <linus.localdomain>.
[   79.397955] systemd[1]: bpf-restrict-fs: BPF LSM hook not enabled in the kernel, BPF LSM not supported.
[   79.587402] systemd[1]: /usr/lib/systemd/system/rrdcached.socket:11: ListenStream= references a path below legacy directory /var/run/, updating /var/run/rrdcached.sock → /run/rrdcached.sock; please update the unit file accordingly.
[   79.596257] systemd[1]: Queued start job for default target graphical.target.
[   79.618269] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[   79.619016] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[   79.619879] systemd[1]: Created slice system-xfs_scrub.slice - xfs_scrub background service slice.
[   79.620527] systemd[1]: Created slice user.slice - User and Session Slice.
[   79.620613] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[   79.620681] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[   79.620902] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[   79.620934] systemd[1]: Expecting device dev-disk-by\x2duuid-e5873103\x2d5ea5\x2d4dc0\x2da645\x2db8c511b219a8.device - /dev/disk/by-uuid/e5873103-5ea5-4dc0-a645-b8c511b219a8...
[   79.620945] systemd[1]: Expecting device dev-disk-by\x2duuid-fcf5433d\x2d28bd\x2d4d22\x2db3ba\x2ddd7262ae33a9.device - /dev/disk/by-uuid/fcf5433d-28bd-4d22-b3ba-dd7262ae33a9...
[   79.620958] systemd[1]: Reached target ceph-fuse.target - ceph target allowing to start/stop all ceph-fuse@.service instances at once.
[   79.620976] systemd[1]: Reached target ceph.target - ceph target allowing to start/stop all ceph*@.service instances at once.
[   79.620992] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[   79.621016] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[   79.621053] systemd[1]: Reached target paths.target - Path Units.
[   79.621087] systemd[1]: Reached target slices.target - Slice Units.
[   79.621118] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[   79.621259] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[   79.621361] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[   79.625789] systemd[1]: Listening on rpcbind.socket - RPCbind Server Activation Socket.
[   79.625943] systemd[1]: Listening on syslog.socket - Syslog Socket.
[   79.626944] systemd[1]: Listening on systemd-creds.socket - Credential Encryption/Decryption.
[   79.627049] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[   79.627177] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[   79.627312] systemd[1]: Listening on systemd-journald.socket - Journal Sockets.
[   79.627350] systemd[1]: systemd-pcrextend.socket - TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[   79.627372] systemd[1]: systemd-pcrlock.socket - Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[   79.627506] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[   79.627587] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[   79.629073] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[   79.630228] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[   79.630303] systemd[1]: run-lock.mount: Directory /run/lock to mount over is not empty, mounting anyway.
[   79.631552] systemd[1]: Mounting run-lock.mount - Legacy Locks Directory /run/lock...
[   79.633228] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[   79.634395] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[   79.634464] systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
[   79.636061] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[   79.637413] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[   79.638653] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[   79.640127] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[   79.641305] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[   79.642467] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[   79.643652] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[   79.643953] 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).
[   79.643988] systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
[   79.646760] systemd[1]: Starting systemd-journald.service - Journal Service...
[   79.649804] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[   79.649825] systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[   79.651257] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[   79.651308] systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[   79.652685] systemd[1]: Starting systemd-udev-load-credentials.service - Load udev Rules from Credentials...
[   79.654247] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[   79.657659] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[   79.657811] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[   79.657955] systemd[1]: Mounted run-lock.mount - Legacy Locks Directory /run/lock.
[   79.658089] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[   79.658245] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[   79.658663] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[   79.659104] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[   79.659382] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[   79.659735] systemd[1]: modprobe@drm.service: Deactivated successfully.
[   79.659983] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[   79.661074] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[   79.661355] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[   79.661721] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[   79.661939] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[   79.663628] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[   79.664855] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[   79.666181] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[   79.672629] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[   79.673621] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[   79.676753] systemd[1]: Finished systemd-udev-load-credentials.service - Load udev Rules from Credentials.
[   79.683195] EXT4-fs (sdc1): re-mounted 3842ebdd-e37f-4e4e-afd4-d7eb79b41984 r/w.
[   79.684254] systemd-journald[753]: Collecting audit messages is disabled.
[   79.684409] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[   79.688576] systemd[1]: Starting quota.service - Initial Check File System Quotas...
[   79.688993] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[   79.689051] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[   79.690403] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
[   79.690429] systemd[1]: systemd-tpm2-setup.service - TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[   79.706809] VFIO - User Level meta-driver version: 0.3
[   79.718525] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
[   79.718735] systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
[   79.720334] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[   79.742375] systemd[1]: Finished systemd-random-seed.service - Load/Save OS Random Seed.
[   79.745006] systemd[1]: Started dm-event.service - Device-mapper event daemon.
[   79.745585] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[   79.745989] systemd[1]: Finished quota.service - Initial Check File System Quotas.
[   79.754308] vfio-pci 0000:05:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=none
[   79.754527] vfio_pci: add [10de:1201[ffffffff:ffffffff]] class 0x000000/00000000
[   79.754716] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
[   79.756800] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
[   79.802644] vfio_pci: add [10de:0e0c[ffffffff:ffffffff]] class 0x000000/00000000
[   79.832017] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[   79.833580] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[   79.835541] systemd[1]: Started systemd-udevd.service - Rule-based Manager for Device Events and Files.
[   79.879298] systemd[1]: Finished lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
[   79.879438] systemd[1]: Reached target local-fs-pre.target - Preparation for Local File Systems.
[   79.880883] systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.
[   79.894103] systemd[1]: Started systemd-journald.service - Journal Service.
[   79.923381] systemd-journald[753]: Received client request to flush runtime journal.
[   80.027874] IPMI message handler: version 39.2
[   80.044451] ipmi device interface
[   80.045648] ses 0:3:0:0: Attached Enclosure device
[   80.045667] ses 0:3:1:0: Attached Enclosure device
[   80.049995] at24 0-0056: supply vcc not found, using dummy regulator
[   80.051092] at24 0-0056: 256 byte spd EEPROM, read-only
[   80.064600] ipmi_si: IPMI System Interface driver
[   80.064650] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
[   80.064654] ipmi_platform: ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
[   80.064657] ipmi_si: Adding SMBIOS-specified kcs state machine
[   80.064729] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
[   80.064870] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca2] regsize 1 spacing 1 irq 0
[   80.065093] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
[   80.065098] ipmi_si: Adding ACPI-specified kcs state machine
[   80.065210] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x20, irq 0
[   80.081591] input: PC Speaker as /devices/platform/pcspkr/input/input10
[   80.095715] mei_me 0000:00:16.0: Device doesn't have valid ME Interface
[   80.122009] ast 0000:0a:00.0: vgaarb: deactivate vga console
[   80.122507] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[   80.122512] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[   80.122513] RAPL PMU: hw unit of domain package 2^-16 Joules
[   80.122514] RAPL PMU: hw unit of domain dram 2^-16 Joules
[   80.123415] Console: switching to colour dummy device 80x25
[   80.123597] ast 0000:0a:00.0: Using P2A bridge for configuration
[   80.123601] ast 0000:0a:00.0: AST 2300 detected
[   80.123674] ast 0000:0a:00.0: [drm] Using analog VGA
[   80.124000] ast 0000:0a:00.0: [drm] Registered 1 planes with drm panic
[   80.124004] [drm] Initialized ast 0.1.0 for 0000:0a:00.0 on minor 0
[   80.288203] fbcon: astdrmfb (fb0) is primary device
[   80.302242] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x000a3f, prod_id: 0x0c63, dev_id: 0x20)
[   80.334219] snd_hda_intel 0000:00:1b.0: no codecs found!
[   80.334416] Console: switching to colour frame buffer device 210x65
[   80.375754] ipmi_si IPI0001:00: IPMI kcs interface initialized
[   80.383442] ipmi_ssif: IPMI SSIF Interface driver
[   80.414093] ast 0000:0a:00.0: [drm] fb0: astdrmfb frame buffer device
[   80.453610] Adding 31307772k swap on /dev/sdc5.  Priority:-2 extents:1 across:31307772k SS
[   80.654308] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[   80.654329] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[   80.654344] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[   80.654352] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[   80.654358] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[   80.654364] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[   80.654366] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[   80.654371] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[   80.654376] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[   80.654379] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[   80.654384] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[   80.654389] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[   80.654392] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[   80.654396] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[   80.654402] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[   80.654405] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[   80.654410] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[   80.654415] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[   80.654417] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[   80.654422] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[   80.654428] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[   80.654430] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[   80.654435] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[   80.654441] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[   80.654443] EDAC sbridge: Seeking for: PCI ID 8086:0e68
[   80.654449] EDAC sbridge: Seeking for: PCI ID 8086:0e68
[   80.654455] EDAC sbridge: Seeking for: PCI ID 8086:0e68
[   80.654456] EDAC sbridge: Seeking for: PCI ID 8086:0e79
[   80.654462] EDAC sbridge: Seeking for: PCI ID 8086:0e79
[   80.654468] EDAC sbridge: Seeking for: PCI ID 8086:0e79
[   80.654469] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[   80.654475] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[   80.654481] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[   80.654483] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[   80.654489] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[   80.654494] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[   80.654496] EDAC sbridge: Seeking for: PCI ID 8086:0e6c
[   80.654502] EDAC sbridge: Seeking for: PCI ID 8086:0e6c
[   80.654508] EDAC sbridge: Seeking for: PCI ID 8086:0e6c
[   80.654510] EDAC sbridge: Seeking for: PCI ID 8086:0e6d
[   80.654516] EDAC sbridge: Seeking for: PCI ID 8086:0e6d
[   80.654521] EDAC sbridge: Seeking for: PCI ID 8086:0e6d
[   80.654523] EDAC sbridge: Seeking for: PCI ID 8086:0eb8
[   80.654531] EDAC sbridge: Seeking for: PCI ID 8086:0ebc
[   80.654539] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[   80.654544] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[   80.654550] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[   80.654552] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[   80.654557] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[   80.654562] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[   80.654564] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[   80.654570] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[   80.654575] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[   80.654669] EDAC MC0: Giving out device to module sb_edac controller Ivy Bridge SrcID#0_Ha#0: DEV 0000:7f:0e.0 (INTERRUPT)
[   80.654755] EDAC MC1: Giving out device to module sb_edac controller Ivy Bridge SrcID#1_Ha#0: DEV 0000:ff:0e.0 (INTERRUPT)
[   80.654829] EDAC MC2: Giving out device to module sb_edac controller Ivy Bridge SrcID#0_Ha#1: DEV 0000:7f:1c.0 (INTERRUPT)
[   80.654914] EDAC MC3: Giving out device to module sb_edac controller Ivy Bridge SrcID#1_Ha#1: DEV 0000:ff:1c.0 (INTERRUPT)
[   80.654915] EDAC sbridge:  Ver: 1.1.2 
[   80.685047] intel_rapl_common: Found RAPL domain package
[   80.685050] intel_rapl_common: Found RAPL domain core
[   80.685054] intel_rapl_common: Found RAPL domain dram
[   80.685069] intel_rapl_common: package-0:core:long_term locked by BIOS
[   80.685072] intel_rapl_common: package-0:dram:long_term locked by BIOS
[   80.685428] intel_rapl_common: Found RAPL domain package
[   80.685431] intel_rapl_common: Found RAPL domain core
[   80.685434] intel_rapl_common: Found RAPL domain dram
[   80.685467] intel_rapl_common: package-1:core:long_term locked by BIOS
[   80.685470] intel_rapl_common: package-1:dram:long_term locked by BIOS
[   80.735499] EXT4-fs (sdf1): mounted filesystem fcf5433d-28bd-4d22-b3ba-dd7262ae33a9 r/w with ordered data mode. Quota mode: none.
[   80.901714] audit: type=1400 audit(1760978257.986:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-usernsexec" pid=1456 comm="apparmor_parser"
[   80.901776] audit: type=1400 audit(1760978257.986:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="notepadqq" pid=1460 comm="apparmor_parser"
[   80.901815] audit: type=1400 audit(1760978257.986:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="balena-etcher" pid=1416 comm="apparmor_parser"
[   80.902006] audit: type=1400 audit(1760978257.986:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="QtWebEngineProcess" pid=1412 comm="apparmor_parser"
[   80.902013] audit: type=1400 audit(1760978257.986:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="geary" pid=1436 comm="apparmor_parser"
[   80.902017] audit: type=1400 audit(1760978257.986:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="loupe" pid=1446 comm="apparmor_parser"
[   80.902048] audit: type=1400 audit(1760978257.986:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="goldendict" pid=1438 comm="apparmor_parser"
[   80.902118] audit: type=1400 audit(1760978257.986:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="evolution" pid=1432 comm="apparmor_parser"
[   80.902187] audit: type=1400 audit(1760978257.987:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-attach" pid=1448 comm="apparmor_parser"
[   80.902240] audit: type=1400 audit(1760978257.987:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="devhelp" pid=1428 comm="apparmor_parser"
[   81.050500] softdog: initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=0)
[   81.050506] softdog:              soft_reboot_cmd=<not set> soft_active_on_boot=0
[   81.854356] RPC: Registered named UNIX socket transport module.
[   81.854365] RPC: Registered udp transport module.
[   81.854366] RPC: Registered tcp transport module.
[   81.854367] RPC: Registered tcp-with-tls transport module.
[   81.854368] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   82.270143] vmbr0: port 1(enp7s0f0) entered blocking state
[   82.270169] vmbr0: port 1(enp7s0f0) entered disabled state
[   82.270203] igb 0000:07:00.0 enp7s0f0: entered allmulticast mode
[   82.270282] igb 0000:07:00.0 enp7s0f0: entered promiscuous mode
[   82.916688] Loading iSCSI transport class v2.0-870.
[   85.680679] igb 0000:07:00.0 enp7s0f0: igb: enp7s0f0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
[   85.680908] vmbr0: port 1(enp7s0f0) entered blocking state
[   85.680912] vmbr0: port 1(enp7s0f0) entered forwarding state
[   95.427851] kvm_intel: L1TF CPU bug present and SMT on, data leak possible. See CVE-2018-3646 and https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/l1tf.html for details.
[   95.710644] netfs: FS-Cache loaded
[   96.133413] NFS: Registering the id_resolver key type
[   96.133430] Key type id_resolver registered
[   96.133431] Key type id_legacy registered

[-- Attachment #3: dmesg_618rc2.txt --]
[-- Type: text/plain, Size: 119268 bytes --]

[    0.000000] Linux version 6.18.0-rc2 (root@linus.localdomain) (gcc (Debian 14.2.0-19) 14.2.0, GNU ld (GNU Binutils for Debian) 2.44) #1 SMP PREEMPT_DYNAMIC Mon Oct 20 05:29:48 CEST 2025
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-6.18.0-rc2 root=UUID=3842ebdd-e37f-4e4e-afd4-d7eb79b41984 ro quiet intel_iommu=on iommu=pt vfio-pci.ids=10de:1201,10de:0e0c
[    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] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000096fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000097000-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007cb5ffff] usable
[    0.000000] BIOS-e820: [mem 0x000000007cb60000-0x000000007cb8cfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007cb8d000-0x000000007cca4fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007cca5000-0x000000007d8defff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007d8df000-0x000000007eb06fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007eb07000-0x000000007effffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000080000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed3ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000407fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: ASUSTeK COMPUTER INC. Z9PE-D16 Series/Z9PE-D16 Series, BIOS 5601 06/11/2015
[    0.000000] DMI: Memory slots populated: 16/16
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2699.868 MHz processor
[    0.001190] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.001194] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.001202] last_pfn = 0x4080000 max_arch_pfn = 0x400000000
[    0.001215] total RAM covered: 262144M
[    0.001422] Found optimal setting for mtrr clean up
[    0.001425]  gran_size: 64K 	chunk_size: 64K 	num_reg: 8  	lose cover RAM: 0G
[    0.001431] MTRR map: 7 entries (5 fixed + 2 variable; max 25), built from 10 variable MTRRs
[    0.001434] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.002445] e820: update [mem 0x80000000-0xffffffff] usable ==> reserved
[    0.002450] last_pfn = 0x7cca5 max_arch_pfn = 0x400000000
[    0.013123] found SMP MP-table at [mem 0x000fdd40-0x000fdd4f]
[    0.013153] Using GB pages for direct mapping
[    0.013416] RAMDISK: [mem 0x197c9000-0x37feefff]
[    0.013432] ACPI: Early table checksum verification disabled
[    0.013439] ACPI: RSDP 0x00000000000F0490 000024 (v02 ALASKA)
[    0.013445] ACPI: XSDT 0x000000007CBC5090 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.013453] ACPI: FACP 0x000000007CBD27D8 00010C (v05 ALASKA A M I    01072009 AMI  00010013)
[    0.013462] ACPI: DSDT 0x000000007CBC51C8 00D609 (v02 ALASKA A M I    00000000 INTL 20051117)
[    0.013466] ACPI: FACS 0x000000007D8D6F80 000040
[    0.013470] ACPI: APIC 0x000000007CBD28E8 000304 (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.013474] ACPI: FPDT 0x000000007CBD2BF0 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.013478] ACPI: MCFG 0x000000007CBD2C38 00003C (v01 ALASKA OEMMCFG. 01072009 MSFT 00000097)
[    0.013482] ACPI: SRAT 0x000000007CBD2C78 0005B0 (v01 A M I  AMI SRAT 00000001 AMI. 00000000)
[    0.013486] ACPI: SLIT 0x000000007CBD3228 000030 (v01 A M I  AMI SLIT 00000000 AMI. 00000000)
[    0.013490] ACPI: HPET 0x000000007CBD3258 000038 (v01 ALASKA A M I    01072009 AMI. 00000005)
[    0.013493] ACPI: DMAR 0x000000007CCA44D0 000168 (v01 A M I  OEMDMAR  00000001 INTL 00000001)
[    0.013497] ACPI: PRAD 0x000000007CBD32E8 0000BE (v02 PRADID PRADTID  00000001 MSFT 03000001)
[    0.013501] ACPI: SPMI 0x000000007CBD33A8 000040 (v05 A M I  OEMSPMI  00000000 AMI. 00000000)
[    0.013505] ACPI: SSDT 0x000000007CBD33E8 0D0CB0 (v02 INTEL  CpuPm    00004000 INTL 20051117)
[    0.013509] ACPI: EINJ 0x000000007CCA4098 000130 (v01 AMI    AMI EINJ 00000000      00000000)
[    0.013513] ACPI: ERST 0x000000007CCA41C8 000230 (v01 AMIER  AMI ERST 00000000      00000000)
[    0.013517] ACPI: HEST 0x000000007CCA43F8 0000A8 (v01 AMI    AMI HEST 00000000      00000000)
[    0.013520] ACPI: BERT 0x000000007CCA44A0 000030 (v01 AMI    AMI BERT 00000000      00000000)
[    0.013523] ACPI: Reserving FACP table memory at [mem 0x7cbd27d8-0x7cbd28e3]
[    0.013525] ACPI: Reserving DSDT table memory at [mem 0x7cbc51c8-0x7cbd27d0]
[    0.013526] ACPI: Reserving FACS table memory at [mem 0x7d8d6f80-0x7d8d6fbf]
[    0.013527] ACPI: Reserving APIC table memory at [mem 0x7cbd28e8-0x7cbd2beb]
[    0.013528] ACPI: Reserving FPDT table memory at [mem 0x7cbd2bf0-0x7cbd2c33]
[    0.013529] ACPI: Reserving MCFG table memory at [mem 0x7cbd2c38-0x7cbd2c73]
[    0.013530] ACPI: Reserving SRAT table memory at [mem 0x7cbd2c78-0x7cbd3227]
[    0.013531] ACPI: Reserving SLIT table memory at [mem 0x7cbd3228-0x7cbd3257]
[    0.013532] ACPI: Reserving HPET table memory at [mem 0x7cbd3258-0x7cbd328f]
[    0.013533] ACPI: Reserving DMAR table memory at [mem 0x7cca44d0-0x7cca4637]
[    0.013534] ACPI: Reserving PRAD table memory at [mem 0x7cbd32e8-0x7cbd33a5]
[    0.013535] ACPI: Reserving SPMI table memory at [mem 0x7cbd33a8-0x7cbd33e7]
[    0.013536] ACPI: Reserving SSDT table memory at [mem 0x7cbd33e8-0x7cca4097]
[    0.013537] ACPI: Reserving EINJ table memory at [mem 0x7cca4098-0x7cca41c7]
[    0.013538] ACPI: Reserving ERST table memory at [mem 0x7cca41c8-0x7cca43f7]
[    0.013539] ACPI: Reserving HEST table memory at [mem 0x7cca43f8-0x7cca449f]
[    0.013540] ACPI: Reserving BERT table memory at [mem 0x7cca44a0-0x7cca44cf]
[    0.013600] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x7fffffff]
[    0.013603] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.013604] ACPI: SRAT: Node 1 PXM 1 [mem 0x2080000000-0x407fffffff]
[    0.013615] NUMA: Node 0 [mem 0x00001000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00001000-0x207fffffff]
[    0.013627] NODE_DATA(0) allocated [mem 0x207ffd5500-0x207fffffff]
[    0.013664] NODE_DATA(1) allocated [mem 0x407ffd4500-0x407fffefff]
[    0.014414] Zone ranges:
[    0.014415]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.014417]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.014419]   Normal   [mem 0x0000000100000000-0x000000407fffffff]
[    0.014421]   Device   empty
[    0.014422] Movable zone start for each node
[    0.014425] Early memory node ranges
[    0.014426]   node   0: [mem 0x0000000000001000-0x0000000000096fff]
[    0.014428]   node   0: [mem 0x0000000000100000-0x000000007cb5ffff]
[    0.014430]   node   0: [mem 0x0000000100000000-0x000000207fffffff]
[    0.014448]   node   1: [mem 0x0000002080000000-0x000000407fffffff]
[    0.014469] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fffffff]
[    0.014474] Initmem setup node 1 [mem 0x0000002080000000-0x000000407fffffff]
[    0.014479] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.014511] On node 0, zone DMA: 105 pages in unavailable ranges
[    0.270712] On node 0, zone Normal: 13472 pages in unavailable ranges
[    0.685360] ACPI: PM-Timer IO Port: 0x408
[    0.685403] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.685406] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.685407] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.685409] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.685410] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.685412] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.685413] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.685414] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.685415] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.685417] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.685418] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.685419] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.685420] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[    0.685421] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[    0.685422] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[    0.685423] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[    0.685424] ACPI: LAPIC_NMI (acpi_id[0x20] high edge lint[0x1])
[    0.685426] ACPI: LAPIC_NMI (acpi_id[0x22] high edge lint[0x1])
[    0.685427] ACPI: LAPIC_NMI (acpi_id[0x24] high edge lint[0x1])
[    0.685428] ACPI: LAPIC_NMI (acpi_id[0x26] high edge lint[0x1])
[    0.685429] ACPI: LAPIC_NMI (acpi_id[0x28] high edge lint[0x1])
[    0.685430] ACPI: LAPIC_NMI (acpi_id[0x2a] high edge lint[0x1])
[    0.685431] ACPI: LAPIC_NMI (acpi_id[0x2c] high edge lint[0x1])
[    0.685432] ACPI: LAPIC_NMI (acpi_id[0x2e] high edge lint[0x1])
[    0.685433] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.685434] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.685435] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.685436] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.685437] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.685437] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.685438] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.685439] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.685440] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.685441] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.685442] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.685443] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.685444] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[    0.685445] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[    0.685446] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[    0.685447] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[    0.685448] ACPI: LAPIC_NMI (acpi_id[0x21] high edge lint[0x1])
[    0.685448] ACPI: LAPIC_NMI (acpi_id[0x23] high edge lint[0x1])
[    0.685449] ACPI: LAPIC_NMI (acpi_id[0x25] high edge lint[0x1])
[    0.685450] ACPI: LAPIC_NMI (acpi_id[0x27] high edge lint[0x1])
[    0.685451] ACPI: LAPIC_NMI (acpi_id[0x29] high edge lint[0x1])
[    0.685452] ACPI: LAPIC_NMI (acpi_id[0x2b] high edge lint[0x1])
[    0.685453] ACPI: LAPIC_NMI (acpi_id[0x2d] high edge lint[0x1])
[    0.685454] ACPI: LAPIC_NMI (acpi_id[0x2f] high edge lint[0x1])
[    0.685469] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.685476] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
[    0.685481] IOAPIC[2]: apic_id 3, version 32, address 0xfec40000, GSI 48-71
[    0.685485] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.685489] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.685496] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.685498] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.685510] TSC deadline timer available
[    0.685517] CPU topo: Max. logical packages:   2
[    0.685518] CPU topo: Max. logical dies:       2
[    0.685519] CPU topo: Max. dies per package:   1
[    0.685525] CPU topo: Max. threads per core:   2
[    0.685528] CPU topo: Num. cores per package:    12
[    0.685529] CPU topo: Num. threads per package:  24
[    0.685530] CPU topo: Allowing 48 present CPUs plus 0 hotplug CPUs
[    0.685552] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.685555] PM: hibernation: Registered nosave memory: [mem 0x00097000-0x000fffff]
[    0.685557] PM: hibernation: Registered nosave memory: [mem 0x7cb60000-0xffffffff]
[    0.685560] [mem 0x90000000-0xfed1bfff] available for PCI devices
[    0.685562] Booting paravirtualized kernel on bare hardware
[    0.685567] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.685599] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:48 nr_cpu_ids:48 nr_node_ids:2
[    0.690593] percpu: Embedded 84 pages/cpu s221184 r8192 d114688 u524288
[    0.690604] pcpu-alloc: s221184 r8192 d114688 u524288 alloc=1*2097152
[    0.690607] pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07 
[    0.690614] pcpu-alloc: [0] 08 09 10 11 [0] 24 25 26 27 
[    0.690620] pcpu-alloc: [0] 28 29 30 31 [0] 32 33 34 35 
[    0.690626] pcpu-alloc: [1] 12 13 14 15 [1] 16 17 18 19 
[    0.690632] pcpu-alloc: [1] 20 21 22 23 [1] 36 37 38 39 
[    0.690638] pcpu-alloc: [1] 40 41 42 43 [1] 44 45 46 47 
[    0.690671] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.18.0-rc2 root=UUID=3842ebdd-e37f-4e4e-afd4-d7eb79b41984 ro quiet intel_iommu=on iommu=pt vfio-pci.ids=10de:1201,10de:0e0c
[    0.690770] DMAR: IOMMU enabled
[    0.690824] random: crng init done
[    0.690825] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    0.690827] printk: log_buf_len total cpu_extra contributions: 192512 bytes
[    0.690828] printk: log_buf_len min size: 262144 bytes
[    0.691465] printk: log buffer data + meta data: 524288 + 1835008 = 2359296 bytes
[    0.691467] printk: early log buf free: 249616(95%)
[    0.692429] software IO TLB: area num 64.
[    0.708916] Fallback order for Node 0: 0 1 
[    0.708929] Fallback order for Node 1: 1 0 
[    0.708955] Built 2 zonelists, mobility grouping on.  Total pages: 67095286
[    0.708958] Policy zone: Normal
[    0.708980] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[    1.629175] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=48, Nodes=2
[    1.629341] Kernel/User page tables isolation: enabled
[    1.647430] ftrace: allocating 58278 entries in 228 pages
[    1.647433] ftrace: allocated 228 pages with 4 groups
[    1.649106] Dynamic Preempt: voluntary
[    1.649546] rcu: Preemptible hierarchical RCU implementation.
[    1.649548] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=48.
[    1.649551] 	Trampoline variant of Tasks RCU enabled.
[    1.649552] 	Rude variant of Tasks RCU enabled.
[    1.649553] 	Tracing variant of Tasks RCU enabled.
[    1.649554] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    1.649555] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=48
[    1.649667] RCU Tasks: Setting shift to 6 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=48.
[    1.649680] RCU Tasks Rude: Setting shift to 6 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=48.
[    1.649701] RCU Tasks Trace: Setting shift to 6 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=48.
[    1.656498] NR_IRQS: 524544, nr_irqs: 1624, preallocated irqs: 16
[    1.656829] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    1.663224] Console: colour VGA+ 80x25
[    1.663230] printk: legacy console [tty0] enabled
[    1.663449] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    1.663456] ACPI: Core revision 20250807
[    1.664051] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    1.664071] APIC: Switch to symmetric I/O mode setup
[    1.664075] DMAR: Host address width 46
[    1.664077] DMAR: DRHD base: 0x000000fbffe000 flags: 0x0
[    1.664092] DMAR: dmar0: reg_base_addr fbffe000 ver 1:0 cap d2078c106f0466 ecap f020df
[    1.664095] DMAR: DRHD base: 0x000000cfffc000 flags: 0x1
[    1.664100] DMAR: dmar1: reg_base_addr cfffc000 ver 1:0 cap d2078c106f0466 ecap f020df
[    1.664103] DMAR: RMRR base: 0x0000007e953000 end: 0x0000007e969fff
[    1.664107] DMAR: ATSR flags: 0x0
[    1.664112] DMAR: RHSA base: 0x000000fbffe000 proximity domain: 0x1
[    1.664114] DMAR: RHSA base: 0x000000cfffc000 proximity domain: 0x0
[    1.664117] DMAR-IR: IOAPIC id 3 under DRHD base  0xfbffe000 IOMMU 0
[    1.664119] DMAR-IR: IOAPIC id 0 under DRHD base  0xcfffc000 IOMMU 1
[    1.664120] DMAR-IR: IOAPIC id 2 under DRHD base  0xcfffc000 IOMMU 1
[    1.664121] DMAR-IR: HPET id 0 under DRHD base 0xcfffc000
[    1.664123] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    1.665159] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    1.665167] x2apic enabled
[    1.665266] APIC: Switched APIC routing to: cluster x2apic
[    1.665943] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    1.670079] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x26eac19f56c, max_idle_ns: 440795299779 ns
[    1.670087] Calibrating delay loop (skipped), value calculated using timer frequency.. 5399.73 BogoMIPS (lpj=2699868)
[    1.670127] CPU0: Thermal monitoring enabled (TM1)
[    1.670238] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    1.670241] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 4
[    1.670245] process: using mwait in idle threads
[    1.670249] mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
[    1.670256] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    1.670259] Spectre V2 : Mitigation: Retpolines
[    1.670261] Spectre V2 : User space: Mitigation: STIBP via prctl
[    1.670262] MDS: Mitigation: Clear CPU buffers
[    1.670264] VMSCAPE: Mitigation: IBPB before exit to userspace
[    1.670266] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.670267] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
[    1.670269] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    1.670271] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    1.670283] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.670285] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.670286] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.670288] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    1.670290] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    1.704473] Freeing SMP alternatives memory: 52K
[    1.704479] pid_max: default: 49152 minimum: 384
[    1.704656] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm
[    1.704728] Yama: becoming mindful.
[    1.704906] AppArmor: AppArmor initialized
[    1.748689] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    1.770584] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    1.771538] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    1.772063] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    1.773319] smpboot: CPU0: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz (family: 0x6, model: 0x3e, stepping: 0x4)
[    1.773837] Performance Events: PEBS fmt1+, IvyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[    1.773872] ... version:                   3
[    1.773874] ... bit width:                 48
[    1.773875] ... generic counters:          4
[    1.773877] ... generic bitmap:            000000000000000f
[    1.773879] ... fixed-purpose counters:    3
[    1.773880] ... fixed-purpose bitmap:      0000000000000007
[    1.773881] ... value mask:                0000ffffffffffff
[    1.773883] ... max period:                00007fffffffffff
[    1.773884] ... global_ctrl mask:          000000070000000f
[    1.774187] signal: max sigframe size: 1776
[    1.774217] Estimated ratio of average max frequency by base frequency (times 1024): 1213
[    1.776762] rcu: Hierarchical SRCU implementation.
[    1.776765] rcu: 	Max phase no-delay instances is 400.
[    1.776882] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
[    1.781569] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    1.782496] smp: Bringing up secondary CPUs ...
[    1.782724] smpboot: x86: Booting SMP configuration:
[    1.782727] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11
[    1.787381] .... node  #1, CPUs:   #12 #13 #14 #15 #16 #17 #18 #19 #20 #21 #22 #23
[    1.813353] .... node  #0, CPUs:   #24 #25 #26 #27 #28 #29 #30 #31 #32 #33 #34 #35
[    1.819141] .... node  #1, CPUs:   #36 #37 #38 #39 #40 #41 #42 #43 #44 #45 #46 #47
[    1.823401] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    1.823401] VMSCAPE: SMT on, STIBP is required for full protection. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/vmscape.html for more details.
[    1.846209] smp: Brought up 2 nodes, 48 CPUs
[    1.846209] smpboot: Total of 48 processors activated (259187.32 BogoMIPS)
[    1.848427] Memory: 263272848K/268381144K available (21467K kernel code, 3852K rwdata, 15356K rodata, 4932K init, 5344K bss, 4833796K reserved, 0K cma-reserved)
[    1.866395] devtmpfs: initialized
[    1.866395] x86/mm: Memory block size: 2048MB
[    1.870125] ACPI: PM: Registering ACPI NVS region [mem 0x7cca5000-0x7d8defff] (12820480 bytes)
[    1.870301] ACPI: PM: Registering ACPI NVS region [mem 0x7eb07000-0x7effffff] (5214208 bytes)
[    1.870499] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    1.870499] posixtimers hash table entries: 32768 (order: 7, 524288 bytes, vmalloc)
[    1.871308] futex hash table entries: 8192 (524288 bytes on 2 NUMA nodes, total 1024 KiB, linear).
[    1.871594] pinctrl core: initialized pinctrl subsystem
[    1.871795] PM: RTC time: 18:31:42, date: 2025-10-21
[    1.874041] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    1.875995] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    1.877009] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    1.878045] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    1.878063] audit: initializing netlink subsys (disabled)
[    1.878100] audit: type=2000 audit(1761071502.214:1): state=initialized audit_enabled=0 res=1
[    1.878392] thermal_sys: Registered thermal governor 'fair_share'
[    1.878395] thermal_sys: Registered thermal governor 'bang_bang'
[    1.878397] thermal_sys: Registered thermal governor 'step_wise'
[    1.878399] thermal_sys: Registered thermal governor 'user_space'
[    1.878400] thermal_sys: Registered thermal governor 'power_allocator'
[    1.878418] cpuidle: using governor ladder
[    1.878418] cpuidle: using governor menu
[    1.878418] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    1.878418] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    1.878418] PCI: ECAM [mem 0x80000000-0x8fffffff] reserved as E820 entry
[    1.878418] PCI: Using configuration type 1 for base access
[    1.878473] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    1.878542] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    1.879367] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    1.879367] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    1.879367] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    1.879367] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    1.881467] ACPI: Added _OSI(Module Device)
[    1.881470] ACPI: Added _OSI(Processor Device)
[    1.881472] ACPI: Added _OSI(Processor Aggregator Device)
[    2.043086] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    2.071704] ACPI: Interpreter enabled
[    2.071727] ACPI: PM: (supports S0 S1 S5)
[    2.071730] ACPI: Using IOAPIC for interrupt routing
[    2.075455] HEST: Table parsing has been initialized.
[    2.075594] GHES: APEI firmware first mode is enabled by WHEA _OSC.
[    2.075601] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.075603] PCI: Using E820 reservations for host bridge windows
[    2.076223] ACPI: Enabled 8 GPEs in block 00 to 3F
[    2.077739] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    2.102331] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
[    2.102343] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.102456] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[    2.102646] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    2.103172] PCI host bridge to bus 0000:00
[    2.103178] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    2.103182] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    2.103184] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    2.103186] pci_bus 0000:00: root bus resource [io  0x0d00-0x9fff window]
[    2.103189] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[    2.103191] pci_bus 0000:00: root bus resource [mem 0x80000000-0xcfffffff window]
[    2.103194] pci_bus 0000:00: root bus resource [bus 00-7e]
[    2.103233] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000 PCIe Root Port
[    2.103323] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    2.103458] pci 0000:00:01.0: [8086:0e02] type 01 class 0x060400 PCIe Root Port
[    2.103482] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.103564] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    2.103761] pci 0000:00:01.1: [8086:0e03] type 01 class 0x060400 PCIe Root Port
[    2.103784] pci 0000:00:01.1: PCI bridge to [bus 02]
[    2.103864] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    2.104053] pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400 PCIe Root Port
[    2.104077] pci 0000:00:02.0: PCI bridge to [bus 03]
[    2.104158] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    2.104337] pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400 PCIe Root Port
[    2.104360] pci 0000:00:02.2: PCI bridge to [bus 04]
[    2.104370] pci 0000:00:02.2:   bridge window [mem 0xc8a00000-0xc8cfffff]
[    2.104445] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    2.104625] pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400 PCIe Root Port
[    2.104650] pci 0000:00:03.0: PCI bridge to [bus 05]
[    2.104655] pci 0000:00:03.0:   bridge window [io  0x8000-0x8fff]
[    2.104659] pci 0000:00:03.0:   bridge window [mem 0xb8000000-0xc60fffff]
[    2.104674] pci 0000:00:03.0: enabling Extended Tags
[    2.104741] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    2.104905] pci 0000:00:04.0: [8086:0e20] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.104940] pci 0000:00:04.0: BAR 0 [mem 0xc6120000-0xc6123fff 64bit]
[    2.105053] pci 0000:00:04.1: [8086:0e21] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.105088] pci 0000:00:04.1: BAR 0 [mem 0xc611c000-0xc611ffff 64bit]
[    2.105204] pci 0000:00:04.2: [8086:0e22] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.105238] pci 0000:00:04.2: BAR 0 [mem 0xc6118000-0xc611bfff 64bit]
[    2.105344] pci 0000:00:04.3: [8086:0e23] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.105378] pci 0000:00:04.3: BAR 0 [mem 0xc6114000-0xc6117fff 64bit]
[    2.105484] pci 0000:00:04.4: [8086:0e24] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.105517] pci 0000:00:04.4: BAR 0 [mem 0xc6110000-0xc6113fff 64bit]
[    2.105620] pci 0000:00:04.5: [8086:0e25] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.105655] pci 0000:00:04.5: BAR 0 [mem 0xc610c000-0xc610ffff 64bit]
[    2.105760] pci 0000:00:04.6: [8086:0e26] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.105794] pci 0000:00:04.6: BAR 0 [mem 0xc6108000-0xc610bfff 64bit]
[    2.105898] pci 0000:00:04.7: [8086:0e27] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.105932] pci 0000:00:04.7: BAR 0 [mem 0xc6104000-0xc6107fff 64bit]
[    2.106042] pci 0000:00:05.0: [8086:0e28] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.106164] pci 0000:00:05.2: [8086:0e2a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.106301] pci 0000:00:05.4: [8086:0e2c] type 00 class 0x080020 PCIe Root Complex Integrated Endpoint
[    2.106333] pci 0000:00:05.4: BAR 0 [mem 0xc612b000-0xc612bfff]
[    2.106453] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400 PCIe Root Port
[    2.106486] pci 0000:00:11.0: PCI bridge to [bus 06]
[    2.106494] pci 0000:00:11.0:   bridge window [io  0x7000-0x7fff]
[    2.106499] pci 0000:00:11.0:   bridge window [mem 0xc8400000-0xc88fffff]
[    2.106514] pci 0000:00:11.0:   bridge window [mem 0xcfe00000-0xcfefffff 64bit pref]
[    2.106589] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
[    2.106740] pci 0000:00:16.0: [8086:1d3a] type 00 class 0x078000 conventional PCI endpoint
[    2.106778] pci 0000:00:16.0: BAR 0 [mem 0xc612a000-0xc612a00f 64bit]
[    2.106818] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    2.106917] pci 0000:00:16.1: [8086:1d3b] type 00 class 0x078000 conventional PCI endpoint
[    2.106959] pci 0000:00:16.1: BAR 0 [mem 0xc6129000-0xc612900f 64bit]
[    2.106998] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    2.107110] pci 0000:00:1a.0: [8086:1d2d] type 00 class 0x0c0320 conventional PCI endpoint
[    2.107154] pci 0000:00:1a.0: BAR 0 [mem 0xc6127000-0xc61273ff]
[    2.107204] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    2.107316] pci 0000:00:1b.0: [8086:1d20] type 00 class 0x040300 PCIe Root Complex Integrated Endpoint
[    2.107355] pci 0000:00:1b.0: BAR 0 [mem 0xc6100000-0xc6103fff 64bit]
[    2.107414] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    2.107506] pci 0000:00:1c.0: [8086:1d10] type 01 class 0x060400 PCIe Root Port
[    2.107535] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    2.107544] pci 0000:00:1c.0:   bridge window [io  0x6000-0x6fff]
[    2.107548] pci 0000:00:1c.0:   bridge window [mem 0xc8e00000-0xc8efffff]
[    2.107618] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    2.107653] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    2.107656] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    2.107789] pci 0000:00:1c.7: [8086:1d1e] type 01 class 0x060400 PCIe Root Port
[    2.107819] pci 0000:00:1c.7: PCI bridge to [bus 09-0a]
[    2.107826] pci 0000:00:1c.7:   bridge window [io  0x5000-0x5fff]
[    2.107833] pci 0000:00:1c.7:   bridge window [mem 0xc7000000-0xc80fffff]
[    2.107903] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[    2.107929] pci 0000:00:1c.7: Enabling MPC IRBNCE
[    2.107933] pci 0000:00:1c.7: Intel PCH root port ACS workaround enabled
[    2.108060] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320 conventional PCI endpoint
[    2.108104] pci 0000:00:1d.0: BAR 0 [mem 0xc6126000-0xc61263ff]
[    2.108154] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    2.108269] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401 conventional PCI bridge
[    2.108295] pci 0000:00:1e.0: PCI bridge to [bus 0b] (subtractive decode)
[    2.108435] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100 conventional PCI endpoint
[    2.108636] pci 0000:00:1f.2: [8086:1d02] type 00 class 0x010601 conventional PCI endpoint
[    2.108674] pci 0000:00:1f.2: BAR 0 [io  0x9070-0x9077]
[    2.108677] pci 0000:00:1f.2: BAR 1 [io  0x9060-0x9063]
[    2.108680] pci 0000:00:1f.2: BAR 2 [io  0x9050-0x9057]
[    2.108685] pci 0000:00:1f.2: BAR 3 [io  0x9040-0x9043]
[    2.108688] pci 0000:00:1f.2: BAR 4 [io  0x9020-0x903f]
[    2.108691] pci 0000:00:1f.2: BAR 5 [mem 0xc6125000-0xc61257ff]
[    2.108729] pci 0000:00:1f.2: PME# supported from D3hot
[    2.108826] pci 0000:00:1f.3: [8086:1d22] type 00 class 0x0c0500 conventional PCI endpoint
[    2.108864] pci 0000:00:1f.3: BAR 0 [mem 0xc6124000-0xc61240ff 64bit]
[    2.108871] pci 0000:00:1f.3: BAR 4 [io  0x9000-0x901f]
[    2.108992] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.109055] pci 0000:00:01.1: PCI bridge to [bus 02]
[    2.109098] pci 0000:00:02.0: PCI bridge to [bus 03]
[    2.109165] pci 0000:04:00.0: [9005:0285] type 00 class 0x010400 PCIe Endpoint
[    2.109197] pci 0000:04:00.0: BAR 0 [mem 0xc8a00000-0xc8bfffff 64bit]
[    2.109204] pci 0000:04:00.0: ROM [mem 0xc8c00000-0xc8c7ffff pref]
[    2.109251] pci 0000:04:00.0: supports D1
[    2.109333] pci 0000:00:02.2: PCI bridge to [bus 04]
[    2.109389] pci 0000:05:00.0: [10de:1201] type 00 class 0x030000 PCIe Endpoint
[    2.109417] pci 0000:05:00.0: BAR 0 [mem 0xc4000000-0xc5ffffff]
[    2.109421] pci 0000:05:00.0: BAR 1 [mem 0xb8000000-0xbfffffff 64bit pref]
[    2.109426] pci 0000:05:00.0: BAR 3 [mem 0xc0000000-0xc3ffffff 64bit pref]
[    2.109430] pci 0000:05:00.0: BAR 5 [io  0x8000-0x807f]
[    2.109432] pci 0000:05:00.0: ROM [mem 0xc6000000-0xc607ffff pref]
[    2.109439] pci 0000:05:00.0: enabling Extended Tags
[    2.109571] pci 0000:05:00.1: [10de:0e0c] type 00 class 0x040300 PCIe Endpoint
[    2.109600] pci 0000:05:00.1: BAR 0 [mem 0xc6080000-0xc6083fff]
[    2.109612] pci 0000:05:00.1: enabling Extended Tags
[    2.109724] pci 0000:00:03.0: PCI bridge to [bus 05]
[    2.109813] pci 0000:06:00.0: [8086:1d6b] type 00 class 0x010700 PCIe Endpoint
[    2.109861] pci 0000:06:00.0: BAR 0 [mem 0xc8800000-0xc8803fff 64bit pref]
[    2.109866] pci 0000:06:00.0: BAR 2 [mem 0xc8400000-0xc87fffff 64bit pref]
[    2.109872] pci 0000:06:00.0: BAR 4 [io  0x7000-0x70ff]
[    2.109884] pci 0000:06:00.0: enabling Extended Tags
[    2.110006] pci 0000:06:00.0: VF BAR 0 [mem 0xcfe00000-0xcfe03fff 64bit pref]
[    2.110010] pci 0000:06:00.0: VF BAR 0 [mem 0xcfe00000-0xcfe7bfff 64bit pref]: contains BAR 0 for 31 VFs
[    2.110246] pci 0000:00:11.0: PCI bridge to [bus 06]
[    2.110359] pci 0000:07:00.0: [8086:1521] type 00 class 0x020000 PCIe Endpoint
[    2.110425] pci 0000:07:00.0: BAR 0 [mem 0xc8e20000-0xc8e3ffff]
[    2.110433] pci 0000:07:00.0: BAR 2 [io  0x6020-0x603f]
[    2.110439] pci 0000:07:00.0: BAR 3 [mem 0xc8ec4000-0xc8ec7fff]
[    2.110581] pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
[    2.110654] pci 0000:07:00.0: VF BAR 0 [mem 0xc8ea0000-0xc8ea3fff]
[    2.110658] pci 0000:07:00.0: VF BAR 0 [mem 0xc8ea0000-0xc8ebffff]: contains BAR 0 for 8 VFs
[    2.110665] pci 0000:07:00.0: VF BAR 3 [mem 0xc8e80000-0xc8e83fff]
[    2.110670] pci 0000:07:00.0: VF BAR 3 [mem 0xc8e80000-0xc8e9ffff]: contains BAR 3 for 8 VFs
[    2.110987] pci 0000:07:00.1: [8086:1521] type 00 class 0x020000 PCIe Endpoint
[    2.111056] pci 0000:07:00.1: BAR 0 [mem 0xc8e00000-0xc8e1ffff]
[    2.111064] pci 0000:07:00.1: BAR 2 [io  0x6000-0x601f]
[    2.111070] pci 0000:07:00.1: BAR 3 [mem 0xc8ec0000-0xc8ec3fff]
[    2.111206] pci 0000:07:00.1: PME# supported from D0 D3hot D3cold
[    2.111277] pci 0000:07:00.1: VF BAR 0 [mem 0xc8e60000-0xc8e63fff]
[    2.111281] pci 0000:07:00.1: VF BAR 0 [mem 0xc8e60000-0xc8e7ffff]: contains BAR 0 for 8 VFs
[    2.111290] pci 0000:07:00.1: VF BAR 3 [mem 0xc8e40000-0xc8e43fff]
[    2.111292] pci 0000:07:00.1: VF BAR 3 [mem 0xc8e40000-0xc8e5ffff]: contains BAR 3 for 8 VFs
[    2.111536] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    2.111637] pci 0000:09:00.0: [1a03:1150] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    2.111692] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    2.111705] pci 0000:09:00.0:   bridge window [io  0x5000-0x5fff]
[    2.111711] pci 0000:09:00.0:   bridge window [mem 0xc7000000-0xc80fffff]
[    2.111838] pci 0000:09:00.0: supports D1 D2
[    2.111841] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.111977] pci 0000:09:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    2.112000] pci 0000:00:1c.7: PCI bridge to [bus 09-0a]
[    2.112068] pci_bus 0000:0a: extended config space not accessible
[    2.112100] pci 0000:0a:00.0: [1a03:2000] type 00 class 0x030000 conventional PCI endpoint
[    2.112193] pci 0000:0a:00.0: BAR 0 [mem 0xc7000000-0xc7ffffff]
[    2.112198] pci 0000:0a:00.0: BAR 1 [mem 0xc8000000-0xc801ffff]
[    2.112202] pci 0000:0a:00.0: BAR 2 [io  0x5000-0x507f]
[    2.112238] pci 0000:0a:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    2.112288] pci 0000:0a:00.0: supports D1 D2
[    2.112292] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.112438] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    2.112490] pci_bus 0000:0b: extended config space not accessible
[    2.112556] pci 0000:00:1e.0: PCI bridge to [bus 0b] (subtractive decode)
[    2.112567] pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af window] (subtractive decode)
[    2.112570] pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7 window] (subtractive decode)
[    2.112573] pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03df window] (subtractive decode)
[    2.112575] pci 0000:00:1e.0:   bridge window [io  0x0d00-0x9fff window] (subtractive decode)
[    2.112577] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000dffff window] (subtractive decode)
[    2.112580] pci 0000:00:1e.0:   bridge window [mem 0x80000000-0xcfffffff window] (subtractive decode)
[    2.112624] pci_bus 0000:00: on NUMA node 0
[    2.113550] ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus 7f])
[    2.113557] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.113579] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[    2.113652] PCI host bridge to bus 0000:7f
[    2.113657] pci_bus 0000:7f: root bus resource [bus 7f]
[    2.113668] pci 0000:7f:08.0: [8086:0e80] type 00 class 0x088000 conventional PCI endpoint
[    2.113738] pci 0000:7f:09.0: [8086:0e90] type 00 class 0x088000 conventional PCI endpoint
[    2.113800] pci 0000:7f:0a.0: [8086:0ec0] type 00 class 0x088000 conventional PCI endpoint
[    2.113865] pci 0000:7f:0a.1: [8086:0ec1] type 00 class 0x088000 conventional PCI endpoint
[    2.113923] pci 0000:7f:0a.2: [8086:0ec2] type 00 class 0x088000 conventional PCI endpoint
[    2.113979] pci 0000:7f:0a.3: [8086:0ec3] type 00 class 0x088000 conventional PCI endpoint
[    2.114039] pci 0000:7f:0b.0: [8086:0e1e] type 00 class 0x088000 conventional PCI endpoint
[    2.114096] pci 0000:7f:0b.3: [8086:0e1f] type 00 class 0x088000 conventional PCI endpoint
[    2.114152] pci 0000:7f:0c.0: [8086:0ee0] type 00 class 0x088000 conventional PCI endpoint
[    2.114205] pci 0000:7f:0c.1: [8086:0ee2] type 00 class 0x088000 conventional PCI endpoint
[    2.114259] pci 0000:7f:0c.2: [8086:0ee4] type 00 class 0x088000 conventional PCI endpoint
[    2.114334] pci 0000:7f:0c.3: [8086:0ee6] type 00 class 0x088000 conventional PCI endpoint
[    2.114391] pci 0000:7f:0c.4: [8086:0ee8] type 00 class 0x088000 conventional PCI endpoint
[    2.114449] pci 0000:7f:0c.5: [8086:0eea] type 00 class 0x088000 conventional PCI endpoint
[    2.114506] pci 0000:7f:0d.0: [8086:0ee1] type 00 class 0x088000 conventional PCI endpoint
[    2.114563] pci 0000:7f:0d.1: [8086:0ee3] type 00 class 0x088000 conventional PCI endpoint
[    2.114621] pci 0000:7f:0d.2: [8086:0ee5] type 00 class 0x088000 conventional PCI endpoint
[    2.114678] pci 0000:7f:0d.3: [8086:0ee7] type 00 class 0x088000 conventional PCI endpoint
[    2.114734] pci 0000:7f:0d.4: [8086:0ee9] type 00 class 0x088000 conventional PCI endpoint
[    2.114808] pci 0000:7f:0d.5: [8086:0eeb] type 00 class 0x088000 conventional PCI endpoint
[    2.114866] pci 0000:7f:0e.0: [8086:0ea0] type 00 class 0x088000 conventional PCI endpoint
[    2.114927] pci 0000:7f:0e.1: [8086:0e30] type 00 class 0x110100 conventional PCI endpoint
[    2.114997] pci 0000:7f:0f.0: [8086:0ea8] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.115076] pci 0000:7f:0f.1: [8086:0e71] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.115156] pci 0000:7f:0f.2: [8086:0eaa] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.115235] pci 0000:7f:0f.3: [8086:0eab] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.115313] pci 0000:7f:0f.4: [8086:0eac] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.115406] pci 0000:7f:0f.5: [8086:0ead] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.115489] pci 0000:7f:10.0: [8086:0eb0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.115567] pci 0000:7f:10.1: [8086:0eb1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.115644] pci 0000:7f:10.2: [8086:0eb2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.115722] pci 0000:7f:10.3: [8086:0eb3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.115797] pci 0000:7f:10.4: [8086:0eb4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.115878] pci 0000:7f:10.5: [8086:0eb5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.115951] pci 0000:7f:10.6: [8086:0eb6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.116047] pci 0000:7f:10.7: [8086:0eb7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.116121] pci 0000:7f:13.0: [8086:0e1d] type 00 class 0x088000 conventional PCI endpoint
[    2.116180] pci 0000:7f:13.1: [8086:0e34] type 00 class 0x110100 conventional PCI endpoint
[    2.116242] pci 0000:7f:13.4: [8086:0e81] type 00 class 0x088000 conventional PCI endpoint
[    2.116301] pci 0000:7f:13.5: [8086:0e36] type 00 class 0x110100 conventional PCI endpoint
[    2.116360] pci 0000:7f:16.0: [8086:0ec8] type 00 class 0x088000 conventional PCI endpoint
[    2.116420] pci 0000:7f:16.1: [8086:0ec9] type 00 class 0x088000 conventional PCI endpoint
[    2.116477] pci 0000:7f:16.2: [8086:0eca] type 00 class 0x088000 conventional PCI endpoint
[    2.116556] pci 0000:7f:1c.0: [8086:0e60] type 00 class 0x088000 conventional PCI endpoint
[    2.116621] pci 0000:7f:1c.1: [8086:0e38] type 00 class 0x110100 conventional PCI endpoint
[    2.116690] pci 0000:7f:1d.0: [8086:0e68] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.116771] pci 0000:7f:1d.1: [8086:0e79] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.116848] pci 0000:7f:1d.2: [8086:0e6a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.116925] pci 0000:7f:1d.3: [8086:0e6b] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.117008] pci 0000:7f:1d.4: [8086:0e6c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.117088] pci 0000:7f:1d.5: [8086:0e6d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.117189] pci 0000:7f:1e.0: [8086:0ef0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.117267] pci 0000:7f:1e.1: [8086:0ef1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.117347] pci 0000:7f:1e.2: [8086:0ef2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.117433] pci 0000:7f:1e.3: [8086:0ef3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.117516] pci 0000:7f:1e.4: [8086:0ef4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.117593] pci 0000:7f:1e.5: [8086:0ef5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.117674] pci 0000:7f:1e.6: [8086:0ef6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.117751] pci 0000:7f:1e.7: [8086:0ef7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.117828] pci_bus 0000:7f: on NUMA node 0
[    2.118038] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-fe])
[    2.118045] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.118156] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[    2.118349] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    2.118602] PCI host bridge to bus 0000:80
[    2.118607] pci_bus 0000:80: root bus resource [io  0xa000-0xffff window]
[    2.118611] pci_bus 0000:80: root bus resource [mem 0xd0000000-0xfbffffff window]
[    2.118613] pci_bus 0000:80: root bus resource [bus 80-fe]
[    2.118653] pci 0000:80:00.0: [8086:0e01] type 01 class 0x060400 PCIe Root Port
[    2.118679] pci 0000:80:00.0: PCI bridge to [bus 81]
[    2.118764] pci 0000:80:00.0: PME# supported from D0 D3hot D3cold
[    2.118966] pci 0000:80:01.0: [8086:0e02] type 01 class 0x060400 PCIe Root Port
[    2.118993] pci 0000:80:01.0: PCI bridge to [bus 82]
[    2.119082] pci 0000:80:01.0: PME# supported from D0 D3hot D3cold
[    2.119283] pci 0000:80:02.0: [8086:0e04] type 01 class 0x060400 PCIe Root Port
[    2.119313] pci 0000:80:02.0: PCI bridge to [bus 83]
[    2.119400] pci 0000:80:02.0: PME# supported from D0 D3hot D3cold
[    2.119594] pci 0000:80:03.0: [8086:0e08] type 01 class 0x060400 PCIe Root Port
[    2.119621] pci 0000:80:03.0: PCI bridge to [bus 84]
[    2.119643] pci 0000:80:03.0: enabling Extended Tags
[    2.119717] pci 0000:80:03.0: PME# supported from D0 D3hot D3cold
[    2.119891] pci 0000:80:04.0: [8086:0e20] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.119932] pci 0000:80:04.0: BAR 0 [mem 0xfbf1c000-0xfbf1ffff 64bit]
[    2.120050] pci 0000:80:04.1: [8086:0e21] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.120088] pci 0000:80:04.1: BAR 0 [mem 0xfbf18000-0xfbf1bfff 64bit]
[    2.120203] pci 0000:80:04.2: [8086:0e22] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.120243] pci 0000:80:04.2: BAR 0 [mem 0xfbf14000-0xfbf17fff 64bit]
[    2.120357] pci 0000:80:04.3: [8086:0e23] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.120395] pci 0000:80:04.3: BAR 0 [mem 0xfbf10000-0xfbf13fff 64bit]
[    2.120515] pci 0000:80:04.4: [8086:0e24] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.120553] pci 0000:80:04.4: BAR 0 [mem 0xfbf0c000-0xfbf0ffff 64bit]
[    2.120667] pci 0000:80:04.5: [8086:0e25] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.120705] pci 0000:80:04.5: BAR 0 [mem 0xfbf08000-0xfbf0bfff 64bit]
[    2.120818] pci 0000:80:04.6: [8086:0e26] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.120856] pci 0000:80:04.6: BAR 0 [mem 0xfbf04000-0xfbf07fff 64bit]
[    2.120972] pci 0000:80:04.7: [8086:0e27] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.121020] pci 0000:80:04.7: BAR 0 [mem 0xfbf00000-0xfbf03fff 64bit]
[    2.121145] pci 0000:80:05.0: [8086:0e28] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.121272] pci 0000:80:05.2: [8086:0e2a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.121403] pci 0000:80:05.4: [8086:0e2c] type 00 class 0x080020 PCIe Root Complex Integrated Endpoint
[    2.121438] pci 0000:80:05.4: BAR 0 [mem 0xfbf20000-0xfbf20fff]
[    2.121585] pci 0000:80:00.0: PCI bridge to [bus 81]
[    2.121635] pci 0000:80:01.0: PCI bridge to [bus 82]
[    2.121681] pci 0000:80:02.0: PCI bridge to [bus 83]
[    2.121730] pci 0000:80:03.0: PCI bridge to [bus 84]
[    2.121761] pci_bus 0000:80: on NUMA node 1
[    2.121877] ACPI: PCI Root Bridge [UNC1] (domain 0000 [bus ff])
[    2.121885] acpi PNP0A03:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.121906] acpi PNP0A03:01: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[    2.121986] PCI host bridge to bus 0000:ff
[    2.121991] pci_bus 0000:ff: root bus resource [bus ff]
[    2.122004] pci 0000:ff:08.0: [8086:0e80] type 00 class 0x088000 conventional PCI endpoint
[    2.122083] pci 0000:ff:09.0: [8086:0e90] type 00 class 0x088000 conventional PCI endpoint
[    2.122153] pci 0000:ff:0a.0: [8086:0ec0] type 00 class 0x088000 conventional PCI endpoint
[    2.122217] pci 0000:ff:0a.1: [8086:0ec1] type 00 class 0x088000 conventional PCI endpoint
[    2.122278] pci 0000:ff:0a.2: [8086:0ec2] type 00 class 0x088000 conventional PCI endpoint
[    2.122340] pci 0000:ff:0a.3: [8086:0ec3] type 00 class 0x088000 conventional PCI endpoint
[    2.122403] pci 0000:ff:0b.0: [8086:0e1e] type 00 class 0x088000 conventional PCI endpoint
[    2.122464] pci 0000:ff:0b.3: [8086:0e1f] type 00 class 0x088000 conventional PCI endpoint
[    2.122523] pci 0000:ff:0c.0: [8086:0ee0] type 00 class 0x088000 conventional PCI endpoint
[    2.122597] pci 0000:ff:0c.1: [8086:0ee2] type 00 class 0x088000 conventional PCI endpoint
[    2.122658] pci 0000:ff:0c.2: [8086:0ee4] type 00 class 0x088000 conventional PCI endpoint
[    2.122721] pci 0000:ff:0c.3: [8086:0ee6] type 00 class 0x088000 conventional PCI endpoint
[    2.122791] pci 0000:ff:0c.4: [8086:0ee8] type 00 class 0x088000 conventional PCI endpoint
[    2.122851] pci 0000:ff:0c.5: [8086:0eea] type 00 class 0x088000 conventional PCI endpoint
[    2.122912] pci 0000:ff:0d.0: [8086:0ee1] type 00 class 0x088000 conventional PCI endpoint
[    2.122977] pci 0000:ff:0d.1: [8086:0ee3] type 00 class 0x088000 conventional PCI endpoint
[    2.123038] pci 0000:ff:0d.2: [8086:0ee5] type 00 class 0x088000 conventional PCI endpoint
[    2.123110] pci 0000:ff:0d.3: [8086:0ee7] type 00 class 0x088000 conventional PCI endpoint
[    2.123179] pci 0000:ff:0d.4: [8086:0ee9] type 00 class 0x088000 conventional PCI endpoint
[    2.123238] pci 0000:ff:0d.5: [8086:0eeb] type 00 class 0x088000 conventional PCI endpoint
[    2.123299] pci 0000:ff:0e.0: [8086:0ea0] type 00 class 0x088000 conventional PCI endpoint
[    2.123371] pci 0000:ff:0e.1: [8086:0e30] type 00 class 0x110100 conventional PCI endpoint
[    2.123451] pci 0000:ff:0f.0: [8086:0ea8] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.123544] pci 0000:ff:0f.1: [8086:0e71] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.123635] pci 0000:ff:0f.2: [8086:0eaa] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.123740] pci 0000:ff:0f.3: [8086:0eab] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.123833] pci 0000:ff:0f.4: [8086:0eac] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.123923] pci 0000:ff:0f.5: [8086:0ead] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.124017] pci 0000:ff:10.0: [8086:0eb0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.124112] pci 0000:ff:10.1: [8086:0eb1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.124206] pci 0000:ff:10.2: [8086:0eb2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.124296] pci 0000:ff:10.3: [8086:0eb3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.124390] pci 0000:ff:10.4: [8086:0eb4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.124497] pci 0000:ff:10.5: [8086:0eb5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.124589] pci 0000:ff:10.6: [8086:0eb6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.124677] pci 0000:ff:10.7: [8086:0eb7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.124767] pci 0000:ff:13.0: [8086:0e1d] type 00 class 0x088000 conventional PCI endpoint
[    2.124832] pci 0000:ff:13.1: [8086:0e34] type 00 class 0x110100 conventional PCI endpoint
[    2.124898] pci 0000:ff:13.4: [8086:0e81] type 00 class 0x088000 conventional PCI endpoint
[    2.124967] pci 0000:ff:13.5: [8086:0e36] type 00 class 0x110100 conventional PCI endpoint
[    2.125054] pci 0000:ff:16.0: [8086:0ec8] type 00 class 0x088000 conventional PCI endpoint
[    2.125137] pci 0000:ff:16.1: [8086:0ec9] type 00 class 0x088000 conventional PCI endpoint
[    2.125207] pci 0000:ff:16.2: [8086:0eca] type 00 class 0x088000 conventional PCI endpoint
[    2.125281] pci 0000:ff:1c.0: [8086:0e60] type 00 class 0x088000 conventional PCI endpoint
[    2.125356] pci 0000:ff:1c.1: [8086:0e38] type 00 class 0x110100 conventional PCI endpoint
[    2.125441] pci 0000:ff:1d.0: [8086:0e68] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.125533] pci 0000:ff:1d.1: [8086:0e79] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.125625] pci 0000:ff:1d.2: [8086:0e6a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.125720] pci 0000:ff:1d.3: [8086:0e6b] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.125827] pci 0000:ff:1d.4: [8086:0e6c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.125926] pci 0000:ff:1d.5: [8086:0e6d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.126032] pci 0000:ff:1e.0: [8086:0ef0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.126139] pci 0000:ff:1e.1: [8086:0ef1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.126242] pci 0000:ff:1e.2: [8086:0ef2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.126338] pci 0000:ff:1e.3: [8086:0ef3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.126431] pci 0000:ff:1e.4: [8086:0ef4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.126528] pci 0000:ff:1e.5: [8086:0ef5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.126634] pci 0000:ff:1e.6: [8086:0ef6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.126729] pci 0000:ff:1e.7: [8086:0ef7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.126815] pci_bus 0000:ff: on NUMA node 1
[    2.126956] ACPI: PCI: Interrupt link LNKA configured for IRQ 11
[    2.127022] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[    2.127083] ACPI: PCI: Interrupt link LNKC configured for IRQ 15
[    2.127147] ACPI: PCI: Interrupt link LNKD configured for IRQ 5
[    2.127208] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    2.127269] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    2.127329] ACPI: PCI: Interrupt link LNKG configured for IRQ 7
[    2.127389] ACPI: PCI: Interrupt link LNKH configured for IRQ 14
[    2.131894] iommu: Default domain type: Passthrough (set via kernel command line)
[    2.133389] SCSI subsystem initialized
[    2.133418] libata version 3.00 loaded.
[    2.133418] ACPI: bus type USB registered
[    2.133418] usbcore: registered new interface driver usbfs
[    2.133418] usbcore: registered new interface driver hub
[    2.133418] usbcore: registered new device driver usb
[    2.133418] pps_core: LinuxPPS API ver. 1 registered
[    2.133418] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    2.133418] PTP clock support registered
[    2.133418] EDAC MC: Ver: 3.0.0
[    2.134626] NetLabel: Initializing
[    2.134629] NetLabel:  domain hash size = 128
[    2.134631] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    2.135087] NetLabel:  unlabeled traffic allowed by default
[    2.135151] mctp: management component transport protocol core
[    2.135151] NET: Registered PF_MCTP protocol family
[    2.135151] PCI: Using ACPI for IRQ routing
[    2.139622] PCI: pci_cache_line_size set to 64 bytes
[    2.139852] e820: reserve RAM buffer [mem 0x00097000-0x0009ffff]
[    2.139855] e820: reserve RAM buffer [mem 0x7cb60000-0x7fffffff]
[    2.139880] pci 0000:05:00.0: vgaarb: setting as boot VGA device
[    2.139880] pci 0000:05:00.0: vgaarb: bridge control possible
[    2.139880] pci 0000:05:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    2.139880] pci 0000:0a:00.0: vgaarb: setting as boot VGA device (overriding previous)
[    2.139880] pci 0000:0a:00.0: vgaarb: bridge control possible
[    2.139880] pci 0000:0a:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    2.139880] vgaarb: loaded
[    2.140087] Monitor-Mwait will be used to enter C-1 state
[    2.140097] Monitor-Mwait will be used to enter C-2 state
[    2.142154] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    2.142165] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    2.145278] clocksource: Switched to clocksource tsc-early
[    2.146236] VFS: Disk quotas dquot_6.6.0
[    2.146263] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.146622] AppArmor: AppArmor Filesystem Enabled
[    2.146673] pnp: PnP ACPI init
[    2.146830] system 00:00: [mem 0xfc000000-0xfcffffff] has been reserved
[    2.146835] system 00:00: [mem 0xfd000000-0xfdffffff] has been reserved
[    2.146838] system 00:00: [mem 0xfe000000-0xfeafffff] has been reserved
[    2.146841] system 00:00: [mem 0xfeb00000-0xfebfffff] has been reserved
[    2.146843] system 00:00: [mem 0xfed00400-0xfed3ffff] could not be reserved
[    2.146846] system 00:00: [mem 0xfed45000-0xfedfffff] has been reserved
[    2.146849] system 00:00: [mem 0x00000400-0x000004ff] could not be reserved
[    2.147012] system 00:01: [mem 0xcfffc000-0xcfffdfff] could not be reserved
[    2.147209] system 00:02: [io  0x0290-0x029f] has been reserved
[    2.147385] system 00:04: [io  0x04d0-0x04d1] has been reserved
[    2.147716] pnp 00:06: [dma 0 disabled]
[    2.147998] pnp 00:07: [dma 0 disabled]
[    2.148379] system 00:08: [io  0x0400-0x0453] has been reserved
[    2.148383] system 00:08: [io  0x0458-0x047f] has been reserved
[    2.148386] system 00:08: [io  0x1180-0x119f] has been reserved
[    2.148388] system 00:08: [io  0x0500-0x057f] has been reserved
[    2.148391] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    2.148394] system 00:08: [mem 0xfec00000-0xfecfffff] could not be reserved
[    2.148396] system 00:08: [mem 0xfed08000-0xfed08fff] has been reserved
[    2.148398] system 00:08: [mem 0xff000000-0xffffffff] has been reserved
[    2.148762] system 00:0a: [mem 0xfbffe000-0xfbffffff] could not be reserved
[    2.149197] pnp: PnP ACPI: found 11 devices
[    2.155692] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    2.155830] NET: Registered PF_INET protocol family
[    2.156763] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.179381] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.179545] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    2.181018] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    2.182171] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc hugepage)
[    2.182440] TCP: Hash tables configured (established 524288 bind 65536)
[    2.183106] MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, vmalloc)
[    2.184766] UDP hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    2.186799] UDP-Lite hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[    2.187621] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    2.187664] NET: Registered PF_XDP protocol family
[    2.187739] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.187753] pci 0000:00:01.1: PCI bridge to [bus 02]
[    2.187762] pci 0000:00:02.0: PCI bridge to [bus 03]
[    2.187772] pci 0000:00:02.2: PCI bridge to [bus 04]
[    2.187776] pci 0000:00:02.2:   bridge window [mem 0xc8a00000-0xc8cfffff]
[    2.187785] pci 0000:00:03.0: PCI bridge to [bus 05]
[    2.187788] pci 0000:00:03.0:   bridge window [io  0x8000-0x8fff]
[    2.187792] pci 0000:00:03.0:   bridge window [mem 0xb8000000-0xc60fffff]
[    2.187801] pci 0000:00:11.0: PCI bridge to [bus 06]
[    2.187804] pci 0000:00:11.0:   bridge window [io  0x7000-0x7fff]
[    2.187810] pci 0000:00:11.0:   bridge window [mem 0xc8400000-0xc88fffff]
[    2.187814] pci 0000:00:11.0:   bridge window [mem 0xcfe00000-0xcfefffff 64bit pref]
[    2.187822] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    2.187825] pci 0000:00:1c.0:   bridge window [io  0x6000-0x6fff]
[    2.187829] pci 0000:00:1c.0:   bridge window [mem 0xc8e00000-0xc8efffff]
[    2.187839] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    2.187842] pci 0000:09:00.0:   bridge window [io  0x5000-0x5fff]
[    2.187850] pci 0000:09:00.0:   bridge window [mem 0xc7000000-0xc80fffff]
[    2.187864] pci 0000:00:1c.7: PCI bridge to [bus 09-0a]
[    2.187866] pci 0000:00:1c.7:   bridge window [io  0x5000-0x5fff]
[    2.187871] pci 0000:00:1c.7:   bridge window [mem 0xc7000000-0xc80fffff]
[    2.187879] pci 0000:00:1e.0: PCI bridge to [bus 0b]
[    2.187890] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    2.187893] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    2.187895] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    2.187897] pci_bus 0000:00: resource 7 [io  0x0d00-0x9fff window]
[    2.187899] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
[    2.187901] pci_bus 0000:00: resource 9 [mem 0x80000000-0xcfffffff window]
[    2.187904] pci_bus 0000:04: resource 1 [mem 0xc8a00000-0xc8cfffff]
[    2.187906] pci_bus 0000:05: resource 0 [io  0x8000-0x8fff]
[    2.187908] pci_bus 0000:05: resource 1 [mem 0xb8000000-0xc60fffff]
[    2.187911] pci_bus 0000:06: resource 0 [io  0x7000-0x7fff]
[    2.187912] pci_bus 0000:06: resource 1 [mem 0xc8400000-0xc88fffff]
[    2.187914] pci_bus 0000:06: resource 2 [mem 0xcfe00000-0xcfefffff 64bit pref]
[    2.187916] pci_bus 0000:07: resource 0 [io  0x6000-0x6fff]
[    2.187918] pci_bus 0000:07: resource 1 [mem 0xc8e00000-0xc8efffff]
[    2.187920] pci_bus 0000:09: resource 0 [io  0x5000-0x5fff]
[    2.187921] pci_bus 0000:09: resource 1 [mem 0xc7000000-0xc80fffff]
[    2.187924] pci_bus 0000:0a: resource 0 [io  0x5000-0x5fff]
[    2.187925] pci_bus 0000:0a: resource 1 [mem 0xc7000000-0xc80fffff]
[    2.187928] pci_bus 0000:0b: resource 4 [io  0x0000-0x03af window]
[    2.187929] pci_bus 0000:0b: resource 5 [io  0x03e0-0x0cf7 window]
[    2.187931] pci_bus 0000:0b: resource 6 [io  0x03b0-0x03df window]
[    2.187933] pci_bus 0000:0b: resource 7 [io  0x0d00-0x9fff window]
[    2.187935] pci_bus 0000:0b: resource 8 [mem 0x000a0000-0x000dffff window]
[    2.187937] pci_bus 0000:0b: resource 9 [mem 0x80000000-0xcfffffff window]
[    2.188064] pci 0000:80:00.0: PCI bridge to [bus 81]
[    2.188075] pci 0000:80:01.0: PCI bridge to [bus 82]
[    2.188089] pci 0000:80:02.0: PCI bridge to [bus 83]
[    2.188100] pci 0000:80:03.0: PCI bridge to [bus 84]
[    2.188110] pci_bus 0000:80: resource 4 [io  0xa000-0xffff window]
[    2.188112] pci_bus 0000:80: resource 5 [mem 0xd0000000-0xfbffffff window]
[    2.188202] pci 0000:00:05.0: disabled boot interrupts on device [8086:0e28]
[    2.204275] pci 0000:00:1a.0: quirk_usb_early_handoff+0x0/0x730 took 15677 usecs
[    2.220250] pci 0000:00:1d.0: quirk_usb_early_handoff+0x0/0x730 took 15573 usecs
[    2.220283] pci 0000:05:00.1: extending delay after power-on from D3hot to 20 msec
[    2.220370] pci 0000:05:00.1: D0 power state depends on 0000:05:00.0
[    2.220542] pci 0000:80:05.0: disabled boot interrupts on device [8086:0e28]
[    2.220666] PCI: CLS 64 bytes, default 64
[    2.220786] DMAR: No SATC found
[    2.220789] DMAR: dmar0: Using Queued invalidation
[    2.220794] DMAR: dmar1: Using Queued invalidation
[    2.220831] Trying to unpack rootfs image as initramfs...
[    2.221018] pci 0000:80:00.0: Adding to iommu group 0
[    2.221062] pci 0000:80:01.0: Adding to iommu group 1
[    2.221115] pci 0000:80:02.0: Adding to iommu group 2
[    2.221161] pci 0000:80:03.0: Adding to iommu group 3
[    2.221200] pci 0000:80:04.0: Adding to iommu group 4
[    2.221238] pci 0000:80:04.1: Adding to iommu group 5
[    2.221276] pci 0000:80:04.2: Adding to iommu group 6
[    2.221317] pci 0000:80:04.3: Adding to iommu group 7
[    2.221356] pci 0000:80:04.4: Adding to iommu group 8
[    2.221394] pci 0000:80:04.5: Adding to iommu group 9
[    2.221434] pci 0000:80:04.6: Adding to iommu group 10
[    2.221472] pci 0000:80:04.7: Adding to iommu group 11
[    2.221571] pci 0000:00:00.0: Adding to iommu group 12
[    2.221611] pci 0000:00:01.0: Adding to iommu group 13
[    2.221653] pci 0000:00:01.1: Adding to iommu group 14
[    2.221696] pci 0000:00:02.0: Adding to iommu group 15
[    2.221736] pci 0000:00:02.2: Adding to iommu group 16
[    2.221776] pci 0000:00:03.0: Adding to iommu group 17
[    2.221814] pci 0000:00:04.0: Adding to iommu group 18
[    2.221855] pci 0000:00:04.1: Adding to iommu group 19
[    2.221894] pci 0000:00:04.2: Adding to iommu group 20
[    2.221932] pci 0000:00:04.3: Adding to iommu group 21
[    2.221969] pci 0000:00:04.4: Adding to iommu group 22
[    2.222010] pci 0000:00:04.5: Adding to iommu group 23
[    2.222048] pci 0000:00:04.6: Adding to iommu group 24
[    2.222093] pci 0000:00:04.7: Adding to iommu group 25
[    2.222135] pci 0000:00:05.0: Adding to iommu group 26
[    2.222174] pci 0000:00:05.2: Adding to iommu group 27
[    2.222213] pci 0000:00:05.4: Adding to iommu group 28
[    2.222253] pci 0000:00:11.0: Adding to iommu group 29
[    2.222353] pci 0000:00:16.0: Adding to iommu group 30
[    2.222393] pci 0000:00:16.1: Adding to iommu group 30
[    2.222431] pci 0000:00:1a.0: Adding to iommu group 31
[    2.222473] pci 0000:00:1b.0: Adding to iommu group 32
[    2.222514] pci 0000:00:1c.0: Adding to iommu group 33
[    2.222552] pci 0000:00:1c.7: Adding to iommu group 34
[    2.222590] pci 0000:00:1d.0: Adding to iommu group 35
[    2.222629] pci 0000:00:1e.0: Adding to iommu group 36
[    2.222756] pci 0000:00:1f.0: Adding to iommu group 37
[    2.222797] pci 0000:00:1f.2: Adding to iommu group 37
[    2.222838] pci 0000:00:1f.3: Adding to iommu group 37
[    2.222880] pci 0000:04:00.0: Adding to iommu group 38
[    2.222977] pci 0000:05:00.0: Adding to iommu group 39
[    2.223022] pci 0000:05:00.1: Adding to iommu group 39
[    2.223100] pci 0000:06:00.0: Adding to iommu group 40
[    2.223140] pci 0000:07:00.0: Adding to iommu group 41
[    2.223189] pci 0000:07:00.1: Adding to iommu group 42
[    2.223234] pci 0000:09:00.0: Adding to iommu group 43
[    2.223241] pci 0000:0a:00.0: Adding to iommu group 43
[    2.223309] pci 0000:7f:08.0: Adding to iommu group 44
[    2.223377] pci 0000:7f:09.0: Adding to iommu group 45
[    2.223534] pci 0000:7f:0a.0: Adding to iommu group 46
[    2.223578] pci 0000:7f:0a.1: Adding to iommu group 46
[    2.223621] pci 0000:7f:0a.2: Adding to iommu group 46
[    2.223664] pci 0000:7f:0a.3: Adding to iommu group 46
[    2.223760] pci 0000:7f:0b.0: Adding to iommu group 47
[    2.223804] pci 0000:7f:0b.3: Adding to iommu group 47
[    2.224022] pci 0000:7f:0c.0: Adding to iommu group 48
[    2.224067] pci 0000:7f:0c.1: Adding to iommu group 48
[    2.224124] pci 0000:7f:0c.2: Adding to iommu group 48
[    2.224171] pci 0000:7f:0c.3: Adding to iommu group 48
[    2.224216] pci 0000:7f:0c.4: Adding to iommu group 48
[    2.224271] pci 0000:7f:0c.5: Adding to iommu group 48
[    2.224491] pci 0000:7f:0d.0: Adding to iommu group 49
[    2.224538] pci 0000:7f:0d.1: Adding to iommu group 49
[    2.224584] pci 0000:7f:0d.2: Adding to iommu group 49
[    2.224631] pci 0000:7f:0d.3: Adding to iommu group 49
[    2.224677] pci 0000:7f:0d.4: Adding to iommu group 49
[    2.224724] pci 0000:7f:0d.5: Adding to iommu group 49
[    2.224821] pci 0000:7f:0e.0: Adding to iommu group 50
[    2.224871] pci 0000:7f:0e.1: Adding to iommu group 50
[    2.224913] pci 0000:7f:0f.0: Adding to iommu group 51
[    2.224953] pci 0000:7f:0f.1: Adding to iommu group 52
[    2.224993] pci 0000:7f:0f.2: Adding to iommu group 53
[    2.225035] pci 0000:7f:0f.3: Adding to iommu group 54
[    2.225075] pci 0000:7f:0f.4: Adding to iommu group 55
[    2.225121] pci 0000:7f:0f.5: Adding to iommu group 56
[    2.225167] pci 0000:7f:10.0: Adding to iommu group 57
[    2.225208] pci 0000:7f:10.1: Adding to iommu group 58
[    2.225248] pci 0000:7f:10.2: Adding to iommu group 59
[    2.225294] pci 0000:7f:10.3: Adding to iommu group 60
[    2.225337] pci 0000:7f:10.4: Adding to iommu group 61
[    2.225377] pci 0000:7f:10.5: Adding to iommu group 62
[    2.225424] pci 0000:7f:10.6: Adding to iommu group 63
[    2.225468] pci 0000:7f:10.7: Adding to iommu group 64
[    2.225627] pci 0000:7f:13.0: Adding to iommu group 65
[    2.225678] pci 0000:7f:13.1: Adding to iommu group 65
[    2.225728] pci 0000:7f:13.4: Adding to iommu group 65
[    2.225779] pci 0000:7f:13.5: Adding to iommu group 65
[    2.225907] pci 0000:7f:16.0: Adding to iommu group 66
[    2.225958] pci 0000:7f:16.1: Adding to iommu group 66
[    2.226011] pci 0000:7f:16.2: Adding to iommu group 66
[    2.226117] pci 0000:7f:1c.0: Adding to iommu group 67
[    2.226170] pci 0000:7f:1c.1: Adding to iommu group 67
[    2.226209] pci 0000:7f:1d.0: Adding to iommu group 68
[    2.226248] pci 0000:7f:1d.1: Adding to iommu group 69
[    2.226291] pci 0000:7f:1d.2: Adding to iommu group 70
[    2.226331] pci 0000:7f:1d.3: Adding to iommu group 71
[    2.226370] pci 0000:7f:1d.4: Adding to iommu group 72
[    2.226412] pci 0000:7f:1d.5: Adding to iommu group 73
[    2.226452] pci 0000:7f:1e.0: Adding to iommu group 74
[    2.226492] pci 0000:7f:1e.1: Adding to iommu group 75
[    2.226531] pci 0000:7f:1e.2: Adding to iommu group 76
[    2.226573] pci 0000:7f:1e.3: Adding to iommu group 77
[    2.226613] pci 0000:7f:1e.4: Adding to iommu group 78
[    2.226653] pci 0000:7f:1e.5: Adding to iommu group 79
[    2.226692] pci 0000:7f:1e.6: Adding to iommu group 80
[    2.226734] pci 0000:7f:1e.7: Adding to iommu group 81
[    2.226773] pci 0000:80:05.0: Adding to iommu group 82
[    2.226811] pci 0000:80:05.2: Adding to iommu group 83
[    2.226848] pci 0000:80:05.4: Adding to iommu group 84
[    2.226918] pci 0000:ff:08.0: Adding to iommu group 85
[    2.226985] pci 0000:ff:09.0: Adding to iommu group 86
[    2.227149] pci 0000:ff:0a.0: Adding to iommu group 87
[    2.227213] pci 0000:ff:0a.1: Adding to iommu group 87
[    2.227271] pci 0000:ff:0a.2: Adding to iommu group 87
[    2.227327] pci 0000:ff:0a.3: Adding to iommu group 87
[    2.227424] pci 0000:ff:0b.0: Adding to iommu group 88
[    2.227480] pci 0000:ff:0b.3: Adding to iommu group 88
[    2.227696] pci 0000:ff:0c.0: Adding to iommu group 89
[    2.227753] pci 0000:ff:0c.1: Adding to iommu group 89
[    2.227812] pci 0000:ff:0c.2: Adding to iommu group 89
[    2.227869] pci 0000:ff:0c.3: Adding to iommu group 89
[    2.227926] pci 0000:ff:0c.4: Adding to iommu group 89
[    2.227983] pci 0000:ff:0c.5: Adding to iommu group 89
[    2.228204] pci 0000:ff:0d.0: Adding to iommu group 90
[    2.228262] pci 0000:ff:0d.1: Adding to iommu group 90
[    2.228322] pci 0000:ff:0d.2: Adding to iommu group 90
[    2.228385] pci 0000:ff:0d.3: Adding to iommu group 90
[    2.228443] pci 0000:ff:0d.4: Adding to iommu group 90
[    2.228501] pci 0000:ff:0d.5: Adding to iommu group 90
[    2.228598] pci 0000:ff:0e.0: Adding to iommu group 91
[    2.228658] pci 0000:ff:0e.1: Adding to iommu group 91
[    2.228699] pci 0000:ff:0f.0: Adding to iommu group 92
[    2.228739] pci 0000:ff:0f.1: Adding to iommu group 93
[    2.228779] pci 0000:ff:0f.2: Adding to iommu group 94
[    2.228818] pci 0000:ff:0f.3: Adding to iommu group 95
[    2.228863] pci 0000:ff:0f.4: Adding to iommu group 96
[    2.228902] pci 0000:ff:0f.5: Adding to iommu group 97
[    2.228942] pci 0000:ff:10.0: Adding to iommu group 98
[    2.228982] pci 0000:ff:10.1: Adding to iommu group 99
[    2.229024] pci 0000:ff:10.2: Adding to iommu group 100
[    2.229063] pci 0000:ff:10.3: Adding to iommu group 101
[    2.229109] pci 0000:ff:10.4: Adding to iommu group 102
[    2.229151] pci 0000:ff:10.5: Adding to iommu group 103
[    2.229191] pci 0000:ff:10.6: Adding to iommu group 104
[    2.229234] pci 0000:ff:10.7: Adding to iommu group 105
[    2.229392] pci 0000:ff:13.0: Adding to iommu group 106
[    2.229455] pci 0000:ff:13.1: Adding to iommu group 106
[    2.229521] pci 0000:ff:13.4: Adding to iommu group 106
[    2.229584] pci 0000:ff:13.5: Adding to iommu group 106
[    2.229713] pci 0000:ff:16.0: Adding to iommu group 107
[    2.229776] pci 0000:ff:16.1: Adding to iommu group 107
[    2.229841] pci 0000:ff:16.2: Adding to iommu group 107
[    2.229941] pci 0000:ff:1c.0: Adding to iommu group 108
[    2.230007] pci 0000:ff:1c.1: Adding to iommu group 108
[    2.230047] pci 0000:ff:1d.0: Adding to iommu group 109
[    2.230102] pci 0000:ff:1d.1: Adding to iommu group 110
[    2.230144] pci 0000:ff:1d.2: Adding to iommu group 111
[    2.230184] pci 0000:ff:1d.3: Adding to iommu group 112
[    2.230228] pci 0000:ff:1d.4: Adding to iommu group 113
[    2.230268] pci 0000:ff:1d.5: Adding to iommu group 114
[    2.230308] pci 0000:ff:1e.0: Adding to iommu group 115
[    2.230350] pci 0000:ff:1e.1: Adding to iommu group 116
[    2.230390] pci 0000:ff:1e.2: Adding to iommu group 117
[    2.230430] pci 0000:ff:1e.3: Adding to iommu group 118
[    2.230469] pci 0000:ff:1e.4: Adding to iommu group 119
[    2.230514] pci 0000:ff:1e.5: Adding to iommu group 120
[    2.230554] pci 0000:ff:1e.6: Adding to iommu group 121
[    2.230594] pci 0000:ff:1e.7: Adding to iommu group 122
[    2.230686] DMAR: Intel(R) Virtualization Technology for Directed I/O
[    2.230688] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    2.230690] software IO TLB: mapped [mem 0x0000000078b60000-0x000000007cb60000] (64MB)
[    2.261024] Initialise system trusted keyrings
[    2.261064] Key type blacklist registered
[    2.261268] workingset: timestamp_bits=36 max_order=26 bucket_order=0
[    2.261823] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    2.262070] fuse: init (API version 7.45)
[    2.262508] integrity: Platform Keyring initialized
[    2.262514] integrity: Machine keyring initialized
[    2.276619] Key type asymmetric registered
[    2.276625] Asymmetric key parser 'x509' registered
[    2.276698] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
[    2.276877] io scheduler mq-deadline registered
[    2.280180] ledtrig-cpu: registered to indicate activity on CPUs
[    2.280652] pcieport 0000:00:01.0: PME: Signaling with IRQ 26
[    2.280970] pcieport 0000:00:01.1: PME: Signaling with IRQ 27
[    2.281416] pcieport 0000:00:02.0: PME: Signaling with IRQ 29
[    2.281741] pcieport 0000:00:02.2: PME: Signaling with IRQ 30
[    2.282101] pcieport 0000:00:03.0: PME: Signaling with IRQ 32
[    2.282401] pcieport 0000:00:11.0: PME: Signaling with IRQ 33
[    2.282661] pcieport 0000:00:1c.0: PME: Signaling with IRQ 34
[    2.282874] pcieport 0000:00:1c.7: PME: Signaling with IRQ 35
[    2.283492] pcieport 0000:80:00.0: PME: Signaling with IRQ 37
[    2.283873] pcieport 0000:80:01.0: PME: Signaling with IRQ 39
[    2.284266] pcieport 0000:80:02.0: PME: Signaling with IRQ 41
[    2.284595] pcieport 0000:80:03.0: PME: Signaling with IRQ 43
[    2.285249] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    2.285350] ACPI: button: Power Button [PWRB]
[    2.285412] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    2.285466] ACPI: button: Power Button [PWRF]
[    2.349828] ERST: Error Record Serialization Table (ERST) support is initialized.
[    2.349960] pstore: Using crash dump compression: deflate
[    2.349964] pstore: Registered erst as persistent store backend
[    2.350285] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    2.371073] 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    2.392558] 00:07: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    2.396063] Linux agpgart interface v0.103
[    2.396393] ACPI: bus type drm_connector registered
[    2.407271] loop: module loaded
[    2.407769] tun: Universal TUN/TAP device driver, 1.6
[    2.407855] PPP generic driver version 2.4.2
[    2.407993] i8042: PNP: PS/2 Controller [PNP0f03:PS2M] at 0x60,0x64 irq 12
[    2.407997] i8042: PNP: PS/2 controller doesn't have KBD irq; using default 1
[    2.410681] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.410694] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.410875] mousedev: PS/2 mouse device common for all mice
[    2.411057] rtc_cmos 00:03: RTC can wake from S4
[    2.411352] rtc_cmos 00:03: registered as rtc0
[    2.411387] rtc_cmos 00:03: setting system clock to 2025-10-21T18:31:43 UTC (1761071503)
[    2.411427] rtc_cmos 00:03: alarms up to one month, y3k, 114 bytes nvram
[    2.411440] i2c_dev: i2c /dev entries driver
[    2.413300] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    2.413332] device-mapper: uevent: version 1.0.3
[    2.413435] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists.linux.dev
[    2.413472] intel_pstate: Intel P-state driver initializing
[    2.415390] drop_monitor: Initializing network drop monitor service
[    2.415551] NET: Registered PF_INET6 protocol family
[    2.416246] Segment Routing with IPv6
[    2.416258] In-situ OAM (IOAM) with IPv6
[    2.416281] NET: Registered PF_PACKET protocol family
[    2.416321] Bridge firewalling registered
[    2.416437] Key type dns_resolver registered
[    2.422300] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    2.424317] microcode: Current revision: 0x0000042e
[    2.424320] microcode: Updated early from: 0x00000424
[    2.426248] IPI shorthand broadcast: enabled
[    2.428547] sched_clock: Marking stable (2420870848, 7214445)->(2649587843, -221502550)
[    2.428986] registered taskstats version 1
[    2.435328] Loading compiled-in X.509 certificates
[    2.436214] Loaded X.509 cert 'Build time autogenerated kernel key: ebedaebb90d565f04972d4b57075f63c63781d50'
[    2.442080] Demotion targets for Node 0: null
[    2.442088] Demotion targets for Node 1: null
[    2.442387] Key type .fscrypt registered
[    2.442390] Key type fscrypt-provisioning registered
[    3.231271] tsc: Refined TSC clocksource calibration: 2699.998 MHz
[    3.231309] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x26eb3cc21a9, max_idle_ns: 440795299783 ns
[    3.231429] clocksource: Switched to clocksource tsc
[    7.239419] Freeing initrd memory: 499864K
[    7.257449] Key type encrypted registered
[    7.257456] AppArmor: AppArmor sha256 policy hashing enabled
[    7.257477] ima: No TPM chip found, activating TPM-bypass!
[    7.257510] Loading compiled-in module X.509 certificates
[    7.258138] Loaded X.509 cert 'Build time autogenerated kernel key: ebedaebb90d565f04972d4b57075f63c63781d50'
[    7.258142] ima: Allocated hash algorithm: sha256
[    7.258165] ima: No architecture policies found
[    7.258188] evm: Initialising EVM extended attributes:
[    7.258190] evm: security.selinux
[    7.258191] evm: security.SMACK64
[    7.258192] evm: security.SMACK64EXEC
[    7.258193] evm: security.SMACK64TRANSMUTE
[    7.258194] evm: security.SMACK64MMAP
[    7.258195] evm: security.apparmor
[    7.258210] evm: security.ima
[    7.258212] evm: security.capability
[    7.258212] evm: HMAC attrs: 0x1
[    7.258780] PM:   Magic number: 13:989:544
[    7.258817] tty ttyS20: hash matches
[    7.260864] RAS: Correctable Errors collector initialized.
[    7.265956] clk: Disabling unused clocks
[    7.265959] PM: genpd: Disabling unused power domains
[    7.268346] Freeing unused decrypted memory: 2028K
[    7.270918] Freeing unused kernel image (initmem) memory: 4932K
[    7.271071] Write protecting the kernel read-only data: 38912k
[    7.271931] Freeing unused kernel image (text/rodata gap) memory: 1060K
[    7.272661] Freeing unused kernel image (rodata/data gap) memory: 1028K
[    7.320093] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    7.320097] x86/mm: Checking user space page tables
[    7.363403] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    7.363428] Run /init as init process
[    7.363431]   with arguments:
[    7.363433]     /init
[    7.363435]   with environment:
[    7.363437]     HOME=/
[    7.363439]     TERM=linux
[    7.593599] dca service started, version 1.12.1
[    7.602867] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    7.602887] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    7.602902] ehci-pci 0000:00:1a.0: debug port 2
[    7.604123] ioatdma: Intel(R) QuickData Technology Driver 5.00
[    7.606835] ehci-pci 0000:00:1a.0: irq 17, io mem 0xc6127000
[    7.609738] Adaptec aacraid driver 1.2.1[50983]-custom
[    7.613684] ahci 0000:00:1f.2: AHCI vers 0001.0300, 32 command slots, 6 Gbps, SATA mode
[    7.613690] ahci 0000:00:1f.2: 6/6 ports implemented (port mask 0x3f)
[    7.613692] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst 
[    7.613783] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    7.613864] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.18
[    7.613867] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    7.613869] usb usb1: Product: EHCI Host Controller
[    7.613871] usb usb1: Manufacturer: Linux 6.18.0-rc2 ehci_hcd
[    7.613873] usb usb1: SerialNumber: 0000:00:1a.0
[    7.617338] hub 1-0:1.0: USB hub found
[    7.617352] hub 1-0:1.0: 2 ports detected
[    7.617654] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    7.617660] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    7.617671] ehci-pci 0000:00:1d.0: debug port 2
[    7.621717] ehci-pci 0000:00:1d.0: irq 23, io mem 0xc6126000
[    7.621835] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    7.622296] aacraid: Comm Interface enabled
[    7.628001] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    7.628058] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.18
[    7.628062] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    7.628064] usb usb2: Product: EHCI Host Controller
[    7.628066] usb usb2: Manufacturer: Linux 6.18.0-rc2 ehci_hcd
[    7.628067] usb usb2: SerialNumber: 0000:00:1d.0
[    7.629741] igb: Intel(R) Gigabit Ethernet Network Driver
[    7.629744] igb: Copyright (c) 2007-2014 Intel Corporation.
[    7.631523] hub 2-0:1.0: USB hub found
[    7.631534] hub 2-0:1.0: 2 ports detected
[    7.637458] i2c i2c-0: Successfully instantiated SPD at 0x56
[    7.640734] scsi host1: ahci
[    7.641100] scsi host2: ahci
[    7.646283] scsi host3: ahci
[    7.659289] scsi host4: ahci
[    7.659498] scsi host5: ahci
[    7.664025] scsi host6: ahci
[    7.664111] ata1: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125100 irq 44 lpm-pol 1 ext
[    7.664114] ata2: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125180 irq 44 lpm-pol 1 ext
[    7.664116] ata3: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125200 irq 44 lpm-pol 1 ext
[    7.664118] ata4: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125280 irq 44 lpm-pol 1 ext
[    7.664120] ata5: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125300 irq 44 lpm-pol 1 ext
[    7.664122] ata6: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125380 irq 44 lpm-pol 1 ext
[    7.671844] isci: Intel(R) C600 SAS Controller Driver - version 1.2.0
[    7.676776] isci 0000:06:00.0: driver configured for rev: 6 silicon
[    7.676793] isci 0000:06:00.0: OEM parameter table found in OROM
[    7.676797] isci 0000:06:00.0: OEM SAS parameters (version: 1.1) loaded (platform)
[    7.684507] isci 0000:06:00.0: SCU controller 0: phy 3-0 cables: {short, short, short, short}
[    7.686813] scsi host7: isci
[    7.709237] igb 0000:07:00.0: DCA enabled
[    7.709540] igb 0000:07:00.0: added PHC on eth0
[    7.709562] igb 0000:07:00.0: Intel(R) Gigabit Ethernet Network Connection
[    7.709564] igb 0000:07:00.0: eth0: (PCIe:5.0Gb/s:Width x4) e0:3f:49:e7:2a:31
[    7.709653] igb 0000:07:00.0: eth0: PBA No: 104900-000
[    7.709654] igb 0000:07:00.0: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
[    7.764432] igb 0000:07:00.1: DCA enabled
[    7.764565] igb 0000:07:00.1: added PHC on eth1
[    7.764599] igb 0000:07:00.1: Intel(R) Gigabit Ethernet Network Connection
[    7.764601] igb 0000:07:00.1: eth1: (PCIe:5.0Gb/s:Width x4) e0:3f:49:e7:2a:32
[    7.764677] igb 0000:07:00.1: eth1: PBA No: 104900-000
[    7.764679] igb 0000:07:00.1: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
[    7.826597] AAC0: kernel 5.2-0[18948] Apr 13 2012
[    7.826603] AAC0: monitor 5.2-0[18948]
[    7.826605] AAC0: bios 5.2-0[18948]
[    7.826607] AAC0: serial 3E4313486E1
[    7.826609] AAC0: Non-DASD support enabled.
[    7.826625] AAC0: 64bit support enabled.
[    7.826627] aacraid 0000:04:00.0: 64 Bit DAC enabled
[    7.841290] scsi host0: aacraid
[    7.841701] scsi 0:0:0:0: Direct-Access     Adaptec  linus_raid1_1tb  V1.0 PQ: 0 ANSI: 2
[    7.841897] scsi 0:0:1:0: Direct-Access     Adaptec  linus_raid5_5tb  V1.0 PQ: 0 ANSI: 2
[    7.852532] scsi 0:1:0:0: Direct-Access              Samsung SSD 860  RVM0 PQ: 1 ANSI: 5
[    7.855289] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    7.855902] scsi 0:1:1:0: Direct-Access              Samsung SSD 860  RVM0 PQ: 1 ANSI: 5
[    7.859242] scsi 0:1:2:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    7.862953] scsi 0:1:3:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    7.866548] scsi 0:1:4:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    7.870152] scsi 0:1:5:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    7.871316] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    7.873889] scsi 0:1:6:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    7.877541] scsi 0:1:7:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    7.964704] scsi 0:3:0:0: Enclosure         ADAPTEC  Virtual SGPIO  0 0001 PQ: 0 ANSI: 5
[    7.973178] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    7.973212] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    7.973251] ata6: SATA link down (SStatus 0 SControl 300)
[    7.973288] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    7.973308] ata4: SATA link down (SStatus 0 SControl 300)
[    7.973327] ata5: SATA link down (SStatus 0 SControl 300)
[    7.973470] ata2.00: ATA-9: M4-CT256M4SSD2, 0309, max UDMA/100
[    7.973586] ata1.00: ATA-9: M4-CT256M4SSD2, 0309, max UDMA/100
[    7.973644] ata2.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    7.973789] ata1.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    7.974016] ata2.00: configured for UDMA/100
[    7.974232] ata1.00: configured for UDMA/100
[    7.974972] ata3.00: ATAPI: ATAPI   iHAS124   W, HL0F, max UDMA/100
[    7.976915] ata3.00: configured for UDMA/100
[    7.980634] usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[    7.980639] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    7.980933] hub 1-1:1.0: USB hub found
[    7.981003] hub 1-1:1.0: 6 ports detected
[    7.984380] scsi: waiting for bus probes to complete ...
[    7.996629] usb 2-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[    7.996634] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    7.996924] hub 2-1:1.0: USB hub found
[    7.997018] hub 2-1:1.0: 8 ports detected
[    8.105465] scsi 0:3:0:0: scsi_get_vpd_size: long VPD page 0 length: 516 bytes
[    8.264290] usb 1-1.3: new high-speed USB device number 3 using ehci-pci
[    8.280299] usb 2-1.1: new low-speed USB device number 3 using ehci-pci
[    8.373535] usb 2-1.1: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.02
[    8.373539] usb 2-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    8.373541] usb 2-1.1: Product: USB Keyboard
[    8.373543] usb 2-1.1: Manufacturer: Logitech
[    8.384105] input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input4
[    8.391421] hid: raw HID events driver (C) Jiri Kosina
[    8.568632] usb 1-1.3: New USB device found, idVendor=046b, idProduct=ff01, bcdDevice= 1.00
[    8.568638] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    8.568640] usb 1-1.3: Product: Virtual Hub
[    8.568641] usb 1-1.3: Manufacturer: American Megatrends Inc.
[    8.568643] usb 1-1.3: SerialNumber: serial
[    8.569142] hub 1-1.3:1.0: USB hub found
[    8.569256] hub 1-1.3:1.0: 5 ports detected
[    8.890305] usb 1-1.3.1: new low-speed USB device number 4 using ehci-pci
[    9.032632] usb 1-1.3.1: New USB device found, idVendor=046b, idProduct=ff10, bcdDevice= 1.00
[    9.032637] usb 1-1.3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    9.032639] usb 1-1.3.1: Product: Virtual Keyboard and Mouse
[    9.032640] usb 1-1.3.1: Manufacturer: American Megatrends Inc.
[    9.087983] usbcore: registered new interface driver usbhid
[    9.087986] usbhid: USB HID core driver
[    9.149301] usb 1-1.3.2: new high-speed USB device number 5 using ehci-pci
[    9.291390] usb 1-1.3.2: New USB device found, idVendor=046b, idProduct=ff20, bcdDevice= 1.00
[    9.291403] usb 1-1.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    9.291408] usb 1-1.3.2: Product: Virtual Cdrom Device
[    9.291425] usb 1-1.3.2: Manufacturer: American Megatrends Inc.
[    9.291427] usb 1-1.3.2: SerialNumber: AAAABBBBCCCC1
[    9.302811] usb-storage 1-1.3.2:1.0: USB Mass Storage device detected
[    9.303246] scsi host8: usb-storage 1-1.3.2:1.0
[    9.303404] usbcore: registered new interface driver usb-storage
[    9.407301] usb 1-1.3.3: new high-speed USB device number 6 using ehci-pci
[    9.549270] usb 1-1.3.3: New USB device found, idVendor=046b, idProduct=ff40, bcdDevice= 1.00
[    9.549275] usb 1-1.3.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    9.549277] usb 1-1.3.3: Product: Virtual Floppy Device
[    9.549278] usb 1-1.3.3: Manufacturer: American Megatrends Inc.
[    9.549279] usb 1-1.3.3: SerialNumber: AAAABBBBCCCC2
[    9.549645] usb-storage 1-1.3.3:1.0: USB Mass Storage device detected
[    9.549897] usb-storage 1-1.3.3:1.0: Quirks match for vid 046b pid ff40: 200
[    9.549980] scsi host9: usb-storage 1-1.3.3:1.0
[    9.555638] usbcore: registered new interface driver uas
[    9.665291] usb 1-1.3.4: new high-speed USB device number 7 using ehci-pci
[    9.807392] usb 1-1.3.4: New USB device found, idVendor=046b, idProduct=ff31, bcdDevice= 1.00
[    9.807405] usb 1-1.3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    9.807426] usb 1-1.3.4: Product: Virtual HardDisk Device
[    9.807427] usb 1-1.3.4: Manufacturer: American Megatrends Inc.
[    9.807428] usb 1-1.3.4: SerialNumber: AAAABBBBCCCC3
[    9.807773] usb-storage 1-1.3.4:1.0: USB Mass Storage device detected
[    9.808086] scsi host10: usb-storage 1-1.3.4:1.0
[   10.336252] scsi 8:0:0:0: CD-ROM            AMI      Virtual CDROM0   1.00 PQ: 0 ANSI: 0 CCS
[   10.592313] scsi 9:0:0:0: Direct-Access     AMI      Virtual Floppy0  1.00 PQ: 0 ANSI: 0 CCS
[   10.848336] scsi 10:0:0:0: Direct-Access     AMI      Virtual HDISK0   1.00 PQ: 0 ANSI: 0 CCS
[   37.268216] scsi 0:3:1:0: Enclosure         ADAPTEC  Virtual SGPIO  1 0001 PQ: 0 ANSI: 5
[   66.375380] sd 0:0:0:0: Attached scsi generic sg0 type 0
[   66.375446] sd 0:0:0:0: [sda] 1998565376 512-byte logical blocks: (1.02 TB/953 GiB)
[   66.375460] sd 0:0:0:0: [sda] Write Protect is off
[   66.375463] sd 0:0:0:0: [sda] Mode Sense: 12 00 10 08
[   66.375492] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, supports DPO and FUA
[   66.375524] sd 0:0:1:0: Attached scsi generic sg1 type 0
[   66.375702] sd 0:0:1:0: [sdb] Very big device. Trying to use READ CAPACITY(16).
[   66.375716] sd 0:0:1:0: [sdb] 9762222080 512-byte logical blocks: (5.00 TB/4.54 TiB)
[   66.375724] sd 0:0:1:0: [sdb] Write Protect is off
[   66.375727] sd 0:0:1:0: [sdb] Mode Sense: 12 00 10 08
[   66.375731] scsi 0:1:0:0: Attached scsi generic sg2 type 0
[   66.375741] sd 0:0:1:0: [sdb] Write cache: disabled, read cache: enabled, supports DPO and FUA
[   66.375865] scsi 0:1:1:0: Attached scsi generic sg3 type 0
[   66.375977] scsi 0:1:2:0: Attached scsi generic sg4 type 0
[   66.376078] scsi 0:1:3:0: Attached scsi generic sg5 type 0
[   66.376183] scsi 0:1:4:0: Attached scsi generic sg6 type 0
[   66.376296] scsi 0:1:5:0: Attached scsi generic sg7 type 0
[   66.376396] scsi 0:1:6:0: Attached scsi generic sg8 type 0
[   66.376510] scsi 0:1:7:0: Attached scsi generic sg9 type 0
[   66.376634] scsi 0:3:0:0: Attached scsi generic sg10 type 13
[   66.376756] scsi 0:3:1:0: Attached scsi generic sg11 type 13
[   66.376966] scsi 1:0:0:0: Direct-Access     ATA      M4-CT256M4SSD2   0309 PQ: 0 ANSI: 5
[   66.377272] sd 1:0:0:0: Attached scsi generic sg12 type 0
[   66.377349] sd 1:0:0:0: [sdc] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[   66.377359] scsi: waiting for bus probes to complete ...
[   66.377362] sd 1:0:0:0: [sdc] Write Protect is off
[   66.377365] sd 1:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[   66.377378] sd 1:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   66.377403] sd 1:0:0:0: [sdc] Preferred minimum I/O size 512 bytes
[   66.379752] sr 8:0:0:0: [sr0] scsi-1 drive
[   66.379756] cdrom: Uniform CD-ROM driver Revision: 3.20
[   66.389440] sd 0:0:1:0: [sdb] Very big device. Trying to use READ CAPACITY(16).
[   66.398447] sr 8:0:0:0: Attached scsi CD-ROM sr0
[   66.398540] sr 8:0:0:0: Attached scsi generic sg13 type 5
[   66.398738] sd 9:0:0:0: Attached scsi generic sg14 type 0
[   66.398902] sd 10:0:0:0: Attached scsi generic sg15 type 0
[   66.399084] scsi 2:0:0:0: Direct-Access     ATA      M4-CT256M4SSD2   0309 PQ: 0 ANSI: 5
[   66.399400] scsi 2:0:0:0: Attached scsi generic sg16 type 0
[   66.399506] sd 2:0:0:0: [sdf] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[   66.399519] sd 2:0:0:0: [sdf] Write Protect is off
[   66.399521] sd 2:0:0:0: [sdf] Mode Sense: 00 3a 00 00
[   66.399541] sd 2:0:0:0: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   66.399560] sd 9:0:0:0: [sdd] Media removed, stopped polling
[   66.399566] sd 2:0:0:0: [sdf] Preferred minimum I/O size 512 bytes
[   66.399679] sd 10:0:0:0: [sde] Media removed, stopped polling
[   66.400193] scsi 3:0:0:0: CD-ROM            ATAPI    iHAS124   W      HL0F PQ: 0 ANSI: 5
[   66.408748]  sdc: sdc1 sdc2 < sdc5 >
[   66.408945] sd 1:0:0:0: [sdc] Attached SCSI disk
[   66.409476] sd 0:0:0:0: [sda] Attached SCSI removable disk
[   66.411373] sd 9:0:0:0: [sdd] Attached SCSI removable disk
[   66.411375] sd 10:0:0:0: [sde] Attached SCSI removable disk
[   66.416655]  sdf: sdf1
[   66.416832] sd 2:0:0:0: [sdf] Attached SCSI disk
[   66.417231] sd 0:0:1:0: [sdb] Attached SCSI removable disk
[   66.459965] sr 3:0:0:0: [sr1] scsi3-mmc drive: 188x/125x writer dvd-ram cd/rw xa/form2 cdda tray
[   66.491407] sr 3:0:0:0: Attached scsi CD-ROM sr1
[   66.491575] sr 3:0:0:0: Attached scsi generic sg17 type 5
[   66.494485] igb 0000:07:00.1 enp7s0f1: renamed from eth1
[   66.494672] igb 0000:07:00.0 enp7s0f0: renamed from eth0
[   66.496182] usbcore: registered new interface driver usbmouse
[   66.496493] usbcore: registered new interface driver usbkbd
[   66.508202] input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.0/0003:046D:C31C.0001/input/input5
[   66.559488] hid-generic 0003:046D:C31C.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-0000:00:1d.0-1.1/input0
[   66.559713] input: Logitech USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.1/0003:046D:C31C.0002/input/input6
[   66.610332] input: Logitech USB Keyboard System Control as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.1/0003:046D:C31C.0002/input/input7
[   66.610433] hid-generic 0003:046D:C31C.0002: input,hiddev0,hidraw1: USB HID v1.10 Device [Logitech USB Keyboard] on usb-0000:00:1d.0-1.1/input1
[   66.610621] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3.1/1-1.3.1:1.0/0003:046B:FF10.0003/input/input8
[   66.610706] hid-generic 0003:046B:FF10.0003: input,hidraw2: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.0-1.3.1/input0
[   66.610845] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3.1/1-1.3.1:1.1/0003:046B:FF10.0004/input/input9
[   66.610940] hid-generic 0003:046B:FF10.0004: input,hidraw3: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.0-1.3.1/input1
[   68.849950] device-mapper: thin: Data device (dm-1) discard unsupported: Disabling discard passdown.
[   79.063366] device-mapper: thin: Data device (dm-3) discard unsupported: Disabling discard passdown.
[   79.138222] raid6: sse2x4   gen() 12092 MB/s
[   79.155222] raid6: sse2x2   gen()  8063 MB/s
[   79.172221] raid6: sse2x1   gen()  8039 MB/s
[   79.172222] raid6: using algorithm sse2x4 gen() 12092 MB/s
[   79.189220] raid6: .... xor() 7256 MB/s, rmw enabled
[   79.189224] raid6: using ssse3x2 recovery algorithm
[   79.191595] xor: automatically using best checksumming function   avx       
[   79.420881] Btrfs loaded, zoned=yes, fsverity=yes
[   79.544699] PM: Image not found (code -22)
[   79.582648] EXT4-fs (sdc1): mounted filesystem 3842ebdd-e37f-4e4e-afd4-d7eb79b41984 ro with ordered data mode. Quota mode: none.
[   79.917214] systemd[1]: Inserted module 'autofs4'
[   79.945734] systemd[1]: systemd 257.8-1~deb13u2 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +IPE +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF -XKBCOMMON -UTMP +SYSVINIT +LIBARCHIVE)
[   79.945743] systemd[1]: Detected architecture x86-64.
[   79.950522] systemd[1]: Hostname set to <linus.localdomain>.
[   80.034660] systemd[1]: bpf-restrict-fs: BPF LSM hook not enabled in the kernel, BPF LSM not supported.
[   80.217144] systemd[1]: /usr/lib/systemd/system/rrdcached.socket:11: ListenStream= references a path below legacy directory /var/run/, updating /var/run/rrdcached.sock → /run/rrdcached.sock; please update the unit file accordingly.
[   80.225627] systemd[1]: Queued start job for default target graphical.target.
[   80.254296] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[   80.255066] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[   80.256022] systemd[1]: Created slice system-xfs_scrub.slice - xfs_scrub background service slice.
[   80.256649] systemd[1]: Created slice user.slice - User and Session Slice.
[   80.256723] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[   80.256784] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[   80.256982] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[   80.257011] systemd[1]: Expecting device dev-disk-by\x2duuid-e5873103\x2d5ea5\x2d4dc0\x2da645\x2db8c511b219a8.device - /dev/disk/by-uuid/e5873103-5ea5-4dc0-a645-b8c511b219a8...
[   80.257023] systemd[1]: Expecting device dev-disk-by\x2duuid-fcf5433d\x2d28bd\x2d4d22\x2db3ba\x2ddd7262ae33a9.device - /dev/disk/by-uuid/fcf5433d-28bd-4d22-b3ba-dd7262ae33a9...
[   80.257038] systemd[1]: Reached target ceph-fuse.target - ceph target allowing to start/stop all ceph-fuse@.service instances at once.
[   80.257055] systemd[1]: Reached target ceph.target - ceph target allowing to start/stop all ceph*@.service instances at once.
[   80.257070] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[   80.257091] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[   80.257122] systemd[1]: Reached target paths.target - Path Units.
[   80.257152] systemd[1]: Reached target slices.target - Slice Units.
[   80.257178] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[   80.257314] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[   80.257404] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[   80.261523] systemd[1]: Listening on rpcbind.socket - RPCbind Server Activation Socket.
[   80.261689] systemd[1]: Listening on syslog.socket - Syslog Socket.
[   80.262729] systemd[1]: Listening on systemd-creds.socket - Credential Encryption/Decryption.
[   80.262835] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[   80.262936] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[   80.263053] systemd[1]: Listening on systemd-journald.socket - Journal Sockets.
[   80.263087] systemd[1]: systemd-pcrextend.socket - TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[   80.263107] systemd[1]: systemd-pcrlock.socket - Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[   80.263227] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[   80.263337] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[   80.264753] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[   80.265851] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[   80.265923] systemd[1]: run-lock.mount: Directory /run/lock to mount over is not empty, mounting anyway.
[   80.267114] systemd[1]: Mounting run-lock.mount - Legacy Locks Directory /run/lock...
[   80.268838] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[   80.269972] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[   80.270025] systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
[   80.271681] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[   80.273068] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[   80.274332] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[   80.275828] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[   80.276942] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[   80.278114] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[   80.279270] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[   80.279536] 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).
[   80.279573] systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
[   80.282242] systemd[1]: Starting systemd-journald.service - Journal Service...
[   80.284782] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[   80.284810] systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[   80.286052] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[   80.286104] systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[   80.287390] systemd[1]: Starting systemd-udev-load-credentials.service - Load udev Rules from Credentials...
[   80.289006] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[   80.291770] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[   80.291993] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[   80.292193] systemd[1]: Mounted run-lock.mount - Legacy Locks Directory /run/lock.
[   80.293044] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[   80.293205] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[   80.293608] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[   80.294034] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[   80.294265] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[   80.295173] systemd[1]: modprobe@drm.service: Deactivated successfully.
[   80.295421] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[   80.295846] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[   80.296080] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[   80.296414] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[   80.296644] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[   80.298440] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[   80.299724] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[   80.301054] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[   80.307418] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[   80.309441] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[   80.311125] systemd[1]: Finished systemd-udev-load-credentials.service - Load udev Rules from Credentials.
[   80.315964] systemd-journald[754]: Collecting audit messages is disabled.
[   80.318394] EXT4-fs (sdc1): re-mounted 3842ebdd-e37f-4e4e-afd4-d7eb79b41984 r/w.
[   80.319644] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[   80.323346] systemd[1]: Starting quota.service - Initial Check File System Quotas...
[   80.323691] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[   80.323750] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[   80.325110] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
[   80.325134] systemd[1]: systemd-tpm2-setup.service - TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[   80.341459] VFIO - User Level meta-driver version: 0.3
[   80.341631] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
[   80.341922] systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
[   80.343411] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[   80.359766] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
[   80.361909] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
[   80.362315] systemd[1]: Finished systemd-random-seed.service - Load/Save OS Random Seed.
[   80.364251] systemd[1]: Started dm-event.service - Device-mapper event daemon.
[   80.379935] vfio-pci 0000:05:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=none
[   80.380145] vfio_pci: add [10de:1201[ffffffff:ffffffff]] class 0x000000/00000000
[   80.380872] systemd[1]: Finished quota.service - Initial Check File System Quotas.
[   80.383693] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[   80.427480] vfio_pci: add [10de:0e0c[ffffffff:ffffffff]] class 0x000000/00000000
[   80.440179] systemd[1]: Started systemd-udevd.service - Rule-based Manager for Device Events and Files.
[   80.468679] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[   80.470183] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[   80.487515] systemd[1]: Finished lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
[   80.487644] systemd[1]: Reached target local-fs-pre.target - Preparation for Local File Systems.
[   80.506657] systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.
[   80.549063] systemd[1]: Started systemd-journald.service - Journal Service.
[   80.579401] systemd-journald[754]: Received client request to flush runtime journal.
[   80.682857] IPMI message handler: version 39.2
[   80.692680] ipmi device interface
[   80.719630] at24 0-0056: supply vcc not found, using dummy regulator
[   80.720770] at24 0-0056: 256 byte spd EEPROM, read-only
[   80.723933] ses 0:3:0:0: Attached Enclosure device
[   80.723957] ses 0:3:1:0: Attached Enclosure device
[   80.725462] input: PC Speaker as /devices/platform/pcspkr/input/input10
[   80.726521] ipmi_si: IPMI System Interface driver
[   80.726551] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
[   80.726555] ipmi_platform: ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
[   80.726559] ipmi_si: Adding SMBIOS-specified kcs state machine
[   80.726656] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
[   80.726804] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca2] regsize 1 spacing 1 irq 0
[   80.727014] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
[   80.727017] ipmi_si: Adding ACPI-specified kcs state machine
[   80.727123] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x20, irq 0
[   80.778353] mei_me 0000:00:16.0: Device doesn't have valid ME Interface
[   80.778518] ast 0000:0a:00.0: vgaarb: deactivate vga console
[   80.779906] Console: switching to colour dummy device 80x25
[   80.780338] ast 0000:0a:00.0: Using P2A bridge for configuration
[   80.780343] ast 0000:0a:00.0: AST 2300 detected
[   80.780423] ast 0000:0a:00.0: [drm] Using analog VGA
[   80.780949] ast 0000:0a:00.0: [drm] Registered 1 planes with drm panic
[   80.780954] [drm] Initialized ast 0.1.0 for 0000:0a:00.0 on minor 0
[   80.792401] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[   80.792407] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[   80.792409] RAPL PMU: hw unit of domain package 2^-16 Joules
[   80.792410] RAPL PMU: hw unit of domain dram 2^-16 Joules
[   80.943915] fbcon: astdrmfb (fb0) is primary device
[   80.983299] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x000a3f, prod_id: 0x0c63, dev_id: 0x20)
[   80.994905] Console: switching to colour frame buffer device 210x65
[   81.035451] snd_hda_intel 0000:00:1b.0: no codecs found!
[   81.046135] ipmi_si IPI0001:00: IPMI kcs interface initialized
[   81.066464] ipmi_ssif: IPMI SSIF Interface driver
[   81.074330] ast 0000:0a:00.0: [drm] fb0: astdrmfb frame buffer device
[   81.110513] Adding 31307772k swap on /dev/sdc5.  Priority:-2 extents:1 across:31307772k SS
[   81.311866] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[   81.311887] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[   81.311896] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[   81.311901] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[   81.311907] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[   81.311913] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[   81.311915] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[   81.311919] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[   81.311925] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[   81.311927] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[   81.311932] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[   81.311937] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[   81.311940] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[   81.311945] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[   81.311950] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[   81.311952] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[   81.311957] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[   81.311962] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[   81.311965] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[   81.311970] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[   81.311975] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[   81.311977] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[   81.311982] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[   81.311987] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[   81.311990] EDAC sbridge: Seeking for: PCI ID 8086:0e68
[   81.311995] EDAC sbridge: Seeking for: PCI ID 8086:0e68
[   81.312001] EDAC sbridge: Seeking for: PCI ID 8086:0e68
[   81.312002] EDAC sbridge: Seeking for: PCI ID 8086:0e79
[   81.312008] EDAC sbridge: Seeking for: PCI ID 8086:0e79
[   81.312014] EDAC sbridge: Seeking for: PCI ID 8086:0e79
[   81.312015] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[   81.312021] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[   81.312026] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[   81.312028] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[   81.312033] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[   81.312039] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[   81.312040] EDAC sbridge: Seeking for: PCI ID 8086:0e6c
[   81.312046] EDAC sbridge: Seeking for: PCI ID 8086:0e6c
[   81.312052] EDAC sbridge: Seeking for: PCI ID 8086:0e6c
[   81.312053] EDAC sbridge: Seeking for: PCI ID 8086:0e6d
[   81.312059] EDAC sbridge: Seeking for: PCI ID 8086:0e6d
[   81.312064] EDAC sbridge: Seeking for: PCI ID 8086:0e6d
[   81.312066] EDAC sbridge: Seeking for: PCI ID 8086:0eb8
[   81.312074] EDAC sbridge: Seeking for: PCI ID 8086:0ebc
[   81.312082] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[   81.312087] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[   81.312092] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[   81.312094] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[   81.312099] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[   81.312104] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[   81.312106] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[   81.312112] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[   81.312117] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[   81.312228] EDAC MC0: Giving out device to module sb_edac controller Ivy Bridge SrcID#0_Ha#0: DEV 0000:7f:0e.0 (INTERRUPT)
[   81.312316] EDAC MC1: Giving out device to module sb_edac controller Ivy Bridge SrcID#1_Ha#0: DEV 0000:ff:0e.0 (INTERRUPT)
[   81.312392] EDAC MC2: Giving out device to module sb_edac controller Ivy Bridge SrcID#0_Ha#1: DEV 0000:7f:1c.0 (INTERRUPT)
[   81.312472] EDAC MC3: Giving out device to module sb_edac controller Ivy Bridge SrcID#1_Ha#1: DEV 0000:ff:1c.0 (INTERRUPT)
[   81.312474] EDAC sbridge:  Ver: 1.1.2 
[   81.343815] intel_rapl_common: Found RAPL domain package
[   81.343818] intel_rapl_common: Found RAPL domain core
[   81.343822] intel_rapl_common: Found RAPL domain dram
[   81.343838] intel_rapl_common: package-0:core:long_term locked by BIOS
[   81.343841] intel_rapl_common: package-0:dram:long_term locked by BIOS
[   81.384314] intel_rapl_common: Found RAPL domain package
[   81.384318] intel_rapl_common: Found RAPL domain core
[   81.384322] intel_rapl_common: Found RAPL domain dram
[   81.384335] intel_rapl_common: package-1:core:long_term locked by BIOS
[   81.384338] intel_rapl_common: package-1:dram:long_term locked by BIOS
[   81.396273] EXT4-fs (sdf1): mounted filesystem fcf5433d-28bd-4d22-b3ba-dd7262ae33a9 r/w with ordered data mode. Quota mode: none.
[   81.524165] audit: type=1400 audit(1761071582.611:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-stop" pid=1459 comm="apparmor_parser"
[   81.524204] audit: type=1400 audit(1761071582.611:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="balena-etcher" pid=1421 comm="apparmor_parser"
[   81.524275] audit: type=1400 audit(1761071582.612:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="flatpak" pid=1437 comm="apparmor_parser"
[   81.524325] audit: type=1400 audit(1761071582.612:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lc-compliance" pid=1448 comm="apparmor_parser"
[   81.524495] audit: type=1400 audit(1761071582.612:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nautilus" pid=1465 comm="apparmor_parser"
[   81.524501] audit: type=1400 audit(1761071582.612:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="goldendict" pid=1443 comm="apparmor_parser"
[   81.524504] audit: type=1400 audit(1761071582.612:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="github-desktop" pid=1442 comm="apparmor_parser"
[   81.524548] audit: type=1400 audit(1761071582.612:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="1password" pid=1416 comm="apparmor_parser"
[   81.524617] audit: type=1400 audit(1761071582.612:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-destroy" pid=1457 comm="apparmor_parser"
[   81.524670] audit: type=1400 audit(1761071582.612:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-unshare" pid=1460 comm="apparmor_parser"
[   81.667748] softdog: initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=0)
[   81.667754] softdog:              soft_reboot_cmd=<not set> soft_active_on_boot=0
[   82.470900] RPC: Registered named UNIX socket transport module.
[   82.470907] RPC: Registered udp transport module.
[   82.470908] RPC: Registered tcp transport module.
[   82.470909] RPC: Registered tcp-with-tls transport module.
[   82.470910] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   82.888803] vmbr0: port 1(enp7s0f0) entered blocking state
[   82.888811] vmbr0: port 1(enp7s0f0) entered disabled state
[   82.888838] igb 0000:07:00.0 enp7s0f0: entered allmulticast mode
[   82.888897] igb 0000:07:00.0 enp7s0f0: entered promiscuous mode
[   83.529972] Loading iSCSI transport class v2.0-870.
[   86.708711] igb 0000:07:00.0 enp7s0f0: igb: enp7s0f0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
[   86.708870] vmbr0: port 1(enp7s0f0) entered blocking state
[   86.708877] vmbr0: port 1(enp7s0f0) entered forwarding state
[   96.382620] kvm_intel: L1TF CPU bug present and SMT on, data leak possible. See CVE-2018-3646 and https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/l1tf.html for details.
[   96.675161] netfs: FS-Cache loaded
[   97.101415] NFS: Registering the id_resolver key type
[   97.101433] Key type id_resolver registered
[   97.101434] Key type id_legacy registered

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

git bisect start
# Status: warte auf guten und schlechten Commit
# good: [3a8660878839faadb4f1a6dd72c3179c1df56787] Linux 6.18-rc1
git bisect good 3a8660878839faadb4f1a6dd72c3179c1df56787
# Status: warte auf schlechten Commit, 1 guter Commit bekannt
# bad: [211ddde0823f1442e4ad052a2f30f050145ccada] Linux 6.18-rc2
git bisect bad 211ddde0823f1442e4ad052a2f30f050145ccada
# bad: [1422424187a548c24825645410fb7f691c2df47f] Merge tag 'sound-6.18-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound
git bisect bad 1422424187a548c24825645410fb7f691c2df47f
# good: [05de41f3e26237bc34822268f958be1820bf968b] Merge tag 'v6.18-rc1-smb-server-fixes' of git://git.samba.org/ksmbd
git bisect good 05de41f3e26237bc34822268f958be1820bf968b
# bad: [62cab426d0e340cd38893227c279705cc9e8416a] Merge tag 'drm-xe-fixes-2025-10-16' of https://gitlab.freedesktop.org/drm/xe/kernel into drm-fixes
git bisect bad 62cab426d0e340cd38893227c279705cc9e8416a
# good: [520133b0ba97fbc4b2b92daa66fed9b279550021] Merge tag 'amd-drm-fixes-6.18-2025-10-16' of https://gitlab.freedesktop.org/agd5f/linux into drm-fixes
git bisect good 520133b0ba97fbc4b2b92daa66fed9b279550021
# bad: [d6dd930a6b3d177cda9aa8dfdcc6b2c7dda4d78a] Merge tag 'drm-misc-fixes-2025-10-16' of https://gitlab.freedesktop.org/drm/misc/kernel into drm-fixes
git bisect bad d6dd930a6b3d177cda9aa8dfdcc6b2c7dda4d78a
# good: [fd6e385528d8f85993b7bfc6430576136bb14c65] accel/qaic: Fix bootlog initialization ordering
git bisect good fd6e385528d8f85993b7bfc6430576136bb14c65
# bad: [6f719373b943a955fee6fc2012aed207b65e2854] drm/ast: Blank with VGACR17 sync enable, always clear VGACRB6 sync off
git bisect bad 6f719373b943a955fee6fc2012aed207b65e2854
# good: [52e59f7740ba23bbb664914967df9a00208ca10c] accel/qaic: Synchronize access to DBC request queue head & tail pointer
git bisect good 52e59f7740ba23bbb664914967df9a00208ca10c
# first bad commit: [6f719373b943a955fee6fc2012aed207b65e2854] drm/ast: Blank with VGACR17 sync enable, always clear VGACRB6 sync off



commit 6f719373b943a955fee6fc2012aed207b65e2854
Author: Thomas Zimmermann <tzimmermann@suse.de>
Date:   Tue Oct 14 10:46:34 2025 +0200

    drm/ast: Blank with VGACR17 sync enable, always clear VGACRB6 sync off

    Blank the display by disabling sync pulses with VGACR17<7>. Unblank
    by reenabling them. This VGA setting should be supported by all Aspeed
    hardware.

    Ast currently blanks via sync-off bits in VGACRB6. Not all BMCs handle
    VGACRB6 correctly. After disabling sync during a reboot, some BMCs do
    not reenable it after the soft reset. The display output remains dark.
    When the display is off during boot, some BMCs set the sync-off bits in
    VGACRB6, so the display remains dark. Observed with  Blackbird AST2500
    BMCs. Clearing the sync-off bits unconditionally fixes these issues.

    Also do not modify VGASR1's SD bit for blanking, as it only disables GPU
    access to video memory.

    v2:
    - init vgacrb6 correctly (Jocelyn)

    Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
    Fixes: ce3d99c83495 ("drm: Call drm_atomic_helper_shutdown() at shutdown time for misc drivers")
    Tested-by: Nick Bowler <nbowler@draconx.ca>
    Reported-by: Nick Bowler <nbowler@draconx.ca>
    Closes: https://lore.kernel.org/dri-devel/wpwd7rit6t4mnu6kdqbtsnk5bhftgslio6e2jgkz6kgw6cuvvr@xbfswsczfqsi/
    Cc: Douglas Anderson <dianders@chromium.org>
    Cc: Dave Airlie <airlied@redhat.com>
    Cc: Thomas Zimmermann <tzimmermann@suse.de>
    Cc: Jocelyn Falempe <jfalempe@redhat.com>
    Cc: dri-devel@lists.freedesktop.org
    Cc: <stable@vger.kernel.org> # v6.7+
    Reviewed-by: Jocelyn Falempe <jfalempe@redhat.com>
    Link: https://lore.kernel.org/r/20251014084743.18242-1-tzimmermann@suse.de


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

* Re: [REGRESSION][BISECTED] Screen goes blank with ASpeed AST2300 in 6.18-rc2
  2025-10-22  3:27 ` [REGRESSION][BISECTED] Screen goes blank with ASpeed AST2300 in 6.18-rc2 (was: Re: [PATCH v2] drm/ast: Blank with VGACR17 sync enable, always clear VGACRB6 sync off) Peter Schneider
@ 2025-10-22  6:51   ` Thomas Zimmermann
  2025-10-22  8:08     ` Peter Schneider
  0 siblings, 1 reply; 14+ messages in thread
From: Thomas Zimmermann @ 2025-10-22  6:51 UTC (permalink / raw)
  To: Peter Schneider, regressions, LKML
  Cc: dri-devel, stable, jfalempe, airlied, dianders, nbowler,
	Linus Torvalds, Greg Kroah-Hartman

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

Hi

Am 22.10.25 um 05:27 schrieb Peter Schneider:
> #regzbot introduced: 6f719373b943a955fee6fc2012aed207b65e2854
>
> Hi all,
>
> I have encountered a serious (for me) regression with 6.18-rc2 on my 
> 2-socket Ivy Bridge Xeon E5-2697 v2 server. After booting, my console 
> screen goes blank and stays blank. 6.18-rc1 was still fine.
>
> The machine has an Asus Z9PE-D16 server mainboard with an onboard 
> ASpeed AST2300 VGA chip with 16MB VRAM. I have attached an older HP 
> Monitor to it via old VGA jack/cable. It also has a second graphics 
> card in a PCI-E slot; an older NVidia GTX 560. It is not connected to 
> a monitor, but I have configured it via kernel command line for 
> PCI-pass-through to VMs running on this server (I use Proxmox VE, i.e. 
> QEMU/KVM virtual machines). Currently, no VMs use this yet, and also 
> no VMs are autostarting with machine boot. So when this regression 
> occurs, the server is idle. Pressing a key on the keyboard does not 
> make the screen come alive. The server is running fine though, and I 
> can access it via SSH. It just has no graphic output anymore. In case 
> this is important, the machine also has a ASMB6 BMC (can be used via 
> http).
>
> I have attached dmesg output from both 6.18-rc1 which is fine, and 
> 6.18-rc2 which exhibits this bug. I have bisected the issue, please 
> see attached git bisect.log.

Thanks for the detailed bug report.

Attached is a patch that partially reverts the broken commit. Could you 
please apply it on top of the broken kernel and report on the results?

Best regards
Thomas

>
> The bad commit is
>
> commit 6f719373b943a955fee6fc2012aed207b65e2854
> Author: Thomas Zimmermann <tzimmermann@suse.de>
> Date:   Tue Oct 14 10:46:34 2025 +0200
>
>     drm/ast: Blank with VGACR17 sync enable, always clear VGACRB6 sync 
> off
>
>     Blank the display by disabling sync pulses with VGACR17<7>. Unblank
>     by reenabling them. This VGA setting should be supported by all 
> Aspeed
>     hardware.
>
> When I revert this from 6.18-rc2, the issue goes away and my console 
> screen works again.
>
> I just saw that Greg just yesterday evening included the offending 
> patch already in stable RCs 6.12.55-rc1 and 6.17.5-rc1, so I'll test 
> these seperately and send a mail to the stable mailing list, too, if 
> affected (which I anticipate).
>
> Beste Grüße,
> Peter Schneider
>

-- 
--
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Frankenstrasse 146, 90461 Nuernberg, Germany
GF: Ivo Totev, Andrew Myers, Andrew McDonald, Boudien Moerman
HRB 36809 (AG Nuernberg)


[-- Attachment #2: 0001-ast-Set-clear-screen-disable-bit.patch --]
[-- Type: text/x-patch, Size: 1714 bytes --]

From 5fdea2e9936a49905902e339e627a27b0ab0a884 Mon Sep 17 00:00:00 2001
From: Thomas Zimmermann <tzimmermann@suse.de>
Date: Wed, 22 Oct 2025 08:48:49 +0200
Subject: [PATCH] ast: Set/clear screen-disable bit

---
 drivers/gpu/drm/ast/ast_mode.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/drivers/gpu/drm/ast/ast_mode.c b/drivers/gpu/drm/ast/ast_mode.c
index 9ce874dba69c..b73437083dbf 100644
--- a/drivers/gpu/drm/ast/ast_mode.c
+++ b/drivers/gpu/drm/ast/ast_mode.c
@@ -820,6 +820,7 @@ ast_crtc_helper_atomic_flush(struct drm_crtc *crtc,
 static void ast_crtc_helper_atomic_enable(struct drm_crtc *crtc, struct drm_atomic_state *state)
 {
 	struct ast_device *ast = to_ast_device(crtc->dev);
+	u8 vgasr1 = 0xff;
 	u8 vgacr17 = 0x00;
 	u8 vgacrb6 = 0xff;
 
@@ -828,6 +829,9 @@ static void ast_crtc_helper_atomic_enable(struct drm_crtc *crtc, struct drm_atom
 
 	ast_set_index_reg_mask(ast, AST_IO_VGACRI, 0x17, 0x7f, vgacr17);
 	ast_set_index_reg_mask(ast, AST_IO_VGACRI, 0xb6, 0xfc, vgacrb6);
+
+	vgasr1 &= ~AST_IO_VGASR1_SD;
+	ast_set_index_reg_mask(ast, AST_IO_VGASRI, 0x01, 0xdf, vgasr1);
 }
 
 static void ast_crtc_helper_atomic_disable(struct drm_crtc *crtc, struct drm_atomic_state *state)
@@ -835,6 +839,10 @@ static void ast_crtc_helper_atomic_disable(struct drm_crtc *crtc, struct drm_ato
 	struct drm_crtc_state *old_crtc_state = drm_atomic_get_old_crtc_state(state, crtc);
 	struct ast_device *ast = to_ast_device(crtc->dev);
 	u8 vgacr17 = 0xff;
+	u8 vgasr1 = 0x00;
+
+	vgasr1 |= AST_IO_VGASR1_SD;
+	ast_set_index_reg_mask(ast, AST_IO_VGASRI, 0x01, 0xdf, vgasr1);
 
 	vgacr17 &= ~AST_IO_VGACR17_SYNC_ENABLE;
 	ast_set_index_reg_mask(ast, AST_IO_VGACRI, 0x17, 0x7f, vgacr17);
-- 
2.51.0


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

* Re: [REGRESSION][BISECTED] Screen goes blank with ASpeed AST2300 in 6.18-rc2
  2025-10-22  6:51   ` [REGRESSION][BISECTED] Screen goes blank with ASpeed AST2300 in 6.18-rc2 Thomas Zimmermann
@ 2025-10-22  8:08     ` Peter Schneider
  2025-10-22  9:11       ` Thomas Zimmermann
  0 siblings, 1 reply; 14+ messages in thread
From: Peter Schneider @ 2025-10-22  8:08 UTC (permalink / raw)
  To: Thomas Zimmermann, regressions, LKML
  Cc: dri-devel, stable, jfalempe, airlied, dianders, nbowler,
	Linus Torvalds, Greg Kroah-Hartman, Thorsten Leemhuis

Hi Thomas,

thanks very much for your quick response!

(adding Thorsten to CC)


Am 22.10.2025 um 08:51 schrieb Thomas Zimmermann:
> Hi
> 
> Am 22.10.25 um 05:27 schrieb Peter Schneider:
>> #regzbot introduced: 6f719373b943a955fee6fc2012aed207b65e2854
>>
>> Hi all,
>>
>> I have encountered a serious (for me) regression with 6.18-rc2 on my 2-socket Ivy Bridge Xeon E5-2697 v2 server. After 
>> booting, my console screen goes blank and stays blank. 6.18-rc1 was still fine.
>>
>> The machine has an Asus Z9PE-D16 server mainboard with an onboard ASpeed AST2300 VGA chip with 16MB VRAM. I have 
>> attached an older HP Monitor to it via old VGA jack/cable. It also has a second graphics card in a PCI-E slot; an 
>> older NVidia GTX 560. It is not connected to a monitor, but I have configured it via kernel command line for PCI-pass- 
>> through to VMs running on this server (I use Proxmox VE, i.e. QEMU/KVM virtual machines). Currently, no VMs use this 
>> yet, and also no VMs are autostarting with machine boot. So when this regression occurs, the server is idle. Pressing 
>> a key on the keyboard does not make the screen come alive. The server is running fine though, and I can access it via 
>> SSH. It just has no graphic output anymore. In case this is important, the machine also has a ASMB6 BMC (can be used 
>> via http).
>>
>> I have attached dmesg output from both 6.18-rc1 which is fine, and 6.18-rc2 which exhibits this bug. I have bisected 
>> the issue, please see attached git bisect.log.
> 
> Thanks for the detailed bug report.
> 
> Attached is a patch that partially reverts the broken commit. Could you please apply it on top of the broken kernel and 
> report on the results?
> 
> Best regards
> Thomas


Your patch applied cleanly against 6.18-rc2 and the kernel built fine, but unfortunately it did not solve the issue: my 
console screen stays blank after booting. This is regardless whether I do a soft reboot, press the reset button or power 
cycle and do a cold boot. They are all the same.


Beste Grüße,
Peter Schneider

-- 
Climb the mountain not to plant your flag, but to embrace the challenge,
enjoy the air and behold the view. Climb it so you can see the world,
not so the world can see you.                    -- David McCullough Jr.

OpenPGP:  0xA3828BD796CCE11A8CADE8866E3A92C92C3FF244
Download: https://www.peters-netzplatz.de/download/pschneider1968_pub.asc
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@googlemail.com
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@gmail.com

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

* Re: [REGRESSION][BISECTED] Screen goes blank with ASpeed AST2300 in 6.18-rc2
  2025-10-22  8:08     ` Peter Schneider
@ 2025-10-22  9:11       ` Thomas Zimmermann
  2025-10-22  9:16         ` Peter Schneider
  0 siblings, 1 reply; 14+ messages in thread
From: Thomas Zimmermann @ 2025-10-22  9:11 UTC (permalink / raw)
  To: Peter Schneider, regressions, LKML
  Cc: dri-devel, stable, jfalempe, airlied, dianders, nbowler,
	Linus Torvalds, Greg Kroah-Hartman, Thorsten Leemhuis

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

Hi

Am 22.10.25 um 10:08 schrieb Peter Schneider:
> Hi Thomas,
>
> thanks very much for your quick response!
>
> (adding Thorsten to CC)
>
>
> Am 22.10.2025 um 08:51 schrieb Thomas Zimmermann:
>> Hi
>>
>> Am 22.10.25 um 05:27 schrieb Peter Schneider:
>>> #regzbot introduced: 6f719373b943a955fee6fc2012aed207b65e2854
>>>
>>> Hi all,
>>>
>>> I have encountered a serious (for me) regression with 6.18-rc2 on my 
>>> 2-socket Ivy Bridge Xeon E5-2697 v2 server. After booting, my 
>>> console screen goes blank and stays blank. 6.18-rc1 was still fine.
>>>
>>> The machine has an Asus Z9PE-D16 server mainboard with an onboard 
>>> ASpeed AST2300 VGA chip with 16MB VRAM. I have attached an older HP 
>>> Monitor to it via old VGA jack/cable. It also has a second graphics 
>>> card in a PCI-E slot; an older NVidia GTX 560. It is not connected 
>>> to a monitor, but I have configured it via kernel command line for 
>>> PCI-pass- through to VMs running on this server (I use Proxmox VE, 
>>> i.e. QEMU/KVM virtual machines). Currently, no VMs use this yet, and 
>>> also no VMs are autostarting with machine boot. So when this 
>>> regression occurs, the server is idle. Pressing a key on the 
>>> keyboard does not make the screen come alive. The server is running 
>>> fine though, and I can access it via SSH. It just has no graphic 
>>> output anymore. In case this is important, the machine also has a 
>>> ASMB6 BMC (can be used via http).
>>>
>>> I have attached dmesg output from both 6.18-rc1 which is fine, and 
>>> 6.18-rc2 which exhibits this bug. I have bisected the issue, please 
>>> see attached git bisect.log.
>>
>> Thanks for the detailed bug report.
>>
>> Attached is a patch that partially reverts the broken commit. Could 
>> you please apply it on top of the broken kernel and report on the 
>> results?
>>
>> Best regards
>> Thomas
>
>
> Your patch applied cleanly against 6.18-rc2 and the kernel built fine, 
> but unfortunately it did not solve the issue: my console screen stays 
> blank after booting. This is regardless whether I do a soft reboot, 
> press the reset button or power cycle and do a cold boot. They are all 
> the same.

Just to be sure: you do see output at the early boot stages (BIOS, boot 
loader). It's at some later point during boot, the driver loads and the 
display blanks out?

There's another patch attached. does this make a difference?

Best regards
Thomas

>
>
> Beste Grüße,
> Peter Schneider
>

-- 
--
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Frankenstrasse 146, 90461 Nuernberg, Germany
GF: Ivo Totev, Andrew Myers, Andrew McDonald, Boudien Moerman
HRB 36809 (AG Nuernberg)


[-- Attachment #2: 0001-v2-ast-Set-clear-screen-disable-bit.patch --]
[-- Type: text/x-patch, Size: 1926 bytes --]

From 0800e8aeaf0c1fd6c49a9fe214f39c655345bb31 Mon Sep 17 00:00:00 2001
From: Thomas Zimmermann <tzimmermann@suse.de>
Date: Wed, 22 Oct 2025 08:48:49 +0200
Subject: [PATCH] [v2] ast: Set/clear screen-disable bit

---
 drivers/gpu/drm/ast/ast_mode.c | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/ast/ast_mode.c b/drivers/gpu/drm/ast/ast_mode.c
index 9ce874dba69c..05cbf2fc6560 100644
--- a/drivers/gpu/drm/ast/ast_mode.c
+++ b/drivers/gpu/drm/ast/ast_mode.c
@@ -820,6 +820,7 @@ ast_crtc_helper_atomic_flush(struct drm_crtc *crtc,
 static void ast_crtc_helper_atomic_enable(struct drm_crtc *crtc, struct drm_atomic_state *state)
 {
 	struct ast_device *ast = to_ast_device(crtc->dev);
+	u8 vgasr1 = 0xff;
 	u8 vgacr17 = 0x00;
 	u8 vgacrb6 = 0xff;
 
@@ -828,6 +829,9 @@ static void ast_crtc_helper_atomic_enable(struct drm_crtc *crtc, struct drm_atom
 
 	ast_set_index_reg_mask(ast, AST_IO_VGACRI, 0x17, 0x7f, vgacr17);
 	ast_set_index_reg_mask(ast, AST_IO_VGACRI, 0xb6, 0xfc, vgacrb6);
+
+	vgasr1 &= ~AST_IO_VGASR1_SD;
+	ast_set_index_reg_mask(ast, AST_IO_VGASRI, 0x01, 0xdf, vgasr1);
 }
 
 static void ast_crtc_helper_atomic_disable(struct drm_crtc *crtc, struct drm_atomic_state *state)
@@ -835,9 +839,13 @@ static void ast_crtc_helper_atomic_disable(struct drm_crtc *crtc, struct drm_ato
 	struct drm_crtc_state *old_crtc_state = drm_atomic_get_old_crtc_state(state, crtc);
 	struct ast_device *ast = to_ast_device(crtc->dev);
 	u8 vgacr17 = 0xff;
+	u8 vgasr1 = 0x00;
 
-	vgacr17 &= ~AST_IO_VGACR17_SYNC_ENABLE;
-	ast_set_index_reg_mask(ast, AST_IO_VGACRI, 0x17, 0x7f, vgacr17);
+	vgasr1 |= AST_IO_VGASR1_SD;
+	ast_set_index_reg_mask(ast, AST_IO_VGASRI, 0x01, 0xdf, vgasr1);
+
+	//vgacr17 &= ~AST_IO_VGACR17_SYNC_ENABLE;
+	//ast_set_index_reg_mask(ast, AST_IO_VGACRI, 0x17, 0x7f, vgacr17);
 
 	/*
 	 * HW cursors require the underlying primary plane and CRTC to
-- 
2.51.0


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

* Re: [REGRESSION][BISECTED] Screen goes blank with ASpeed AST2300 in 6.18-rc2
  2025-10-22  9:11       ` Thomas Zimmermann
@ 2025-10-22  9:16         ` Peter Schneider
  2025-10-22 10:20           ` Thomas Zimmermann
  0 siblings, 1 reply; 14+ messages in thread
From: Peter Schneider @ 2025-10-22  9:16 UTC (permalink / raw)
  To: Thomas Zimmermann, regressions, LKML
  Cc: dri-devel, stable, jfalempe, airlied, dianders, nbowler,
	Linus Torvalds, Greg Kroah-Hartman, Thorsten Leemhuis

Am 22.10.2025 um 11:11 schrieb Thomas Zimmermann:
> Hi
> 
> Am 22.10.25 um 10:08 schrieb Peter Schneider:
>>
>> Your patch applied cleanly against 6.18-rc2 and the kernel built fine, but unfortunately it did not solve the issue: 
>> my console screen stays blank after booting. This is regardless whether I do a soft reboot, press the reset button or 
>> power cycle and do a cold boot. They are all the same.
> 
> Just to be sure: you do see output at the early boot stages (BIOS, boot loader). It's at some later point during boot, 
> the driver loads and the display blanks out?

Yes, that's correct.

> There's another patch attached. does this make a difference?

Do I have to apply that against base 6.18-rc2 or against 6.18-rc2 + your previous patch?


Beste Grüße,
Peter Schneider

-- 
Climb the mountain not to plant your flag, but to embrace the challenge,
enjoy the air and behold the view. Climb it so you can see the world,
not so the world can see you.                    -- David McCullough Jr.

OpenPGP:  0xA3828BD796CCE11A8CADE8866E3A92C92C3FF244
Download: https://www.peters-netzplatz.de/download/pschneider1968_pub.asc
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@googlemail.com
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@gmail.com

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

* Re: [REGRESSION][BISECTED] Screen goes blank with ASpeed AST2300 in 6.18-rc2
  2025-10-22  9:16         ` Peter Schneider
@ 2025-10-22 10:20           ` Thomas Zimmermann
  2025-10-22 11:23             ` Peter Schneider
  0 siblings, 1 reply; 14+ messages in thread
From: Thomas Zimmermann @ 2025-10-22 10:20 UTC (permalink / raw)
  To: Peter Schneider, regressions, LKML
  Cc: dri-devel, stable, jfalempe, airlied, dianders, nbowler,
	Linus Torvalds, Greg Kroah-Hartman, Thorsten Leemhuis

Hi

Am 22.10.25 um 11:16 schrieb Peter Schneider:
> Am 22.10.2025 um 11:11 schrieb Thomas Zimmermann:
>> Hi
>>
>> Am 22.10.25 um 10:08 schrieb Peter Schneider:
>>>
>>> Your patch applied cleanly against 6.18-rc2 and the kernel built 
>>> fine, but unfortunately it did not solve the issue: my console 
>>> screen stays blank after booting. This is regardless whether I do a 
>>> soft reboot, press the reset button or power cycle and do a cold 
>>> boot. They are all the same.
>>
>> Just to be sure: you do see output at the early boot stages (BIOS, 
>> boot loader). It's at some later point during boot, the driver loads 
>> and the display blanks out?
>
> Yes, that's correct.
>
>> There's another patch attached. does this make a difference?
>
> Do I have to apply that against base 6.18-rc2 or against 6.18-rc2 + 
> your previous patch?

Base 6.18-rc2. All the patches are against this.

Best regards
Thomas

>
>
> Beste Grüße,
> Peter Schneider
>

-- 
--
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Frankenstrasse 146, 90461 Nuernberg, Germany
GF: Ivo Totev, Andrew Myers, Andrew McDonald, Boudien Moerman
HRB 36809 (AG Nuernberg)



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

* Re: [REGRESSION][BISECTED] Screen goes blank with ASpeed AST2300 in 6.18-rc2
  2025-10-22 10:20           ` Thomas Zimmermann
@ 2025-10-22 11:23             ` Peter Schneider
  2025-10-23 12:46               ` Thomas Zimmermann
  0 siblings, 1 reply; 14+ messages in thread
From: Peter Schneider @ 2025-10-22 11:23 UTC (permalink / raw)
  To: Thomas Zimmermann, regressions, LKML
  Cc: dri-devel, stable, jfalempe, airlied, dianders, nbowler,
	Linus Torvalds, Greg Kroah-Hartman, Thorsten Leemhuis

Am 22.10.2025 um 12:20 schrieb Thomas Zimmermann:
> Hi
> 
> Am 22.10.25 um 11:16 schrieb Peter Schneider:
>> Am 22.10.2025 um 11:11 schrieb Thomas Zimmermann:
>>> Hi
>>>
>>> Am 22.10.25 um 10:08 schrieb Peter Schneider:
>>>>
>>>> Your patch applied cleanly against 6.18-rc2 and the kernel built fine, but unfortunately it did not solve the issue: 
>>>> my console screen stays blank after booting. This is regardless whether I do a soft reboot, press the reset button 
>>>> or power cycle and do a cold boot. They are all the same.
>>>
>>> Just to be sure: you do see output at the early boot stages (BIOS, boot loader). It's at some later point during 
>>> boot, the driver loads and the display blanks out?
>>
>> Yes, that's correct.
>>
>>> There's another patch attached. does this make a difference?
>>
>> Do I have to apply that against base 6.18-rc2 or against 6.18-rc2 + your previous patch?
> 
> Base 6.18-rc2. All the patches are against this.

So with this new patch against 6.18-rc2, I first got this build error:

   CC [M]  drivers/gpu/drm/ast/ast_mode.o
drivers/gpu/drm/ast/ast_mode.c: In function ‘ast_crtc_helper_atomic_disable’:
drivers/gpu/drm/ast/ast_mode.c:857:12: error: unused variable ‘vgacr17’ [-Werror=unused-variable]
   857 |         u8 vgacr17 = 0xff;
       |            ^~~~~~~
cc1: all warnings being treated as errors


because I always do my kernel builds with CONFIG_WERROR=y. So then I commented out the now superfluous declaration in 
line 857 and the build succeeded. However, unfortunately the issue still persists. The screen still gets blanked on 
reboot (as clarified before, after BIOS/POST messages, Grub boot menu, initial boot messages).

Beste Grüße,
Peter Schneider

-- 
Climb the mountain not to plant your flag, but to embrace the challenge,
enjoy the air and behold the view. Climb it so you can see the world,
not so the world can see you.                    -- David McCullough Jr.

OpenPGP:  0xA3828BD796CCE11A8CADE8866E3A92C92C3FF244
Download: https://www.peters-netzplatz.de/download/pschneider1968_pub.asc
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@googlemail.com
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@gmail.com

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

* Re: [REGRESSION][BISECTED] Screen goes blank with ASpeed AST2300 in 6.18-rc2
  2025-10-22 11:23             ` Peter Schneider
@ 2025-10-23 12:46               ` Thomas Zimmermann
  2025-10-23 12:50                 ` Thomas Zimmermann
  2025-10-23 19:11                 ` Peter Schneider
  0 siblings, 2 replies; 14+ messages in thread
From: Thomas Zimmermann @ 2025-10-23 12:46 UTC (permalink / raw)
  To: Peter Schneider, regressions, LKML
  Cc: dri-devel, stable, jfalempe, airlied, dianders, nbowler,
	Linus Torvalds, Greg Kroah-Hartman, Thorsten Leemhuis

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

Hi

Am 22.10.25 um 13:23 schrieb Peter Schneider:
> Am 22.10.2025 um 12:20 schrieb Thomas Zimmermann:
>> Hi
>>
>> Am 22.10.25 um 11:16 schrieb Peter Schneider:
>>> Am 22.10.2025 um 11:11 schrieb Thomas Zimmermann:
>>>> Hi
>>>>
>>>> Am 22.10.25 um 10:08 schrieb Peter Schneider:
>>>>>
>>>>> Your patch applied cleanly against 6.18-rc2 and the kernel built 
>>>>> fine, but unfortunately it did not solve the issue: my console 
>>>>> screen stays blank after booting. This is regardless whether I do 
>>>>> a soft reboot, press the reset button or power cycle and do a cold 
>>>>> boot. They are all the same.
>>>>
>>>> Just to be sure: you do see output at the early boot stages (BIOS, 
>>>> boot loader). It's at some later point during boot, the driver 
>>>> loads and the display blanks out?
>>>
>>> Yes, that's correct.
>>>
>>>> There's another patch attached. does this make a difference?
>>>
>>> Do I have to apply that against base 6.18-rc2 or against 6.18-rc2 + 
>>> your previous patch?
>>
>> Base 6.18-rc2. All the patches are against this.
>
> So with this new patch against 6.18-rc2, I first got this build error:
>
>   CC [M]  drivers/gpu/drm/ast/ast_mode.o
> drivers/gpu/drm/ast/ast_mode.c: In function 
> ‘ast_crtc_helper_atomic_disable’:
> drivers/gpu/drm/ast/ast_mode.c:857:12: error: unused variable 
> ‘vgacr17’ [-Werror=unused-variable]
>   857 |         u8 vgacr17 = 0xff;
>       |            ^~~~~~~
> cc1: all warnings being treated as errors
>
>
> because I always do my kernel builds with CONFIG_WERROR=y. So then I 
> commented out the now superfluous declaration in line 857 and the 
> build succeeded. However, unfortunately the issue still persists. The 
> screen still gets blanked on reboot (as clarified before, after 
> BIOS/POST messages, Grub boot menu, initial boot messages).

I've been able to reproduce the problem with an AST2300 test system. The 
attached patch fixes the problem for me. Can you please test and report 
on the results?

Best regards
Thomas


>
> Beste Grüße,
> Peter Schneider
>

-- 
--
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Frankenstrasse 146, 90461 Nuernberg, Germany
GF: Ivo Totev, Andrew Myers, Andrew McDonald, Boudien Moerman
HRB 36809 (AG Nuernberg)


[-- Attachment #2: 0001-ast-clear-preserved-bits-from-output-value.patch --]
[-- Type: text/x-patch, Size: 1198 bytes --]

From b9a90d9ef266d5f9d3aeb970ae35e10b716fc466 Mon Sep 17 00:00:00 2001
From: Thomas Zimmermann <tzimmermann@suse.de>
Date: Thu, 23 Oct 2025 14:30:29 +0200
Subject: [PATCH] ast: clear preserved bits from output value

---
 drivers/gpu/drm/ast/ast_drv.h | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/ast/ast_drv.h b/drivers/gpu/drm/ast/ast_drv.h
index 7be36a358e74..602bff7f98d9 100644
--- a/drivers/gpu/drm/ast/ast_drv.h
+++ b/drivers/gpu/drm/ast/ast_drv.h
@@ -298,13 +298,14 @@ static inline void __ast_write8_i(void __iomem *addr, u32 reg, u8 index, u8 val)
 	__ast_write8(addr, reg + 1, val);
 }
 
-static inline void __ast_write8_i_masked(void __iomem *addr, u32 reg, u8 index, u8 read_mask,
+static inline void __ast_write8_i_masked(void __iomem *addr, u32 reg, u8 index, u8 preserve_mask,
 					 u8 val)
 {
-	u8 tmp = __ast_read8_i_masked(addr, reg, index, read_mask);
+	u8 tmp = __ast_read8_i_masked(addr, reg, index, preserve_mask);
 
-	tmp |= val;
-	__ast_write8_i(addr, reg, index, tmp);
+	val &= ~preserve_mask;
+
+	__ast_write8_i(addr, reg, index, tmp | val);
 }
 
 static inline u32 ast_read32(struct ast_device *ast, u32 reg)
-- 
2.51.0


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

* Re: [REGRESSION][BISECTED] Screen goes blank with ASpeed AST2300 in 6.18-rc2
  2025-10-23 12:46               ` Thomas Zimmermann
@ 2025-10-23 12:50                 ` Thomas Zimmermann
  2025-10-23 19:11                 ` Peter Schneider
  1 sibling, 0 replies; 14+ messages in thread
From: Thomas Zimmermann @ 2025-10-23 12:50 UTC (permalink / raw)
  To: Peter Schneider, regressions, LKML
  Cc: dri-devel, stable, jfalempe, airlied, dianders, nbowler,
	Linus Torvalds, Greg Kroah-Hartman, Thorsten Leemhuis

>
> I've been able to reproduce the problem with an AST2300 test system. 
> The attached patch fixes the problem for me. Can you please test and 
> report on the results?

On pure -rc2 without previous patches applied.


-- 
--
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Frankenstrasse 146, 90461 Nuernberg, Germany
GF: Ivo Totev, Andrew Myers, Andrew McDonald, Boudien Moerman
HRB 36809 (AG Nuernberg)



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

* Re: [REGRESSION][BISECTED] Screen goes blank with ASpeed AST2300 in 6.18-rc2
  2025-10-23 12:46               ` Thomas Zimmermann
  2025-10-23 12:50                 ` Thomas Zimmermann
@ 2025-10-23 19:11                 ` Peter Schneider
  2025-10-24  5:34                   ` Peter Schneider
  2025-10-24  6:15                   ` Thomas Zimmermann
  1 sibling, 2 replies; 14+ messages in thread
From: Peter Schneider @ 2025-10-23 19:11 UTC (permalink / raw)
  To: Thomas Zimmermann, regressions, LKML
  Cc: dri-devel, stable, jfalempe, airlied, dianders, nbowler,
	Linus Torvalds, Greg Kroah-Hartman, Thorsten Leemhuis

Hi Thomas,

Am 23.10.2025 um 14:46 schrieb Thomas Zimmermann:
[...]
> I've been able to reproduce the problem with an AST2300 test system. The attached patch fixes the problem for me. Can 
> you please test and report on the results?

Great! - this patch on top of 6.18-rc2 fixes the issue for me, too. Thanks very much for your effort!

Tested-by: Peter Schneider <pschneider1968@googlemail.com>

Beste Grüße,
Peter Schneider

-- 
Climb the mountain not to plant your flag, but to embrace the challenge,
enjoy the air and behold the view. Climb it so you can see the world,
not so the world can see you.                    -- David McCullough Jr.

OpenPGP:  0xA3828BD796CCE11A8CADE8866E3A92C92C3FF244
Download: https://www.peters-netzplatz.de/download/pschneider1968_pub.asc
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@googlemail.com
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@gmail.com

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

* Re: [REGRESSION][BISECTED] Screen goes blank with ASpeed AST2300 in 6.18-rc2
  2025-10-23 19:11                 ` Peter Schneider
@ 2025-10-24  5:34                   ` Peter Schneider
  2025-10-24  6:15                   ` Thomas Zimmermann
  1 sibling, 0 replies; 14+ messages in thread
From: Peter Schneider @ 2025-10-24  5:34 UTC (permalink / raw)
  To: Thomas Zimmermann, regressions, LKML
  Cc: dri-devel, stable, jfalempe, airlied, dianders, nbowler,
	Linus Torvalds, Greg Kroah-Hartman, Thorsten Leemhuis


[-- Attachment #1.1: Type: text/plain, Size: 1733 bytes --]

Hi Thomas,


Am 23.10.2025 um 21:11 schrieb Peter Schneider:
> Hi Thomas,
> 
> Am 23.10.2025 um 14:46 schrieb Thomas Zimmermann:
> [...]
>> I've been able to reproduce the problem with an AST2300 test system. The attached patch fixes the problem for me. Can 
>> you please test and report on the results?
> 
> Great! - this patch on top of 6.18-rc2 fixes the issue for me, too. Thanks very much for your effort!
> 
> Tested-by: Peter Schneider <pschneider1968@googlemail.com>

Meanwhile, I have also tested this against stable 6.12.55 and 6.17.5, where in -rc2, Greg dropped your original patch 
with upstream commit-id 6f719373b943a955fee6fc2012aed207b65e2854 before the final release because of my report.

So for both, I built them, made sure it worked ok. Then I did "git cherry-pick 6f719373b943a955fee6fc2012aed207b65e2854" 
and tested that it is broken again. Then I applied your last patch on top of it, and it worked fine, so with that the 
issue is fixed in both stable versions, too.

If you send a combined patch to Greg for stable, please feel free to add my

Tested-by: Peter Schneider <pschneider1968@googlemail.com>


Thanks again!

Beste Grüße,
Peter Schneider

-- 
Climb the mountain not to plant your flag, but to embrace the challenge,
enjoy the air and behold the view. Climb it so you can see the world,
not so the world can see you.                    -- David McCullough Jr.

OpenPGP:  0xA3828BD796CCE11A8CADE8866E3A92C92C3FF244
Download: https://www.peters-netzplatz.de/download/pschneider1968_pub.asc
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@googlemail.com
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@gmail.com


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 236 bytes --]

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

* Re: [REGRESSION][BISECTED] Screen goes blank with ASpeed AST2300 in 6.18-rc2
  2025-10-23 19:11                 ` Peter Schneider
  2025-10-24  5:34                   ` Peter Schneider
@ 2025-10-24  6:15                   ` Thomas Zimmermann
  1 sibling, 0 replies; 14+ messages in thread
From: Thomas Zimmermann @ 2025-10-24  6:15 UTC (permalink / raw)
  To: Peter Schneider, regressions, LKML
  Cc: dri-devel, stable, jfalempe, airlied, dianders, nbowler,
	Linus Torvalds, Greg Kroah-Hartman, Thorsten Leemhuis

Hi

Am 23.10.25 um 21:11 schrieb Peter Schneider:
> Hi Thomas,
>
> Am 23.10.2025 um 14:46 schrieb Thomas Zimmermann:
> [...]
>> I've been able to reproduce the problem with an AST2300 test system. 
>> The attached patch fixes the problem for me. Can you please test and 
>> report on the results?
>
> Great! - this patch on top of 6.18-rc2 fixes the issue for me, too. 
> Thanks very much for your effort!
>
> Tested-by: Peter Schneider <pschneider1968@googlemail.com>

Thanks a lot for reporting and testing. I'll prepare the patch and send 
it out later today.

Best regards
Thomas

>
> Beste Grüße,
> Peter Schneider
>

-- 
--
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Frankenstrasse 146, 90461 Nuernberg, Germany
GF: Ivo Totev, Andrew Myers, Andrew McDonald, Boudien Moerman
HRB 36809 (AG Nuernberg)



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

end of thread, other threads:[~2025-10-24  6:15 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-14  8:46 [PATCH v2] drm/ast: Blank with VGACR17 sync enable, always clear VGACRB6 sync off Thomas Zimmermann
2025-10-14  8:54 ` Jocelyn Falempe
2025-10-22  3:27 ` [REGRESSION][BISECTED] Screen goes blank with ASpeed AST2300 in 6.18-rc2 (was: Re: [PATCH v2] drm/ast: Blank with VGACR17 sync enable, always clear VGACRB6 sync off) Peter Schneider
2025-10-22  6:51   ` [REGRESSION][BISECTED] Screen goes blank with ASpeed AST2300 in 6.18-rc2 Thomas Zimmermann
2025-10-22  8:08     ` Peter Schneider
2025-10-22  9:11       ` Thomas Zimmermann
2025-10-22  9:16         ` Peter Schneider
2025-10-22 10:20           ` Thomas Zimmermann
2025-10-22 11:23             ` Peter Schneider
2025-10-23 12:46               ` Thomas Zimmermann
2025-10-23 12:50                 ` Thomas Zimmermann
2025-10-23 19:11                 ` Peter Schneider
2025-10-24  5:34                   ` Peter Schneider
2025-10-24  6:15                   ` Thomas Zimmermann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).