Linux USB
 help / color / mirror / Atom feed
* [PATCH RFC] thunderbolt: Add JHL9580 Barlow Ridge (TB5) ICM support — host_reset timeout blocking PCIe tunneling
@ 2026-07-03  3:49 Neo
  2026-07-03 16:48 ` Alan Borzeszkowski
  0 siblings, 1 reply; 6+ messages in thread
From: Neo @ 2026-07-03  3:49 UTC (permalink / raw)
  To: linux-usb; +Cc: andreas.noever, westeri, YehezkelShB

Hi maintainers,


JHL9580 Barlow Ridge (8086:5780 bridge, 8086:5781 NHI), Intel's first
Thunderbolt 5 / USB4 v2 host controller, has incomplete support in the
kernel through v7.2-rc1. The host router reset times out and PCIe
tunneling is non-functional, making eGPU use impossible.


=== Problem Summary ===


1. get_upstream_port() in icm.c does not recognize Barlow Ridge bridge
   (0x5780). Neither does icm_probe() handle the NHI (0x5781).


2. With these fixed, icm_firmware_reset() → pcie2cio_write() times out
   (-110) on Barlow Ridge. Neither icm_ar_cio_reset (0x50/BIT(9)) nor
   icm_tr_cio_reset (0x777/BIT(1)) work.


3. Without ICM firmware running, REG_FW_STS (0x39944) is read-only and
   writes are silently ignored. USB3 tunneling works (XHCI pass-through)
   but PCIe tunnels are never established.


4. Even with software CM (tb_acpi_is_native()=1), USB4 ports show
   "link: none" and the eGPU GPU never appears in lspci.


=== Hardware ===


  Host: MSI MS-15M3 (E15M3IMS.117 BIOS, 2026-04-17)
  CPU: Intel Arrow Lake-HX Ultra 9 275HX
  TB5: Intel JHL9580 Barlow Ridge [8086:5780]/[8086:5781] (rev 84)
  eGPU: GIGABYTE AORUS RTX5090 AI BOX (USB4)
  OS: Ubuntu 26.04, kernel 7.0.0-27 (same issue on 7.0.0-22)


=== Patch Attempted (works up to firmware start) ===


--- a/drivers/thunderbolt/icm.c
+++ b/drivers/thunderbolt/icm.c
@@ get_upstream_port():
+     case 0x5780: /* JHL9580 Barlow Ridge Host Bridge */


@@ icm_probe():
+     case 0x5781: /* JHL9580 Barlow Ridge NHI */
+           icm->max_boot_acl = ICM_AR_PREBOOT_ACL_ENTRIES;
+           icm->can_upgrade_nvm = !x86_apple_machine;
+           icm->is_supported = icm_ar_is_supported;
+           icm->cio_reset = icm_ar_cio_reset;
+           icm->get_mode = icm_ar_get_mode;
+           icm->get_route = icm_ar_get_route;
+           icm->save_devices = icm_fr_save_devices;
+           icm->driver_ready = icm_ar_driver_ready;
+           icm->device_connected = icm_fr_device_connected;
+           icm->device_disconnected = icm_fr_device_disconnected;
+           icm->xdomain_connected = icm_fr_xdomain_connected;
+           icm->xdomain_disconnected = icm_fr_xdomain_disconnected;
+           tb->cm_ops = &icm_ar_ops;
+           break;


Result: icm_probe succeeds, firmware_start begins, but
icm_firmware_reset → pcie2cio_write times out.


=== dmesg ===


  thunderbolt 0000:04:00.0: timeout resetting host router
  (REG_RESET HRR remains 0x01 indefinitely; extended to 5000ms, no change)


=== Questions ===


1. What is the correct CIO reset sequence for Barlow Ridge?
2. Is the ICM firmware interface different from Alpine/Titan Ridge?
3. Are there plans to add native Barlow Ridge support to icm.c?
4. Should Barlow Ridge use software CM exclusively (skip ICM)?


Full diagnostic logs, lspci, and ACPI DSDT excerpt available on request.
Test hardware available for any proposed patches.


Thank you,
	
Neo
liqys@vip.qq.com


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

* Re: [PATCH RFC] thunderbolt: Add JHL9580 Barlow Ridge (TB5) ICM support — host_reset timeout blocking PCIe tunneling
  2026-07-03  3:49 Neo
@ 2026-07-03 16:48 ` Alan Borzeszkowski
  0 siblings, 0 replies; 6+ messages in thread
From: Alan Borzeszkowski @ 2026-07-03 16:48 UTC (permalink / raw)
  To: Neo, linux-usb; +Cc: andreas.noever, westeri, YehezkelShB

Hi,

Please send full dmesg with 'thunderbolt.dyndbg=+p' parameter in linux
command line.

Firmware Connection Manager (ICM) is not used with Barlow Ridge, only
software CM.

On Fri, 2026-07-03 at 11:49 +0800, Neo wrote:
> Hi maintainers,
> 
> 
> JHL9580 Barlow Ridge (8086:5780 bridge, 8086:5781 NHI), Intel's first
> Thunderbolt 5 / USB4 v2 host controller, has incomplete support in
> the
> kernel through v7.2-rc1. The host router reset times out and PCIe
> tunneling is non-functional, making eGPU use impossible.
> 
> 
> === Problem Summary ===
> 
> 
> 1. get_upstream_port() in icm.c does not recognize Barlow Ridge
> bridge
>    (0x5780). Neither does icm_probe() handle the NHI (0x5781).
> 
> 
> 2. With these fixed, icm_firmware_reset() → pcie2cio_write() times
> out
>    (-110) on Barlow Ridge. Neither icm_ar_cio_reset (0x50/BIT(9)) nor
>    icm_tr_cio_reset (0x777/BIT(1)) work.
> 
> 
> 3. Without ICM firmware running, REG_FW_STS (0x39944) is read-only
> and
>    writes are silently ignored. USB3 tunneling works (XHCI pass-
> through)
>    but PCIe tunnels are never established.
> 
> 
> 4. Even with software CM (tb_acpi_is_native()=1), USB4 ports show
>    "link: none" and the eGPU GPU never appears in lspci.
> 
> 
> === Hardware ===
> 
> 
>   Host: MSI MS-15M3 (E15M3IMS.117 BIOS, 2026-04-17)
>   CPU: Intel Arrow Lake-HX Ultra 9 275HX
>   TB5: Intel JHL9580 Barlow Ridge [8086:5780]/[8086:5781] (rev 84)
>   eGPU: GIGABYTE AORUS RTX5090 AI BOX (USB4)
>   OS: Ubuntu 26.04, kernel 7.0.0-27 (same issue on 7.0.0-22)
> 
> 
> === Patch Attempted (works up to firmware start) ===
> 
> 
> --- a/drivers/thunderbolt/icm.c
> +++ b/drivers/thunderbolt/icm.c
> @@ get_upstream_port():
> +     case 0x5780: /* JHL9580 Barlow Ridge Host Bridge */
> 
> 
> @@ icm_probe():
> +     case 0x5781: /* JHL9580 Barlow Ridge NHI */
> +           icm->max_boot_acl = ICM_AR_PREBOOT_ACL_ENTRIES;
> +           icm->can_upgrade_nvm = !x86_apple_machine;
> +           icm->is_supported = icm_ar_is_supported;
> +           icm->cio_reset = icm_ar_cio_reset;
> +           icm->get_mode = icm_ar_get_mode;
> +           icm->get_route = icm_ar_get_route;
> +           icm->save_devices = icm_fr_save_devices;
> +           icm->driver_ready = icm_ar_driver_ready;
> +           icm->device_connected = icm_fr_device_connected;
> +           icm->device_disconnected = icm_fr_device_disconnected;
> +           icm->xdomain_connected = icm_fr_xdomain_connected;
> +           icm->xdomain_disconnected = icm_fr_xdomain_disconnected;
> +           tb->cm_ops = &icm_ar_ops;
> +           break;
> 
> 
> Result: icm_probe succeeds, firmware_start begins, but
> icm_firmware_reset → pcie2cio_write times out.
> 
> 
> === dmesg ===
> 
> 
>   thunderbolt 0000:04:00.0: timeout resetting host router
>   (REG_RESET HRR remains 0x01 indefinitely; extended to 5000ms, no
> change)
> 
> 
> === Questions ===
> 
> 
> 1. What is the correct CIO reset sequence for Barlow Ridge?
> 2. Is the ICM firmware interface different from Alpine/Titan Ridge?
> 3. Are there plans to add native Barlow Ridge support to icm.c?
> 4. Should Barlow Ridge use software CM exclusively (skip ICM)?
> 
> 
> Full diagnostic logs, lspci, and ACPI DSDT excerpt available on
> request.
> Test hardware available for any proposed patches.
> 
> 
> Thank you,
> 	
> Neo
> liqys@vip.qq.com

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

* Re: [PATCH RFC] thunderbolt: Add JHL9580 Barlow Ridge (TB5) ICM support — host_reset timeout blocking PCIe tunneling
@ 2026-07-05 13:48 Neo
  2026-07-05 13:58 ` Neo
  0 siblings, 1 reply; 6+ messages in thread
From: Neo @ 2026-07-05 13:48 UTC (permalink / raw)
  To: Alan Borzeszkowski, linux-usb; +Cc: andreas.noever, westeri, YehezkelShB

Hi Alan,


Following up on Bug 221716 — I have a new, more severe symptom on the same hardware.


Previously we discussed PCIe tunneling not establishing under software CM (ICM not used, per your confirmation). Now: simply plugging in the Thunderbolt cable causes a HARD system freeze — the kind where even kdump cannot fire.


=== SYSTEM ===
  Laptop:   MSI Vector 16 HX AI A2XWJG
  CPU:      Intel Core Ultra 9 275HX (Meteor Lake)
  dGPU:     NVIDIA RTX 5090 Max-Q [10de:2c18] (built-in)
  eGPU:     GIGABYTE AORUS RTX5090 AI BOX (JHL9580 downstream)
  BIOS:     E15M3IMS.117 (2026-04-17)
  Kernel:   7.0.0-27-generic
  NVIDIA:   595.71.05 open kernel module
  NHI:      8086:5781 (JHL9580 Barlow Ridge)


=== WHAT HAPPENED ===


1. Booted with thunderbolt.dyndbg=+p (software CM, security=user).
   Thunderbolt driver initialized cleanly — host router reset successful,
   control channel created, DROM read, all 23 ports enumerated.


2. Plugged in the GIGABYTE eGPU dock's Thunderbolt 5 cable.


3. System instantly froze:
   - Screen frozen (no cursor movement)
   - No USB/keyboard response
   - Magic SysRq unresponsive
   - Unplugging the cable did NOT recover the system
   - Had to hold power button for forced shutdown


=== ZERO LOGS (hardest possible freeze) ===


This is the critical finding: the kernel wrote ABSOLUTELY NOTHING
related to the hot-plug event. The full crash-boot journal is 47,338
lines of normal system operation; the last lines are (unrelated):


  Jul 05 21:24:04 x systemd[3382]: Started searxng.service.
  Jul 05 21:24:04 x (start.sh)[9986]: ... Failed at step EXEC ...
  [then nothing until forced power-off at ~21:31]


Thunderbolt in crash-boot kernel log: 162 lines, ALL from driver init:


  thunderbolt 0000:04:00.0: host router reset successful
  thunderbolt 0000:04:00.0: using software connection manager
  thunderbolt 0000:04:00.0: NHI initialized, starting thunderbolt
  thunderbolt 0000:04:00.0: 0: DROM version: 3
  thunderbolt 0000:04:00.0: 0: uid: 0xb188f3000000b48a
  thunderbolt 0000:04:00.0: security level set to user
  [... port enumeration, TMU init, DP IN — all clean ...]


NO hot-plug event. NO interrupt logged. NO error. NO timeout.


In the user-space journal, no thunderbolt-related message at all
between boot and freeze. bolt.service started cleanly at 21:21:10,
then nothing.


kdump status: crashkernel was loaded (kexec_crash_loaded=1 on the
current boot), but the previous boot produced NO vmcore. This rules
out a kernel panic or oops — the CPU stopped executing entirely
before any fault handler could run. Consistent with a PCIe bus-level
deadlock or the JHL9580 host router firmware crashing on downstream
device detection.


Even thunderbolt.dyndbg=+p (full dynamic debug on all tb modules)
produced zero output at plug time. The hot-plug interrupt either
never fired, or the CPU was already frozen before the ISR could run.


=== PREVIOUS PCIe TUNNEL ISSUE (Bug 221716 context) ===


On cold boot with the eGPU already connected, and also on software CM
with the eGPU disconnected: the host router initializes fine but
tb_scan_switch() sees no downstream device (all ports link=none).


The hot-plug hard freeze is a NEW, more severe symptom that blocks any
further debugging of the PCIe tunnel issue.


=== SUSPECTS ===


1. JHL9580 hardware/firmware bug: the Barlow Ridge host router itself
   crashes when it detects a downstream TB5 device via hot-plug.


2. NVIDIA driver interference: the built-in RTX 5090 Max-Q (01:00.0,
   nvidia 595.71.05) is on the same PCIe domain as the TB upstream
   bridge (02:00.0). The nvidia driver may react to a second NVIDIA
   GPU appearing on the bus and trigger a bus-level fault.


3. MSI BIOS: E15M3IMS.117 (2026-04-17) is the latest available.
   It exposes zero Thunderbolt configuration options (no security
   level toggle, no legacy mode). Unknown whether the firmware
   properly handles JHL9580 downstream hot-plug events at all.


=== NEXT STEPS (before I test again) ===


Before I try anything else that might corrupt my NVMe, I'd like your
guidance:


  a) Is the JHL9580 hot-plug hard-freeze a known issue?
  b) Should I try cold-booting with the eGPU pre-connected?
  c) Would unloading nvidia/nvidia-modeset before plugging help
     isolate the cause?
  d) Is there a register dump or debug step I can take via cold-boot
     (eGPU connected from power-on) to gather useful data?


Also: I noticed the upstream kernel (7.2-rc1) still has no JHL9580
entries in get_upstream_port() or icm_probe(). Is there a timeline
or WIP branch for Barlow Ridge support?


Thanks,
Neo
	
Neo
liqys@vip.qq.com




原始邮件
发件人:Alan Borzeszkowski <alan.borzeszkowski@linux.intel.com>
发件时间:2026年7月4日 00:48
收件人:Neo <liqys@vip.qq.com>, linux-usb <linux-usb@vger.kernel.org>
抄送:andreas.noever <andreas.noever@gmail.com>, westeri <westeri@kernel.org>, YehezkelShB <YehezkelShB@gmail.com>
主题:Re: [PATCH RFC] thunderbolt: Add JHL9580 Barlow Ridge (TB5) ICM support — host_reset timeout blocking PCIe tunneling


Hi,

Please send full dmesg with 'thunderbolt.dyndbg=+p' parameter in linux
command line.

Firmware Connection Manager (ICM) is not used with Barlow Ridge, only
software CM.

On Fri, 2026-07-03 at 11:49 +0800, Neo wrote:
> Hi maintainers,
> 
> 
> JHL9580 Barlow Ridge (8086:5780 bridge, 8086:5781 NHI), Intel's first
> Thunderbolt 5 / USB4 v2 host controller, has incomplete support in
> the
> kernel through v7.2-rc1. The host router reset times out and PCIe
> tunneling is non-functional, making eGPU use impossible.
> 
> 
> === Problem Summary ===
> 
> 
> 1. get_upstream_port() in icm.c does not recognize Barlow Ridge
> bridge
>    (0x5780). Neither does icm_probe() handle the NHI (0x5781).
> 
> 
> 2. With these fixed, icm_firmware_reset() → pcie2cio_write() times
> out
>    (-110) on Barlow Ridge. Neither icm_ar_cio_reset (0x50/BIT(9)) nor
>    icm_tr_cio_reset (0x777/BIT(1)) work.
> 
> 
> 3. Without ICM firmware running, REG_FW_STS (0x39944) is read-only
> and
>    writes are silently ignored. USB3 tunneling works (XHCI pass-
> through)
>    but PCIe tunnels are never established.
> 
> 
> 4. Even with software CM (tb_acpi_is_native()=1), USB4 ports show
>    "link: none" and the eGPU GPU never appears in lspci.
> 
> 
> === Hardware ===
> 
> 
>   Host: MSI MS-15M3 (E15M3IMS.117 BIOS, 2026-04-17)
>   CPU: Intel Arrow Lake-HX Ultra 9 275HX
>   TB5: Intel JHL9580 Barlow Ridge [8086:5780]/[8086:5781] (rev 84)
>   eGPU: GIGABYTE AORUS RTX5090 AI BOX (USB4)
>   OS: Ubuntu 26.04, kernel 7.0.0-27 (same issue on 7.0.0-22)
> 
> 
> === Patch Attempted (works up to firmware start) ===
> 
> 
> --- a/drivers/thunderbolt/icm.c
> +++ b/drivers/thunderbolt/icm.c
> @@ get_upstream_port():
> +     case 0x5780: /* JHL9580 Barlow Ridge Host Bridge */
> 
> 
> @@ icm_probe():
> +     case 0x5781: /* JHL9580 Barlow Ridge NHI */
> +           icm->max_boot_acl = ICM_AR_PREBOOT_ACL_ENTRIES;
> +           icm->can_upgrade_nvm = !x86_apple_machine;
> +           icm->is_supported = icm_ar_is_supported;
> +           icm->cio_reset = icm_ar_cio_reset;
> +           icm->get_mode = icm_ar_get_mode;
> +           icm->get_route = icm_ar_get_route;
> +           icm->save_devices = icm_fr_save_devices;
> +           icm->driver_ready = icm_ar_driver_ready;
> +           icm->device_connected = icm_fr_device_connected;
> +           icm->device_disconnected = icm_fr_device_disconnected;
> +           icm->xdomain_connected = icm_fr_xdomain_connected;
> +           icm->xdomain_disconnected = icm_fr_xdomain_disconnected;
> +           tb->cm_ops = &icm_ar_ops;
> +           break;
> 
> 
> Result: icm_probe succeeds, firmware_start begins, but
> icm_firmware_reset → pcie2cio_write times out.
> 
> 
> === dmesg ===
> 
> 
>   thunderbolt 0000:04:00.0: timeout resetting host router
>   (REG_RESET HRR remains 0x01 indefinitely; extended to 5000ms, no
> change)
> 
> 
> === Questions ===
> 
> 
> 1. What is the correct CIO reset sequence for Barlow Ridge?
> 2. Is the ICM firmware interface different from Alpine/Titan Ridge?
> 3. Are there plans to add native Barlow Ridge support to icm.c?
> 4. Should Barlow Ridge use software CM exclusively (skip ICM)?
> 
> 
> Full diagnostic logs, lspci, and ACPI DSDT excerpt available on
> request.
> Test hardware available for any proposed patches.
> 
> 
> Thank you,
> 
> Neo
> liqys@vip.qq.com




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

* Re: [PATCH RFC] thunderbolt: Add JHL9580 Barlow Ridge (TB5) ICM support — host_reset timeout blocking PCIe tunneling
  2026-07-05 13:48 [PATCH RFC] thunderbolt: Add JHL9580 Barlow Ridge (TB5) ICM support — host_reset timeout blocking PCIe tunneling Neo
@ 2026-07-05 13:58 ` Neo
  2026-07-07 14:56   ` Alan Borzeszkowski
  0 siblings, 1 reply; 6+ messages in thread
From: Neo @ 2026-07-05 13:58 UTC (permalink / raw)
  To: Alan Borzeszkowski, linux-usb; +Cc: andreas.noever, westeri, YehezkelShB

Hi Alan,

Please disregard my previous email's suspect list — I've since done
a cross-host experiment that changes the picture completely.

=== CROSS-HOST TEST ===

I plugged the SAME GIGABYTE AORUS RTX 3090 Ti AI BOX (with the SAME
TB5 cable) into a Thunderbolt 4 laptop (no dGPU, Titan Ridge host
router):

  Result: The TB4 laptop ALSO freezes instantly on hot-plug.

  BUT: On TB4, unplugging the cable RECOVERS the system normally.

  Reproduced on multiple computers, both TB4 and TB5 hosts.

=== WHAT THIS MEANS ===

TB4 (Titan Ridge) and TB5 (Barlow Ridge) are completely different host
router silicon with different kernel code paths. Both freeze on the
same eGPU dock hot-plug → the common denominator is the eGPU dock or
the 3090 Ti card, NOT the JHL9580.

The difference in recovery behavior (TB4 recovers, TB5 doesn't) only
tells us JHL9580 has weaker fault tolerance than Titan Ridge — it
follows a misbehaving downstream device into a permanent bus-level
deadlock.

=== REVISED ROOT CAUSE ===

The 3090 Ti card (or the GIGABYTE dock's TB firmware) is likely doing
something unexpected during PCIe link training on hot-plug that stalls
the host's PCIe root complex. The software CM's tb_scan_switch() never
gets a chance to run because the bus is already dead.

This would also explain the original Bug 221716 PCIe tunnel issue —
the downstream device never completes initial enumeration, so the
software CM naturally sees nothing.

=== QUESTIONS ===

a) Is it known for certain eGPU cards/docks to cause PCIe bus stalls
   during TB hot-plug? Any known workarounds?

b) Does the kernel's software CM have a quirk/blacklist mechanism for
   misbehaving downstream devices?

c) For the JHL9580 permanent-freeze case: are there PCIe completion
   timeout or AER settings that could prevent the host router from
   following a bad downstream device into a deadlock?

d) I'll test cold-boot (shutdown → plug eGPU → power on) next. If
   that works, the dock/card is fine — the bug is specifically in
   the hot-plug path. Makes sense?

Thanks, and sorry for the noise — the cross-host test was a late
addition but it completely changed the diagnosis.

Neo

	
Neo
liqys@vip.qq.com




原始邮件
发件人:Neo <liqys@vip.qq.com>
发件时间:2026年7月5日 21:48
收件人:Alan Borzeszkowski <alan.borzeszkowski@linux.intel.com>, linux-usb <linux-usb@vger.kernel.org>
抄送:andreas.noever <andreas.noever@gmail.com>, westeri <westeri@kernel.org>, YehezkelShB <YehezkelShB@gmail.com>
主题:Re: [PATCH RFC] thunderbolt: Add JHL9580 Barlow Ridge (TB5) ICM support — host_reset timeout blocking PCIe tunneling


Hi Alan,


Following up on Bug 221716 — I have a new, more severe symptom on the same hardware.


Previously we discussed PCIe tunneling not establishing under software CM (ICM not used, per your confirmation). Now: simply plugging in the Thunderbolt cable causes a HARD system freeze — the kind where even kdump cannot fire.


=== SYSTEM ===
  Laptop:   MSI Vector 16 HX AI A2XWJG
  CPU:      Intel Core Ultra 9 275HX (Meteor Lake)
  dGPU:     NVIDIA RTX 5090 Max-Q [10de:2c18] (built-in)
  eGPU:     GIGABYTE AORUS RTX5090 AI BOX (JHL9580 downstream)
  BIOS:     E15M3IMS.117 (2026-04-17)
  Kernel:   7.0.0-27-generic
  NVIDIA:   595.71.05 open kernel module
  NHI:      8086:5781 (JHL9580 Barlow Ridge)


=== WHAT HAPPENED ===


1. Booted with thunderbolt.dyndbg=+p (software CM, security=user).
   Thunderbolt driver initialized cleanly — host router reset successful,
   control channel created, DROM read, all 23 ports enumerated.


2. Plugged in the GIGABYTE eGPU dock's Thunderbolt 5 cable.


3. System instantly froze:
   - Screen frozen (no cursor movement)
   - No USB/keyboard response
   - Magic SysRq unresponsive
   - Unplugging the cable did NOT recover the system
   - Had to hold power button for forced shutdown


=== ZERO LOGS (hardest possible freeze) ===


This is the critical finding: the kernel wrote ABSOLUTELY NOTHING
related to the hot-plug event. The full crash-boot journal is 47,338
lines of normal system operation; the last lines are (unrelated):


  Jul 05 21:24:04 x systemd[3382]: Started searxng.service.
  Jul 05 21:24:04 x (start.sh)[9986]: ... Failed at step EXEC ...
  [then nothing until forced power-off at ~21:31]


Thunderbolt in crash-boot kernel log: 162 lines, ALL from driver init:


  thunderbolt 0000:04:00.0: host router reset successful
  thunderbolt 0000:04:00.0: using software connection manager
  thunderbolt 0000:04:00.0: NHI initialized, starting thunderbolt
  thunderbolt 0000:04:00.0: 0: DROM version: 3
  thunderbolt 0000:04:00.0: 0: uid: 0xb188f3000000b48a
  thunderbolt 0000:04:00.0: security level set to user
  [... port enumeration, TMU init, DP IN — all clean ...]


NO hot-plug event. NO interrupt logged. NO error. NO timeout.


In the user-space journal, no thunderbolt-related message at all
between boot and freeze. bolt.service started cleanly at 21:21:10,
then nothing.


kdump status: crashkernel was loaded (kexec_crash_loaded=1 on the
current boot), but the previous boot produced NO vmcore. This rules
out a kernel panic or oops — the CPU stopped executing entirely
before any fault handler could run. Consistent with a PCIe bus-level
deadlock or the JHL9580 host router firmware crashing on downstream
device detection.


Even thunderbolt.dyndbg=+p (full dynamic debug on all tb modules)
produced zero output at plug time. The hot-plug interrupt either
never fired, or the CPU was already frozen before the ISR could run.


=== PREVIOUS PCIe TUNNEL ISSUE (Bug 221716 context) ===


On cold boot with the eGPU already connected, and also on software CM
with the eGPU disconnected: the host router initializes fine but
tb_scan_switch() sees no downstream device (all ports link=none).


The hot-plug hard freeze is a NEW, more severe symptom that blocks any
further debugging of the PCIe tunnel issue.


=== SUSPECTS ===


1. JHL9580 hardware/firmware bug: the Barlow Ridge host router itself
   crashes when it detects a downstream TB5 device via hot-plug.


2. NVIDIA driver interference: the built-in RTX 5090 Max-Q (01:00.0,
   nvidia 595.71.05) is on the same PCIe domain as the TB upstream
   bridge (02:00.0). The nvidia driver may react to a second NVIDIA
   GPU appearing on the bus and trigger a bus-level fault.


3. MSI BIOS: E15M3IMS.117 (2026-04-17) is the latest available.
   It exposes zero Thunderbolt configuration options (no security
   level toggle, no legacy mode). Unknown whether the firmware
   properly handles JHL9580 downstream hot-plug events at all.


=== NEXT STEPS (before I test again) ===


Before I try anything else that might corrupt my NVMe, I'd like your
guidance:


  a) Is the JHL9580 hot-plug hard-freeze a known issue?
  b) Should I try cold-booting with the eGPU pre-connected?
  c) Would unloading nvidia/nvidia-modeset before plugging help
     isolate the cause?
  d) Is there a register dump or debug step I can take via cold-boot
     (eGPU connected from power-on) to gather useful data?


Also: I noticed the upstream kernel (7.2-rc1) still has no JHL9580
entries in get_upstream_port() or icm_probe(). Is there a timeline
or WIP branch for Barlow Ridge support?


Thanks,
Neo

Neo
liqys@vip.qq.com




原始邮件
发件人:Alan Borzeszkowski <alan.borzeszkowski@linux.intel.com>
发件时间:2026年7月4日 00:48
收件人:Neo <liqys@vip.qq.com>, linux-usb <linux-usb@vger.kernel.org>
抄送:andreas.noever <andreas.noever@gmail.com>, westeri <westeri@kernel.org>, YehezkelShB <YehezkelShB@gmail.com>
主题:Re: [PATCH RFC] thunderbolt: Add JHL9580 Barlow Ridge (TB5) ICM support — host_reset timeout blocking PCIe tunneling


Hi,

Please send full dmesg with 'thunderbolt.dyndbg=+p' parameter in linux
command line.

Firmware Connection Manager (ICM) is not used with Barlow Ridge, only
software CM.

On Fri, 2026-07-03 at 11:49 +0800, Neo wrote:
> Hi maintainers,
> 
> 
> JHL9580 Barlow Ridge (8086:5780 bridge, 8086:5781 NHI), Intel's first
> Thunderbolt 5 / USB4 v2 host controller, has incomplete support in
> the
> kernel through v7.2-rc1. The host router reset times out and PCIe
> tunneling is non-functional, making eGPU use impossible.
> 
> 
> === Problem Summary ===
> 
> 
> 1. get_upstream_port() in icm.c does not recognize Barlow Ridge
> bridge
>    (0x5780). Neither does icm_probe() handle the NHI (0x5781).
> 
> 
> 2. With these fixed, icm_firmware_reset() → pcie2cio_write() times
> out
>    (-110) on Barlow Ridge. Neither icm_ar_cio_reset (0x50/BIT(9)) nor
>    icm_tr_cio_reset (0x777/BIT(1)) work.
> 
> 
> 3. Without ICM firmware running, REG_FW_STS (0x39944) is read-only
> and
>    writes are silently ignored. USB3 tunneling works (XHCI pass-
> through)
>    but PCIe tunnels are never established.
> 
> 
> 4. Even with software CM (tb_acpi_is_native()=1), USB4 ports show
>    "link: none" and the eGPU GPU never appears in lspci.
> 
> 
> === Hardware ===
> 
> 
>   Host: MSI MS-15M3 (E15M3IMS.117 BIOS, 2026-04-17)
>   CPU: Intel Arrow Lake-HX Ultra 9 275HX
>   TB5: Intel JHL9580 Barlow Ridge [8086:5780]/[8086:5781] (rev 84)
>   eGPU: GIGABYTE AORUS RTX5090 AI BOX (USB4)
>   OS: Ubuntu 26.04, kernel 7.0.0-27 (same issue on 7.0.0-22)
> 
> 
> === Patch Attempted (works up to firmware start) ===
> 
> 
> --- a/drivers/thunderbolt/icm.c
> +++ b/drivers/thunderbolt/icm.c
> @@ get_upstream_port():
> +     case 0x5780: /* JHL9580 Barlow Ridge Host Bridge */
> 
> 
> @@ icm_probe():
> +     case 0x5781: /* JHL9580 Barlow Ridge NHI */
> +           icm->max_boot_acl = ICM_AR_PREBOOT_ACL_ENTRIES;
> +           icm->can_upgrade_nvm = !x86_apple_machine;
> +           icm->is_supported = icm_ar_is_supported;
> +           icm->cio_reset = icm_ar_cio_reset;
> +           icm->get_mode = icm_ar_get_mode;
> +           icm->get_route = icm_ar_get_route;
> +           icm->save_devices = icm_fr_save_devices;
> +           icm->driver_ready = icm_ar_driver_ready;
> +           icm->device_connected = icm_fr_device_connected;
> +           icm->device_disconnected = icm_fr_device_disconnected;
> +           icm->xdomain_connected = icm_fr_xdomain_connected;
> +           icm->xdomain_disconnected = icm_fr_xdomain_disconnected;
> +           tb->cm_ops = &icm_ar_ops;
> +           break;
> 
> 
> Result: icm_probe succeeds, firmware_start begins, but
> icm_firmware_reset → pcie2cio_write times out.
> 
> 
> === dmesg ===
> 
> 
>   thunderbolt 0000:04:00.0: timeout resetting host router
>   (REG_RESET HRR remains 0x01 indefinitely; extended to 5000ms, no
> change)
> 
> 
> === Questions ===
> 
> 
> 1. What is the correct CIO reset sequence for Barlow Ridge?
> 2. Is the ICM firmware interface different from Alpine/Titan Ridge?
> 3. Are there plans to add native Barlow Ridge support to icm.c?
> 4. Should Barlow Ridge use software CM exclusively (skip ICM)?
> 
> 
> Full diagnostic logs, lspci, and ACPI DSDT excerpt available on
> request.
> Test hardware available for any proposed patches.
> 
> 
> Thank you,
> 
> Neo
> liqys@vip.qq.com






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

* Re: [PATCH RFC] thunderbolt: Add JHL9580 Barlow Ridge (TB5) ICM support — host_reset timeout blocking PCIe tunneling
  2026-07-05 13:58 ` Neo
@ 2026-07-07 14:56   ` Alan Borzeszkowski
  2026-07-11  9:09     ` Neo
  0 siblings, 1 reply; 6+ messages in thread
From: Alan Borzeszkowski @ 2026-07-07 14:56 UTC (permalink / raw)
  To: Neo, linux-usb; +Cc: andreas.noever, westeri, YehezkelShB

Hi,

please share full dmesg (e.g., attached here) with Thunderbolt debug.
Include logs from MSI laptop and the TB4 laptop.

Also, up to last email you mention using same eGPU (RTX 5090) but then
it's RTX 3090 Ti. Which one is it?

Per your questions - there is no timeline for ICM support for Barlow
Ridge. Only software CM is supported.

You may also try updating/reinstalling eGPU box software using
manufacturer tool.


On Sun, 2026-07-05 at 21:58 +0800, Neo wrote:
> Hi Alan,
> 
> Please disregard my previous email's suspect list — I've since done
> a cross-host experiment that changes the picture completely.
> 
> === CROSS-HOST TEST ===
> 
> I plugged the SAME GIGABYTE AORUS RTX 3090 Ti AI BOX (with the SAME
> TB5 cable) into a Thunderbolt 4 laptop (no dGPU, Titan Ridge host
> router):
> 
>   Result: The TB4 laptop ALSO freezes instantly on hot-plug.
> 
>   BUT: On TB4, unplugging the cable RECOVERS the system normally.
> 
>   Reproduced on multiple computers, both TB4 and TB5 hosts.
> 
> === WHAT THIS MEANS ===
> 
> TB4 (Titan Ridge) and TB5 (Barlow Ridge) are completely different
> host
> router silicon with different kernel code paths. Both freeze on the
> same eGPU dock hot-plug → the common denominator is the eGPU dock or
> the 3090 Ti card, NOT the JHL9580.
> 
> The difference in recovery behavior (TB4 recovers, TB5 doesn't) only
> tells us JHL9580 has weaker fault tolerance than Titan Ridge — it
> follows a misbehaving downstream device into a permanent bus-level
> deadlock.
> 
> === REVISED ROOT CAUSE ===
> 
> The 3090 Ti card (or the GIGABYTE dock's TB firmware) is likely doing
> something unexpected during PCIe link training on hot-plug that
> stalls
> the host's PCIe root complex. The software CM's tb_scan_switch()
> never
> gets a chance to run because the bus is already dead.
> 
> This would also explain the original Bug 221716 PCIe tunnel issue —
> the downstream device never completes initial enumeration, so the
> software CM naturally sees nothing.
> 
> === QUESTIONS ===
> 
> a) Is it known for certain eGPU cards/docks to cause PCIe bus stalls
>    during TB hot-plug? Any known workarounds?
> 
> b) Does the kernel's software CM have a quirk/blacklist mechanism for
>    misbehaving downstream devices?
> 
> c) For the JHL9580 permanent-freeze case: are there PCIe completion
>    timeout or AER settings that could prevent the host router from
>    following a bad downstream device into a deadlock?
> 
> d) I'll test cold-boot (shutdown → plug eGPU → power on) next. If
>    that works, the dock/card is fine — the bug is specifically in
>    the hot-plug path. Makes sense?
> 
> Thanks, and sorry for the noise — the cross-host test was a late
> addition but it completely changed the diagnosis.
> 
> Neo
> 
> 	
> Neo
> liqys@vip.qq.com
> 
> 
> 
> 
> 原始邮件
> 发件人:Neo <liqys@vip.qq.com>
> 发件时间:2026年7月5日 21:48
> 收件人:Alan Borzeszkowski <alan.borzeszkowski@linux.intel.com>, linux-
> usb <linux-usb@vger.kernel.org>
> 抄送:andreas.noever <andreas.noever@gmail.com>, westeri
> <westeri@kernel.org>, YehezkelShB <YehezkelShB@gmail.com>
> 主题:Re: [PATCH RFC] thunderbolt: Add JHL9580 Barlow Ridge (TB5) ICM
> support — host_reset timeout blocking PCIe tunneling
> 
> 
> Hi Alan,
> 
> 
> Following up on Bug 221716 — I have a new, more severe symptom on the
>  same hardware.
> 
> 
> Previously we discussed PCIe tunneling not establishing under softwar
> e CM (ICM not used, per your confirmation). Now: simply plugging in t
> he Thunderbolt cable causes a HARD system freeze — the kind where eve
> n kdump cannot fire.
> 
> 
> === SYSTEM ===
>   Laptop:   MSI Vector 16 HX AI A2XWJG
>   CPU:      Intel Core Ultra 9 275HX (Meteor Lake)
>   dGPU:     NVIDIA RTX 5090 Max-Q [10de:2c18] (built-in)
>   eGPU:     GIGABYTE AORUS RTX5090 AI BOX (JHL9580 downstream)
>   BIOS:     E15M3IMS.117 (2026-04-17)
>   Kernel:   7.0.0-27-generic
>   NVIDIA:   595.71.05 open kernel module
>   NHI:      8086:5781 (JHL9580 Barlow Ridge)
> 
> 
> === WHAT HAPPENED ===
> 
> 
> 1. Booted with thunderbolt.dyndbg=+p (software CM, security=user).
>    Thunderbolt driver initialized cleanly — host router reset success
> ful,
>    control channel created, DROM read, all 23 ports enumerated.
> 
> 
> 2. Plugged in the GIGABYTE eGPU dock's Thunderbolt 5 cable.
> 
> 
> 3. System instantly froze:
>    - Screen frozen (no cursor movement)
>    - No USB/keyboard response
>    - Magic SysRq unresponsive
>    - Unplugging the cable did NOT recover the system
>    - Had to hold power button for forced shutdown
> 
> 
> === ZERO LOGS (hardest possible freeze) ===
> 
> 
> This is the critical finding: the kernel wrote ABSOLUTELY NOTHING
> related to the hot-plug event. The full crash-boot journal is 47,338
> lines of normal system operation; the last lines are (unrelated):
> 
> 
>   Jul 05 21:24:04 x systemd[3382]: Started searxng.service.
>   Jul 05 21:24:04 x (start.sh)[9986]: ... Failed at step EXEC ...
>   [then nothing until forced power-off at ~21:31]
> 
> 
> Thunderbolt in crash-
> boot kernel log: 162 lines, ALL from driver init:
> 
> 
>   thunderbolt 0000:04:00.0: host router reset successful
>   thunderbolt 0000:04:00.0: using software connection manager
>   thunderbolt 0000:04:00.0: NHI initialized, starting thunderbolt
>   thunderbolt 0000:04:00.0: 0: DROM version: 3
>   thunderbolt 0000:04:00.0: 0: uid: 0xb188f3000000b48a
>   thunderbolt 0000:04:00.0: security level set to user
>   [... port enumeration, TMU init, DP IN — all clean ...]
> 
> 
> NO hot-plug event. NO interrupt logged. NO error. NO timeout.
> 
> 
> In the user-space journal, no thunderbolt-related message at all
> between boot and freeze. bolt.service started cleanly at 21:21:10,
> then nothing.
> 
> 
> kdump status: crashkernel was loaded (kexec_crash_loaded=1 on the
> current boot), but the previous boot produced NO vmcore. This rules
> out a kernel panic or oops — the CPU stopped executing entirely
> before any fault handler could run. Consistent with a PCIe bus-level
> deadlock or the JHL9580 host router firmware crashing on downstream
> device detection.
> 
> 
> Even thunderbolt.dyndbg=+p (full dynamic debug on all tb modules)
> produced zero output at plug time. The hot-plug interrupt either
> never fired, or the CPU was already frozen before the ISR could run.
> 
> 
> === PREVIOUS PCIe TUNNEL ISSUE (Bug 221716 context) ===
> 
> 
> On cold boot with the eGPU already connected, and also on software CM
> with the eGPU disconnected: the host router initializes fine but
> tb_scan_switch() sees no downstream device (all ports link=none).
> 
> 
> The hot-
> plug hard freeze is a NEW, more severe symptom that blocks any
> further debugging of the PCIe tunnel issue.
> 
> 
> === SUSPECTS ===
> 
> 
> 1. JHL9580 hardware/firmware bug: the Barlow Ridge host router itself
>    crashes when it detects a downstream TB5 device via hot-plug.
> 
> 
> 2. NVIDIA driver interference: the built-in RTX 5090 Max-Q (01:00.0,
>    nvidia 595.71.05) is on the same PCIe domain as the TB upstream
>    bridge (02:00.0). The nvidia driver may react to a second NVIDIA
>    GPU appearing on the bus and trigger a bus-level fault.
> 
> 
> 3. MSI BIOS: E15M3IMS.117 (2026-04-17) is the latest available.
>    It exposes zero Thunderbolt configuration options (no security
>    level toggle, no legacy mode). Unknown whether the firmware
>    properly handles JHL9580 downstream hot-plug events at all.
> 
> 
> === NEXT STEPS (before I test again) ===
> 
> 
> Before I try anything else that might corrupt my NVMe, I'd like your
> guidance:
> 
> 
>   a) Is the JHL9580 hot-plug hard-freeze a known issue?
>   b) Should I try cold-booting with the eGPU pre-connected?
>   c) Would unloading nvidia/nvidia-modeset before plugging help
>      isolate the cause?
>   d) Is there a register dump or debug step I can take via cold-boot
>      (eGPU connected from power-on) to gather useful data?
> 
> 
> Also: I noticed the upstream kernel (7.2-rc1) still has no JHL9580
> entries in get_upstream_port() or icm_probe(). Is there a timeline
> or WIP branch for Barlow Ridge support?
> 
> 
> Thanks,
> Neo
> 
> Neo
> liqys@vip.qq.com
> 
> 
> 
> 
> 原始邮件
> 发件人:Alan Borzeszkowski <alan.borzeszkowski@linux.intel.com>
> 发件时间:2026年7月4日 00:48
> 收件人:Neo <liqys@vip.qq.com>, linux-usb <linux-usb@vger.kernel.org>
> 抄送:andreas.noever <
> andreas.noever@gmail.com>, westeri <westeri@kernel.org>, YehezkelShB 
> <YehezkelShB@gmail.com>
> 主题:Re: [PATCH RFC] thunderbolt: Add JHL9580 Barlow Ridge (TB5) ICM su
> pport — host_reset timeout blocking PCIe tunneling
> 
> 
> Hi,
> 
> Please send full dmesg with 'thunderbolt.dyndbg=+p' parameter in linu
> x
> command line.
> 
> Firmware Connection Manager (ICM) is not used with Barlow Ridge, only
> software CM.
> 
> On Fri, 2026-07-03 at 11:49 +0800, Neo wrote:
> >  Hi maintainers,
> >  
> >  
> >  JHL9580 Barlow Ridge (8086:5780 bridge, 8086:5781 NHI), Intel's fi
> > rst
> >  Thunderbolt 5 / USB4 v2 host controller, has incomplete support in
> >  the
> >  kernel through v7.2-rc1. The host router reset times out and PCIe
> >  tunneling is non-functional, making eGPU use impossible.
> >  
> >  
> >  === Problem Summary ===
> >  
> >  
> >  1. get_upstream_port() in icm.c does not recognize Barlow Ridge
> >  bridge
> >     (0x5780). Neither does icm_probe() handle the NHI (0x5781).
> >  
> >  
> >  2. With these fixed, icm_firmware_reset() → pcie2cio_write() times
> >  out
> >     (-
> > 110) on Barlow Ridge. Neither icm_ar_cio_reset (0x50/BIT(9)) nor
> >     icm_tr_cio_reset (0x777/BIT(1)) work.
> >  
> >  
> >  3. Without ICM firmware running, REG_FW_STS (0x39944) is read-only
> >  and
> >     writes are silently ignored. USB3 tunneling works (XHCI pass-
> >  through)
> >     but PCIe tunnels are never established.
> >  
> >  
> >  4. Even with software CM (tb_acpi_is_native()=1), USB4 ports show
> >     "link: none" and the eGPU GPU never appears in lspci.
> >  
> >  
> >  === Hardware ===
> >  
> >  
> >    Host: MSI MS-15M3 (E15M3IMS.117 BIOS, 2026-04-17)
> >    CPU: Intel Arrow Lake-HX Ultra 9 275HX
> >    TB5: Intel JHL9580 Barlow Ridge [8086:5780]/[8086:5781] (rev 84)
> >    eGPU: GIGABYTE AORUS RTX5090 AI BOX (USB4)
> >    OS: Ubuntu 26.04, kernel 7.0.0-27 (same issue on 7.0.0-22)
> >  
> >  
> >  === Patch Attempted (works up to firmware start) ===
> >  
> >  
> >  --- a/drivers/thunderbolt/icm.c
> >  +++ b/drivers/thunderbolt/icm.c
> >  @@ get_upstream_port():
> >  +     case 0x5780: /* JHL9580 Barlow Ridge Host Bridge */
> >  
> >  
> >  @@ icm_probe():
> >  +     case 0x5781: /* JHL9580 Barlow Ridge NHI */
> >  +           icm->max_boot_acl = ICM_AR_PREBOOT_ACL_ENTRIES;
> >  +           icm->can_upgrade_nvm = !x86_apple_machine;
> >  +           icm->is_supported = icm_ar_is_supported;
> >  +           icm->cio_reset = icm_ar_cio_reset;
> >  +           icm->get_mode = icm_ar_get_mode;
> >  +           icm->get_route = icm_ar_get_route;
> >  +           icm->save_devices = icm_fr_save_devices;
> >  +           icm->driver_ready = icm_ar_driver_ready;
> >  +           icm->device_connected = icm_fr_device_connected;
> >  +           icm->device_disconnected = icm_fr_device_disconnected;
> >  +           icm->xdomain_connected = icm_fr_xdomain_connected;
> >  +           icm-
> > >xdomain_disconnected = icm_fr_xdomain_disconnected;
> >  +           tb->cm_ops = &icm_ar_ops;
> >  +           break;
> >  
> >  
> >  Result: icm_probe succeeds, firmware_start begins, but
> >  icm_firmware_reset → pcie2cio_write times out.
> >  
> >  
> >  === dmesg ===
> >  
> >  
> >    thunderbolt 0000:04:00.0: timeout resetting host router
> >    (REG_RESET HRR remains 0x01 indefinitely; extended to 5000ms, no
> >  change)
> >  
> >  
> >  === Questions ===
> >  
> >  
> >  1. What is the correct CIO reset sequence for Barlow Ridge?
> >  2. Is the ICM firmware interface different from Alpine/Titan Ridge
> > ?
> >  3. Are there plans to add native Barlow Ridge support to icm.c?
> >  4. Should Barlow Ridge use software CM exclusively (skip ICM)?
> >  
> >  
> >  Full diagnostic logs, lspci, and ACPI DSDT excerpt available on
> >  request.
> >  Test hardware available for any proposed patches.
> >  
> >  
> >  Thank you,
> >  
> >  Neo
> >  liqys@vip.qq.com
> 
> 
> 
> 

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

* Re: [PATCH RFC] thunderbolt: Add JHL9580 Barlow Ridge (TB5) ICM support — host_reset timeout blocking PCIe tunneling
  2026-07-07 14:56   ` Alan Borzeszkowski
@ 2026-07-11  9:09     ` Neo
  0 siblings, 0 replies; 6+ messages in thread
From: Neo @ 2026-07-11  9:09 UTC (permalink / raw)
  To: Alan Borzeszkowski, linux-usb; +Cc: andreas.noever, westeri, YehezkelShB

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

Hi Alan,
    
    Thanks for the confirmation about software CM only. Understood that
    there is no timeline for ICM support on Barlow Ridge.
    
    Re GPU: to clarify the confusion — the eGPU enclosure is a GIGABYTE
    RTX 5090 AI BOX (which has a built-in 5090). In our testing, we have
    an RTX 3090 Ti card plugged into the enclosure's PCIe slot. So:
    
      Enclosure:  GIGABYTE RTX 5090 AI BOX (JHL9580 Barlow Ridge)
      Test GPU:   RTX 3090 Ti (inside the enclosure)
    
    MSI laptop full dmesg with Thunderbolt debug attached.
    Kernel cmdline includes thunderbolt.dyndbg=+p .
    
    System details:
      MSI laptop, Intel Core Ultra 9 275HX
      Thunderbolt controller: JHL9580 Barlow Ridge Host 80G (lspci 04:00.0)
      Kernel: 7.0.0-27-generic
      NVIDIA driver: 595.71.05
      434 Thunderbolt-related lines in dmesg
    
    The TB4 laptop dmesg is not immediately available. If essential for
    comparison I can reproduce and capture it, but the primary bug
    (hotplug crash) occurs on the MSI / Barlow Ridge system and the
    attached log covers that.
    
    Cross-host experiment from earlier testing (referenced in bug 221716):
    both TB4 and TB5 hosts exhibit the same hotplug crash, suggesting the
    issue is on the enclosure/GPU side rather than host-specific.
    
    I'll try updating the eGPU box firmware with the manufacturer tool
    and report back.
    
    Thanks,
    Neo


	
Neo
liqys@vip.qq.com




原始邮件
发件人:Alan Borzeszkowski <alan.borzeszkowski@linux.intel.com>
发件时间:2026年7月7日 22:56
收件人:Neo <liqys@vip.qq.com>, linux-usb <linux-usb@vger.kernel.org>
抄送:andreas.noever <andreas.noever@gmail.com>, westeri <westeri@kernel.org>, YehezkelShB <YehezkelShB@gmail.com>
主题:Re: [PATCH RFC] thunderbolt: Add JHL9580 Barlow Ridge (TB5) ICM support — host_reset timeout blocking PCIe tunneling


Hi,

please share full dmesg (e.g., attached here) with Thunderbolt debug.
Include logs from MSI laptop and the TB4 laptop.

Also, up to last email you mention using same eGPU (RTX 5090) but then
it's RTX 3090 Ti. Which one is it?

Per your questions - there is no timeline for ICM support for Barlow
Ridge. Only software CM is supported.

You may also try updating/reinstalling eGPU box software using
manufacturer tool.


On Sun, 2026-07-05 at 21:58 +0800, Neo wrote:
> Hi Alan,
> 
> Please disregard my previous email's suspect list — I've since done
> a cross-host experiment that changes the picture completely.
> 
> === CROSS-HOST TEST ===
> 
> I plugged the SAME GIGABYTE AORUS RTX 3090 Ti AI BOX (with the SAME
> TB5 cable) into a Thunderbolt 4 laptop (no dGPU, Titan Ridge host
> router):
> 
>   Result: The TB4 laptop ALSO freezes instantly on hot-plug.
> 
>   BUT: On TB4, unplugging the cable RECOVERS the system normally.
> 
>   Reproduced on multiple computers, both TB4 and TB5 hosts.
> 
> === WHAT THIS MEANS ===
> 
> TB4 (Titan Ridge) and TB5 (Barlow Ridge) are completely different
> host
> router silicon with different kernel code paths. Both freeze on the
> same eGPU dock hot-plug → the common denominator is the eGPU dock or
> the 3090 Ti card, NOT the JHL9580.
> 
> The difference in recovery behavior (TB4 recovers, TB5 doesn't) only
> tells us JHL9580 has weaker fault tolerance than Titan Ridge — it
> follows a misbehaving downstream device into a permanent bus-level
> deadlock.
> 
> === REVISED ROOT CAUSE ===
> 
> The 3090 Ti card (or the GIGABYTE dock's TB firmware) is likely doing
> something unexpected during PCIe link training on hot-plug that
> stalls
> the host's PCIe root complex. The software CM's tb_scan_switch()
> never
> gets a chance to run because the bus is already dead.
> 
> This would also explain the original Bug 221716 PCIe tunnel issue —
> the downstream device never completes initial enumeration, so the
> software CM naturally sees nothing.
> 
> === QUESTIONS ===
> 
> a) Is it known for certain eGPU cards/docks to cause PCIe bus stalls
>    during TB hot-plug? Any known workarounds?
> 
> b) Does the kernel's software CM have a quirk/blacklist mechanism for
>    misbehaving downstream devices?
> 
> c) For the JHL9580 permanent-freeze case: are there PCIe completion
>    timeout or AER settings that could prevent the host router from
>    following a bad downstream device into a deadlock?
> 
> d) I'll test cold-boot (shutdown → plug eGPU → power on) next. If
>    that works, the dock/card is fine — the bug is specifically in
>    the hot-plug path. Makes sense?
> 
> Thanks, and sorry for the noise — the cross-host test was a late
> addition but it completely changed the diagnosis.
> 
> Neo
> 
> 
> Neo
> liqys@vip.qq.com
> 
> 
> 
> 
> 原始邮件
> 发件人:Neo <liqys@vip.qq.com>
> 发件时间:2026年7月5日 21:48
> 收件人:Alan Borzeszkowski <alan.borzeszkowski@linux.intel.com>, linux-
> usb <linux-usb@vger.kernel.org>
> 抄送:andreas.noever <andreas.noever@gmail.com>, westeri
> <westeri@kernel.org>, YehezkelShB <YehezkelShB@gmail.com>
> 主题:Re: [PATCH RFC] thunderbolt: Add JHL9580 Barlow Ridge (TB5) ICM
> support — host_reset timeout blocking PCIe tunneling
> 
> 
> Hi Alan,
> 
> 
> Following up on Bug 221716 — I have a new, more severe symptom on the
>  same hardware.
> 
> 
> Previously we discussed PCIe tunneling not establishing under softwar
> e CM (ICM not used, per your confirmation). Now: simply plugging in t
> he Thunderbolt cable causes a HARD system freeze — the kind where eve
> n kdump cannot fire.
> 
> 
> === SYSTEM ===
>   Laptop:   MSI Vector 16 HX AI A2XWJG
>   CPU:      Intel Core Ultra 9 275HX (Meteor Lake)
>   dGPU:     NVIDIA RTX 5090 Max-Q [10de:2c18] (built-in)
>   eGPU:     GIGABYTE AORUS RTX5090 AI BOX (JHL9580 downstream)
>   BIOS:     E15M3IMS.117 (2026-04-17)
>   Kernel:   7.0.0-27-generic
>   NVIDIA:   595.71.05 open kernel module
>   NHI:      8086:5781 (JHL9580 Barlow Ridge)
> 
> 
> === WHAT HAPPENED ===
> 
> 
> 1. Booted with thunderbolt.dyndbg=+p (software CM, security=user).
>    Thunderbolt driver initialized cleanly — host router reset success
> ful,
>    control channel created, DROM read, all 23 ports enumerated.
> 
> 
> 2. Plugged in the GIGABYTE eGPU dock's Thunderbolt 5 cable.
> 
> 
> 3. System instantly froze:
>    - Screen frozen (no cursor movement)
>    - No USB/keyboard response
>    - Magic SysRq unresponsive
>    - Unplugging the cable did NOT recover the system
>    - Had to hold power button for forced shutdown
> 
> 
> === ZERO LOGS (hardest possible freeze) ===
> 
> 
> This is the critical finding: the kernel wrote ABSOLUTELY NOTHING
> related to the hot-plug event. The full crash-boot journal is 47,338
> lines of normal system operation; the last lines are (unrelated):
> 
> 
>   Jul 05 21:24:04 x systemd[3382]: Started searxng.service.
>   Jul 05 21:24:04 x (start.sh)[9986]: ... Failed at step EXEC ...
>   [then nothing until forced power-off at ~21:31]
> 
> 
> Thunderbolt in crash-
> boot kernel log: 162 lines, ALL from driver init:
> 
> 
>   thunderbolt 0000:04:00.0: host router reset successful
>   thunderbolt 0000:04:00.0: using software connection manager
>   thunderbolt 0000:04:00.0: NHI initialized, starting thunderbolt
>   thunderbolt 0000:04:00.0: 0: DROM version: 3
>   thunderbolt 0000:04:00.0: 0: uid: 0xb188f3000000b48a
>   thunderbolt 0000:04:00.0: security level set to user
>   [... port enumeration, TMU init, DP IN — all clean ...]
> 
> 
> NO hot-plug event. NO interrupt logged. NO error. NO timeout.
> 
> 
> In the user-space journal, no thunderbolt-related message at all
> between boot and freeze. bolt.service started cleanly at 21:21:10,
> then nothing.
> 
> 
> kdump status: crashkernel was loaded (kexec_crash_loaded=1 on the
> current boot), but the previous boot produced NO vmcore. This rules
> out a kernel panic or oops — the CPU stopped executing entirely
> before any fault handler could run. Consistent with a PCIe bus-level
> deadlock or the JHL9580 host router firmware crashing on downstream
> device detection.
> 
> 
> Even thunderbolt.dyndbg=+p (full dynamic debug on all tb modules)
> produced zero output at plug time. The hot-plug interrupt either
> never fired, or the CPU was already frozen before the ISR could run.
> 
> 
> === PREVIOUS PCIe TUNNEL ISSUE (Bug 221716 context) ===
> 
> 
> On cold boot with the eGPU already connected, and also on software CM
> with the eGPU disconnected: the host router initializes fine but
> tb_scan_switch() sees no downstream device (all ports link=none).
> 
> 
> The hot-
> plug hard freeze is a NEW, more severe symptom that blocks any
> further debugging of the PCIe tunnel issue.
> 
> 
> === SUSPECTS ===
> 
> 
> 1. JHL9580 hardware/firmware bug: the Barlow Ridge host router itself
>    crashes when it detects a downstream TB5 device via hot-plug.
> 
> 
> 2. NVIDIA driver interference: the built-in RTX 5090 Max-Q (01:00.0,
>    nvidia 595.71.05) is on the same PCIe domain as the TB upstream
>    bridge (02:00.0). The nvidia driver may react to a second NVIDIA
>    GPU appearing on the bus and trigger a bus-level fault.
> 
> 
> 3. MSI BIOS: E15M3IMS.117 (2026-04-17) is the latest available.
>    It exposes zero Thunderbolt configuration options (no security
>    level toggle, no legacy mode). Unknown whether the firmware
>    properly handles JHL9580 downstream hot-plug events at all.
> 
> 
> === NEXT STEPS (before I test again) ===
> 
> 
> Before I try anything else that might corrupt my NVMe, I'd like your
> guidance:
> 
> 
>   a) Is the JHL9580 hot-plug hard-freeze a known issue?
>   b) Should I try cold-booting with the eGPU pre-connected?
>   c) Would unloading nvidia/nvidia-modeset before plugging help
>      isolate the cause?
>   d) Is there a register dump or debug step I can take via cold-boot
>      (eGPU connected from power-on) to gather useful data?
> 
> 
> Also: I noticed the upstream kernel (7.2-rc1) still has no JHL9580
> entries in get_upstream_port() or icm_probe(). Is there a timeline
> or WIP branch for Barlow Ridge support?
> 
> 
> Thanks,
> Neo
> 
> Neo
> liqys@vip.qq.com
> 
> 
> 
> 
> 原始邮件
> 发件人:Alan Borzeszkowski <alan.borzeszkowski@linux.intel.com>
> 发件时间:2026年7月4日 00:48
> 收件人:Neo <liqys@vip.qq.com>, linux-usb <linux-usb@vger.kernel.org>
> 抄送:andreas.noever <
> andreas.noever@gmail.com>, westeri <westeri@kernel.org>, YehezkelShB 
> <YehezkelShB@gmail.com>
> 主题:Re: [PATCH RFC] thunderbolt: Add JHL9580 Barlow Ridge (TB5) ICM su
> pport — host_reset timeout blocking PCIe tunneling
> 
> 
> Hi,
> 
> Please send full dmesg with 'thunderbolt.dyndbg=+p' parameter in linu
> x
> command line.
> 
> Firmware Connection Manager (ICM) is not used with Barlow Ridge, only
> software CM.
> 
> On Fri, 2026-07-03 at 11:49 +0800, Neo wrote:
> >  Hi maintainers,
> >  
> >  
> >  JHL9580 Barlow Ridge (8086:5780 bridge, 8086:5781 NHI), Intel's fi
> > rst
> >  Thunderbolt 5 / USB4 v2 host controller, has incomplete support in
> >  the
> >  kernel through v7.2-rc1. The host router reset times out and PCIe
> >  tunneling is non-functional, making eGPU use impossible.
> >  
> >  
> >  === Problem Summary ===
> >  
> >  
> >  1. get_upstream_port() in icm.c does not recognize Barlow Ridge
> >  bridge
> >     (0x5780). Neither does icm_probe() handle the NHI (0x5781).
> >  
> >  
> >  2. With these fixed, icm_firmware_reset() → pcie2cio_write() times
> >  out
> >     (-
> > 110) on Barlow Ridge. Neither icm_ar_cio_reset (0x50/BIT(9)) nor
> >     icm_tr_cio_reset (0x777/BIT(1)) work.
> >  
> >  
> >  3. Without ICM firmware running, REG_FW_STS (0x39944) is read-only
> >  and
> >     writes are silently ignored. USB3 tunneling works (XHCI pass-
> >  through)
> >     but PCIe tunnels are never established.
> >  
> >  
> >  4. Even with software CM (tb_acpi_is_native()=1), USB4 ports show
> >     "link: none" and the eGPU GPU never appears in lspci.
> >  
> >  
> >  === Hardware ===
> >  
> >  
> >    Host: MSI MS-15M3 (E15M3IMS.117 BIOS, 2026-04-17)
> >    CPU: Intel Arrow Lake-HX Ultra 9 275HX
> >    TB5: Intel JHL9580 Barlow Ridge [8086:5780]/[8086:5781] (rev 84)
> >    eGPU: GIGABYTE AORUS RTX5090 AI BOX (USB4)
> >    OS: Ubuntu 26.04, kernel 7.0.0-27 (same issue on 7.0.0-22)
> >  
> >  
> >  === Patch Attempted (works up to firmware start) ===
> >  
> >  
> >  --- a/drivers/thunderbolt/icm.c
> >  +++ b/drivers/thunderbolt/icm.c
> >  @@ get_upstream_port():
> >  +     case 0x5780: /* JHL9580 Barlow Ridge Host Bridge */
> >  
> >  
> >  @@ icm_probe():
> >  +     case 0x5781: /* JHL9580 Barlow Ridge NHI */
> >  +           icm->max_boot_acl = ICM_AR_PREBOOT_ACL_ENTRIES;
> >  +           icm->can_upgrade_nvm = !x86_apple_machine;
> >  +           icm->is_supported = icm_ar_is_supported;
> >  +           icm->cio_reset = icm_ar_cio_reset;
> >  +           icm->get_mode = icm_ar_get_mode;
> >  +           icm->get_route = icm_ar_get_route;
> >  +           icm->save_devices = icm_fr_save_devices;
> >  +           icm->driver_ready = icm_ar_driver_ready;
> >  +           icm->device_connected = icm_fr_device_connected;
> >  +           icm->device_disconnected = icm_fr_device_disconnected;
> >  +           icm->xdomain_connected = icm_fr_xdomain_connected;
> >  +           icm-
> > >xdomain_disconnected = icm_fr_xdomain_disconnected;
> >  +           tb->cm_ops = &icm_ar_ops;
> >  +           break;
> >  
> >  
> >  Result: icm_probe succeeds, firmware_start begins, but
> >  icm_firmware_reset → pcie2cio_write times out.
> >  
> >  
> >  === dmesg ===
> >  
> >  
> >    thunderbolt 0000:04:00.0: timeout resetting host router
> >    (REG_RESET HRR remains 0x01 indefinitely; extended to 5000ms, no
> >  change)
> >  
> >  
> >  === Questions ===
> >  
> >  
> >  1. What is the correct CIO reset sequence for Barlow Ridge?
> >  2. Is the ICM firmware interface different from Alpine/Titan Ridge
> > ?
> >  3. Are there plans to add native Barlow Ridge support to icm.c?
> >  4. Should Barlow Ridge use software CM exclusively (skip ICM)?
> >  
> >  
> >  Full diagnostic logs, lspci, and ACPI DSDT excerpt available on
> >  request.
> >  Test hardware available for any proposed patches.
> >  
> >  
> >  Thank you,
> >  
> >  Neo
> >  liqys@vip.qq.com
> 
> 
> 
> 



[-- Attachment #2: tb5-dmesg-msi-full.txt --]
[-- Type: application/octet-stream, Size: 267128 bytes --]


[    0.000000] BIOS-e820: [mem 0x0000000063fff000-0x0000000063ffffff]  System RAM
[    0.000000] BIOS-e820: [mem 0x0000000064000000-0x00000000787fffff]  device reserved
[    0.000000] BIOS-e820: [gap 0x0000000078800000-0x00000000bfffffff]
[    0.000000] BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff]  device reserved
[    0.000000] BIOS-e820: [gap 0x00000000d0000000-0x00000000fdffffff]
[    0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff]  device reserved
[    0.000000] BIOS-e820: [gap 0x00000000fe011000-0x00000000febfffff]
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff]  device reserved
[    0.000000] BIOS-e820: [gap 0x00000000fec01000-0x00000000fecfffff]
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff]  device reserved
[    0.000000] BIOS-e820: [gap 0x00000000fed01000-0x00000000fed1ffff]
[    0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff]  device reserved
[    0.000000] BIOS-e820: [gap 0x00000000fed80000-0x00000000fedfffff]
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff]  device reserved
[    0.000000] BIOS-e820: [gap 0x00000000fee01000-0x00000000feffffff]
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff]  device reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000187fffffff]  System RAM
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.9 by American Megatrends
[    0.000000] efi: ACPI=0x5f1c5000 ACPI 2.0=0x5f1c5014 TPMFinalLog=0x5f265000 SMBIOS=0x62bb6000 SMBIOS 3.0=0x62bb5000 MEMATTR=0x54e90398 ESRT=0x54bcae98 MOKvar=0x63bd5000 INITRD=0x51d2b798 RNG=0x5f0da018 TPMEventLog=0x5f0ce018 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem82: MMIO range=[0xc0000000-0xcfffffff] (256MB) from e820 map
[    0.000000] e820: remove [mem 0xc0000000-0xcfffffff] device reserved
[    0.000000] efi: Not removing mem83: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
[    0.000000] efi: Not removing mem84: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
[    0.000000] efi: Not removing mem85: MMIO range=[0xfed00000-0xfed00fff] (4KB) from e820 map
[    0.000000] efi: Not removing mem87: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
[    0.000000] efi: Remove mem88: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[    0.000000] e820: remove [mem 0xff000000-0xffffffff] device reserved
[    0.000000] SMBIOS 3.8.0 present.
[    0.000000] DMI: Micro-Star International Co., Ltd. Vector 16 HX AI A2XWJG/MS-15M3, BIOS E15M3IMS.117 04/17/2026
[    0.000000] DMI: Memory slots populated: 2/2
[    0.000000] secureboot: Secure boot disabled
[    0.000000] tsc: Detected 3100.000 MHz processor
[    0.000000] tsc: Detected 3072.000 MHz TSC
[    0.000005] e820: update [mem 0x00000000-0x00000fff] System RAM ==> device reserved
[    0.000007] e820: remove [mem 0x000a0000-0x000fffff] System RAM
[    0.000010] last_pfn = 0x1880000 max_arch_pfn = 0x400000000
[    0.000013] MTRR map: 7 entries (3 fixed + 4 variable; max 23), built from 10 variable MTRRs
[    0.000014] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000351] x2apic: enabled by BIOS, switching to x2apic ops
[    0.000352] last_pfn = 0x64000 max_arch_pfn = 0x400000000
[    0.004110] esrt: Reserving ESRT space from 0x0000000054bcae98 to 0x0000000054bcafe8.
[    0.004114] e820: update [mem 0x54bca000-0x54bcafff] System RAM ==> device reserved
[    0.004123] Using GB pages for direct mapping
[    0.004224] secureboot: Secure boot disabled
[    0.004224] RAMDISK: [mem 0x3cd69000-0x3f498fff]
[    0.004226] ACPI: Early table checksum verification disabled
[    0.004228] ACPI: RSDP 0x000000005F1C5014 000024 (v02 MSI_NB)
[    0.004231] ACPI: XSDT 0x000000005F1C4728 000194 (v01 MSI_NB MEGABOOK 01072009 AMI  01000013)
[    0.004234] ACPI: FACP 0x000000005F1AB000 000114 (v06 MSI_NB MEGABOOK 01072009 AMI  01000013)
[    0.004237] ACPI: DSDT 0x000000005F119000 091EE2 (v02 MSI_NB MEGABOOK 01072009 INTL 20210930)
[    0.004239] ACPI: FACS 0x000000005F357000 000040
[    0.004240] ACPI: SSDT 0x000000005F1C3000 000626 (v02 PmRef  Cpu0Ist  00003000 INTL 20210930)
[    0.004241] ACPI: SSDT 0x000000005F1C2000 0005FB (v02 PmRef  Cpu0Hwp  00003000 INTL 20210930)
[    0.004243] ACPI: SSDT 0x000000005F1C1000 0001AB (v02 PmRef  Cpu0Psd  00003000 INTL 20210930)
[    0.004244] ACPI: SSDT 0x000000005F1C0000 000394 (v02 PmRef  Cpu0Cst  00003001 INTL 20210930)
[    0.004245] ACPI: SSDT 0x000000005F1BE000 001BAF (v02 PmRef  ApIst    00003000 INTL 20210930)
[    0.004246] ACPI: SSDT 0x000000005F1BC000 001620 (v02 PmRef  ApHwp    00003000 INTL 20210930)
[    0.004247] ACPI: SSDT 0x000000005F1BA000 001349 (v02 PmRef  ApPsd    00003000 INTL 20210930)
[    0.004248] ACPI: SSDT 0x000000005F1B9000 000FBB (v02 PmRef  ApCst    00003000 INTL 20210930)
[    0.004250] ACPI: SSDT 0x000000005F1B5000 003BC8 (v02 CpuRef CpuSsdt  00003000 INTL 20210930)
[    0.004251] ACPI: DTPR 0x000000005F1B4000 000088 (v01                 00000000      00000000)
[    0.004252] ACPI: SSDT 0x000000005F1AE000 005C0F (v02 DptfTb DptfTabl 00001000 INTL 20210930)
[    0.004254] ACPI: SSDT 0x000000005F1AC000 00114E (v02 INTEL  PDatTabl 00001000 INTL 20210930)
[    0.004255] ACPI: FIDT 0x000000005F118000 00009C (v01 MSI_NB MEGABOOK 01072009 AMI  00010013)
[    0.004256] ACPI: MSDM 0x000000005F117000 000055 (v03 MSI_NB MEGABOOK 01072009 AMI  01000013)
[    0.004257] ACPI: SSDT 0x000000005F116000 000DDE (v02 INTEL  DTbtSsdt 00001000 INTL 20210930)
[    0.004259] ACPI: SSDT 0x000000005F115000 00038C (v02 PmaxDv Pmax_Dev 00000001 INTL 20210930)
[    0.004260] ACPI: SSDT 0x000000005F114000 000070 (v02 MSI_NB MsiNvs   00003000 INTL 20210930)
[    0.004261] ACPI: SSDT 0x000000005F111000 00247E (v02 INTEL  IgfxSsdt 00003000 INTL 20210930)
[    0.004262] ACPI: HPET 0x000000005F110000 000038 (v01 MSI_NB MEGABOOK 01072009 AMI  01000013)
[    0.004264] ACPI: APIC 0x000000005F10F000 000358 (v05 MSI_NB MEGABOOK 01072009 AMI  01000013)
[    0.004265] ACPI: MCFG 0x000000005F10E000 00003C (v01 MSI_NB MEGABOOK 01072009 AMI  01000013)
[    0.004266] ACPI: SSDT 0x000000005F10C000 00147F (v02 MSI_NB I2Pm_Rvp 00001000 INTL 20210930)
[    0.004267] ACPI: SSDT 0x000000005F0FF000 00C632 (v02 MSI_NB ArlS_IBR 00001000 INTL 20210930)
[    0.004269] ACPI: UEFI 0x000000005F24C000 000048 (v01 MSI_NB MEGABOOK 01072009 AMI  01000013)
[    0.004270] ACPI: BERT 0x000000005F0FE000 000030 (v01 INTEL  EDK2     00000001 INTL 00000001)
[    0.004271] ACPI: LPIT 0x000000005F0FD000 0000CC (v01 MSI_NB MEGABOOK 01072009 AMI  01000013)
[    0.004273] ACPI: SSDT 0x000000005F0FB000 000CA6 (v02 MSI_NB PtidDevc 00001000 INTL 20210930)
[    0.004274] ACPI: SSDT 0x000000005F0F5000 005E58 (v02 MSI_NB TbtTypeC 00000000 INTL 20210930)
[    0.004275] ACPI: DBGP 0x000000005F0F4000 000034 (v01 MSI_NB MEGABOOK 01072009 AMI  01000013)
[    0.004277] ACPI: DBG2 0x000000005F0F3000 000054 (v00 MSI_NB MEGABOOK 01072009 AMI  01000013)
[    0.004278] ACPI: SSDT 0x000000005F0F2000 000D43 (v02 MSI_NB UsbCTabl 00001000 INTL 20210930)
[    0.004279] ACPI: NHLT 0x000000005F0F1000 0009B8 (v00 MSI_NB MEGABOOK 01072009 AMI  01000013)
[    0.004280] ACPI: DMAR 0x000000005F0F0000 000098 (v01 MSI_NB MEGABOOK 01072009 AMI  01000013)
[    0.004282] ACPI: FPDT 0x000000005F0EF000 000044 (v01 MSI_NB MEGABOOK 01072009 AMI  01000013)
[    0.004283] ACPI: SSDT 0x000000005F0ED000 00149B (v02 INTEL  xh_arls0 00000000 INTL 20210930)
[    0.004284] ACPI: SSDT 0x000000005F0EA000 00281A (v02 SocGpe SocGpe   00003000 INTL 20210930)
[    0.004286] ACPI: SSDT 0x000000005F0E7000 0028D3 (v02 SocCmn SocCmn   00003000 INTL 20210930)
[    0.004287] ACPI: SSDT 0x000000005F0E4000 002D34 (v02 PchGpe PchGpe   00003000 INTL 20210930)
[    0.004288] ACPI: SDEV 0x000000005F0E3000 000136 (v01 MSI_NB MEGABOOK 01072009 AMI  01000013)
[    0.004289] ACPI: BGRT 0x000000005F0E2000 000038 (v01 MSI_NB MEGABOOK 01072009 AMI  00010013)
[    0.004290] ACPI: SSDT 0x000000005F0DE000 0036D0 (v02 OptRf2 Opt2Tabl 00001000 INTL 20210930)
[    0.004292] ACPI: TPM2 0x000000005F0DD000 00004C (v04 MSI_NB MEGABOOK 00000001 AMI  00000000)
[    0.004293] ACPI: PHAT 0x000000005F0DC000 000A1F (v01 MSI_NB MEGABOOK 00000005 MSFT 0100000D)
[    0.004295] ACPI: WSMT 0x000000005F0FC000 000028 (v01 MSI_NB MEGABOOK 01072009 AMI  00010013)
[    0.004296] ACPI: BGRT 0x000000005F0DB000 000038 (v01 MSI_NB MEGABOOK 01072009 AMI  00010013)
[    0.004297] ACPI: Reserving FACP table memory at [mem 0x5f1ab000-0x5f1ab113]
[    0.004298] ACPI: Reserving DSDT table memory at [mem 0x5f119000-0x5f1aaee1]
[    0.004298] ACPI: Reserving FACS table memory at [mem 0x5f357000-0x5f35703f]
[    0.004298] ACPI: Reserving SSDT table memory at [mem 0x5f1c3000-0x5f1c3625]
[    0.004299] ACPI: Reserving SSDT table memory at [mem 0x5f1c2000-0x5f1c25fa]
[    0.004299] ACPI: Reserving SSDT table memory at [mem 0x5f1c1000-0x5f1c11aa]
[    0.004299] ACPI: Reserving SSDT table memory at [mem 0x5f1c0000-0x5f1c0393]
[    0.004300] ACPI: Reserving SSDT table memory at [mem 0x5f1be000-0x5f1bfbae]
[    0.004300] ACPI: Reserving SSDT table memory at [mem 0x5f1bc000-0x5f1bd61f]
[    0.004300] ACPI: Reserving SSDT table memory at [mem 0x5f1ba000-0x5f1bb348]
[    0.004300] ACPI: Reserving SSDT table memory at [mem 0x5f1b9000-0x5f1b9fba]
[    0.004301] ACPI: Reserving SSDT table memory at [mem 0x5f1b5000-0x5f1b8bc7]
[    0.004301] ACPI: Reserving DTPR table memory at [mem 0x5f1b4000-0x5f1b4087]
[    0.004301] ACPI: Reserving SSDT table memory at [mem 0x5f1ae000-0x5f1b3c0e]
[    0.004302] ACPI: Reserving SSDT table memory at [mem 0x5f1ac000-0x5f1ad14d]
[    0.004302] ACPI: Reserving FIDT table memory at [mem 0x5f118000-0x5f11809b]
[    0.004302] ACPI: Reserving MSDM table memory at [mem 0x5f117000-0x5f117054]
[    0.004303] ACPI: Reserving SSDT table memory at [mem 0x5f116000-0x5f116ddd]
[    0.004303] ACPI: Reserving SSDT table memory at [mem 0x5f115000-0x5f11538b]
[    0.004303] ACPI: Reserving SSDT table memory at [mem 0x5f114000-0x5f11406f]
[    0.004303] ACPI: Reserving SSDT table memory at [mem 0x5f111000-0x5f11347d]
[    0.004304] ACPI: Reserving HPET table memory at [mem 0x5f110000-0x5f110037]
[    0.004304] ACPI: Reserving APIC table memory at [mem 0x5f10f000-0x5f10f357]
[    0.004304] ACPI: Reserving MCFG table memory at [mem 0x5f10e000-0x5f10e03b]
[    0.004305] ACPI: Reserving SSDT table memory at [mem 0x5f10c000-0x5f10d47e]
[    0.004305] ACPI: Reserving SSDT table memory at [mem 0x5f0ff000-0x5f10b631]
[    0.004305] ACPI: Reserving UEFI table memory at [mem 0x5f24c000-0x5f24c047]
[    0.004305] ACPI: Reserving BERT table memory at [mem 0x5f0fe000-0x5f0fe02f]
[    0.004306] ACPI: Reserving LPIT table memory at [mem 0x5f0fd000-0x5f0fd0cb]
[    0.004306] ACPI: Reserving SSDT table memory at [mem 0x5f0fb000-0x5f0fbca5]
[    0.004306] ACPI: Reserving SSDT table memory at [mem 0x5f0f5000-0x5f0fae57]
[    0.004307] ACPI: Reserving DBGP table memory at [mem 0x5f0f4000-0x5f0f4033]
[    0.004307] ACPI: Reserving DBG2 table memory at [mem 0x5f0f3000-0x5f0f3053]
[    0.004307] ACPI: Reserving SSDT table memory at [mem 0x5f0f2000-0x5f0f2d42]
[    0.004307] ACPI: Reserving NHLT table memory at [mem 0x5f0f1000-0x5f0f19b7]
[    0.004308] ACPI: Reserving DMAR table memory at [mem 0x5f0f0000-0x5f0f0097]
[    0.004308] ACPI: Reserving FPDT table memory at [mem 0x5f0ef000-0x5f0ef043]
[    0.004308] ACPI: Reserving SSDT table memory at [mem 0x5f0ed000-0x5f0ee49a]
[    0.004309] ACPI: Reserving SSDT table memory at [mem 0x5f0ea000-0x5f0ec819]
[    0.004309] ACPI: Reserving SSDT table memory at [mem 0x5f0e7000-0x5f0e98d2]
[    0.004309] ACPI: Reserving SSDT table memory at [mem 0x5f0e4000-0x5f0e6d33]
[    0.004309] ACPI: Reserving SDEV table memory at [mem 0x5f0e3000-0x5f0e3135]
[    0.004310] ACPI: Reserving BGRT table memory at [mem 0x5f0e2000-0x5f0e2037]
[    0.004310] ACPI: Reserving SSDT table memory at [mem 0x5f0de000-0x5f0e16cf]
[    0.004310] ACPI: Reserving TPM2 table memory at [mem 0x5f0dd000-0x5f0dd04b]
[    0.004310] ACPI: Reserving PHAT table memory at [mem 0x5f0dc000-0x5f0dca1e]
[    0.004311] ACPI: Reserving WSMT table memory at [mem 0x5f0fc000-0x5f0fc027]
[    0.004311] ACPI: Reserving BGRT table memory at [mem 0x5f0db000-0x5f0db037]
[    0.004344] APIC: Switched APIC routing to: cluster x2apic
[    0.004488] No NUMA configuration found
[    0.004488] Faking a node at [mem 0x0000000000000000-0x000000187fffffff]
[    0.004492] NODE_DATA(0) allocated [mem 0x187ffd5280-0x187fffffff]
[    0.004574] crashkernel low memory reserved: 0x2c000000 - 0x3c000000 (256 MB)
[    0.004574] crashkernel reserved: 0x00000017ff000000 - 0x000000187f000000 (2048 MB)
[    0.005005] ACPI: PM-Timer IO Port: 0x1808
[    0.005009] ACPI: X2APIC_NMI (uid[0xffffffff] high level lint[0x1])
[    0.005042] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.005044] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.005045] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.005047] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.005047] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.005051] e820: update [mem 0x548e2000-0x54a92fff] System RAM ==> device reserved
[    0.005055] TSC deadline timer available
[    0.005057] CPU topo: Max. logical packages:   1
[    0.005057] CPU topo: Max. logical nodes:      1
[    0.005057] CPU topo: Num. nodes per package:  1
[    0.005058] CPU topo: Max. logical dies:       1
[    0.005058] CPU topo: Max. dies per package:   1
[    0.005059] CPU topo: Max. threads per core:   1
[    0.005060] CPU topo: Num. cores per package:    24
[    0.005060] CPU topo: Num. threads per package:  24
[    0.005060] CPU topo: Allowing 24 present CPUs plus 0 hotplug CPUs
[    0.005067] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.005068] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[    0.005069] PM: hibernation: Registered nosave memory: [mem 0x548e2000-0x54a92fff]
[    0.005069] PM: hibernation: Registered nosave memory: [mem 0x54bca000-0x54bcafff]
[    0.005070] PM: hibernation: Registered nosave memory: [mem 0x5a89d000-0x63ffefff]
[    0.005070] PM: hibernation: Registered nosave memory: [mem 0x64000000-0xffffffff]
[    0.005071] [gap 0x78800000-0xfdffffff] available for PCI devices
[    0.005072] Booting paravirtualized kernel on bare hardware
[    0.005073] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.005125] Zone ranges:
[    0.005125]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.005126]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.005127]   Normal   [mem 0x0000000100000000-0x000000187fffffff]
[    0.005128]   Device   empty
[    0.005128] Movable zone start for each node
[    0.005129] Early memory node ranges
[    0.005129]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.005130]   node   0: [mem 0x0000000000100000-0x000000005a89cfff]
[    0.005130]   node   0: [mem 0x0000000063fff000-0x0000000063ffffff]
[    0.005131]   node   0: [mem 0x0000000100000000-0x000000187fffffff]
[    0.005133] Initmem setup node 0 [mem 0x0000000000001000-0x000000187fffffff]
[    0.005137] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.005152] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.006722] On node 0, zone DMA32: 38754 pages in unavailable ranges
[    0.100166] On node 0, zone Normal: 16384 pages in unavailable ranges
[    0.100176] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:24 nr_cpu_ids:24 nr_node_ids:1
[    0.101178] percpu: Embedded 85 pages/cpu s225280 r8192 d114688 u524288
[    0.101180] pcpu-alloc: s225280 r8192 d114688 u524288 alloc=1*2097152
[    0.101182] pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07 
[    0.101184] pcpu-alloc: [0] 08 09 10 11 [0] 12 13 14 15 
[    0.101186] pcpu-alloc: [0] 16 17 18 19 [0] 20 21 22 23 
[    0.101195] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-7.0.0-27-generic root=UUID=a394007c-bf47-4ea2-84e4-fb8dafac91d7 ro quiet splash pci=realloc,assign-busses,hpbussize=0x33,hpmmiosize=512M,hpmmioprefsize=64G,hpiosize=8K pcie_port_pm=off nvidia.NVreg_DynamicPowerManagement=0x00 mem_sleep_default=deep thunderbolt.dyndbg=+p crashkernel=2G-4G:320M,4G-32G:512M,32G-64G:1024M,64G-128G:2048M,128G-:4096M
[    0.101262] Unknown kernel command line parameters "splash", will be passed to user space.
[    0.101269] printk: log buffer data + meta data: 262144 + 1114112 = 1376256 bytes
[    0.105478] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, linear)
[    0.107602] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.107761] software IO TLB: area num 32.
[    0.116370] Fallback order for Node 0: 0 
[    0.116373] Built 1 zonelists, mobility grouping on.  Total pages: 25012284
[    0.116374] Policy zone: Normal
[    0.116379] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[    0.116382] KHO: Failed to reserve lowmem scratch buffer
[    0.116383] KHO: Failed to reserve scratch area, disabling kexec handover
[    0.214694] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=24, Nodes=1
[    0.222833] ftrace: allocating 63901 entries in 252 pages
[    0.222834] ftrace: allocated 252 pages with 6 groups
[    0.223254] Dynamic Preempt: lazy
[    0.223327] rcu: Preemptible hierarchical RCU implementation.
[    0.223328] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=24.
[    0.223329] 	Trampoline variant of Tasks RCU enabled.
[    0.223329] 	Rude variant of Tasks RCU enabled.
[    0.223330] 	Tracing variant of Tasks RCU enabled.
[    0.223330] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    0.223331] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=24
[    0.223342] RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=24.
[    0.223343] RCU Tasks Rude: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=24.
[    0.225572] NR_IRQS: 524544, nr_irqs: 2248, preallocated irqs: 16
[    0.225868] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.226328] Console: colour dummy device 80x25
[    0.226331] printk: legacy console [tty0] enabled
[    0.226416] ACPI: Core revision 20251212
[    0.226935] hpet: HPET dysfunctional in PC10. Force disabled.
[    0.226991] APIC: Switch to symmetric I/O mode setup
[    0.226993] DMAR: Host address width 42
[    0.226994] DMAR: DRHD base: 0x000000fc800000 flags: 0x0
[    0.227010] DMAR: dmar0: reg_base_addr fc800000 ver 7:0 cap e9de008cee690462 ecap 1aca9a00f0ef5e
[    0.227034] DMAR: DRHD base: 0x000000fc810000 flags: 0x1
[    0.227043] DMAR: dmar1: reg_base_addr fc810000 ver 7:0 cap e9de008cee690462 ecap 1aca9a00f0efde
[    0.227061] DMAR: SATC flags: 0x1
[    0.227063] DMAR-IR: IOAPIC id 2 under DRHD base  0xfc810000 IOMMU 1
[    0.227065] DMAR-IR: HPET id 0 under DRHD base 0xfc810000
[    0.227066] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.228654] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    0.232674] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2c47f5688fc, max_idle_ns: 440795305069 ns
[    0.232679] Calibrating delay loop (skipped), value calculated using timer frequency.. 6144.00 BogoMIPS (lpj=3072000)
[    0.232728] CPU0: Thermal monitoring enabled (TM1)
[    0.232730] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.232898] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.232899] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.232904] process: using mwait in idle threads
[    0.232906] mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
[    0.232908] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.232909] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[    0.232909] VMSCAPE: Mitigation: IBPB before exit to userspace
[    0.232910] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.232911] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.232918] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.232919] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.232919] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.232920] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.232920] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    0.232921] x86/fpu: Supporting XSAVE feature 0x1000: 'Control-flow Kernel registers (KVM only)'
[    0.232921] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.232922] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    0.232923] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    0.232923] x86/fpu: xstate_offset[12]:  856, xstate_sizes[12]:   24
[    0.232924] x86/fpu: Enabled xstate features 0x1a07, context size is 880 bytes, using 'compacted' format.
[    0.233677] Freeing SMP alternatives memory: 56K
[    0.233677] pid_max: default: 32768 minimum: 301
[    0.233677] landlock: Up and running.
[    0.233677] Yama: becoming mindful.
[    0.233677] AppArmor: AppArmor initialized
[    0.233677] AppArmor: AppArmor secmark mediation reserved: ready to be enabled
[    0.233677] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.233677] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.233677] VFS: Finished mounting rootfs on nullfs
[    0.233677] smpboot: CPU0: Intel(R) Core(TM) Ultra 9 275HX (family: 0x6, model: 0xc6, stepping: 0x2)
[    0.233677] Performance Events: XSAVE Architectural LBR, PEBS fmt6+-baseline,  AnyThread deprecated, Lunarlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.233677] core: cpu_core PMU driver: 
[    0.233677] ... version:                   6
[    0.233677] ... bit width:                 48
[    0.233677] ... generic counters:          10
[    0.233677] ... generic bitmap:            00000000000003ff
[    0.233677] ... fixed-purpose counters:    4
[    0.233677] ... fixed-purpose bitmap:      000000000000000f
[    0.233677] ... value mask:                0000ffffffffffff
[    0.233677] ... max period:                00007fffffffffff
[    0.233677] ... global_ctrl mask:          0001000f000003ff
[    0.233677] signal: max sigframe size: 3632
[    0.233677] Estimated ratio of average max frequency by base frequency (times 1024): 1717
[    0.233677] rcu: Hierarchical SRCU implementation.
[    0.233677] rcu: 	Max phase no-delay instances is 400.
[    0.233677] Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
[    0.234354] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.234479] smp: Bringing up secondary CPUs ...
[    0.234543] smpboot: x86: Booting SMP configuration:
[    0.234544] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11 #12 #13 #14 #15 #16 #17 #18 #19 #20 #21 #22 #23
[    0.007453] core: The event 0x5d0 is not supported as an auto-counter reload event.
[    0.007453] core: cpu_atom PMU driver: 
[    0.007453] ... version:                   6
[    0.007453] ... bit width:                 48
[    0.007453] ... generic counters:          8
[    0.007453] ... generic bitmap:            00000000000000ff
[    0.007453] ... fixed-purpose counters:    6
[    0.007453] ... fixed-purpose bitmap:      0000000000000077
[    0.007453] ... value mask:                0000ffffffffffff
[    0.007453] ... max period:                00007fffffffffff
[    0.007453] ... global_ctrl mask:          00000077000000ff
[    0.247741] smp: Brought up 1 node, 24 CPUs
[    0.247741] smpboot: Total of 24 processors activated (147456.00 BogoMIPS)
[    0.248985] Memory: 95614192K/100049136K available (23779K kernel code, 4950K rwdata, 16752K rodata, 5292K init, 5860K bss, 4392984K reserved, 0K cma-reserved)
[    0.251857] devtmpfs: initialized
[    0.251857] x86/mm: Memory block size: 2048MB
[    0.252829] ACPI: PM: Registering ACPI NVS region [mem 0x5f1c6000-0x5f35afff] (1658880 bytes)
[    0.252829] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.252829] posixtimers hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.252829] futex hash table entries: 8192 (524288 bytes on 1 NUMA nodes, total 512 KiB, linear).
[    0.253276] PM: RTC time: 14:05:31, date: 2026-07-05
[    0.253941] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.254430] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    0.254789] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.255196] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.255204] audit: initializing netlink subsys (disabled)
[    0.255225] audit: type=2000 audit(1783260331.022:1): state=initialized audit_enabled=0 res=1
[    0.255225] thermal_sys: Registered thermal governor 'fair_share'
[    0.255225] thermal_sys: Registered thermal governor 'bang_bang'
[    0.255225] thermal_sys: Registered thermal governor 'step_wise'
[    0.255225] thermal_sys: Registered thermal governor 'user_space'
[    0.255225] thermal_sys: Registered thermal governor 'power_allocator'
[    0.255225] cpuidle: using governor ladder
[    0.255225] cpuidle: using governor menu
[    0.260615] efi: Freeing EFI boot services memory: 191612K
[    0.260618] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.260619] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.260730] PCI: ECAM [mem 0xc0000000-0xcfffffff] (base 0xc0000000) for domain 0000 [bus 00-ff]
[    0.260742] PCI: Using configuration type 1 for base access
[    0.260846] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.265750] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.265756] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    0.265759] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.265761] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.267446] ACPI: Added _OSI(Module Device)
[    0.267449] ACPI: Added _OSI(Processor Device)
[    0.267450] ACPI: Added _OSI(Processor Aggregator Device)
[    0.377654] ACPI: 26 ACPI AML tables successfully acquired and loaded
[    0.391737] ACPI: \_SB_: platform _OSC: OS support mask [006e7eff]
[    0.392196] ACPI: \_SB_: platform _OSC: OS control mask [006e7eff]
[    0.392874] ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
[    0.392876] ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
[    0.397983] ACPI: EC: EC started
[    0.397984] ACPI: EC: interrupt blocked
[    0.404872] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.404875] ACPI: \_SB_.PC00.LPCB.EC__: Boot DSDT EC used to handle transactions
[    0.404876] ACPI: Interpreter enabled
[    0.404942] ACPI: PM: (supports S0 S3 S4 S5)
[    0.404944] ACPI: Using IOAPIC for interrupt routing
[    0.406644] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.406646] PCI: Ignoring E820 reservations for host bridge windows
[    0.407548] ACPI: Enabled 10 GPEs in block 00 to 7F
[    0.407568] ACPI: Enabled 8 GPEs in block 80 to DF
[    0.411028] ACPI: \_SB_.PC00.RP01.PXP_: New power resource
[    0.413325] ACPI: \_SB_.PC00.RP17.PXP_: New power resource
[    0.430639] ACPI: \_SB_.PC02.RP01.PXSX.WRST: New power resource
[    0.435479] ACPI: \_SB_.PC02.RP17.PXP_: New power resource
[    0.437838] ACPI: \_SB_.PC02.RP21.PXP_: New power resource
[    0.442721] ACPI: \_SB_.PC02.XHCI.RHUB.HS14.BTRT: New power resource
[    0.442783] ACPI: \_SB_.PC02.XHCI.RHUB.HS14.DBTR: New power resource
[    0.444260] ACPI: \_SB_.PC02.PAUD: New power resource
[    0.460367] ACPI: \PIN_: New power resource
[    0.460386] ACPI: \PPIN: New power resource
[    0.460471] ACPI: \SPR4: New power resource
[    0.461394] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-7f])
[    0.461400] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.461878] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[    0.461879] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.462645] PCI host bridge to bus 0000:00
[    0.462648] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.462651] pci_bus 0000:00: root bus resource [io  0x9000-0xffff window]
[    0.462652] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.462654] pci_bus 0000:00: root bus resource [mem 0x80000000-0xb6ffffff window]
[    0.462655] pci_bus 0000:00: root bus resource [mem 0xa000000000-0x3ffbfffffff window]
[    0.462657] pci_bus 0000:00: root bus resource [bus 00-7f]
[    0.462679] pci 0000:00:00.0: [8086:7d1c] type 00 class 0x060000 conventional PCI endpoint
[    0.462848] pci 0000:00:02.0: [8086:7d67] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
[    0.462876] pci 0000:00:02.0: BAR 0 [mem 0xb820000000-0xb820ffffff 64bit pref]
[    0.462879] pci 0000:00:02.0: BAR 2 [mem 0xa810000000-0xa81fffffff 64bit pref]
[    0.462898] pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
[    0.462902] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.462937] pci 0000:00:02.0: PME# supported from D0 D3hot
[    0.462965] pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x00ffffff 64bit pref]
[    0.462967] pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x06ffffff 64bit pref]: contains BAR 0 for 7 VFs
[    0.463177] pci 0000:00:04.0: [8086:ad03] type 00 class 0x118000 conventional PCI endpoint
[    0.463220] pci 0000:00:04.0: BAR 0 [mem 0xb830040000-0xb83005ffff 64bit]
[    0.463533] pci 0000:00:06.0: [8086:ae4d] type 01 class 0x060400 PCIe Root Port
[    0.463552] pci 0000:00:06.0: PCI bridge to [bus 01]
[    0.463556] pci 0000:00:06.0:   bridge window [io  0x9000-0x9fff]
[    0.463559] pci 0000:00:06.0:   bridge window [mem 0x8c000000-0x900fffff]
[    0.463566] pci 0000:00:06.0:   bridge window [mem 0xa000000000-0xa801ffffff 64bit pref]
[    0.463623] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
[    0.463652] pci 0000:00:06.0: PTM enabled (root), 4ns granularity
[    0.464481] pci 0000:00:06.1: [8086:7eca] type 01 class 0x060400 PCIe Root Port
[    0.464505] pci 0000:00:06.1: PCI bridge to [bus 02-2a]
[    0.464511] pci 0000:00:06.1:   bridge window [mem 0x80000000-0x881fffff]
[    0.464520] pci 0000:00:06.1:   bridge window [mem 0xa820000000-0xb81fefffff 64bit pref]
[    0.464597] pci 0000:00:06.1: PME# supported from D0 D3hot D3cold
[    0.465435] pci 0000:00:06.3: [8086:ae4e] type 01 class 0x060400 PCIe Root Port
[    0.465452] pci 0000:00:06.3: PCI bridge to [bus 2b]
[    0.465456] pci 0000:00:06.3:   bridge window [mem 0x90200000-0x902fffff]
[    0.465511] pci 0000:00:06.3: PME# supported from D0 D3hot D3cold
[    0.465539] pci 0000:00:06.3: PTM enabled (root), 4ns granularity
[    0.466302] pci 0000:00:08.0: [8086:ae4c] type 00 class 0x088000 conventional PCI endpoint
[    0.466334] pci 0000:00:08.0: BAR 0 [mem 0xb830066000-0xb830066fff 64bit]
[    0.466442] pci 0000:00:0a.0: [8086:ad0d] type 00 class 0x118000 PCIe Root Complex Integrated Endpoint
[    0.466463] pci 0000:00:0a.0: BAR 0 [mem 0xb830000000-0xb83003ffff 64bit]
[    0.466470] pci 0000:00:0a.0: enabling Extended Tags
[    0.466547] pci 0000:00:0b.0: [8086:ad1d] type 00 class 0x120000 PCIe Root Complex Integrated Endpoint
[    0.466570] pci 0000:00:0b.0: BAR 0 [mem 0xb828000000-0xb82fffffff 64bit]
[    0.466574] pci 0000:00:0b.0: BAR 4 [mem 0xb830065000-0xb830065fff 64bit]
[    0.466690] pci 0000:00:14.0: [8086:ae7f] type 00 class 0x050000 conventional PCI endpoint
[    0.466730] pci 0000:00:14.0: BAR 0 [mem 0xb830060000-0xb830063fff 64bit]
[    0.466733] pci 0000:00:14.0: BAR 2 [mem 0xb830064000-0xb830064fff 64bit]
[    0.466850] pci 0000:00:1f.0: [8086:ae10] type 00 class 0x060100 conventional PCI endpoint
[    0.467245] pci 0000:00:1f.5: [8086:ae23] type 00 class 0x0c8000 conventional PCI endpoint
[    0.467341] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
[    0.467526] pci 0000:01:00.0: [10de:2c18] type 00 class 0x030000 PCIe Legacy Endpoint
[    0.467557] pci 0000:01:00.0: BAR 0 [mem 0x8c000000-0x8fffffff]
[    0.467560] pci 0000:01:00.0: BAR 1 [mem 0xa000000000-0xa7ffffffff 64bit pref]
[    0.467562] pci 0000:01:00.0: BAR 3 [mem 0xa800000000-0xa801ffffff 64bit pref]
[    0.467564] pci 0000:01:00.0: BAR 5 [io  0x9000-0x907f]
[    0.467566] pci 0000:01:00.0: ROM [mem 0x90000000-0x9007ffff pref]
[    0.467596] pci 0000:01:00.0: Enabling HDA controller
[    0.467650] pci 0000:01:00.0: PME# supported from D0 D3hot
[    0.467761] pci 0000:01:00.0: 252.056 Gb/s available PCIe bandwidth, limited by 32.0 GT/s PCIe x8 link at 0000:00:06.0 (capable of 504.112 Gb/s with 32.0 GT/s PCIe x16 link)
[    0.468001] pci 0000:01:00.1: [10de:22e9] type 00 class 0x040300 PCIe Endpoint
[    0.468031] pci 0000:01:00.1: BAR 0 [mem 0x90080000-0x90083fff]
[    0.468164] pci 0000:00:06.0: PCI bridge to [bus 01-7f]
[    0.468170] pci_bus 0000:01: busn_res: [bus 01-7f] end is updated to 01
[    0.468281] pci 0000:02:00.0: [8086:5780] type 01 class 0x060400 PCIe Switch Upstream Port
[    0.468311] pci 0000:02:00.0: PCI bridge to [bus 03-2a]
[    0.468320] pci 0000:02:00.0:   bridge window [mem 0x80000000-0x881fffff]
[    0.468331] pci 0000:02:00.0:   bridge window [mem 0xa820000000-0xb81fefffff 64bit pref]
[    0.468344] pci 0000:02:00.0: enabling Extended Tags
[    0.468456] pci 0000:02:00.0: supports D1 D2
[    0.468457] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.469761] pci 0000:00:06.1: PCI bridge to [bus 02-7f]
[    0.469902] pci 0000:03:00.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[    0.469933] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.469942] pci 0000:03:00.0:   bridge window [mem 0x88100000-0x881fffff]
[    0.469968] pci 0000:03:00.0: enabling Extended Tags
[    0.470075] pci 0000:03:00.0: supports D1 D2
[    0.470076] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.470351] pci 0000:03:01.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[    0.470381] pci 0000:03:01.0: PCI bridge to [bus 05-16]
[    0.470390] pci 0000:03:01.0:   bridge window [mem 0x84000000-0x87efffff]
[    0.470415] pci 0000:03:01.0: enabling Extended Tags
[    0.470526] pci 0000:03:01.0: supports D1 D2
[    0.470527] pci 0000:03:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.470792] pci 0000:03:02.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[    0.470822] pci 0000:03:02.0: PCI bridge to [bus 17]
[    0.470831] pci 0000:03:02.0:   bridge window [mem 0x88000000-0x880fffff]
[    0.470856] pci 0000:03:02.0: enabling Extended Tags
[    0.470962] pci 0000:03:02.0: supports D1 D2
[    0.470963] pci 0000:03:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.471222] pci 0000:03:03.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[    0.471252] pci 0000:03:03.0: PCI bridge to [bus 18-2a]
[    0.471261] pci 0000:03:03.0:   bridge window [mem 0x80000000-0x83efffff]
[    0.471285] pci 0000:03:03.0: enabling Extended Tags
[    0.471395] pci 0000:03:03.0: supports D1 D2
[    0.471396] pci 0000:03:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.471632] pci 0000:02:00.0: PCI bridge to [bus 03-7f]
[    0.471789] pci 0000:04:00.0: [8086:5781] type 00 class 0x0c0340 PCIe Endpoint
[    0.471837] pci 0000:04:00.0: BAR 0 [mem 0x88100000-0x8813ffff 64bit]
[    0.471840] pci 0000:04:00.0: BAR 2 [mem 0x88140000-0x88140fff 64bit]
[    0.471852] pci 0000:04:00.0: enabling Extended Tags
[    0.471944] pci 0000:04:00.0: supports D1 D2
[    0.471945] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.472140] pci 0000:03:00.0: PCI bridge to [bus 04-7f]
[    0.472153] pci_bus 0000:04: busn_res: [bus 04-7f] end is updated to 04
[    0.472210] pci 0000:03:01.0: PCI bridge to [bus 05-7f]
[    0.472223] pci_bus 0000:05: busn_res: [bus 05-7f] end is updated to 37
[    0.472344] pci 0000:38:00.0: [8086:5782] type 00 class 0x0c0330 PCIe Endpoint
[    0.472398] pci 0000:38:00.0: BAR 0 [mem 0x88000000-0x8800ffff 64bit]
[    0.472414] pci 0000:38:00.0: enabling Extended Tags
[    0.472492] pci 0000:38:00.0: PME# supported from D3hot D3cold
[    0.472638] pci 0000:03:02.0: PCI bridge to [bus 38-7f]
[    0.472652] pci_bus 0000:38: busn_res: [bus 38-7f] end is updated to 38
[    0.472715] pci 0000:03:03.0: PCI bridge to [bus 39-7f]
[    0.472729] pci_bus 0000:39: busn_res: [bus 39-7f] end is updated to 6b
[    0.472734] pci_bus 0000:03: busn_res: [bus 03-7f] end is updated to 6b
[    0.472740] pci_bus 0000:02: busn_res: [bus 02-7f] end is updated to 6b
[    0.473699] pci 0000:6c:00.0: [1e49:1071] type 00 class 0x010802 PCIe Endpoint
[    0.473734] pci 0000:6c:00.0: BAR 0 [mem 0x90200000-0x90203fff 64bit]
[    0.473957] pci 0000:00:06.3: PCI bridge to [bus 6c-7f]
[    0.473963] pci_bus 0000:6c: busn_res: [bus 6c-7f] end is updated to 6c
[    0.476932] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 80-df])
[    0.476937] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.477237] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[    0.477238] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.478298] PCI host bridge to bus 0000:80
[    0.478302] pci_bus 0000:80: root bus resource [io  0x2000-0x8bff window]
[    0.478304] pci_bus 0000:80: root bus resource [mem 0xb7000000-0xbdffffff window]
[    0.478305] pci_bus 0000:80: root bus resource [mem 0x8000000000-0x9fdfffffff window]
[    0.478307] pci_bus 0000:80: root bus resource [bus 80-df]
[    0.479383] pci 0000:80:14.0: [8086:7f6e] type 00 class 0x0c0330 conventional PCI endpoint
[    0.479433] pci 0000:80:14.0: BAR 0 [mem 0x8000200000-0x800020ffff 64bit]
[    0.479488] pci 0000:80:14.0: PME# supported from D3hot D3cold
[    0.480141] pci 0000:80:14.5: [8086:7f2f] type 00 class 0x000000 PCIe Root Complex Integrated Endpoint
[    0.480658] pci 0000:80:15.0: [8086:7f4c] type 00 class 0x0c8000 conventional PCI endpoint
[    0.480774] pci 0000:80:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[    0.491140] pci 0000:80:16.0: [8086:7f68] type 00 class 0x078000 conventional PCI endpoint
[    0.491202] pci 0000:80:16.0: BAR 0 [mem 0x8000215000-0x8000215fff 64bit]
[    0.491265] pci 0000:80:16.0: PME# supported from D3hot
[    0.492209] pci 0000:80:1b.0: [8086:7f40] type 01 class 0x060400 PCIe Root Port
[    0.492238] pci 0000:80:1b.0: PCI bridge to [bus 81-82]
[    0.492243] pci 0000:80:1b.0:   bridge window [io  0x4000-0x4fff]
[    0.492246] pci 0000:80:1b.0:   bridge window [mem 0xb7000000-0xb79fffff]
[    0.492257] pci 0000:80:1b.0:   bridge window [mem 0x8000300000-0x8000cfffff 64bit pref]
[    0.492344] pci 0000:80:1b.0: PME# supported from D0 D3hot D3cold
[    0.492391] pci 0000:80:1b.0: PTM enabled (root), 4ns granularity
[    0.493215] pci 0000:80:1b.4: [8086:7f44] type 01 class 0x060400 PCIe Root Port
[    0.493244] pci 0000:80:1b.4: PCI bridge to [bus 83]
[    0.493249] pci 0000:80:1b.4:   bridge window [io  0x3000-0x3fff]
[    0.493252] pci 0000:80:1b.4:   bridge window [mem 0xb7c00000-0xb7cfffff]
[    0.493348] pci 0000:80:1b.4: PME# supported from D0 D3hot D3cold
[    0.493396] pci 0000:80:1b.4: PTM enabled (root), 4ns granularity
[    0.494299] pci 0000:80:1c.0: [8086:7f38] type 01 class 0x060400 PCIe Root Port
[    0.494335] pci 0000:80:1c.0: PCI bridge to [bus 84]
[    0.494346] pci 0000:80:1c.0:   bridge window [mem 0xb7b00000-0xb7bfffff]
[    0.494472] pci 0000:80:1c.0: PME# supported from D0 D3hot D3cold
[    0.494539] pci 0000:80:1c.0: PTM enabled (root), 4ns granularity
[    0.495426] pci 0000:80:1d.0: [8086:7f30] type 01 class 0x060400 PCIe Root Port
[    0.495461] pci 0000:80:1d.0: PCI bridge to [bus 85]
[    0.495472] pci 0000:80:1d.0:   bridge window [mem 0xb7a00000-0xb7afffff]
[    0.495599] pci 0000:80:1d.0: PME# supported from D0 D3hot D3cold
[    0.495668] pci 0000:80:1d.0: PTM enabled (root), 4ns granularity
[    0.496505] pci 0000:80:1f.0: [8086:7f0c] type 00 class 0x060100 conventional PCI endpoint
[    0.496665] pci 0000:80:1f.3: [8086:7f50] type 00 class 0x040100 conventional PCI endpoint
[    0.496750] pci 0000:80:1f.3: BAR 0 [mem 0x8000210000-0x8000213fff 64bit]
[    0.496761] pci 0000:80:1f.3: BAR 4 [mem 0x8000000000-0x80001fffff 64bit]
[    0.496842] pci 0000:80:1f.3: PME# supported from D3hot D3cold
[    0.496943] pci 0000:80:1f.4: [8086:7f23] type 00 class 0x0c0500 conventional PCI endpoint
[    0.497001] pci 0000:80:1f.4: BAR 0 [mem 0x8000214000-0x80002140ff 64bit]
[    0.497008] pci 0000:80:1f.4: BAR 4 [io  0x5000-0x501f]
[    0.497365] pci 0000:80:1f.5: [8086:7f24] type 00 class 0x0c8000 conventional PCI endpoint
[    0.497427] pci 0000:80:1f.5: BAR 0 [mem 0xb7d00000-0xb7d00fff]
[    0.497637] pci 0000:81:00.0: [10ec:5264] type 00 class 0xff0000 PCIe Endpoint
[    0.497709] pci 0000:81:00.0: BAR 1 [mem 0xb7000000-0xb7000fff]
[    0.497839] pci 0000:81:00.0: supports D1 D2
[    0.497840] pci 0000:81:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.498157] pci 0000:80:1b.0: PCI bridge to [bus 81-df]
[    0.498167] pci_bus 0000:81: busn_res: [bus 81-df] end is updated to b3
[    0.498283] pci 0000:b4:00.0: [10ec:8125] type 00 class 0x020000 PCIe Endpoint
[    0.498355] pci 0000:b4:00.0: BAR 0 [io  0x3000-0x30ff]
[    0.498362] pci 0000:b4:00.0: BAR 2 [mem 0xb7c00000-0xb7c0ffff 64bit]
[    0.498366] pci 0000:b4:00.0: BAR 4 [mem 0xb7c10000-0xb7c13fff 64bit]
[    0.498521] pci 0000:b4:00.0: supports D1 D2
[    0.498522] pci 0000:b4:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.500180] pci 0000:80:1b.4: PCI bridge to [bus b4-df]
[    0.500191] pci_bus 0000:b4: busn_res: [bus b4-df] end is updated to b4
[    0.501926] pci 0000:b5:00.0: [8086:272b] type 00 class 0x028000 PCIe Endpoint
[    0.502654] pci 0000:b5:00.0: BAR 0 [mem 0xb7b00000-0xb7b03fff 64bit]
[    0.506736] pci 0000:b5:00.0: PME# supported from D0 D3hot D3cold
[    0.515323] pci 0000:80:1c.0: PCI bridge to [bus b5-df]
[    0.515335] pci_bus 0000:b5: busn_res: [bus b5-df] end is updated to b5
[    0.515655] pci 0000:b6:00.0: [1c5c:1069] type 00 class 0x010802 PCIe Endpoint
[    0.515710] pci 0000:b6:00.0: BAR 0 [mem 0xb7a00000-0xb7a03fff 64bit]
[    0.515971] pci 0000:b6:00.0: 63.012 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:80:1d.0 (capable of 126.028 Gb/s with 32.0 GT/s PCIe x4 link)
[    0.517052] pci 0000:80:1d.0: PCI bridge to [bus b6-df]
[    0.517063] pci_bus 0000:b6: busn_res: [bus b6-df] end is updated to b6
[    0.522377] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.522497] ACPI: PCI: Interrupt link LNKB configured for IRQ 1
[    0.522615] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.522733] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.522850] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.522967] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.523083] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.523200] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.524267] ACPI: \_SB_.PEPD: Duplicate LPS0 _DSM functions (mask: 0x1)
[    0.525427] ACPI: EC: interrupt unblocked
[    0.525429] ACPI: EC: event unblocked
[    0.525458] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.525460] ACPI: EC: GPE=0x46
[    0.525461] ACPI: \_SB_.PC00.LPCB.EC__: Boot DSDT EC initialization complete
[    0.525463] ACPI: \_SB_.PC00.LPCB.EC__: EC: Used to handle transactions and events
[    0.525693] iommu: Default domain type: Translated
[    0.525693] iommu: DMA domain TLB invalidation policy: lazy mode
[    0.525877] SCSI subsystem initialized
[    0.526690] libata version 3.00 loaded.
[    0.526708] ACPI: bus type USB registered
[    0.526727] usbcore: registered new interface driver usbfs
[    0.526734] usbcore: registered new interface driver hub
[    0.526743] usbcore: registered new device driver usb
[    0.526770] pps_core: LinuxPPS API ver. 1 registered
[    0.526772] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.526775] PTP clock support registered
[    0.526800] EDAC MC: Ver: 3.0.0
[    0.528750] efivars: Registered efivars operations
[    0.528993] NetLabel: Initializing
[    0.528994] NetLabel:  domain hash size = 128
[    0.528995] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.529016] NetLabel:  unlabeled traffic allowed by default
[    0.529028] mctp: management component transport protocol core
[    0.529028] NET: Registered PF_MCTP protocol family
[    0.529028] PCI: Using ACPI for IRQ routing
[    0.541863] PCI: pci_cache_line_size set to 64 bytes
[    0.541917] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]: can't claim; no compatible bridge window
[    0.542441] e820: register RAM buffer resource [mem 0x0009f000-0x0009ffff]
[    0.542442] e820: register RAM buffer resource [mem 0x548e2000-0x57ffffff]
[    0.542444] e820: register RAM buffer resource [mem 0x54bca000-0x57ffffff]
[    0.542444] e820: register RAM buffer resource [mem 0x5a89d000-0x5bffffff]
[    0.542685] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.542686] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.542687] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.542692] pci 0000:01:00.0: vgaarb: bridge control possible
[    0.542693] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    0.542697] vgaarb: loaded
[    0.542697] Monitor-Mwait will be used to enter C-1 state
[    0.542697] Monitor-Mwait will be used to enter C-2 state
[    0.542697] Monitor-Mwait will be used to enter C-3 state
[    0.544115] clocksource: Switched to clocksource tsc-early
[    0.544123] VFS: Disk quotas dquot_6.6.0
[    0.544123] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.546074] AppArmor: AppArmor Filesystem Enabled
[    0.546097] acpi PNP0C02:00: Skipped [io  0x002e-0x002f]
[    0.546101] acpi PNP0C02:00: Skipped [io  0x004e-0x004f]
[    0.546102] acpi PNP0C02:00: Skipped [io  0x0061]
[    0.546104] acpi PNP0C02:00: Skipped [io  0x0063]
[    0.546105] acpi PNP0C02:00: Skipped [io  0x0065]
[    0.546106] acpi PNP0C02:00: Skipped [io  0x0067]
[    0.546107] acpi PNP0C02:00: Skipped [io  0x0070]
[    0.546109] acpi PNP0C02:00: Skipped [io  0x0080]
[    0.546110] acpi PNP0C02:00: Skipped [io  0x0092]
[    0.546111] acpi PNP0C02:00: Skipped [io  0x00b2-0x00b3]
[    0.546113] acpi PNP0C02:00: Reserved [io  0x0680-0x069f]
[    0.546115] acpi PNP0C02:00: Reserved [io  0x164e-0x164f]
[    0.546295] acpi PNP0C02:03: Reserved [mem 0xfedc0000-0xfedc7fff]
[    0.546296] acpi PNP0C02:03: Could not reserve [mem 0x00000000-0x00000fff]
[    0.546298] acpi PNP0C02:03: Could not reserve [mem 0x00000000-0x00000fff]
[    0.546299] acpi PNP0C02:03: Reserved [mem 0xc0000000-0xcfffffff]
[    0.546301] acpi PNP0C02:03: Could not reserve [mem 0xfed20000-0xfed7ffff]
[    0.546302] acpi PNP0C02:03: Could not reserve [mem 0xfc800000-0xfc81ffff]
[    0.546303] acpi PNP0C02:03: Could not reserve [mem 0xfed45000-0xfed8ffff]
[    0.546304] acpi PNP0C02:03: Could not reserve [mem 0xfee00000-0xfeefffff]
[    0.546483] acpi PNP0C02:06: Could not reserve [mem 0xfe000000-0xfe01ffff]
[    0.546484] acpi PNP0C02:06: Reserved [mem 0xfe04c000-0xfe04ffff]
[    0.546485] acpi PNP0C02:06: Reserved [mem 0xfe050000-0xfe0affff]
[    0.546486] acpi PNP0C02:06: Reserved [mem 0xfe0d0000-0xfe0fffff]
[    0.546487] acpi PNP0C02:06: Reserved [mem 0xfe200000-0xfe7fffff]
[    0.546488] acpi PNP0C02:06: Reserved [mem 0xff000000-0xffffffff]
[    0.546490] acpi PNP0C02:06: Could not reserve [io  0x1800-0x18fe]
[    0.546491] acpi PNP0C02:06: Reserved [mem 0xe0000000-0xe0d0ffff]
[    0.546492] acpi PNP0C02:06: Reserved [mem 0xe0d60000-0xefffffff]
[    0.546675] acpi PNP0C02:07: Reserved [io  0x2000-0x20fe]
[    0.546693] acpi PNP0C02:0b: Reserved [io  0x8c00-0x8cfe]
[    0.546730] pnp: PnP ACPI init
[    0.548397] pnp: PnP ACPI: found 1 devices
[    0.559100] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.559146] NET: Registered PF_INET protocol family
[    0.559305] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.569015] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.569056] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.569374] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.569631] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    0.569678] TCP: Hash tables configured (established 524288 bind 65536)
[    0.569891] MPTCP token hash table entries: 65536 (order: 9, 1572864 bytes, linear)
[    0.570282] UDP hash table entries: 65536 (order: 10, 4194304 bytes, linear)
[    0.570773] UDP-Lite hash table entries: 65536 (order: 10, 4194304 bytes, linear)
[    0.570978] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.570983] NET: Registered PF_XDP protocol family
[    0.570988] pci_bus 0000:00: max bus depth: 3 pci_try_num: 4
[    0.570997] pci 0000:00:02.0: VF BAR 0 [mem 0xa802000000-0xa808ffffff 64bit pref]: assigned
[    0.571001] pci 0000:00:06.1: bridge window [io  0xa000-0xdfff]: assigned
[    0.571002] pci 0000:00:1f.5: BAR 0 [mem 0x88200000-0x88200fff]: assigned
[    0.571014] pci 0000:00:06.0: PCI bridge to [bus 01]
[    0.571015] pci 0000:00:06.0:   bridge window [io  0x9000-0x9fff]
[    0.571018] pci 0000:00:06.0:   bridge window [mem 0x8c000000-0x900fffff]
[    0.571019] pci 0000:00:06.0:   bridge window [mem 0xa000000000-0xa801ffffff 64bit pref]
[    0.571023] pci 0000:02:00.0: bridge window [io  0xa000-0xdfff]: assigned
[    0.571025] pci 0000:03:01.0: bridge window [mem size 0x1000000000 64bit pref]: can't assign; no space
[    0.571026] pci 0000:03:01.0: bridge window [mem size 0x1000000000 64bit pref]: failed to assign
[    0.571027] pci 0000:03:03.0: bridge window [mem size 0x1000000000 64bit pref]: can't assign; no space
[    0.571027] pci 0000:03:03.0: bridge window [mem size 0x1000000000 64bit pref]: failed to assign
[    0.571028] pci 0000:03:01.0: bridge window [io  0xa000-0xbfff]: assigned
[    0.571029] pci 0000:03:03.0: bridge window [io  0xc000-0xdfff]: assigned
[    0.571030] pci 0000:03:01.0: bridge window [mem size 0x1000000000 64bit pref]: can't assign; no space
[    0.571030] pci 0000:03:01.0: bridge window [mem size 0x1000000000 64bit pref]: failed to assign
[    0.571031] pci 0000:03:03.0: bridge window [mem size 0x1000000000 64bit pref]: can't assign; no space
[    0.571032] pci 0000:03:03.0: bridge window [mem size 0x1000000000 64bit pref]: failed to assign
[    0.571033] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.571036] pci 0000:03:00.0:   bridge window [mem 0x88100000-0x881fffff]
[    0.571044] pci 0000:03:01.0: PCI bridge to [bus 05-37]
[    0.571045] pci 0000:03:01.0:   bridge window [io  0xa000-0xbfff]
[    0.571049] pci 0000:03:01.0:   bridge window [mem 0x84000000-0x87efffff]
[    0.571056] pci 0000:03:02.0: PCI bridge to [bus 38]
[    0.571060] pci 0000:03:02.0:   bridge window [mem 0x88000000-0x880fffff]
[    0.571067] pci 0000:03:03.0: PCI bridge to [bus 39-6b]
[    0.571069] pci 0000:03:03.0:   bridge window [io  0xc000-0xdfff]
[    0.571072] pci 0000:03:03.0:   bridge window [mem 0x80000000-0x83efffff]
[    0.571079] pci 0000:02:00.0: PCI bridge to [bus 03-6b]
[    0.571081] pci 0000:02:00.0:   bridge window [io  0xa000-0xdfff]
[    0.571085] pci 0000:02:00.0:   bridge window [mem 0x80000000-0x881fffff]
[    0.571088] pci 0000:02:00.0:   bridge window [mem 0xa820000000-0xb81fefffff 64bit pref]
[    0.571092] pci 0000:00:06.1: PCI bridge to [bus 02-6b]
[    0.571094] pci 0000:00:06.1:   bridge window [io  0xa000-0xdfff]
[    0.571097] pci 0000:00:06.1:   bridge window [mem 0x80000000-0x881fffff]
[    0.571099] pci 0000:00:06.1:   bridge window [mem 0xa820000000-0xb81fefffff 64bit pref]
[    0.571102] pci 0000:00:06.3: PCI bridge to [bus 6c]
[    0.571105] pci 0000:00:06.3:   bridge window [mem 0x90200000-0x902fffff]
[    0.571109] PCI: No. 2 try to assign unassigned res
[    0.571111] pci 0000:00:06.0: PCI bridge to [bus 01]
[    0.571113] pci 0000:00:06.0:   bridge window [io  0x9000-0x9fff]
[    0.571115] pci 0000:00:06.0:   bridge window [mem 0x8c000000-0x900fffff]
[    0.571116] pci 0000:00:06.0:   bridge window [mem 0xa000000000-0xa801ffffff 64bit pref]
[    0.571120] pci 0000:03:01.0: bridge window [mem size 0x1000000000 64bit pref]: can't assign; no space
[    0.571120] pci 0000:03:01.0: bridge window [mem size 0x1000000000 64bit pref]: failed to assign
[    0.571121] pci 0000:03:03.0: bridge window [mem size 0x1000000000 64bit pref]: can't assign; no space
[    0.571122] pci 0000:03:03.0: bridge window [mem size 0x1000000000 64bit pref]: failed to assign
[    0.571123] pci 0000:03:01.0: bridge window [mem size 0x1000000000 64bit pref]: can't assign; no space
[    0.571123] pci 0000:03:01.0: bridge window [mem size 0x1000000000 64bit pref]: failed to assign
[    0.571124] pci 0000:03:03.0: bridge window [mem size 0x1000000000 64bit pref]: can't assign; no space
[    0.571125] pci 0000:03:03.0: bridge window [mem size 0x1000000000 64bit pref]: failed to assign
[    0.571126] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.571130] pci 0000:03:00.0:   bridge window [mem 0x88100000-0x881fffff]
[    0.571137] pci 0000:03:01.0: PCI bridge to [bus 05-37]
[    0.571138] pci 0000:03:01.0:   bridge window [io  0xa000-0xbfff]
[    0.571142] pci 0000:03:01.0:   bridge window [mem 0x84000000-0x87efffff]
[    0.571149] pci 0000:03:02.0: PCI bridge to [bus 38]
[    0.571153] pci 0000:03:02.0:   bridge window [mem 0x88000000-0x880fffff]
[    0.571160] pci 0000:03:03.0: PCI bridge to [bus 39-6b]
[    0.571161] pci 0000:03:03.0:   bridge window [io  0xc000-0xdfff]
[    0.571165] pci 0000:03:03.0:   bridge window [mem 0x80000000-0x83efffff]
[    0.571172] pci 0000:02:00.0: PCI bridge to [bus 03-6b]
[    0.571174] pci 0000:02:00.0:   bridge window [io  0xa000-0xdfff]
[    0.571177] pci 0000:02:00.0:   bridge window [mem 0x80000000-0x881fffff]
[    0.571180] pci 0000:02:00.0:   bridge window [mem 0xa820000000-0xb81fefffff 64bit pref]
[    0.571185] pci 0000:00:06.1: PCI bridge to [bus 02-6b]
[    0.571186] pci 0000:00:06.1:   bridge window [io  0xa000-0xdfff]
[    0.571189] pci 0000:00:06.1:   bridge window [mem 0x80000000-0x881fffff]
[    0.571191] pci 0000:00:06.1:   bridge window [mem 0xa820000000-0xb81fefffff 64bit pref]
[    0.571195] pci 0000:00:06.3: PCI bridge to [bus 6c]
[    0.571197] pci 0000:00:06.3:   bridge window [mem 0x90200000-0x902fffff]
[    0.571201] PCI: No. 3 try to assign unassigned res
[    0.571202] pci 0000:02:00.0: bridge window [mem 0xa820000000-0xb81fefffff 64bit pref]: releasing
[    0.571209] pci 0000:00:06.0: PCI bridge to [bus 01]
[    0.571210] pci 0000:00:06.0:   bridge window [io  0x9000-0x9fff]
[    0.571212] pci 0000:00:06.0:   bridge window [mem 0x8c000000-0x900fffff]
[    0.571214] pci 0000:00:06.0:   bridge window [mem 0xa000000000-0xa801ffffff 64bit pref]
[    0.571217] pci 0000:02:00.0: bridge window [mem size 0x2000000000 64bit pref]: can't assign; no space
[    0.571217] pci 0000:02:00.0: bridge window [mem size 0x2000000000 64bit pref]: failed to assign
[    0.571218] pci 0000:02:00.0: bridge window [mem size 0x2000000000 64bit pref]: can't assign; no space
[    0.571219] pci 0000:02:00.0: bridge window [mem size 0x2000000000 64bit pref]: failed to assign
[    0.571220] pci 0000:03:01.0: bridge window [mem size 0x1000000000 64bit pref]: can't assign; no space
[    0.571221] pci 0000:03:01.0: bridge window [mem size 0x1000000000 64bit pref]: failed to assign
[    0.571222] pci 0000:03:03.0: bridge window [mem size 0x1000000000 64bit pref]: can't assign; no space
[    0.571222] pci 0000:03:03.0: bridge window [mem size 0x1000000000 64bit pref]: failed to assign
[    0.571223] pci 0000:03:01.0: bridge window [mem size 0x1000000000 64bit pref]: can't assign; no space
[    0.571224] pci 0000:03:01.0: bridge window [mem size 0x1000000000 64bit pref]: failed to assign
[    0.571224] pci 0000:03:03.0: bridge window [mem size 0x1000000000 64bit pref]: can't assign; no space
[    0.571225] pci 0000:03:03.0: bridge window [mem size 0x1000000000 64bit pref]: failed to assign
[    0.571226] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.571230] pci 0000:03:00.0:   bridge window [mem 0x88100000-0x881fffff]
[    0.571237] pci 0000:03:01.0: PCI bridge to [bus 05-37]
[    0.571238] pci 0000:03:01.0:   bridge window [io  0xa000-0xbfff]
[    0.571242] pci 0000:03:01.0:   bridge window [mem 0x84000000-0x87efffff]
[    0.571249] pci 0000:03:02.0: PCI bridge to [bus 38]
[    0.571253] pci 0000:03:02.0:   bridge window [mem 0x88000000-0x880fffff]
[    0.571259] pci 0000:03:03.0: PCI bridge to [bus 39-6b]
[    0.571261] pci 0000:03:03.0:   bridge window [io  0xc000-0xdfff]
[    0.571265] pci 0000:03:03.0:   bridge window [mem 0x80000000-0x83efffff]
[    0.571272] pci 0000:02:00.0: PCI bridge to [bus 03-6b]
[    0.571273] pci 0000:02:00.0:   bridge window [io  0xa000-0xdfff]
[    0.571277] pci 0000:02:00.0:   bridge window [mem 0x80000000-0x881fffff]
[    0.571284] pci 0000:00:06.1: PCI bridge to [bus 02-6b]
[    0.571285] pci 0000:00:06.1:   bridge window [io  0xa000-0xdfff]
[    0.571288] pci 0000:00:06.1:   bridge window [mem 0x80000000-0x881fffff]
[    0.571290] pci 0000:00:06.1:   bridge window [mem 0xa820000000-0xb81fefffff 64bit pref]
[    0.571294] pci 0000:00:06.3: PCI bridge to [bus 6c]
[    0.571296] pci 0000:00:06.3:   bridge window [mem 0x90200000-0x902fffff]
[    0.571300] PCI: No. 4 try to assign unassigned res
[    0.571301] pci 0000:00:06.1: bridge window [mem 0xa820000000-0xb81fefffff 64bit pref]: releasing
[    0.571305] pci 0000:03:01.0: bridge window [mem size 0x00000000 64bit pref] to [bus 05-37] add_size 1000000000 add_align 100000
[    0.571306] pci 0000:03:03.0: bridge window [mem size 0x00000000 64bit pref] to [bus 39-6b] add_size 1000000000 add_align 100000
[    0.571308] pci 0000:02:00.0: bridge window [mem size 0x00000000 64bit pref] to [bus 03-6b] add_size 2000000000 add_align 100000
[    0.571309] pci 0000:00:06.1: bridge window [mem size 0x00000000 64bit pref] to [bus 02-6b] add_size 2000000000 add_align 100000
[    0.571311] pci 0000:00:06.1: bridge window [mem 0xb830100000-0xd8300fffff 64bit pref]: assigned
[    0.571312] pci 0000:00:06.0: PCI bridge to [bus 01]
[    0.571313] pci 0000:00:06.0:   bridge window [io  0x9000-0x9fff]
[    0.571315] pci 0000:00:06.0:   bridge window [mem 0x8c000000-0x900fffff]
[    0.571317] pci 0000:00:06.0:   bridge window [mem 0xa000000000-0xa801ffffff 64bit pref]
[    0.571320] pci 0000:02:00.0: bridge window [mem 0xb830100000-0xd8300fffff 64bit pref]: assigned
[    0.571321] pci 0000:03:01.0: bridge window [mem 0xb830100000-0xc8300fffff 64bit pref]: assigned
[    0.571322] pci 0000:03:03.0: bridge window [mem 0xc830100000-0xd8300fffff 64bit pref]: assigned
[    0.571323] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.571326] pci 0000:03:00.0:   bridge window [mem 0x88100000-0x881fffff]
[    0.571333] pci 0000:03:01.0: PCI bridge to [bus 05-37]
[    0.571335] pci 0000:03:01.0:   bridge window [io  0xa000-0xbfff]
[    0.571339] pci 0000:03:01.0:   bridge window [mem 0x84000000-0x87efffff]
[    0.571341] pci 0000:03:01.0:   bridge window [mem 0xb830100000-0xc8300fffff 64bit pref]
[    0.571346] pci 0000:03:02.0: PCI bridge to [bus 38]
[    0.571350] pci 0000:03:02.0:   bridge window [mem 0x88000000-0x880fffff]
[    0.571357] pci 0000:03:03.0: PCI bridge to [bus 39-6b]
[    0.571359] pci 0000:03:03.0:   bridge window [io  0xc000-0xdfff]
[    0.571362] pci 0000:03:03.0:   bridge window [mem 0x80000000-0x83efffff]
[    0.571365] pci 0000:03:03.0:   bridge window [mem 0xc830100000-0xd8300fffff 64bit pref]
[    0.571370] pci 0000:02:00.0: PCI bridge to [bus 03-6b]
[    0.571372] pci 0000:02:00.0:   bridge window [io  0xa000-0xdfff]
[    0.571375] pci 0000:02:00.0:   bridge window [mem 0x80000000-0x881fffff]
[    0.571378] pci 0000:02:00.0:   bridge window [mem 0xb830100000-0xd8300fffff 64bit pref]
[    0.571383] pci 0000:00:06.1: PCI bridge to [bus 02-6b]
[    0.571384] pci 0000:00:06.1:   bridge window [io  0xa000-0xdfff]
[    0.571387] pci 0000:00:06.1:   bridge window [mem 0x80000000-0x881fffff]
[    0.571389] pci 0000:00:06.1:   bridge window [mem 0xb830100000-0xd8300fffff 64bit pref]
[    0.571393] pci 0000:00:06.3: PCI bridge to [bus 6c]
[    0.571395] pci 0000:00:06.3:   bridge window [mem 0x90200000-0x902fffff]
[    0.571399] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.571400] pci_bus 0000:00: resource 5 [io  0x9000-0xffff window]
[    0.571401] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.571401] pci_bus 0000:00: resource 7 [mem 0x80000000-0xb6ffffff window]
[    0.571402] pci_bus 0000:00: resource 8 [mem 0xa000000000-0x3ffbfffffff window]
[    0.571403] pci_bus 0000:01: resource 0 [io  0x9000-0x9fff]
[    0.571404] pci_bus 0000:01: resource 1 [mem 0x8c000000-0x900fffff]
[    0.571404] pci_bus 0000:01: resource 2 [mem 0xa000000000-0xa801ffffff 64bit pref]
[    0.571405] pci_bus 0000:02: resource 0 [io  0xa000-0xdfff]
[    0.571406] pci_bus 0000:02: resource 1 [mem 0x80000000-0x881fffff]
[    0.571406] pci_bus 0000:02: resource 2 [mem 0xb830100000-0xd8300fffff 64bit pref]
[    0.571407] pci_bus 0000:03: resource 0 [io  0xa000-0xdfff]
[    0.571408] pci_bus 0000:03: resource 1 [mem 0x80000000-0x881fffff]
[    0.571408] pci_bus 0000:03: resource 2 [mem 0xb830100000-0xd8300fffff 64bit pref]
[    0.571409] pci_bus 0000:04: resource 1 [mem 0x88100000-0x881fffff]
[    0.571410] pci_bus 0000:05: resource 0 [io  0xa000-0xbfff]
[    0.571410] pci_bus 0000:05: resource 1 [mem 0x84000000-0x87efffff]
[    0.571411] pci_bus 0000:05: resource 2 [mem 0xb830100000-0xc8300fffff 64bit pref]
[    0.571412] pci_bus 0000:38: resource 1 [mem 0x88000000-0x880fffff]
[    0.571412] pci_bus 0000:39: resource 0 [io  0xc000-0xdfff]
[    0.571413] pci_bus 0000:39: resource 1 [mem 0x80000000-0x83efffff]
[    0.571414] pci_bus 0000:39: resource 2 [mem 0xc830100000-0xd8300fffff 64bit pref]
[    0.571414] pci_bus 0000:6c: resource 1 [mem 0x90200000-0x902fffff]
[    0.571444] pci_bus 0000:80: max bus depth: 1 pci_try_num: 2
[    0.571447] pci 0000:80:15.0: BAR 0 [mem 0x8000216000-0x8000216fff 64bit]: assigned
[    0.571470] pci 0000:80:1b.0: PCI bridge to [bus 81-b3]
[    0.571472] pci 0000:80:1b.0:   bridge window [io  0x4000-0x4fff]
[    0.571476] pci 0000:80:1b.0:   bridge window [mem 0xb7000000-0xb79fffff]
[    0.571479] pci 0000:80:1b.0:   bridge window [mem 0x8000300000-0x8000cfffff 64bit pref]
[    0.571483] pci 0000:80:1b.4: PCI bridge to [bus b4]
[    0.571485] pci 0000:80:1b.4:   bridge window [io  0x3000-0x3fff]
[    0.571489] pci 0000:80:1b.4:   bridge window [mem 0xb7c00000-0xb7cfffff]
[    0.571496] pci 0000:80:1c.0: PCI bridge to [bus b5]
[    0.571502] pci 0000:80:1c.0:   bridge window [mem 0xb7b00000-0xb7bfffff]
[    0.571509] pci 0000:80:1d.0: PCI bridge to [bus b6]
[    0.571515] pci 0000:80:1d.0:   bridge window [mem 0xb7a00000-0xb7afffff]
[    0.571527] pci_bus 0000:80: resource 4 [io  0x2000-0x8bff window]
[    0.571527] pci_bus 0000:80: resource 5 [mem 0xb7000000-0xbdffffff window]
[    0.571528] pci_bus 0000:80: resource 6 [mem 0x8000000000-0x9fdfffffff window]
[    0.571529] pci_bus 0000:81: resource 0 [io  0x4000-0x4fff]
[    0.571530] pci_bus 0000:81: resource 1 [mem 0xb7000000-0xb79fffff]
[    0.571530] pci_bus 0000:81: resource 2 [mem 0x8000300000-0x8000cfffff 64bit pref]
[    0.571531] pci_bus 0000:b4: resource 0 [io  0x3000-0x3fff]
[    0.571532] pci_bus 0000:b4: resource 1 [mem 0xb7c00000-0xb7cfffff]
[    0.571532] pci_bus 0000:b5: resource 1 [mem 0xb7b00000-0xb7bfffff]
[    0.571533] pci_bus 0000:b6: resource 1 [mem 0xb7a00000-0xb7afffff]
[    0.571630] pci 0000:01:00.1: extending delay after power-on from D3hot to 20 msec
[    0.571650] pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
[    0.573493] PCI: CLS 64 bytes, default 64
[    0.573525] DMAR: No RMRR found
[    0.573526] DMAR: No ATSR found
[    0.573527] DMAR: dmar0: Using Queued invalidation
[    0.573529] DMAR: dmar1: Using Queued invalidation
[    0.573636] Trying to unpack rootfs image as initramfs...
[    0.574014] pci 0000:00:02.0: Adding to iommu group 0
[    0.575489] pci 0000:00:00.0: Adding to iommu group 1
[    0.575498] pci 0000:00:04.0: Adding to iommu group 2
[    0.575507] pci 0000:00:06.0: Adding to iommu group 3
[    0.575529] pci 0000:00:06.1: Adding to iommu group 4
[    0.575537] pci 0000:00:06.3: Adding to iommu group 5
[    0.575544] pci 0000:00:08.0: Adding to iommu group 6
[    0.575551] pci 0000:00:0a.0: Adding to iommu group 7
[    0.575558] pci 0000:00:0b.0: Adding to iommu group 8
[    0.575566] pci 0000:00:14.0: Adding to iommu group 9
[    0.575578] pci 0000:00:1f.0: Adding to iommu group 10
[    0.575585] pci 0000:00:1f.5: Adding to iommu group 10
[    0.575599] pci 0000:01:00.0: Adding to iommu group 11
[    0.575606] pci 0000:01:00.1: Adding to iommu group 11
[    0.575615] pci 0000:02:00.0: Adding to iommu group 12
[    0.575626] pci 0000:03:00.0: Adding to iommu group 13
[    0.575636] pci 0000:03:01.0: Adding to iommu group 14
[    0.575646] pci 0000:03:02.0: Adding to iommu group 15
[    0.575658] pci 0000:03:03.0: Adding to iommu group 16
[    0.575668] pci 0000:04:00.0: Adding to iommu group 17
[    0.575679] pci 0000:38:00.0: Adding to iommu group 18
[    0.575688] pci 0000:6c:00.0: Adding to iommu group 19
[    0.575699] pci 0000:80:14.0: Adding to iommu group 20
[    0.575706] pci 0000:80:14.5: Adding to iommu group 21
[    0.575716] pci 0000:80:15.0: Adding to iommu group 22
[    0.575726] pci 0000:80:16.0: Adding to iommu group 23
[    0.575742] pci 0000:80:1b.0: Adding to iommu group 24
[    0.575754] pci 0000:80:1b.4: Adding to iommu group 25
[    0.575768] pci 0000:80:1c.0: Adding to iommu group 26
[    0.575783] pci 0000:80:1d.0: Adding to iommu group 27
[    0.575801] pci 0000:80:1f.0: Adding to iommu group 28
[    0.575810] pci 0000:80:1f.3: Adding to iommu group 28
[    0.575819] pci 0000:80:1f.4: Adding to iommu group 28
[    0.575826] pci 0000:80:1f.5: Adding to iommu group 28
[    0.575840] pci 0000:81:00.0: Adding to iommu group 29
[    0.575849] pci 0000:b4:00.0: Adding to iommu group 30
[    0.575863] pci 0000:b5:00.0: Adding to iommu group 31
[    0.575874] pci 0000:b6:00.0: Adding to iommu group 32
[    0.580353] DMAR: Intel(R) Virtualization Technology for Directed I/O
[    0.580356] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.580357] software IO TLB: mapped [mem 0x00000000555c1000-0x00000000595c1000] (64MB)
[    0.592480] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2c47f5688fc, max_idle_ns: 440795305069 ns
[    0.592883] clocksource: Switched to clocksource tsc
[    0.592919] platform rtc_cmos: registered platform RTC device (no PNP device found)
[    0.597148] Initialise system trusted keyrings
[    0.597155] Key type blacklist registered
[    0.597712] workingset: timestamp_bits=36 max_order=25 bucket_order=0
[    0.598202] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.599000] fuse: init (API version 7.45)
[    0.606161] integrity: Platform Keyring initialized
[    0.606165] integrity: Machine keyring initialized
[    0.611782] Key type asymmetric registered
[    0.611783] Asymmetric key parser 'x509' registered
[    0.611798] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
[    0.612473] io scheduler mq-deadline registered
[    0.621761] ledtrig-cpu: registered to indicate activity on CPUs
[    0.621918] pcieport 0000:00:06.0: PME: Signaling with IRQ 124
[    0.622216] pcieport 0000:00:06.0: AER: enabled with IRQ 124
[    0.622317] pcieport 0000:00:06.1: PME: Signaling with IRQ 125
[    0.622959] pcieport 0000:00:06.1: AER: enabled with IRQ 125
[    0.623100] pcieport 0000:00:06.3: PME: Signaling with IRQ 126
[    0.623800] pcieport 0000:00:06.3: AER: enabled with IRQ 126
[    0.624134] pcieport 0000:03:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.624755] pcieport 0000:03:03.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.625228] pcieport 0000:80:1b.0: PME: Signaling with IRQ 129
[    0.625522] pcieport 0000:80:1b.0: AER: enabled with IRQ 129
[    0.625537] pcieport 0000:80:1b.0: pciehp: Slot #21 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.626119] pcieport 0000:80:1b.4: PME: Signaling with IRQ 130
[    0.626159] pcieport 0000:80:1b.4: AER: enabled with IRQ 130
[    0.626363] pcieport 0000:80:1c.0: PME: Signaling with IRQ 131
[    0.626410] pcieport 0000:80:1c.0: AER: enabled with IRQ 131
[    0.626651] pcieport 0000:80:1d.0: PME: Signaling with IRQ 132
[    0.626701] pcieport 0000:80:1d.0: AER: enabled with IRQ 132
[    0.626993] ACPI: AC: AC Adapter [ADP1] (on-line)
[    0.627030] input: Lid Switch as /devices/pci0000:00/0000:00:1f.0/PNP0C09:00/PNP0C0D:00/input/input0
[    0.627039] ACPI: button: Lid Switch [LID0]
[    0.627064] input: Sleep Button as /devices/platform/PNP0C0E:00/input/input1
[    0.627075] ACPI: button: Sleep Button [SLPB]
[    0.627099] input: Power Button as /devices/platform/PNP0C0C:00/input/input2
[    0.627106] ACPI: button: Power Button [PWRB]
[    0.645388] acpi LNXTHERM:00: registered as thermal_zone0
[    0.645391] ACPI: thermal: Thermal Zone [THRM] (60 C)
[    0.645860] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.647985] ACPI: battery: Slot [BAT1] (battery present)
[    0.650005] hpet_acpi_add: no address or irqs in _CRS
[    0.650018] Linux agpgart interface v0.103
[    0.662612] Freeing initrd memory: 40128K
[    0.665826] loop: module loaded
[    0.667429] ACPI: bus type drm_connector registered
[    0.667627] tun: Universal TUN/TAP device driver, 1.6
[    0.668290] PPP generic driver version 2.4.2
[    0.668413] xhci_hcd 0000:38:00.0: xHCI Host Controller
[    0.668418] xhci_hcd 0000:38:00.0: new USB bus registered, assigned bus number 1
[    0.669579] xhci_hcd 0000:38:00.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[    0.669870] xhci_hcd 0000:38:00.0: xHCI Host Controller
[    0.669872] xhci_hcd 0000:38:00.0: new USB bus registered, assigned bus number 2
[    0.669874] xhci_hcd 0000:38:00.0: Host supports USB 3.2 Enhanced SuperSpeed
[    0.669915] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 7.00
[    0.669917] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.669918] usb usb1: Product: xHCI Host Controller
[    0.669919] usb usb1: Manufacturer: Linux 7.0.0-27-generic xhci-hcd
[    0.669921] usb usb1: SerialNumber: 0000:38:00.0
[    0.670015] hub 1-0:1.0: USB hub found
[    0.670041] hub 1-0:1.0: 2 ports detected
[    0.670941] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 7.00
[    0.670943] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.670944] usb usb2: Product: xHCI Host Controller
[    0.670945] usb usb2: Manufacturer: Linux 7.0.0-27-generic xhci-hcd
[    0.670946] usb usb2: SerialNumber: 0000:38:00.0
[    0.671442] hub 2-0:1.0: USB hub found
[    0.671469] hub 2-0:1.0: 2 ports detected
[    0.672884] xhci_hcd 0000:80:14.0: xHCI Host Controller
[    0.672887] xhci_hcd 0000:80:14.0: new USB bus registered, assigned bus number 3
[    0.674037] xhci_hcd 0000:80:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[    0.674405] xhci_hcd 0000:80:14.0: xHCI Host Controller
[    0.674407] xhci_hcd 0000:80:14.0: new USB bus registered, assigned bus number 4
[    0.674408] xhci_hcd 0000:80:14.0: Host supports USB 3.2 Enhanced SuperSpeed
[    0.674438] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 7.00
[    0.674440] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.674441] usb usb3: Product: xHCI Host Controller
[    0.674442] usb usb3: Manufacturer: Linux 7.0.0-27-generic xhci-hcd
[    0.674443] usb usb3: SerialNumber: 0000:80:14.0
[    0.674988] hub 3-0:1.0: USB hub found
[    0.675016] hub 3-0:1.0: 16 ports detected
[    0.677239] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 7.00
[    0.677241] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.677241] usb usb4: Product: xHCI Host Controller
[    0.677242] usb usb4: Manufacturer: Linux 7.0.0-27-generic xhci-hcd
[    0.677243] usb usb4: SerialNumber: 0000:80:14.0
[    0.677285] hub 4-0:1.0: USB hub found
[    0.677308] hub 4-0:1.0: 10 ports detected
[    0.678460] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[    0.678462] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    0.679168] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.679213] mousedev: PS/2 mouse device common for all mice
[    0.679318] rtc_cmos rtc_cmos: RTC can wake from S4
[    0.681007] rtc_cmos rtc_cmos: registered as rtc0
[    0.681344] rtc_cmos rtc_cmos: setting system clock to 2026-07-05T14:05:32 UTC (1783260332)
[    0.681366] rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
[    0.681369] i2c_dev: i2c /dev entries driver
[    0.685493] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    0.685504] device-mapper: uevent: version 1.0.3
[    0.685534] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists.linux.dev
[    0.685538] intel_pstate: Intel P-state driver initializing
[    0.687354] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    0.696814] Hybrid CPU capacity scaling enabled
[    0.696854] processor cpu0: EM: created perf domain
[    0.696872] processor cpu1: EM: created perf domain
[    0.696889] processor cpu2: EM: created perf domain
[    0.696905] processor cpu3: EM: created perf domain
[    0.696927] processor cpu4: EM: created perf domain
[    0.696945] processor cpu5: EM: created perf domain
[    0.696963] processor cpu6: EM: created perf domain
[    0.696979] processor cpu7: EM: created perf domain
[    0.696998] processor cpu8: EM: created perf domain
[    0.697014] processor cpu9: EM: created perf domain
[    0.697031] processor cpu10: EM: created perf domain
[    0.697052] processor cpu11: EM: created perf domain
[    0.697070] processor cpu12: EM: created perf domain
[    0.697089] processor cpu13: EM: created perf domain
[    0.697105] processor cpu14: EM: created perf domain
[    0.697122] processor cpu15: EM: created perf domain
[    0.697133] processor cpu16: EM: created perf domain
[    0.697146] processor cpu17: EM: created perf domain
[    0.697158] processor cpu18: EM: created perf domain
[    0.697172] processor cpu19: EM: created perf domain
[    0.697184] processor cpu20: EM: created perf domain
[    0.697199] processor cpu21: EM: created perf domain
[    0.697210] processor cpu22: EM: created perf domain
[    0.697227] processor cpu23: EM: created perf domain
[    0.703276] intel_pstate: HWP enabled
[    0.703534] simple-framebuffer simple-framebuffer.0: [drm] Registered 1 planes with drm panic
[    0.704942] [drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0
[    0.705355] fbcon: Deferring console take-over
[    0.705357] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[    0.705445] drop_monitor: Initializing network drop monitor service
[    0.705547] NET: Registered PF_INET6 protocol family
[    0.705830] Segment Routing with IPv6
[    0.705834] In-situ OAM (IOAM) with IPv6
[    0.705851] NET: Registered PF_PACKET protocol family
[    0.705887] Key type dns_resolver registered
[    0.715309] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.718509] microcode: Current revision: 0x0000011b
[    0.718511] microcode: Updated early from: 0x0000011a
[    0.724717] IPI shorthand broadcast: enabled
[    0.725411] sched_clock: Marking stable (718236708, 6453776)->(753696974, -29006490)
[    0.729442] registered taskstats version 1
[    0.744527] Loading compiled-in X.509 certificates
[    0.745905] Loaded X.509 cert 'Build time autogenerated kernel key: 86d47a4302a183fbb80df1c2bbabbebb130a6033'
[    0.746107] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing 2025 Kmod: d541cef61dc7e793b7eb7e899970a2eef0b5dc8c'
[    0.746302] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969'
[    0.746498] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing 2025 Kmod: 4627603d2357a2a3f81006370894c221175893e9'
[    0.746686] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19'
[    0.746686] blacklist: Loading compiled-in revocation X.509 certificates
[    0.746691] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0'
[    0.746695] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2017): 242ade75ac4a15e50d50c84b0d45ff3eae707a03'
[    0.746698] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (ESM 2018): 365188c1d374d6b07c3c8f240f8ef722433d6a8b'
[    0.746702] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2019): c0746fd6c5da3ae827864651ad66ae47fe24b3e8'
[    0.746705] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v1): a8d54bbb3825cfb94fa13c9f8a594a195c107b8d'
[    0.746709] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v2): 4cf046892d6fd3c9a5b03f98d845f90851dc6a8c'
[    0.746712] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v3): 100437bb6de6e469b581e61cd66bce3ef4ed53af'
[    0.746718] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (Ubuntu Core 2019): c1d57b8f6b743f23ee41f4f7ee292f06eecadfb9'
[    0.749354] Demotion targets for Node 0: null
[    0.750052] Key type .fscrypt registered
[    0.750054] Key type fscrypt-provisioning registered
[    0.750085] Key type big_key registered
[    0.750086] Key type trusted registered
[    0.785134] Key type encrypted registered
[    0.785139] AppArmor: AppArmor sha256 policy hashing enabled
[    0.785148] Loading compiled-in module X.509 certificates
[    0.785555] Loaded X.509 cert 'Build time autogenerated kernel key: 86d47a4302a183fbb80df1c2bbabbebb130a6033'
[    0.785557] ima: Allocated hash algorithm: sha256
[    0.803754] ima: No architecture policies found
[    0.803773] evm: Initialising EVM extended attributes:
[    0.803774] evm: security.selinux
[    0.803775] evm: security.SMACK64
[    0.803776] evm: security.SMACK64EXEC
[    0.803777] evm: security.SMACK64TRANSMUTE
[    0.803777] evm: security.SMACK64MMAP
[    0.803778] evm: security.apparmor
[    0.803779] evm: security.ima
[    0.803780] evm: security.capability
[    0.803780] evm: HMAC attrs: 0x1
[    0.804370] integrity: Loading X.509 certificate: UEFI:db
[    0.804404] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    0.804406] integrity: Loading X.509 certificate: UEFI:db
[    0.804420] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    0.804421] integrity: Loading X.509 certificate: UEFI:db
[    0.804433] integrity: Loaded X.509 cert 'Microsoft Corporation: Windows UEFI CA 2023: aefc5fbbbe055d8f8daa585473499417ab5a5272'
[    0.804435] integrity: Loading X.509 certificate: UEFI:db
[    0.804444] integrity: Loaded X.509 cert 'Microsoft UEFI CA 2023: 81aa6b3244c935bce0d6628af39827421e32497d'
[    0.807310] BERT: [Hardware Error]: Skipped 1 error records
[    0.807314] BERT: Total records found: 1
[    0.807444] PM:   Magic number: 2:379:80
[    0.807744] RAS: Correctable Errors collector initialized.
[    0.807922] clk: Disabling unused clocks
[    0.807924] PM: genpd: Disabling unused power domains
[    0.816446] Freeing unused decrypted memory: 2028K
[    0.818227] Freeing unused kernel image (initmem) memory: 5292K
[    0.818249] Write protecting the kernel read-only data: 43008k
[    0.822262] Freeing unused kernel image (text/rodata gap) memory: 796K
[    0.824747] Freeing unused kernel image (rodata/data gap) memory: 1680K
[    0.829859] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.829863] Run /init as init process
[    0.829864]   with arguments:
[    0.829865]     /init
[    0.829865]     splash
[    0.829866]   with environment:
[    0.829866]     HOME=/
[    0.829867]     TERM=linux
[    0.841002] systemd[1]: Inserted module 'autofs4'
[    0.866343] systemd[1]: Successfully made /usr/ read-only.
[    0.866519] systemd[1]: systemd 259.5-0ubuntu3 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +IPE +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF -XKBCOMMON -UTMP +SYSVINIT +LIBARCHIVE)
[    0.866524] systemd[1]: Detected architecture x86-64.
[    0.866526] systemd[1]: Running in initrd.
[    0.866674] systemd[1]: Hostname set to <x>.
[    0.900329] systemd[1]: bpf-restrict-fs: BPF LSM hook not enabled in the kernel, BPF LSM not supported.
[    0.914465] usb 3-4: new high-speed USB device number 2 using xhci_hcd
[    0.945697] systemd[1]: Queued start job for default target initrd.target.
[    1.003227] systemd[1]: Expecting device dev-disk-by\x2duuid-35A2\x2d8A06.device - /dev/disk/by-uuid/35A2-8A06...
[    1.003279] systemd[1]: Expecting device dev-disk-by\x2duuid-a394007c\x2dbf47\x2d4ea2\x2d84e4\x2dfb8dafac91d7.device - /dev/disk/by-uuid/a394007c-bf47-4ea2-84e4-fb8dafac91d7...
[    1.003305] systemd[1]: Reached target initrd-usr-fs.target - Initrd /usr File System.
[    1.003334] systemd[1]: Reached target slices.target - Slice Units.
[    1.003349] systemd[1]: Reached target swap.target - Swaps.
[    1.003365] systemd[1]: Reached target timers.target - Timer Units.
[    1.003468] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[    1.003541] systemd[1]: Listening on systemd-journald.socket - Journal Sockets.
[    1.003599] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[    1.003641] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[    1.003656] systemd[1]: Reached target sockets.target - Socket Units.
[    1.006255] systemd[1]: Starting dracut-cmdline-ask.service - dracut ask for additional cmdline parameters...
[    1.008537] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[    1.014420] systemd[1]: Starting systemd-journald.service - Journal Service...
[    1.016406] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[    1.016444] systemd[1]: systemd-pcrphase-initrd.service - TPM PCR Barrier (initrd) skipped, unmet condition check ConditionSecurity=measured-uki
[    1.021747] systemd[1]: Finished dracut-cmdline-ask.service - dracut ask for additional cmdline parameters.
[    1.024221] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[    1.026987] systemd[1]: Starting dracut-cmdline.service - dracut cmdline hook...
[    1.029005] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[    1.031479] systemd-journald[327]: Collecting audit messages is disabled.
[    1.032767] ppdev: user-space parallel port driver
[    1.032830] lp: driver loaded but no devices found
[    1.036221] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[    1.038537] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[    1.040401] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
[    1.042885] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[    1.048161] usb 3-4: New USB device found, idVendor=5986, idProduct=1193, bcdDevice= 3.15
[    1.048169] usb 3-4: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[    1.048172] usb 3-4: Product: FHD Camera
[    1.048174] usb 3-4: Manufacturer: Bison
[    1.048176] usb 3-4: SerialNumber: 0001
[    1.048476] systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.
[    1.051617] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
[    1.051713] systemd[1]: Reached target local-fs-pre.target - Preparation for Local File Systems.
[    1.051730] systemd[1]: Reached target local-fs.target - Local File Systems.
[    1.058178] systemd[1]: Finished dracut-cmdline.service - dracut cmdline hook.
[    1.061544] systemd[1]: Starting dracut-pre-udev.service - dracut pre-udev hook...
[    1.088513] systemd[1]: Finished dracut-pre-udev.service - dracut pre-udev hook.
[    1.090384] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
[    1.107142] systemd[1]: Started systemd-journald.service - Journal Service.
[    1.168461] usb 3-8: new full-speed USB device number 3 using xhci_hcd
[    1.303461] usb 3-8: New USB device found, idVendor=046d, idProduct=c548, bcdDevice= 5.03
[    1.303470] usb 3-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.303473] usb 3-8: Product: USB Receiver
[    1.303475] usb 3-8: Manufacturer: Logitech
[    1.334374] gpio gpiochip1: line cnt 592 is greater than fast path cnt 512
[    1.335529] wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQAK data block query control method not found
[    1.335536] wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQAL data block query control method not found
[    1.335539] wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WMAJ method block execution control method not found
[    1.337376] intel-lpss 0000:80:15.0: enabling device (0004 -> 0006)
[    1.343080] idma64 idma64.0: Found Intel integrated DMA 64-bit
[    1.347376] hid: raw HID events driver (C) Jiri Kosina
[    1.356506] rtsx_pci 0000:81:00.0: enabling device (0000 -> 0002)
[    1.357453] Key type psk registered
[    1.376095] ACPI: bus type thunderbolt registered
[    1.376336] thunderbolt 0000:04:00.0: total paths: 12
[    1.376352] thunderbolt 0000:04:00.0: IOMMU DMA protection is enabled
[    1.449467] usb 3-9: new full-speed USB device number 4 using xhci_hcd
[    1.452608] input: CUST0001:00 04F3:31FD Mouse as /devices/pci0000:80/0000:80:15.0/i2c_designware.0/i2c-0/i2c-CUST0001:00/0018:04F3:31FD.0001/input/input4
[    1.452741] input: CUST0001:00 04F3:31FD Touchpad as /devices/pci0000:80/0000:80:15.0/i2c_designware.0/i2c-0/i2c-CUST0001:00/0018:04F3:31FD.0001/input/input6
[    1.452841] hid-generic 0018:04F3:31FD.0001: input,hidraw0: I2C HID v1.00 Mouse [CUST0001:00 04F3:31FD] on i2c-CUST0001:00
[    1.461643] nvme 0000:6c:00.0: platform quirk: setting simple suspend
[    1.461643] nvme 0000:b6:00.0: platform quirk: setting simple suspend
[    1.461772] nvme nvme1: pci function 0000:b6:00.0
[    1.461779] nvme nvme0: pci function 0000:6c:00.0
[    1.482101] nvme nvme0: allocated 64 MiB host memory buffer (1 segment).
[    1.482487] thunderbolt 0000:04:00.0: host router reset successful
[    1.482930] thunderbolt 0000:04:00.0: allocating TX ring 0 of size 10
[    1.482981] thunderbolt 0000:04:00.0: allocating RX ring 0 of size 10
[    1.483007] thunderbolt 0000:04:00.0: control channel created
[    1.483010] thunderbolt 0000:04:00.0: using software connection manager
[    1.483099] thunderbolt 0000:04:00.0: created link from 0000:03:01.0
[    1.483119] thunderbolt 0000:04:00.0: created link from 0000:03:03.0
[    1.483388] thunderbolt 0000:04:00.0: NHI initialized, starting thunderbolt
[    1.483389] thunderbolt 0000:04:00.0: control channel starting...
[    1.483391] thunderbolt 0000:04:00.0: starting TX ring 0
[    1.483412] thunderbolt 0000:04:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[    1.483415] thunderbolt 0000:04:00.0: starting RX ring 0
[    1.483420] thunderbolt 0000:04:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[    1.483425] thunderbolt 0000:04:00.0: security level set to user
[    1.483606] thunderbolt 0000:04:00.0: current switch config:
[    1.483608] thunderbolt 0000:04:00.0:  USB4 Switch: 8087:5781 (Revision: 132, TB Version: 64)
[    1.483611] thunderbolt 0000:04:00.0:   Max Port Number: 23
[    1.483613] thunderbolt 0000:04:00.0:   Config:
[    1.483614] thunderbolt 0000:04:00.0:    Upstream Port Number: 15 Depth: 0 Route String: 0x0 Enabled: 0, PlugEventsDelay: 10ms
[    1.483617] thunderbolt 0000:04:00.0:    unknown1: 0x0 unknown4: 0x0
[    1.486678] thunderbolt 0000:04:00.0: initializing Switch at 0x0 (depth: 0, up port: 15)
[    1.487814] thunderbolt 0000:04:00.0: 0: credit allocation parameters:
[    1.487817] thunderbolt 0000:04:00.0: 0:  USB3: 20
[    1.487819] thunderbolt 0000:04:00.0: 0:  DP AUX: 1
[    1.487820] thunderbolt 0000:04:00.0: 0:  DP main: 6
[    1.487822] thunderbolt 0000:04:00.0: 0:  PCIe: 80
[    1.487823] thunderbolt 0000:04:00.0: 0:  DMA: 40
[    1.489732] thunderbolt 0000:04:00.0: acking hot plug event on 0:13
[    1.489873] thunderbolt 0000:04:00.0: acking hot plug event on 0:14
[    1.490260] thunderbolt 0000:04:00.0: 0: DROM version: 3
[    1.490366] nvme nvme1: 24/0/0 default/read/poll queues
[    1.490901] thunderbolt 0000:04:00.0: 0: uid: 0xb188f3000000b48a
[    1.492182] thunderbolt 0000:04:00.0:  Port 1: 0:5780 (Revision: 0, TB Version: 1, Type: Port (0x1))
[    1.492187] thunderbolt 0000:04:00.0:   Max hop id (in/out): 31/31
[    1.492189] thunderbolt 0000:04:00.0:   Max counters: 4
[    1.492191] thunderbolt 0000:04:00.0:   NFC Credits: 0x8a000000
[    1.492193] thunderbolt 0000:04:00.0:   Credits (total/control): 160/2
[    1.493332] thunderbolt 0000:04:00.0:  Port 2: 0:5780 (Revision: 0, TB Version: 1, Type: Port (0x1))
[    1.493334] thunderbolt 0000:04:00.0:   Max hop id (in/out): 31/31
[    1.493336] thunderbolt 0000:04:00.0:   Max counters: 0
[    1.493337] thunderbolt 0000:04:00.0:   NFC Credits: 0x8a000000
[    1.493338] thunderbolt 0000:04:00.0:   Credits (total/control): 160/2
[    1.493629]  nvme1n1: p1 p2
[    1.494613] thunderbolt 0000:04:00.0:  Port 3: 0:5780 (Revision: 0, TB Version: 1, Type: Port (0x1))
[    1.494617] thunderbolt 0000:04:00.0:   Max hop id (in/out): 31/31
[    1.494619] thunderbolt 0000:04:00.0:   Max counters: 4
[    1.494620] thunderbolt 0000:04:00.0:   NFC Credits: 0x8a000000
[    1.494622] thunderbolt 0000:04:00.0:   Credits (total/control): 160/2
[    1.495763] thunderbolt 0000:04:00.0:  Port 4: 0:5780 (Revision: 0, TB Version: 1, Type: Port (0x1))
[    1.495766] thunderbolt 0000:04:00.0:   Max hop id (in/out): 31/31
[    1.495767] thunderbolt 0000:04:00.0:   Max counters: 0
[    1.495768] thunderbolt 0000:04:00.0:   NFC Credits: 0x8a000000
[    1.495770] thunderbolt 0000:04:00.0:   Credits (total/control): 160/2
[    1.497044] thunderbolt 0000:04:00.0:  Port 5: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[    1.497047] thunderbolt 0000:04:00.0:   Max hop id (in/out): 31/31
[    1.497049] thunderbolt 0000:04:00.0:   Max counters: 4
[    1.497050] thunderbolt 0000:04:00.0:   NFC Credits: 0x8a000000
[    1.497051] thunderbolt 0000:04:00.0:   Credits (total/control): 160/0
[    1.497814] thunderbolt 0000:04:00.0:  Port 6: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[    1.497816] thunderbolt 0000:04:00.0:   Max hop id (in/out): 31/31
[    1.497818] thunderbolt 0000:04:00.0:   Max counters: 0
[    1.497819] thunderbolt 0000:04:00.0:   NFC Credits: 0x8a000000
[    1.497820] thunderbolt 0000:04:00.0:   Credits (total/control): 160/0
[    1.499092] thunderbolt 0000:04:00.0:  Port 7: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[    1.499094] thunderbolt 0000:04:00.0:   Max hop id (in/out): 31/31
[    1.499096] thunderbolt 0000:04:00.0:   Max counters: 4
[    1.499097] thunderbolt 0000:04:00.0:   NFC Credits: 0x8a000000
[    1.499098] thunderbolt 0000:04:00.0:   Credits (total/control): 160/0
[    1.499859] thunderbolt 0000:04:00.0:  Port 8: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[    1.499862] thunderbolt 0000:04:00.0:   Max hop id (in/out): 31/31
[    1.499863] thunderbolt 0000:04:00.0:   Max counters: 0
[    1.499864] thunderbolt 0000:04:00.0:   NFC Credits: 0x8a000000
[    1.499866] thunderbolt 0000:04:00.0:   Credits (total/control): 160/0
[    1.500116] thunderbolt 0000:04:00.0:  Port 9: 0:5780 (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[    1.500119] thunderbolt 0000:04:00.0:   Max hop id (in/out): 8/8
[    1.500122] thunderbolt 0000:04:00.0:   Max counters: 2
[    1.500123] thunderbolt 0000:04:00.0:   NFC Credits: 0x40800000
[    1.500125] thunderbolt 0000:04:00.0:   Credits (total/control): 8/0
[    1.500371] thunderbolt 0000:04:00.0:  Port 10: 0:5780 (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[    1.500374] thunderbolt 0000:04:00.0:   Max hop id (in/out): 8/8
[    1.500375] thunderbolt 0000:04:00.0:   Max counters: 2
[    1.500376] thunderbolt 0000:04:00.0:   NFC Credits: 0x40800000
[    1.500378] thunderbolt 0000:04:00.0:   Credits (total/control): 8/0
[    1.500883] thunderbolt 0000:04:00.0:  Port 11: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0102))
[    1.500886] thunderbolt 0000:04:00.0:   Max hop id (in/out): 9/9
[    1.500887] thunderbolt 0000:04:00.0:   Max counters: 2
[    1.500888] thunderbolt 0000:04:00.0:   NFC Credits: 0x800000
[    1.500890] thunderbolt 0000:04:00.0:   Credits (total/control): 8/0
[    1.501395] thunderbolt 0000:04:00.0:  Port 12: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0102))
[    1.501398] thunderbolt 0000:04:00.0:   Max hop id (in/out): 9/9
[    1.501399] thunderbolt 0000:04:00.0:   Max counters: 2
[    1.501400] thunderbolt 0000:04:00.0:   NFC Credits: 0x800000
[    1.501401] thunderbolt 0000:04:00.0:   Credits (total/control): 8/0
[    1.501653] thunderbolt 0000:04:00.0:  Port 13: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[    1.501655] thunderbolt 0000:04:00.0:   Max hop id (in/out): 9/9
[    1.501657] thunderbolt 0000:04:00.0:   Max counters: 2
[    1.501658] thunderbolt 0000:04:00.0:   NFC Credits: 0x100000d
[    1.501659] thunderbolt 0000:04:00.0:   Credits (total/control): 16/0
[    1.501907] thunderbolt 0000:04:00.0:  Port 14: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[    1.501910] thunderbolt 0000:04:00.0:   Max hop id (in/out): 9/9
[    1.501911] thunderbolt 0000:04:00.0:   Max counters: 2
[    1.501912] thunderbolt 0000:04:00.0:   NFC Credits: 0x100000d
[    1.501914] thunderbolt 0000:04:00.0:   Credits (total/control): 16/0
[    1.502009] nvme nvme0: 16/0/0 default/read/poll queues
[    1.502677] thunderbolt 0000:04:00.0:  Port 15: 0:5780 (Revision: 0, TB Version: 1, Type: NHI (0x2))
[    1.502679] thunderbolt 0000:04:00.0:   Max hop id (in/out): 11/11
[    1.502681] thunderbolt 0000:04:00.0:   Max counters: 4
[    1.502682] thunderbolt 0000:04:00.0:   NFC Credits: 0x41c00000
[    1.502683] thunderbolt 0000:04:00.0:   Credits (total/control): 28/0
[    1.502685] thunderbolt 0000:04:00.0: 0:16: disabled by eeprom
[    1.502931] thunderbolt 0000:04:00.0:  Port 17: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[    1.502933] thunderbolt 0000:04:00.0:   Max hop id (in/out): 8/8
[    1.502935] thunderbolt 0000:04:00.0:   Max counters: 2
[    1.502936] thunderbolt 0000:04:00.0:   NFC Credits: 0x40800000
[    1.502937] thunderbolt 0000:04:00.0:   Credits (total/control): 8/0
[    1.503188] thunderbolt 0000:04:00.0:  Port 18: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[    1.503190] thunderbolt 0000:04:00.0:   Max hop id (in/out): 8/8
[    1.503192] thunderbolt 0000:04:00.0:   Max counters: 2
[    1.503193] thunderbolt 0000:04:00.0:   NFC Credits: 0x40800000
[    1.503194] thunderbolt 0000:04:00.0:   Credits (total/control): 8/0
[    1.503700] thunderbolt 0000:04:00.0:  Port 19: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0102))
[    1.503704] thunderbolt 0000:04:00.0:   Max hop id (in/out): 9/9
[    1.503706] thunderbolt 0000:04:00.0:   Max counters: 2
[    1.503707] thunderbolt 0000:04:00.0:   NFC Credits: 0x800000
[    1.503709] thunderbolt 0000:04:00.0:   Credits (total/control): 8/0
[    1.503955] thunderbolt 0000:04:00.0:  Port 20: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[    1.503958] thunderbolt 0000:04:00.0:   Max hop id (in/out): 8/8
[    1.503959] thunderbolt 0000:04:00.0:   Max counters: 1
[    1.503960] thunderbolt 0000:04:00.0:   NFC Credits: 0x800000
[    1.503962] thunderbolt 0000:04:00.0:   Credits (total/control): 8/0
[    1.504211] thunderbolt 0000:04:00.0:  Port 21: 0:5780 (Revision: 0, TB Version: 1, Type: USB (0x200101))
[    1.504214] thunderbolt 0000:04:00.0:   Max hop id (in/out): 8/8
[    1.504215] thunderbolt 0000:04:00.0:   Max counters: 1
[    1.504216] thunderbolt 0000:04:00.0:   NFC Credits: 0x800000
[    1.504218] thunderbolt 0000:04:00.0:   Credits (total/control): 8/0
[    1.504469] thunderbolt 0000:04:00.0:  Port 22: 0:5780 (Revision: 0, TB Version: 1, Type: USB (0x200101))
[    1.504471] thunderbolt 0000:04:00.0:   Max hop id (in/out): 8/8
[    1.504473] thunderbolt 0000:04:00.0:   Max counters: 1
[    1.504474] thunderbolt 0000:04:00.0:   NFC Credits: 0x800000
[    1.504476] thunderbolt 0000:04:00.0:   Credits (total/control): 8/0
[    1.505229] thunderbolt 0000:04:00.0:  Port 23: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[    1.505231] thunderbolt 0000:04:00.0:   Max hop id (in/out): 8/8
[    1.505233] thunderbolt 0000:04:00.0:   Max counters: 1
[    1.505234] thunderbolt 0000:04:00.0:   NFC Credits: 0x800000
[    1.505235] thunderbolt 0000:04:00.0:   Credits (total/control): 8/0
[    1.505237] thunderbolt 0000:04:00.0: 0: running quirk_usb3_maximum_bandwidth [thunderbolt]
[    1.505285] thunderbolt 0000:04:00.0: 0:21: USB3 maximum bandwidth limited to 16376 Mb/s
[    1.505287] thunderbolt 0000:04:00.0: 0:22: USB3 maximum bandwidth limited to 16376 Mb/s
[    1.505288] thunderbolt 0000:04:00.0: 0: running quirk_block_rpm_in_redrive [thunderbolt]
[    1.505314] thunderbolt 0000:04:00.0: 0: preventing runtime PM in DP redrive mode
[    1.505316] thunderbolt 0000:04:00.0: 0: linked ports 1 <-> 2
[    1.505318] thunderbolt 0000:04:00.0: 0: linked ports 3 <-> 4
[    1.506807]  nvme0n1: p1 p2 p3 p4 p5
[    1.513993] thunderbolt 0000:04:00.0: 0: TMU: supports uni-directional mode
[    1.513996] thunderbolt 0000:04:00.0: 0: TMU: supports enhanced uni-directional mode
[    1.514105] thunderbolt 0000:04:00.0: 0: TMU: current mode: off
[    1.518120] thunderbolt 0000:04:00.0: 0: NVM version 59.c2
[    1.518267] thunderbolt 0000:04:00.0: 0: TMU: mode change off -> uni-directional, LowRes requested
[    1.518700] thunderbolt 0000:04:00.0: 0: TMU: mode set to: uni-directional, LowRes
[    1.519644] thunderbolt 0000:04:00.0: 0:13: DP IN resource available
[    1.520294] thunderbolt 0000:04:00.0: 0:14: DP IN resource available
[    1.520470] input: CUST0001:00 04F3:31FD Mouse as /devices/pci0000:80/0000:80:15.0/i2c_designware.0/i2c-0/i2c-CUST0001:00/0018:04F3:31FD.0001/input/input7
[    1.520656] input: CUST0001:00 04F3:31FD Touchpad as /devices/pci0000:80/0000:80:15.0/i2c_designware.0/i2c-0/i2c-CUST0001:00/0018:04F3:31FD.0001/input/input9
[    1.520765] hid-multitouch 0018:04F3:31FD.0001: input,hidraw0: I2C HID v1.00 Mouse [CUST0001:00 04F3:31FD] on i2c-CUST0001:00
[    1.575860] usb 3-9: New USB device found, idVendor=1462, idProduct=1603, bcdDevice= 5.00
[    1.575866] usb 3-9: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.575868] usb 3-9: Product: MysticLight MS-1603
[    1.575869] usb 3-9: Manufacturer: MSI
[    1.575871] usb 3-9: SerialNumber: 122E65828000
[    1.689495] usb 3-14: new full-speed USB device number 5 using xhci_hcd
[    1.814648] usb 3-14: New USB device found, idVendor=8087, idProduct=0036, bcdDevice= 0.00
[    1.814654] usb 3-14: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.831579] input: Logitech USB Receiver as /devices/pci0000:80/0000:80:14.0/usb3/3-8/3-8:1.0/0003:046D:C548.0002/input/input10
[    1.882628] hid-generic 0003:046D:C548.0002: input,hidraw1: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:80:14.0-8/input0
[    1.884230] input: Logitech USB Receiver Mouse as /devices/pci0000:80/0000:80:14.0/usb3/3-8/3-8:1.1/0003:046D:C548.0003/input/input11
[    1.884321] input: Logitech USB Receiver Consumer Control as /devices/pci0000:80/0000:80:14.0/usb3/3-8/3-8:1.1/0003:046D:C548.0003/input/input12
[    1.934605] input: Logitech USB Receiver System Control as /devices/pci0000:80/0000:80:14.0/usb3/3-8/3-8:1.1/0003:046D:C548.0003/input/input13
[    1.934652] input: Logitech USB Receiver as /devices/pci0000:80/0000:80:14.0/usb3/3-8/3-8:1.1/0003:046D:C548.0003/input/input14
[    1.934976] hid-generic 0003:046D:C548.0003: input,hiddev0,hidraw2: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:80:14.0-8/input1
[    1.936320] hid-generic 0003:046D:C548.0004: hiddev1,hidraw3: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:80:14.0-8/input2
[    1.939923] input: Logitech USB Receiver as /devices/pci0000:80/0000:80:14.0/usb3/3-8/3-8:1.3/0003:046D:C548.0005/input/input15
[    1.940333] hid-multitouch 0003:046D:C548.0005: input,hidraw4: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:80:14.0-8/input3
[    1.941713] hid-generic 0003:1462:1603.0006: hiddev2,hidraw5: USB HID v1.11 Device [MSI MysticLight MS-1603] on usb-0000:80:14.0-9/input0
[    1.941745] usbcore: registered new interface driver usbhid
[    1.941746] usbhid: USB HID core driver
[    2.060308] EXT4-fs (nvme1n1p2): orphan cleanup on readonly fs
[    2.060680] EXT4-fs (nvme1n1p2): mounted filesystem a394007c-bf47-4ea2-84e4-fb8dafac91d7 ro with ordered data mode. Quota mode: none.
[    2.385171] systemd-journald[327]: Received SIGTERM from PID 1 (systemd).
[    2.746856] systemd[1]: systemd 259.5-0ubuntu3 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +IPE +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF -XKBCOMMON -UTMP +SYSVINIT +LIBARCHIVE)
[    2.746865] systemd[1]: Detected architecture x86-64.
[    2.792111] systemd[1]: bpf-restrict-fs: BPF LSM hook not enabled in the kernel, BPF LSM not supported.
[    2.808668] systemd-sysv-generator[811]: SysV service '/etc/init.d/oracle-free-23c' lacks a native systemd unit file, automatically generating a unit file for compatibility.
[    2.808675] systemd-sysv-generator[811]: Please update package to include a native systemd unit file.
[    2.808678] systemd-sysv-generator[811]: ! This compatibility logic is deprecated, expect removal soon. !
[    2.871064] systemd[1]: Configuration file /etc/systemd/system/runawesun.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    2.888714] systemd[1]: /usr/lib/systemd/system/xfs_scrub_all.service:26: Support for option CPUAccounting= has been removed and it is ignored
[    2.889019] systemd[1]: /usr/lib/systemd/system/system-xfs_scrub.slice:15: Support for option CPUAccounting= has been removed and it is ignored
[    2.967505] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[    2.967583] systemd[1]: Stopped initrd-switch-root.service - Switch Root.
[    2.968226] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[    2.968406] systemd[1]: Created slice machine.slice - Virtual Machine and Container Slice.
[    2.968703] systemd[1]: Created slice system-cups.slice - CUPS Slice.
[    2.968928] systemd[1]: Created slice system-postgresql.slice - Slice /system/postgresql.
[    2.969143] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[    2.971376] systemd[1]: Created slice system-xfs_scrub.slice - xfs_scrub background service slice.
[    2.971622] systemd[1]: Created slice user.slice - User and Session Slice.
[    2.971648] systemd[1]: systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch skipped, unmet condition check ConditionPathExists=!/run/plymouth/pid
[    2.971683] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[    2.971843] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[    2.971864] systemd[1]: Expecting device dev-disk-by\x2duuid-35A2\x2d8A06.device - /dev/disk/by-uuid/35A2-8A06...
[    2.971882] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[    2.971906] systemd[1]: Reached target imports.target - Image Downloads.
[    2.971923] systemd[1]: Stopped target initrd-switch-root.target - Switch Root.
[    2.971940] systemd[1]: Stopped target initrd-fs.target - Initrd File Systems.
[    2.971954] systemd[1]: Stopped target initrd-root-fs.target - Initrd Root File System.
[    2.971969] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[    2.972006] systemd[1]: Reached target slices.target - Slice Units.
[    2.972024] systemd[1]: Reached target snapd.mounts-pre.target - Mounting snaps.
[    2.972049] systemd[1]: Reached target time-set.target - System Time Set.
[    2.972086] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[    2.972105] systemd[1]: Reached target virt-guest-shutdown.target - libvirt guests shutdown target.
[    2.972163] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[    2.972223] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[    2.972284] systemd[1]: Listening on syslog.socket - Syslog Socket.
[    2.972900] systemd[1]: Listening on systemd-ask-password.socket - Query the User Interactively for a Password.
[    2.973334] systemd[1]: Listening on systemd-creds.socket - Credential Encryption/Decryption.
[    2.973909] systemd[1]: Listening on systemd-factory-reset.socket - Factory Reset Management.
[    2.974499] systemd[1]: Listening on systemd-mute-console.socket - Console Output Muting Service Socket.
[    2.974570] systemd[1]: Listening on systemd-oomd.socket - Userspace Out-Of-Memory (OOM) Killer Socket.
[    2.974601] systemd[1]: systemd-pcrextend.socket - TPM PCR Measurements skipped, unmet condition check ConditionSecurity=measured-uki
[    2.974613] systemd[1]: systemd-pcrlock.socket - Make TPM PCR Policy skipped, unmet condition check ConditionSecurity=measured-uki
[    2.974647] systemd[1]: Listening on systemd-resolved-monitor.socket - Resolve Monitor Varlink Socket.
[    2.974687] systemd[1]: Listening on systemd-resolved-varlink.socket - Resolve Service Varlink Socket.
[    2.974728] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[    2.974769] systemd[1]: Listening on systemd-udevd-varlink.socket - udev Varlink Socket.
[    2.976442] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[    2.977098] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[    2.978502] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[    2.978909] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[    2.979852] systemd[1]: Starting systemd-journald.service - Journal Service...
[    2.980997] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[    2.982063] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[    2.982736] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[    2.982764] systemd[1]: modprobe@configfs.service - Load Kernel Module configfs skipped, unmet condition check ConditionKernelModuleLoaded=!configfs
[    2.982785] systemd[1]: modprobe@drm.service - Load Kernel Module drm skipped, unmet condition check ConditionKernelModuleLoaded=!drm
[    2.984207] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[    2.984241] systemd[1]: modprobe@fuse.service - Load Kernel Module fuse skipped, unmet condition check ConditionKernelModuleLoaded=!fuse
[    2.984977] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[    2.985037] systemd[1]: plymouth-switch-root.service: Deactivated successfully.
[    2.985056] systemd[1]: Stopped plymouth-switch-root.service - Plymouth switch root service.
[    2.985189] systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info skipped, unmet condition check ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67
[    2.986177] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[    2.986203] systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement skipped, unmet condition check ConditionSecurity=measured-uki
[    2.986224] systemd[1]: systemd-pcrproduct.service - TPM NvPCR Product ID Measurement skipped, unmet condition check ConditionSecurity=measured-uki
[    2.986718] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[    2.986754] systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
[    2.988757] systemd[1]: Starting systemd-udev-load-credentials.service - Load udev Rules from Credentials...
[    2.989541] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[    2.990721] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[    2.990786] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[    2.990836] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[    2.990882] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[    2.991113] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[    2.991318] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[    2.991393] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[    2.992116] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[    2.996500] pstore: Using crash dump compression: deflate
[    2.997935] systemd-journald[831]: Collecting audit messages is disabled.
[    2.998370] systemd[1]: Finished systemd-udev-load-credentials.service - Load udev Rules from Credentials.
[    2.999014] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[    3.000693] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[    3.001539] systemd[1]: Started systemd-journald.service - Journal Service.
[    3.005430] EXT4-fs (nvme1n1p2): re-mounted a394007c-bf47-4ea2-84e4-fb8dafac91d7 r/w.
[    3.007155] pstore: Registered efi_pstore as persistent store backend
[    3.017762] Adding 8388604k swap on /swap.img.  Priority:-1 extents:5 across:8912892k SS
[    3.020008] Adding 33554428k swap on /swapfile.  Priority:-1 extents:38 across:1909481472k SS
[    3.020324] systemd-journald[831]: Received client request to flush runtime journal.
[    3.282895] intel_vsec 0000:00:0a.0: enabling device (0000 -> 0002)
[    3.288835] input: Intel HID events as /devices/platform/INTC10CB:00/input/input16
[    3.288943] intel_pmc_ssram_telemetry 0000:00:14.0: enabling device (0000 -> 0002)
[    3.304627] intel_vpu 0000:00:0b.0: enabling device (0000 -> 0002)
[    3.319911] intel_vpu 0000:00:0b.0: [drm] Firmware: intel/vpu/vpu_37xx_v1.bin, version: 20260219*MTL_CLIENT_SILICON-NVR+NN-deployment*f693e2c0dc3ce525f34822f263cc12192ff0722f*f693e2c0dc3ce525f34822f263cc12192ff0722f*f693e2c0dc3
[    3.319920] intel_vpu 0000:00:0b.0: [drm] Scheduler mode: HW
[    3.361982] proc_thermal_pci 0000:00:04.0: enabling device (0000 -> 0002)
[    3.363346] intel_rapl_common: Found RAPL domain package
[    3.388973] pci 0000:00:08.0: Setting to D3hot
[    3.400717] intel_pmc_core INT33A1:00:  initialized
[    3.408585] nvidia: loading out-of-tree module taints kernel.
[    3.410575] intel-spi 0000:80:1f.5: enabling device (0400 -> 0402)
[    3.412370] input: MSI WMI hotkeys as /devices/virtual/input/input17
[    3.451855] intel-hid INTC10CB:00: platform supports 5 button array
[    3.451922] input: Intel HID 5 button array as /devices/platform/INTC10CB:00/input/input18
[    3.558508] [drm] Initialized intel_vpu 1.0.0 for 0000:00:0b.0 on minor 0
[    3.706215] i915 0000:00:02.0: [drm] Found meteorlake (device ID 7d67) integrated display version 14.00 stepping D0
[    3.708453] i915 0000:00:02.0: [drm] VT-d active for gfx access
[    3.756822] input: gpio-keys as /devices/platform/ACPI0011:00/gpio-keys.1.auto/input/input19
[    3.757043] nvidia-nvlink: Nvlink Core is being initialized, major device number 509

[    3.762718] nvidia 0000:01:00.0: enabling device (0006 -> 0007)
[    3.763023] nvidia 0000:01:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=none
[    3.772537] NVRM: loading NVIDIA UNIX Open Kernel Module for x86_64  595.71.05  Release Build  (dvs-builder@U22-I3-G08-03-1)  Fri Apr 24 06:42:30 UTC 2026
[    3.783711] Bluetooth: Core ver 2.22
[    3.783745] NET: Registered PF_BLUETOOTH protocol family
[    3.783747] Bluetooth: HCI device and connection manager initialized
[    3.783758] Bluetooth: HCI socket layer initialized
[    3.783762] Bluetooth: L2CAP socket layer initialized
[    3.783766] Bluetooth: SCO socket layer initialized
[    3.784133] mc: Linux media interface: v0.10
[    3.784809] r8169 0000:b4:00.0: can't disable ASPM; OS doesn't have ASPM control
[    3.785006] intel_rapl_common: Found RAPL domain package
[    3.785011] intel_rapl_common: Found RAPL domain core
[    3.785013] intel_rapl_common: Found RAPL domain uncore
[    3.785015] intel_rapl_common: Found RAPL domain psys
[    3.792490] msi_ec: Firmware version is not supported: '15M3EMS1.113'
[    3.792619] r8169 0000:b4:00.0 eth0: RTL8125B, 34:5a:60:92:a4:3e, XID 641, IRQ 212
[    3.792627] r8169 0000:b4:00.0 eth0: jumbo features [frames: 16362 bytes, tx checksumming: ko]
[    3.809165] i915 0000:00:02.0: vgaarb: deactivate vga console
[    3.809222] i915 0000:00:02.0: [drm] Using Transparent Hugepages
[    3.811046] r8169 0000:b4:00.0 enp180s0: renamed from eth0
[    3.822567] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=io+mem
[    3.829927] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/mtl_dmc.bin (v2.23)
[    3.832460] spi-nor spi0.0: supply vcc not found, using dummy regulator
[    3.832791] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    3.832837] i801_smbus 0000:80:1f.4: SPD Write Disable is set
[    3.832893] i801_smbus 0000:80:1f.4: SMBus using PCI interrupt
[    3.833164] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    3.833327] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[    3.833653] videodev: Linux video capture interface: v2.00
[    3.840502] nvidia-modeset: Loading NVIDIA UNIX Open Kernel Mode Setting Driver for x86_64  595.71.05  Release Build  (dvs-builder@U22-I3-G08-03-1)  Fri Apr 24 06:28:59 UTC 2026
[    3.863443] i915 0000:00:02.0: [drm] GT0: GuC firmware i915/mtl_guc_70.bin version 70.53.0
[    3.864116] Creating 1 MTD partitions on "0000:80:1f.5":
[    3.864123] 0x000000000000-0x000002000000 : "BIOS"
[    3.897696] i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
[    3.897709] i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
[    3.897991] i915 0000:00:02.0: [drm] GT0: GUC: RC enabled
[    3.899281] [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
[    3.899422] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[    3.899427] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    3.899430] RAPL PMU: hw unit of domain package 2^-14 Joules
[    3.899431] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[    3.899432] RAPL PMU: hw unit of domain psys 2^-14 Joules
[    3.901104] iwlwifi 0000:b5:00.0: enabling device (0000 -> 0002)
[    3.904826] usbcore: registered new interface driver btusb
[    3.907704] Bluetooth: hci0: Firmware timestamp 2026.8 buildtype 1 build 105597
[    3.907712] Bluetooth: hci0: Firmware SHA1: 0x08f159a0
[    3.907719] Bluetooth: hci0: DSM reset method type: 0x01
[    3.907758] iwlwifi 0000:b5:00.0: Detected crf-id 0x2001910, cnv-id 0x2001910 wfpm id 0x80000000
[    3.907830] iwlwifi 0000:b5:00.0: PCI dev 272b/1774, rev=0x472, rfid=0x112200
[    3.907834] iwlwifi 0000:b5:00.0: Detected Killer(TM) Wi-Fi 7 BE1750x 320MHz Wireless Network Adapter (BE200NGW)
[    3.912476] mei_gsc_proxy 0000:80:16.0-0f73db04-97ab-4125-b893-e904ad0d5464: bound 0000:00:02.0 (ops i915_gsc_proxy_component_ops [i915])
[    3.912996] i915 0000:00:02.0: [drm] GT1: GuC firmware i915/mtl_guc_70.bin version 70.53.0
[    3.913001] i915 0000:00:02.0: [drm] GT1: HuC firmware i915/mtl_huc_gsc.bin version 8.5.4
[    3.913962] Bluetooth: hci0: Found device firmware: intel/ibt-0291-0291.sfi
[    3.913985] Bluetooth: hci0: Boot Address: 0x100800
[    3.913988] Bluetooth: hci0: Firmware Version: 125-8.26
[    3.913990] Bluetooth: hci0: Firmware already loaded
[    3.916260] iwlwifi 0000:b5:00.0: loaded firmware version 101.6e695a70.0 gl-c0-fm-c0-c101.ucode op_mode iwlmld
[    3.917933] Bluetooth: hci0: Fseq status: Success (0x00)
[    3.917939] Bluetooth: hci0: Fseq executed: 00.00.04.202
[    3.917941] Bluetooth: hci0: Fseq BT Top: 00.00.04.202
[    3.922075] uvcvideo 3-4:1.0: Found UVC 1.10 device FHD Camera (5986:1193)
[    3.925508] uvcvideo 3-4:1.2: Found UVC 1.50 device FHD Camera (5986:1193)
[    3.926985] usbcore: registered new interface driver uvcvideo
[    3.977132] loop0: detected capacity change from 0 to 8
[    3.978421] loop1: detected capacity change from 0 to 373912
[    3.978831] loop2: detected capacity change from 0 to 215440
[    3.979667] loop3: detected capacity change from 0 to 378920
[    3.980706] loop4: detected capacity change from 0 to 151512
[    3.981371] loop5: detected capacity change from 0 to 136904
[    3.985142] loop6: detected capacity change from 0 to 136816
[    3.985516] loop7: detected capacity change from 0 to 98104
[    3.987687] loop11: detected capacity change from 0 to 517392
[    3.987691] loop10: detected capacity change from 0 to 40880
[    4.002493] i915 0000:00:02.0: [drm] GT1: HuC: authenticated for clear media
[    4.004021] i915 0000:00:02.0: [drm] GT1: GUC: submission enabled
[    4.004026] i915 0000:00:02.0: [drm] GT1: GUC: SLPC enabled
[    4.004158] i915 0000:00:02.0: [drm] GT1: GUC: RC enabled
[    4.011126] i915 0000:00:02.0: [drm] Protected Xe Path (PXP) protected content support initialized
[    4.020368] snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
[    4.020562] snd_hda_intel 0000:01:00.1: Disabling MSI
[    4.020573] snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
[    4.020659] snd_hda_intel 0000:80:1f.3: Digital mics found on Skylake+ platform, using SOF driver
[    4.053333] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:06.0/0000:01:00.1/sound/card0/input20
[    4.053392] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:06.0/0000:01:00.1/sound/card0/input21
[    4.053440] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:06.0/0000:01:00.1/sound/card0/input22
[    4.053529] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:06.0/0000:01:00.1/sound/card0/input23
[    4.134717] sof-audio-pci-intel-mtl 0000:80:1f.3: enabling device (0000 -> 0002)
[    4.134943] sof-audio-pci-intel-mtl 0000:80:1f.3: DSP detected with PCI class/subclass/prog-if 0x040100
[    4.135159] audit: type=1400 audit(1783260335.952:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="1password" pid=1728 comm="apparmor_parser"
[    4.135190] audit: type=1400 audit(1783260335.952:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="Discord" pid=1729 comm="apparmor_parser"
[    4.135225] audit: type=1400 audit(1783260335.952:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name=4D6F6E676F444220436F6D70617373 pid=1730 comm="apparmor_parser"
[    4.135667] audit: type=1400 audit(1783260335.952:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="brave" pid=1738 comm="apparmor_parser"
[    4.135674] audit: type=1400 audit(1783260335.952:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="balena-etcher" pid=1735 comm="apparmor_parser"
[    4.135677] audit: type=1400 audit(1783260335.952:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="buildah" pid=1740 comm="apparmor_parser"
[    4.135679] audit: type=1400 audit(1783260335.952:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="QtWebEngineProcess" pid=1731 comm="apparmor_parser"
[    4.135682] audit: type=1400 audit(1783260335.952:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="cam" pid=1742 comm="apparmor_parser"
[    4.135683] audit: type=1400 audit(1783260335.952:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-checkns" pid=1743 comm="apparmor_parser"
[    4.157656] i915 0000:00:02.0: [drm] GT1: Loaded GSC firmware i915/mtl_gsc_1.bin (cv1.0, r102.1.15.1926, svn 1)
[    4.178088] i915 0000:00:02.0: [drm] GT1: HuC: authenticated for all workloads
[    4.273578] i915 0000:00:02.0: [drm] PHY A failed to request refclk
[    4.356020] iwlwifi 0000:b5:00.0: Detected RF FM, rfid=0x112200
[    4.470535] iwlwifi 0000:b5:00.0: base HW address: 44:38:e8:f6:0e:dc
[    4.566004] iwlwifi 0000:b5:00.0 wlp181s0f0: renamed from wlan0
[    4.633529] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    4.633533] Bluetooth: BNEP filters: protocol multicast
[    4.633538] Bluetooth: BNEP socket layer initialized
[    4.635710] Bluetooth: MGMT ver 1.23
[    4.644793] NET: Registered PF_ALG protocol family
[    4.694078] nvme nvme0: using unchecked data buffer
[    4.718220] block nvme1n1: No UUID available providing old NGUID
[    4.739576] NET: Registered PF_QIPCRTR protocol family
[    4.861462] Realtek Internal NBASE-T PHY r8169-0-b400:00: attached PHY driver (mii_bus:phy_addr=r8169-0-b400:00, irq=MAC)
[    5.031639] r8169 0000:b4:00.0 enp180s0: Link is Down
[    5.058648] NVRM: GPU0 nvAssertOkFailedNoLog: Assertion failed: Invalid data passed [NV_ERR_INVALID_DATA] (0x00000025) returned from PlatformRequestHandler failed to get target temp from SBIOS @ platform_request_handler_ctrl.c:2171
[    5.058660] NVRM: GPU0 nvAssertOkFailedNoLog: Assertion failed: Invalid data passed [NV_ERR_INVALID_DATA] (0x00000025) returned from PlatformRequestHandler failed to get platform power mode from SBIOS @ platform_request_handler_ctrl.c:2114
[    5.060130] i915 0000:00:02.0: [drm] Registered 4 planes with drm panic
[    5.060136] [drm] Initialized i915 1.6.0 for 0000:00:02.0 on minor 1
[    5.060535] ACPI: video: Video Device [PXSX] (multi-head: no  rom: yes  post: no)
[    5.060607] input: Video Bus as /devices/pci0000:00/0000:00:06.0/acpi.video_bus.0/input/input24
[    5.063220] ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    5.063538] input: Video Bus as /devices/pci0000:00/acpi.video_bus.1/input/input25
[    5.063794] sof-audio-pci-intel-mtl 0000:80:1f.3: bound 0000:00:02.0 (ops intel_audio_component_bind_ops [i915])
[    5.070392] fbcon: i915drmfb (fb0) is primary device
[    5.070395] fbcon: Deferring console take-over
[    5.070398] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[    5.071251] ACPI BIOS Error (bug): Could not resolve symbol [\_TZ.ETMD], AE_NOT_FOUND (20251212/psargs-332)

[    5.071269] No Local Variables are initialized for Method [_OSC]

[    5.071272] Initialized Arguments for Method [_OSC]:  (4 arguments defined for method invocation)
[    5.071274]   Arg0:   00000000159666f2 <Obj>           Buffer(16) 5D A8 3B B2 B7 C8 42 35
[    5.071287]   Arg1:   000000005038fa25 <Obj>           Integer 0000000000000001
[    5.071292]   Arg2:   00000000831eafcc <Obj>           Integer 0000000000000002
[    5.071297]   Arg3:   00000000e57a9499 <Obj>           Buffer(8) 00 00 00 00 05 00 00 00

[    5.071310] ACPI Error: Aborting method \_SB.IETM._OSC due to previous error (AE_NOT_FOUND) (20251212/psparse-529)
[    5.071422] sof-audio-pci-intel-mtl 0000:80:1f.3: use msi interrupt mode
[    5.071424] Consider using thermal netlink events interface
[    5.117956] sof-audio-pci-intel-mtl 0000:80:1f.3: hda codecs found, mask 5
[    5.117967] sof-audio-pci-intel-mtl 0000:80:1f.3: using HDA machine driver skl_hda_dsp_generic now
[    5.117970] sof-audio-pci-intel-mtl 0000:80:1f.3: NHLT device BT(0) detected, ssp_mask 0x4
[    5.117972] sof-audio-pci-intel-mtl 0000:80:1f.3: BT link detected in NHLT tables: 0x4
[    5.117974] sof-audio-pci-intel-mtl 0000:80:1f.3: DMICs detected in NHLT tables: 2
[    5.120962] sof-audio-pci-intel-mtl 0000:80:1f.3: Firmware paths/files for ipc type 1:
[    5.120965] sof-audio-pci-intel-mtl 0000:80:1f.3:  Firmware file:     intel/sof-ipc4/arl-s/sof-arl-s.ri
[    5.120966] sof-audio-pci-intel-mtl 0000:80:1f.3:  Firmware lib path: intel/sof-ipc4-lib/arl-s
[    5.120968] sof-audio-pci-intel-mtl 0000:80:1f.3:  Topology file:     intel/sof-ipc4-tplg/sof-hda-generic-2ch.tplg
[    5.121687] sof-audio-pci-intel-mtl 0000:80:1f.3: Loaded firmware library: ADSPFW, version: 2.14.1.1
[    5.438788] sof-audio-pci-intel-mtl 0000:80:1f.3: Booted firmware version: 2.14.1.1
[    5.452746] sof-audio-pci-intel-mtl 0000:80:1f.3: loading topology: intel/sof-ipc4-tplg/sof-hda-generic-2ch.tplg
[    5.452802] sof-audio-pci-intel-mtl 0000:80:1f.3: Topology: ABI 3:29:1 Kernel ABI 3:23:1
[    5.453158] skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: Parent card not yet available, widget card binding deferred
[    5.476612] snd_hda_codec_alc269 ehdaudio0D0: autoconfig for ALC274: line_outs=1 (0x17/0x0/0x0/0x0/0x0) type:speaker
[    5.476618] snd_hda_codec_alc269 ehdaudio0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    5.476621] snd_hda_codec_alc269 ehdaudio0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[    5.476623] snd_hda_codec_alc269 ehdaudio0D0:    mono: mono_out=0x0
[    5.476624] snd_hda_codec_alc269 ehdaudio0D0:    inputs:
[    5.476626] snd_hda_codec_alc269 ehdaudio0D0:      Mic=0x19
[    5.485935] [drm] Initialized nvidia-drm 0.0.0 for 0000:01:00.0 on minor 0
[    5.487330] nvidia 0000:01:00.0: [drm] Cannot find any crtc or sizes
[    5.514668] kauditd_printk_skb: 282 callbacks suppressed
[    5.514673] audit: type=1400 audit(1783260337.333:293): apparmor="DENIED" operation="open" class="file" profile="/usr/sbin/cupsd" name="/etc/paperspecs" pid=2514 comm="cupsd" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
[    5.527233] audit: type=1400 audit(1783260337.345:294): apparmor="DENIED" operation="capable" class="cap" profile="/usr/sbin/cupsd" pid=2514 comm="cupsd" capability=12  capname="net_admin"
[    5.538798] /proc/cgroups lists only v1 controllers, use cgroup.controllers of root cgroup for v2 info
[    5.929606] skl_hda_dsp_generic skl_hda_dsp_generic: hda_dsp_hdmi_build_controls: no PCM in topology for HDMI converter 3
[    5.951907] input: sof-hda-dsp Mic as /devices/pci0000:80/0000:80:1f.3/skl_hda_dsp_generic/sound/card1/input26
[    5.951972] input: sof-hda-dsp Headphone as /devices/pci0000:80/0000:80:1f.3/skl_hda_dsp_generic/sound/card1/input27
[    5.952027] input: sof-hda-dsp HDMI/DP,pcm=3 as /devices/pci0000:80/0000:80:1f.3/skl_hda_dsp_generic/sound/card1/input28
[    5.952087] input: sof-hda-dsp HDMI/DP,pcm=4 as /devices/pci0000:80/0000:80:1f.3/skl_hda_dsp_generic/sound/card1/input29
[    5.952131] input: sof-hda-dsp HDMI/DP,pcm=5 as /devices/pci0000:80/0000:80:1f.3/skl_hda_dsp_generic/sound/card1/input30
[    7.916835] audit: type=1326 audit(1783260339.734:295): auid=4294967295 uid=0 gid=0 ses=4294967295 subj=snap.cups.cupsd pid=3286 comm="cupsd" exe="/snap/cups/1206/sbin/cupsd" sig=0 arch=c000003e syscall=93 compat=0 ip=0x7cd3e8790b1b code=0x50000
[    8.933384] audit: type=1326 audit(1783260340.751:296): auid=4294967295 uid=0 gid=0 ses=4294967295 subj=snap.cups.cupsd pid=3287 comm="cups-proxyd" exe="/snap/cups/1206/sbin/cups-proxyd" sig=0 arch=c000003e syscall=314 compat=0 ip=0x76fc659d490d code=0x50000
[    9.858943] wlp181s0f0: regulatory prevented using AP config, downgraded
[    9.929666] wlp181s0f0: authenticate with 80:ae:54:b8:0c:fa (local address=44:38:e8:f6:0e:dc)
[    9.932293] wlp181s0f0: send auth to 80:ae:54:b8:0c:fa (try 1/3)
[    9.935466] wlp181s0f0: authenticated
[    9.936520] wlp181s0f0: associate with 80:ae:54:b8:0c:fa (try 1/3)
[    9.942800] wlp181s0f0: RX AssocResp from 80:ae:54:b8:0c:fa (capab=0x1911 status=0 aid=6)
[    9.949970] wlp181s0f0: associated
[    9.950505] wlp181s0f0: Limiting TX power to 35 (35 - 0) dBm as advertised by 80:ae:54:b8:0c:fa
[   11.134082] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   11.368547] r8169 0000:b4:00.0: invalid VPD tag 0xff (size 0) at offset 0; assume missing optional EEPROM
[   11.486383] audit: type=1400 audit(1783260343.305:297): apparmor="DENIED" operation="capable" class="cap" profile="fusermount3" pid=3811 comm="fusermount3" capability=1  capname="dac_override"
[   11.486392] audit: type=1400 audit(1783260343.305:298): apparmor="DENIED" operation="capable" class="cap" profile="fusermount3" pid=3811 comm="fusermount3" capability=7  capname="setuid"
[   11.486487] audit: type=1400 audit(1783260343.305:299): apparmor="DENIED" operation="capable" class="cap" profile="fusermount3" pid=3812 comm="fusermount3" capability=7  capname="setuid"
[   11.646460] audit: type=1400 audit(1783260343.465:300): apparmor="DENIED" operation="capable" class="cap" profile="fusermount3" pid=3933 comm="fusermount3" capability=1  capname="dac_override"
[   11.646469] audit: type=1400 audit(1783260343.465:301): apparmor="DENIED" operation="capable" class="cap" profile="fusermount3" pid=3933 comm="fusermount3" capability=7  capname="setuid"
[   11.646603] audit: type=1400 audit(1783260343.465:302): apparmor="DENIED" operation="capable" class="cap" profile="fusermount3" pid=3934 comm="fusermount3" capability=7  capname="setuid"
[   11.840631] audit: type=1400 audit(1783260343.659:303): apparmor="DENIED" operation="open" class="file" profile="snap-update-ns.snapd-desktop-integration" name="/run/gdm3/home/gdm-greeter/" pid=3991 comm="snap-update-ns" requested_mask="r" denied_mask="r" fsuid=60578 ouid=60578
[   11.842525] audit: type=1400 audit(1783260343.661:304): apparmor="DENIED" operation="open" class="file" profile="/snap/snapd/27406/usr/lib/snapd/snap-confine" name="/run/gdm3/" pid=3827 comm="snap-confine" requested_mask="r" denied_mask="r" fsuid=60578 ouid=0
[   12.305391] Bluetooth: RFCOMM TTY layer initialized
[   12.305403] Bluetooth: RFCOMM socket layer initialized
[   12.305408] Bluetooth: RFCOMM ver 1.11
[   13.107416] rfkill: input handler disabled
[   18.623500] wlp181s0f0: deauthenticating from 80:ae:54:b8:0c:fa by local choice (Reason: 3=DEAUTH_LEAVING)
[   18.928555] rfkill: input handler enabled
[   19.626166] PM: suspend entry (deep)
[   19.633004] Filesystems sync: 0.006 seconds
[   19.666409] Freezing user space processes
[   19.668196] Freezing user space processes completed (elapsed 0.001 seconds)
[   19.668199] OOM killer disabled.
[   19.668200] Freezing remaining freezable tasks
[   19.671361] Freezing remaining freezable tasks completed (elapsed 0.002 seconds)
[   19.671475] printk: Suspending console(s) (use no_console_suspend to debug)
[   20.262624] ACPI: EC: interrupt blocked
[   20.300151] thunderbolt 0000:04:00.0: suspending...
[   20.300158] thunderbolt 0000:04:00.0: 0: suspending switch
[   20.300161] thunderbolt 0000:04:00.0: 0: enabling wakeup: 0x1f
[   20.301431] thunderbolt 0000:04:00.0: suspend finished
[   20.301435] thunderbolt 0000:04:00.0: stopping RX ring 0
[   20.301460] thunderbolt 0000:04:00.0: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
[   20.301477] thunderbolt 0000:04:00.0: stopping TX ring 0
[   20.301481] thunderbolt 0000:04:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[   20.301489] thunderbolt 0000:04:00.0: control channel stopped
[   20.332199] ACPI: PM: Preparing to enter system sleep state S3
[   20.340112] ACPI: EC: event blocked
[   20.340113] ACPI: EC: EC stopped
[   20.340114] ACPI: PM: Saving platform NVS memory
[   20.340306] Disabling non-boot CPUs ...
[   20.343424] smpboot: CPU 23 is now offline
[   20.347037] smpboot: CPU 22 is now offline
[   20.352477] smpboot: CPU 21 is now offline
[   20.356020] smpboot: CPU 20 is now offline
[   20.360616] smpboot: CPU 19 is now offline
[   20.363322] smpboot: CPU 18 is now offline
[   20.366481] smpboot: CPU 17 is now offline
[   20.369459] smpboot: CPU 16 is now offline
[   20.372318] smpboot: CPU 15 is now offline
[   20.375433] smpboot: CPU 14 is now offline
[   20.378311] smpboot: CPU 13 is now offline
[   20.381086] smpboot: CPU 12 is now offline
[   20.383908] smpboot: CPU 11 is now offline
[   20.386580] smpboot: CPU 10 is now offline
[   20.389385] smpboot: CPU 9 is now offline
[   20.392181] smpboot: CPU 8 is now offline
[   20.395067] smpboot: CPU 7 is now offline
[   20.397496] smpboot: CPU 6 is now offline
[   20.399939] smpboot: CPU 5 is now offline
[   20.402355] smpboot: CPU 4 is now offline
[   20.404888] smpboot: CPU 3 is now offline
[   20.407231] smpboot: CPU 2 is now offline
[   20.409867] smpboot: CPU 1 is now offline
[   20.420726] ACPI: PM: Low-level resume complete
[   20.420821] ACPI: EC: EC started
[   20.420822] ACPI: PM: Restoring platform NVS memory
[   20.422998] Enabling non-boot CPUs ...
[   20.423245] smpboot: Booting Node 0 Processor 1 APIC 0x8
[   20.428529] CPU1 is up
[   20.428865] smpboot: Booting Node 0 Processor 2 APIC 0x20
[   20.435149] CPU2 is up
[   20.435408] smpboot: Booting Node 0 Processor 3 APIC 0x28
[   20.441873] CPU3 is up
[   20.442166] smpboot: Booting Node 0 Processor 4 APIC 0x30
[   20.448502] CPU4 is up
[   20.448812] smpboot: Booting Node 0 Processor 5 APIC 0x38
[   20.455260] CPU5 is up
[   20.455594] smpboot: Booting Node 0 Processor 6 APIC 0x50
[   20.461861] CPU6 is up
[   20.462186] smpboot: Booting Node 0 Processor 7 APIC 0x58
[   20.468445] CPU7 is up
[   20.468778] smpboot: Booting Node 0 Processor 8 APIC 0x10
[   20.475833] core: The event 0x5d0 is not supported as an auto-counter reload event.
[   20.475842] core: cpu_atom PMU driver: 
[   20.475844] ... version:                   6
[   20.475845] ... bit width:                 48
[   20.475846] ... generic counters:          8
[   20.475846] ... generic bitmap:            00000000000000ff
[   20.475847] ... fixed-purpose counters:    6
[   20.475847] ... fixed-purpose bitmap:      0000000000000077
[   20.475848] ... value mask:                0000ffffffffffff
[   20.475848] ... max period:                00007fffffffffff
[   20.475849] ... global_ctrl mask:          00000077000000ff
[   20.477215] CPU8 is up
[   20.477572] smpboot: Booting Node 0 Processor 9 APIC 0x12
[   20.485997] CPU9 is up
[   20.486319] smpboot: Booting Node 0 Processor 10 APIC 0x14
[   20.492697] CPU10 is up
[   20.493021] smpboot: Booting Node 0 Processor 11 APIC 0x16
[   20.500440] CPU11 is up
[   20.500824] smpboot: Booting Node 0 Processor 12 APIC 0x18
[   20.507970] CPU12 is up
[   20.508305] smpboot: Booting Node 0 Processor 13 APIC 0x1a
[   20.515627] CPU13 is up
[   20.516025] smpboot: Booting Node 0 Processor 14 APIC 0x1c
[   20.523533] CPU14 is up
[   20.523937] smpboot: Booting Node 0 Processor 15 APIC 0x1e
[   20.531403] CPU15 is up
[   20.531796] smpboot: Booting Node 0 Processor 16 APIC 0x40
[   20.540857] CPU16 is up
[   20.541200] smpboot: Booting Node 0 Processor 17 APIC 0x42
[   20.548580] CPU17 is up
[   20.548921] smpboot: Booting Node 0 Processor 18 APIC 0x44
[   20.556234] CPU18 is up
[   20.556614] smpboot: Booting Node 0 Processor 19 APIC 0x46
[   20.564195] CPU19 is up
[   20.564524] smpboot: Booting Node 0 Processor 20 APIC 0x48
[   20.573796] CPU20 is up
[   20.574173] smpboot: Booting Node 0 Processor 21 APIC 0x4a
[   20.581479] CPU21 is up
[   20.581856] smpboot: Booting Node 0 Processor 22 APIC 0x4c
[   20.589111] CPU22 is up
[   20.589494] smpboot: Booting Node 0 Processor 23 APIC 0x4e
[   20.597102] CPU23 is up
[   20.603607] ACPI: PM: Waking up from system sleep state S3
[   20.611767] ACPI: button: The lid device is not compliant to SW_LID.
[   20.617554] ACPI: EC: interrupt unblocked
[   20.628869] nvidia 0000:01:00.0: Enabling HDA controller
[   20.631029] thunderbolt 0000:04:00.0: control channel starting...
[   20.631031] thunderbolt 0000:04:00.0: starting TX ring 0
[   20.631039] thunderbolt 0000:04:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[   20.631041] thunderbolt 0000:04:00.0: starting RX ring 0
[   20.631046] thunderbolt 0000:04:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[   20.631052] thunderbolt 0000:04:00.0: resuming...
[   20.631053] thunderbolt 0000:04:00.0: 0: resuming switch
[   20.631055] thunderbolt 0000:04:00.0: restoring Switch at 0x0 (depth: 0, up port: 15)
[   20.631571] thunderbolt 0000:04:00.0: 0:1: USB4 wake: no, connection wake: no, disconnection wake: no
[   20.631717] thunderbolt 0000:04:00.0: 0:3: USB4 wake: no, connection wake: no, disconnection wake: no
[   20.631719] thunderbolt 0000:04:00.0: 0: disabling wakeup
[   20.634777] thunderbolt 0000:04:00.0: acking hot plug event on 0:13
[   20.634888] thunderbolt 0000:04:00.0: acking hot plug event on 0:14
[   20.635031] thunderbolt 0000:04:00.0: acking hot plug event on 0:16
[   20.640946] thunderbolt 0000:04:00.0: 0: TMU: supports uni-directional mode
[   20.640948] thunderbolt 0000:04:00.0: 0: TMU: supports enhanced uni-directional mode
[   20.641144] thunderbolt 0000:04:00.0: 0: TMU: current mode: off
[   20.641147] thunderbolt 0000:04:00.0: 0: TMU: mode change off -> bi-directional, HiFi requested
[   20.641662] thunderbolt 0000:04:00.0: 0: TMU: mode set to: bi-directional, HiFi
[   20.644069] thunderbolt 0000:04:00.0: resume finished
[   20.644597] thunderbolt 0000:04:00.0: 0:13: DP IN resource available after hotplug
[   20.644602] thunderbolt 0000:04:00.0: looking for DP IN <-> DP OUT pairs:
[   20.644619] thunderbolt 0000:04:00.0: 0:13: DP IN available
[   20.644621] thunderbolt 0000:04:00.0: 0:13: no suitable DP OUT adapter available, not tunneling
[   20.644854] thunderbolt 0000:04:00.0: 0:14: DP IN resource available after hotplug
[   20.644859] thunderbolt 0000:04:00.0: looking for DP IN <-> DP OUT pairs:
[   20.645898] pci 0000:00:08.0: Setting to D3hot
[   20.646892] thunderbolt 0000:04:00.0: 0:13: DP IN available
[   20.646897] thunderbolt 0000:04:00.0: 0:13: no suitable DP OUT adapter available, not tunneling
[   20.646964] thunderbolt 0000:04:00.0: 0:14: DP IN available
[   20.646968] thunderbolt 0000:04:00.0: 0:14: no suitable DP OUT adapter available, not tunneling
[   20.666513] ACPI: EC: event unblocked
[   20.675131] i915 0000:00:02.0: [drm] GT0: GuC firmware i915/mtl_guc_70.bin version 70.53.0
[   20.683177] nvme nvme1: 24/0/0 default/read/poll queues
[   20.687414] i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
[   20.687419] i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
[   20.687677] i915 0000:00:02.0: [drm] GT0: GUC: RC enabled
[   20.687946] i915 0000:00:02.0: [drm] GT1: GuC firmware i915/mtl_guc_70.bin version 70.53.0
[   20.687947] i915 0000:00:02.0: [drm] GT1: HuC firmware i915/mtl_huc_gsc.bin version 8.5.4
[   20.706194] nvme nvme0: 16/0/0 default/read/poll queues
[   20.711267] i915 0000:00:02.0: [drm] GT1: HuC: authenticated for clear media
[   20.711967] i915 0000:00:02.0: [drm] GT1: GUC: submission enabled
[   20.711968] i915 0000:00:02.0: [drm] GT1: GUC: SLPC enabled
[   20.712031] i915 0000:00:02.0: [drm] GT1: GUC: RC enabled
[   20.853095] i915 0000:00:02.0: [drm] GT1: Loaded GSC firmware i915/mtl_gsc_1.bin (cv1.0, r102.1.15.1926, svn 1)
[   20.873401] i915 0000:00:02.0: [drm] GT1: HuC: authenticated for all workloads
[   20.971223] usb 3-4: reset high-speed USB device number 2 using xhci_hcd
[   21.228654] usb 3-8: reset full-speed USB device number 3 using xhci_hcd
[   21.485013] usb 3-9: reset full-speed USB device number 4 using xhci_hcd
[   21.625147] mei_gsc_proxy 0000:80:16.0-0f73db04-97ab-4125-b893-e904ad0d5464: bound 0000:00:02.0 (ops i915_gsc_proxy_component_ops [i915])
[   21.628998] OOM killer enabled.
[   21.629000] Restarting tasks: Starting
[   21.630689] Restarting tasks: Done
[   21.630697] efivarfs: resyncing variable state
[   21.656360] efivarfs: finished resyncing variable state
[   21.656393] random: crng reseeded on system resumption
[   21.659699] PM: suspend exit
[   22.005220] audit: type=1400 audit(1783298684.452:305): apparmor="DENIED" operation="open" class="file" profile="snap-update-ns.firmware-updater" name="/run/gdm3/home/gdm-greeter/" pid=7741 comm="snap-update-ns" requested_mask="r" denied_mask="r" fsuid=60578 ouid=60578
[   22.005842] audit: type=1400 audit(1783298684.453:306): apparmor="DENIED" operation="open" class="file" profile="/snap/snapd/27406/usr/lib/snapd/snap-confine" name="/run/gdm3/" pid=7429 comm="snap-confine" requested_mask="r" denied_mask="r" fsuid=60578 ouid=0
[   22.177327] audit: type=1400 audit(1783298684.625:307): apparmor="DENIED" operation="open" class="file" profile="snap.firmware-updater.firmware-notifier" name="/proc/sys/vm/max_map_count" pid=7430 comm="firmware-notifi" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[   22.412489] audit: type=1400 audit(1783298684.860:308): apparmor="DENIED" operation="open" class="file" profile="snap-update-ns.firmware-updater" name="/run/gdm3/home/gdm-greeter/" pid=7821 comm="snap-update-ns" requested_mask="r" denied_mask="r" fsuid=60578 ouid=60578
[   22.414781] audit: type=1400 audit(1783298684.862:309): apparmor="DENIED" operation="open" class="file" profile="/snap/snapd/27406/usr/lib/snapd/snap-confine" name="/run/gdm3/" pid=7783 comm="snap-confine" requested_mask="r" denied_mask="r" fsuid=60578 ouid=0
[   22.458861] Realtek Internal NBASE-T PHY r8169-0-b400:00: attached PHY driver (mii_bus:phy_addr=r8169-0-b400:00, irq=MAC)
[   22.476296] rfkill: input handler disabled
[   22.619333] r8169 0000:b4:00.0 enp180s0: Link is Down
[   22.665002] audit: type=1400 audit(1783298685.112:310): apparmor="DENIED" operation="open" class="file" profile="snap-update-ns.firmware-updater" name="/run/gdm3/home/gdm-greeter/" pid=7980 comm="snap-update-ns" requested_mask="r" denied_mask="r" fsuid=60578 ouid=60578
[   22.666261] audit: type=1400 audit(1783298685.114:311): apparmor="DENIED" operation="open" class="file" profile="/snap/snapd/27406/usr/lib/snapd/snap-confine" name="/run/gdm3/" pid=7949 comm="snap-confine" requested_mask="r" denied_mask="r" fsuid=60578 ouid=0
[   22.906361] audit: type=1400 audit(1783298685.354:312): apparmor="DENIED" operation="open" class="file" profile="snap-update-ns.firmware-updater" name="/run/gdm3/home/gdm-greeter/" pid=8026 comm="snap-update-ns" requested_mask="r" denied_mask="r" fsuid=60578 ouid=60578
[   22.907986] audit: type=1400 audit(1783298685.355:313): apparmor="DENIED" operation="open" class="file" profile="/snap/snapd/27406/usr/lib/snapd/snap-confine" name="/run/gdm3/" pid=7992 comm="snap-confine" requested_mask="r" denied_mask="r" fsuid=60578 ouid=0
[   23.152445] audit: type=1400 audit(1783298685.600:314): apparmor="DENIED" operation="open" class="file" profile="snap-update-ns.firmware-updater" name="/run/gdm3/home/gdm-greeter/" pid=8073 comm="snap-update-ns" requested_mask="r" denied_mask="r" fsuid=60578 ouid=60578
[   25.779164] wlp181s0f0: regulatory prevented using AP config, downgraded
[   25.835335] wlp181s0f0: authenticate with e4:82:10:43:34:a9 (local address=44:38:e8:f6:0e:dc)
[   25.837934] wlp181s0f0: send auth to e4:82:10:43:34:a9 (try 1/3)
[   25.883720] wlp181s0f0: authenticated
[   25.884863] wlp181s0f0: associate with e4:82:10:43:34:a9 (try 1/3)
[   25.921215] wlp181s0f0: RX AssocResp from e4:82:10:43:34:a9 (capab=0x1501 status=0 aid=1)
[   25.928130] wlp181s0f0: associated
[   26.101480] wlp181s0f0: Limiting TX power to 23 (23 - 0) dBm as advertised by e4:82:10:43:34:a9
[   29.906654] rfkill: input handler enabled
[   30.087815] kauditd_printk_skb: 1 callbacks suppressed
[   30.087820] audit: type=1400 audit(1783298692.535:316): apparmor="DENIED" operation="capable" class="cap" profile="fusermount3" pid=8880 comm="fusermount3" capability=1  capname="dac_override"
[   30.087826] audit: type=1400 audit(1783298692.535:317): apparmor="DENIED" operation="capable" class="cap" profile="fusermount3" pid=8880 comm="fusermount3" capability=7  capname="setuid"
[   30.088253] audit: type=1400 audit(1783298692.535:318): apparmor="DENIED" operation="capable" class="cap" profile="fusermount3" pid=8881 comm="fusermount3" capability=7  capname="setuid"
[   31.190845] rfkill: input handler disabled
[   32.243885] audit: type=1400 audit(1783298694.697:319): apparmor="DENIED" operation="capable" class="cap" profile="fusermount3" pid=9924 comm="fusermount3" capability=1  capname="dac_override"
[   32.243894] audit: type=1400 audit(1783298694.697:320): apparmor="DENIED" operation="capable" class="cap" profile="fusermount3" pid=9924 comm="fusermount3" capability=7  capname="setuid"
[   32.244049] audit: type=1400 audit(1783298694.697:321): apparmor="DENIED" operation="capable" class="cap" profile="fusermount3" pid=9932 comm="fusermount3" capability=7  capname="setuid"
[   32.250842] audit: type=1400 audit(1783298694.704:322): apparmor="DENIED" operation="mount" class="mount" info="failed mntpnt match" error=-13 profile="fusermount3" name="/" pid=9963 comm="fusermount3" flags="rw, rprivate"
[   42.143241] warning: `NetworkChangeNo' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
[   42.294509] audit: type=1400 audit(1783298704.795:323): apparmor="AUDIT" operation="userns_create" class="namespace" info="Userns create - transitioning profile" profile="unconfined" pid=11027 comm="WeChatAppEx" requested="userns_create" target="unprivileged_userns" execpath="/opt/wechat/RadiumWMPF/runtime/WeChatAppEx"
[   42.296057] audit: type=1400 audit(1783298704.796:324): apparmor="DENIED" operation="capable" class="cap" profile="unprivileged_userns" pid=11035 comm="WeChatAppEx" capability=21  capname="sys_admin"
[  304.918669] audit: type=1400 audit(1783298967.507:325): apparmor="AUDIT" operation="userns_create" class="namespace" info="Userns create - transitioning profile" profile="unconfined" pid=12531 comm="(ubuntu-insigh)" requested="userns_create" target="unprivileged_userns" execpath="/usr/lib/systemd/systemd-executor"
[  304.919362] audit: type=1400 audit(1783298967.508:326): apparmor="DENIED" operation="capable" class="cap" profile="unprivileged_userns" pid=12531 comm="(ubuntu-insigh)" capability=21  capname="sys_admin"
[  304.934055] audit: type=1400 audit(1783298967.523:327): apparmor="DENIED" operation="getattr" class="file" info="Failed name lookup - disconnected path" error=-13 profile="unprivileged_userns" name="" pid=12541 comm="systemd-detect-" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[  327.918285] wlp181s0f0: disconnect from AP e4:82:10:43:34:a9 for new auth to 4c:8d:53:87:80:89
[  327.965077] wlp181s0f0: regulatory prevented using AP config, downgraded
[  328.012958] wlp181s0f0: authenticate with 4c:8d:53:87:80:89 (local address=44:38:e8:f6:0e:dc)
[  328.015642] wlp181s0f0: send auth to 4c:8d:53:87:80:89 (try 1/3)
[  328.023593] wlp181s0f0: authenticated
[  328.024132] wlp181s0f0: associate with 4c:8d:53:87:80:89 (try 1/3)
[  328.060501] wlp181s0f0: RX ReassocResp from 4c:8d:53:87:80:89 (capab=0x1501 status=0 aid=6)
[  328.066162] wlp181s0f0: associated
[  328.388785] wlp181s0f0: Limiting TX power to 30 (30 - 0) dBm as advertised by 4c:8d:53:87:80:89
[  482.908545] audit: type=1400 audit(1783299145.501:328): apparmor="AUDIT" operation="userns_create" class="namespace" info="Userns create - transitioning profile" profile="unconfined" pid=12941 comm="(ubuntu-insigh)" requested="userns_create" target="unprivileged_userns" execpath="/usr/lib/systemd/systemd-executor"
[  482.908859] audit: type=1400 audit(1783299145.501:329): apparmor="DENIED" operation="capable" class="cap" profile="unprivileged_userns" pid=12941 comm="(ubuntu-insigh)" capability=21  capname="sys_admin"
[  631.319070] wlp181s0f0: disconnect from AP 4c:8d:53:87:80:89 for new auth to 4c:8d:53:87:7c:89
[  631.376844] wlp181s0f0: regulatory prevented using AP config, downgraded
[  631.422063] wlp181s0f0: authenticate with 4c:8d:53:87:7c:89 (local address=44:38:e8:f6:0e:dc)
[  631.424831] wlp181s0f0: send auth to 4c:8d:53:87:7c:89 (try 1/3)
[  631.431250] wlp181s0f0: authenticated
[  631.432341] wlp181s0f0: associate with 4c:8d:53:87:7c:89 (try 1/3)
[  631.481510] wlp181s0f0: RX ReassocResp from 4c:8d:53:87:7c:89 (capab=0x1501 status=0 aid=8)
[  631.488947] wlp181s0f0: associated
[  631.674769] wlp181s0f0: Limiting TX power to 30 (30 - 0) dBm as advertised by 4c:8d:53:87:7c:89
[  940.280547] audit: type=1400 audit(1783299602.868:330): apparmor="DENIED" operation="open" class="file" profile="snap.firmware-updater.firmware-notifier" name="/proc/sys/vm/max_map_count" pid=13428 comm="firmware-notifi" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 1900.672303] audit: type=1400 audit(1783300563.264:331): apparmor="DENIED" operation="open" class="file" profile="/usr/bin/wsdd" name="/usr/share/coreutils/locales/uucore/en-US.ftl" pid=16361 comm="wsdd" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 2168.771526] audit: type=1400 audit(1783300831.363:332): apparmor="DENIED" operation="open" class="file" profile="/usr/sbin/cupsd" name="/etc/paperspecs" pid=16730 comm="cupsd" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
[ 2168.775850] audit: type=1400 audit(1783300831.367:333): apparmor="DENIED" operation="capable" class="cap" profile="/usr/sbin/cupsd" pid=16730 comm="cupsd" capability=12  capname="net_admin"
[ 9157.819431] i915 0000:00:02.0: Using 41-bit DMA addresses
[11739.341013] audit: type=1400 audit(1783310402.101:334): apparmor="DENIED" operation="open" class="file" profile="snap.firmware-updater.firmware-notifier" name="/proc/sys/vm/max_map_count" pid=22913 comm="firmware-notifi" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[20103.243324] wlp181s0f0: deauthenticating from 4c:8d:53:87:7c:89 by local choice (Reason: 3=DEAUTH_LEAVING)
[20109.103862] wlp181s0f0: authenticate with 46:a1:92:20:e7:27 (local address=44:38:e8:f6:0e:dc)
[20109.106183] wlp181s0f0: send auth to 46:a1:92:20:e7:27 (try 1/3)
[20109.132775] wlp181s0f0: authenticated
[20109.134806] wlp181s0f0: associate with 46:a1:92:20:e7:27 (try 1/3)
[20109.154855] wlp181s0f0: RX AssocResp from 46:a1:92:20:e7:27 (capab=0x431 status=0 aid=4)
[20109.162292] wlp181s0f0: associated
[21312.987886] perf: interrupt took too long (2504 > 2500), lowering kernel.perf_event_max_sample_rate to 79000
[21608.742483] wlp181s0f0: Connection to AP 46:a1:92:20:e7:27 lost
[21627.334087] wlp181s0f0: regulatory prevented using AP config, downgraded
[21627.385851] wlp181s0f0: authenticate with 4c:8d:53:87:80:89 (local address=44:38:e8:f6:0e:dc)
[21627.388457] wlp181s0f0: send auth to 4c:8d:53:87:80:89 (try 1/3)
[21627.397038] wlp181s0f0: authenticated
[21627.398783] wlp181s0f0: associate with 4c:8d:53:87:80:89 (try 1/3)
[21627.437178] wlp181s0f0: RX AssocResp from 4c:8d:53:87:80:89 (capab=0x1501 status=0 aid=12)
[21627.444063] wlp181s0f0: associated
[21627.505033] wlp181s0f0: Limiting TX power to 30 (30 - 0) dBm as advertised by 4c:8d:53:87:80:89
[21677.102803] wlp181s0f0: deauthenticating from 4c:8d:53:87:80:89 by local choice (Reason: 3=DEAUTH_LEAVING)
[21677.244065] wlp181s0f0: authenticate with 46:a1:92:20:e7:27 (local address=44:38:e8:f6:0e:dc)
[21677.246720] wlp181s0f0: send auth to 46:a1:92:20:e7:27 (try 1/3)
[21677.271162] wlp181s0f0: authenticated
[21677.272012] wlp181s0f0: associate with 46:a1:92:20:e7:27 (try 1/3)
[21677.291057] wlp181s0f0: RX AssocResp from 46:a1:92:20:e7:27 (capab=0x431 status=0 aid=8)
[21677.297797] wlp181s0f0: associated
[22481.936754] wlp181s0f0: deauthenticating from 46:a1:92:20:e7:27 by local choice (Reason: 3=DEAUTH_LEAVING)
[22482.202994] wlp181s0f0: authenticate with 46:a1:92:20:e7:27 (local address=44:38:e8:f6:0e:dc)
[22482.205350] wlp181s0f0: send auth to 46:a1:92:20:e7:27 (try 1/3)
[22482.213833] wlp181s0f0: authenticated
[22482.215218] wlp181s0f0: associate with 46:a1:92:20:e7:27 (try 1/3)
[22482.225677] wlp181s0f0: RX AssocResp from 46:a1:92:20:e7:27 (capab=0x431 status=0 aid=18)
[22482.232947] wlp181s0f0: associated
[22484.221556] wlp181s0f0: deauthenticating from 46:a1:92:20:e7:27 by local choice (Reason: 3=DEAUTH_LEAVING)
[22484.341501] wlp181s0f0: regulatory prevented using AP config, downgraded
[22484.390383] wlp181s0f0: authenticate with e4:82:10:43:34:a9 (local address=44:38:e8:f6:0e:dc)
[22484.393010] wlp181s0f0: send auth to e4:82:10:43:34:a9 (try 1/3)
[22484.439817] wlp181s0f0: authenticated
[22484.441290] wlp181s0f0: associate with e4:82:10:43:34:a9 (try 1/3)
[22484.470316] wlp181s0f0: RX AssocResp from e4:82:10:43:34:a9 (capab=0x1501 status=0 aid=2)
[22484.477165] wlp181s0f0: associated
[22484.642288] wlp181s0f0: Limiting TX power to 23 (23 - 0) dBm as advertised by e4:82:10:43:34:a9
[22538.170021] audit: type=1400 audit(1783321201.091:335): apparmor="DENIED" operation="open" class="file" profile="snap.firmware-updater.firmware-notifier" name="/proc/sys/vm/max_map_count" pid=37624 comm="firmware-notifi" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[22787.161538] wlp181s0f0: disconnect from AP e4:82:10:43:34:a9 for new auth to e4:82:10:43:50:49
[22787.219528] wlp181s0f0: regulatory prevented using AP config, downgraded
[22787.266575] wlp181s0f0: authenticate with e4:82:10:43:50:49 (local address=44:38:e8:f6:0e:dc)
[22787.269391] wlp181s0f0: send auth to e4:82:10:43:50:49 (try 1/3)
[22787.314814] wlp181s0f0: authenticated
[22787.316035] wlp181s0f0: associate with e4:82:10:43:50:49 (try 1/3)
[22787.373939] wlp181s0f0: RX ReassocResp from e4:82:10:43:50:49 (capab=0x1501 status=0 aid=3)
[22787.378875] wlp181s0f0: associated
[22787.383355] wlp181s0f0: Limiting TX power to 30 (30 - 0) dBm as advertised by e4:82:10:43:50:49
[23090.321477] wlp181s0f0: disconnect from AP e4:82:10:43:50:49 for new auth to 4c:8d:53:87:7c:89
[23090.368491] wlp181s0f0: regulatory prevented using AP config, downgraded
[23090.415341] wlp181s0f0: authenticate with 4c:8d:53:87:7c:89 (local address=44:38:e8:f6:0e:dc)
[23090.418225] wlp181s0f0: send auth to 4c:8d:53:87:7c:89 (try 1/3)
[23090.426336] wlp181s0f0: authenticated
[23090.426784] wlp181s0f0: associate with 4c:8d:53:87:7c:89 (try 1/3)
[23090.500714] wlp181s0f0: RX ReassocResp from 4c:8d:53:87:7c:89 (capab=0x1501 status=0 aid=12)
[23090.507212] wlp181s0f0: associated
[23090.580734] wlp181s0f0: Limiting TX power to 30 (30 - 0) dBm as advertised by 4c:8d:53:87:7c:89
[24019.342042] wlp181s0f0: disassociated from 4c:8d:53:87:7c:89 (Reason: 8=DISASSOC_STA_HAS_LEFT)
[24019.869901] wlp181s0f0: regulatory prevented using AP config, downgraded
[24019.922890] wlp181s0f0: authenticate with 4c:8d:53:87:80:89 (local address=44:38:e8:f6:0e:dc)
[24019.925493] wlp181s0f0: send auth to 4c:8d:53:87:80:89 (try 1/3)
[24019.937633] wlp181s0f0: authenticated
[24019.939262] wlp181s0f0: associate with 4c:8d:53:87:80:89 (try 1/3)
[24019.971099] wlp181s0f0: RX AssocResp from 4c:8d:53:87:80:89 (capab=0x1501 status=0 aid=5)
[24019.978357] wlp181s0f0: associated
[24020.153047] wlp181s0f0: Limiting TX power to 30 (30 - 0) dBm as advertised by 4c:8d:53:87:80:89
[24625.982806] wlp181s0f0: disconnect from AP 4c:8d:53:87:80:89 for new auth to 4c:8d:53:87:7c:89
[24626.036141] wlp181s0f0: regulatory prevented using AP config, downgraded
[24626.080697] wlp181s0f0: authenticate with 4c:8d:53:87:7c:89 (local address=44:38:e8:f6:0e:dc)
[24626.083511] wlp181s0f0: send auth to 4c:8d:53:87:7c:89 (try 1/3)
[24626.093335] wlp181s0f0: authenticated
[24626.093884] wlp181s0f0: associate with 4c:8d:53:87:7c:89 (try 1/3)
[24626.133636] wlp181s0f0: RX ReassocResp from 4c:8d:53:87:7c:89 (capab=0x1501 status=0 aid=12)
[24626.140715] wlp181s0f0: associated
[24626.151009] wlp181s0f0: Limiting TX power to 30 (30 - 0) dBm as advertised by 4c:8d:53:87:7c:89
[25197.873481] perf: interrupt took too long (3168 > 3130), lowering kernel.perf_event_max_sample_rate to 63000
[33337.253801] audit: type=1400 audit(1783332000.351:336): apparmor="DENIED" operation="open" class="file" profile="snap.firmware-updater.firmware-notifier" name="/proc/sys/vm/max_map_count" pid=43762 comm="firmware-notifi" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[33454.047945] wlp181s0f0: deauthenticating from 4c:8d:53:87:7c:89 by local choice (Reason: 3=DEAUTH_LEAVING)
[33455.428039] rfkill: input handler enabled
[33460.264173] PM: suspend entry (deep)
[33461.088761] Filesystems sync: 0.824 seconds
[33461.124080] Freezing user space processes
[33461.149143] Freezing user space processes completed (elapsed 0.025 seconds)
[33461.149147] OOM killer disabled.
[33461.149147] Freezing remaining freezable tasks
[33461.150571] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[33461.150638] printk: Suspending console(s) (use no_console_suspend to debug)
[33461.558284] ACPI: EC: interrupt blocked
[33461.586910] thunderbolt 0000:04:00.0: suspending...
[33461.586914] thunderbolt 0000:04:00.0: 0: suspending switch
[33461.586917] thunderbolt 0000:04:00.0: 0: enabling wakeup: 0x1f
[33461.588782] thunderbolt 0000:04:00.0: suspend finished
[33461.588784] thunderbolt 0000:04:00.0: stopping RX ring 0
[33461.588789] thunderbolt 0000:04:00.0: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
[33461.588801] thunderbolt 0000:04:00.0: stopping TX ring 0
[33461.588804] thunderbolt 0000:04:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[33461.588810] thunderbolt 0000:04:00.0: control channel stopped
[33461.616906] ACPI: PM: Preparing to enter system sleep state S3
[33461.625668] ACPI: EC: event blocked
[33461.625668] ACPI: EC: EC stopped
[33461.625669] ACPI: PM: Saving platform NVS memory
[33461.625892] Disabling non-boot CPUs ...
[33461.628856] smpboot: CPU 23 is now offline
[33461.634307] smpboot: CPU 22 is now offline
[33461.637587] smpboot: CPU 21 is now offline
[33461.642269] smpboot: CPU 20 is now offline
[33461.646591] smpboot: CPU 19 is now offline
[33461.651005] smpboot: CPU 18 is now offline
[33461.654574] smpboot: CPU 17 is now offline
[33461.658607] smpboot: CPU 16 is now offline
[33461.662754] smpboot: CPU 15 is now offline
[33461.666414] smpboot: CPU 14 is now offline
[33461.670030] smpboot: CPU 13 is now offline
[33461.673890] smpboot: CPU 12 is now offline
[33461.677436] smpboot: CPU 11 is now offline
[33461.681088] smpboot: CPU 10 is now offline
[33461.684884] smpboot: CPU 9 is now offline
[33461.688197] smpboot: CPU 8 is now offline
[33461.691662] smpboot: CPU 7 is now offline
[33461.695251] smpboot: CPU 6 is now offline
[33461.698352] smpboot: CPU 5 is now offline
[33461.702020] smpboot: CPU 4 is now offline
[33461.705037] smpboot: CPU 3 is now offline
[33461.708313] smpboot: CPU 2 is now offline
[33461.711561] smpboot: CPU 1 is now offline
[33461.723419] ACPI: PM: Low-level resume complete
[33461.723515] ACPI: EC: EC started
[33461.723516] ACPI: PM: Restoring platform NVS memory
[33461.725741] Enabling non-boot CPUs ...
[33461.726025] smpboot: Booting Node 0 Processor 1 APIC 0x8
[33461.732964] CPU1 is up
[33461.733410] smpboot: Booting Node 0 Processor 2 APIC 0x20
[33461.739617] CPU2 is up
[33461.739932] smpboot: Booting Node 0 Processor 3 APIC 0x28
[33461.745585] CPU3 is up
[33461.745882] smpboot: Booting Node 0 Processor 4 APIC 0x30
[33461.751682] CPU4 is up
[33461.751991] smpboot: Booting Node 0 Processor 5 APIC 0x38
[33461.757821] CPU5 is up
[33461.758178] smpboot: Booting Node 0 Processor 6 APIC 0x50
[33461.763955] CPU6 is up
[33461.764388] smpboot: Booting Node 0 Processor 7 APIC 0x58
[33461.770964] CPU7 is up
[33461.771253] smpboot: Booting Node 0 Processor 8 APIC 0x10
[33461.777649] core: The event 0x5d0 is not supported as an auto-counter reload event.
[33461.777657] core: cpu_atom PMU driver: 
[33461.777659] ... version:                   6
[33461.777660] ... bit width:                 48
[33461.777661] ... generic counters:          8
[33461.777662] ... generic bitmap:            00000000000000ff
[33461.777662] ... fixed-purpose counters:    6
[33461.777663] ... fixed-purpose bitmap:      0000000000000077
[33461.777663] ... value mask:                0000ffffffffffff
[33461.777664] ... max period:                00007fffffffffff
[33461.777665] ... global_ctrl mask:          00000077000000ff
[33461.779113] CPU8 is up
[33461.779416] smpboot: Booting Node 0 Processor 9 APIC 0x12
[33461.788096] CPU9 is up
[33461.788464] smpboot: Booting Node 0 Processor 10 APIC 0x14
[33461.795393] CPU10 is up
[33461.795756] smpboot: Booting Node 0 Processor 11 APIC 0x16
[33461.804455] CPU11 is up
[33461.804868] smpboot: Booting Node 0 Processor 12 APIC 0x18
[33461.813333] CPU12 is up
[33461.813744] smpboot: Booting Node 0 Processor 13 APIC 0x1a
[33461.822293] CPU13 is up
[33461.822660] smpboot: Booting Node 0 Processor 14 APIC 0x1c
[33461.831581] CPU14 is up
[33461.832000] smpboot: Booting Node 0 Processor 15 APIC 0x1e
[33461.840694] CPU15 is up
[33461.841046] smpboot: Booting Node 0 Processor 16 APIC 0x40
[33461.849507] CPU16 is up
[33461.849917] smpboot: Booting Node 0 Processor 17 APIC 0x42
[33461.858507] CPU17 is up
[33461.858867] smpboot: Booting Node 0 Processor 18 APIC 0x44
[33461.867941] CPU18 is up
[33461.868293] smpboot: Booting Node 0 Processor 19 APIC 0x46
[33461.876931] CPU19 is up
[33461.877291] smpboot: Booting Node 0 Processor 20 APIC 0x48
[33461.885745] CPU20 is up
[33461.886164] smpboot: Booting Node 0 Processor 21 APIC 0x4a
[33461.894678] CPU21 is up
[33461.895130] smpboot: Booting Node 0 Processor 22 APIC 0x4c
[33461.904060] CPU22 is up
[33461.904362] smpboot: Booting Node 0 Processor 23 APIC 0x4e
[33461.914158] CPU23 is up
[33461.920863] ACPI: PM: Waking up from system sleep state S3
[33461.933718] ACPI: EC: interrupt unblocked
[33461.945870] nvidia 0000:01:00.0: Enabling HDA controller
[33461.948642] thunderbolt 0000:04:00.0: control channel starting...
[33461.948645] thunderbolt 0000:04:00.0: starting TX ring 0
[33461.948652] thunderbolt 0000:04:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[33461.948654] thunderbolt 0000:04:00.0: starting RX ring 0
[33461.948659] thunderbolt 0000:04:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[33461.948665] thunderbolt 0000:04:00.0: resuming...
[33461.948666] thunderbolt 0000:04:00.0: 0: resuming switch
[33461.948668] thunderbolt 0000:04:00.0: restoring Switch at 0x0 (depth: 0, up port: 15)
[33461.949124] thunderbolt 0000:04:00.0: 0:1: USB4 wake: no, connection wake: no, disconnection wake: no
[33461.949265] thunderbolt 0000:04:00.0: 0:3: USB4 wake: no, connection wake: no, disconnection wake: no
[33461.949267] thunderbolt 0000:04:00.0: 0: disabling wakeup
[33461.956315] thunderbolt 0000:04:00.0: acking hot plug event on 0:13
[33461.956436] thunderbolt 0000:04:00.0: acking hot plug event on 0:14
[33461.956580] thunderbolt 0000:04:00.0: acking hot plug event on 0:16
[33461.958507] thunderbolt 0000:04:00.0: 0: TMU: supports uni-directional mode
[33461.958508] thunderbolt 0000:04:00.0: 0: TMU: supports enhanced uni-directional mode
[33461.958618] thunderbolt 0000:04:00.0: 0: TMU: current mode: off
[33461.958621] thunderbolt 0000:04:00.0: 0: TMU: mode change off -> bi-directional, HiFi requested
[33461.959143] thunderbolt 0000:04:00.0: 0: TMU: mode set to: bi-directional, HiFi
[33461.961452] thunderbolt 0000:04:00.0: resume finished
[33461.961623] thunderbolt 0000:04:00.0: 0:13: DP IN resource available after hotplug
[33461.961629] thunderbolt 0000:04:00.0: looking for DP IN <-> DP OUT pairs:
[33461.962018] thunderbolt 0000:04:00.0: 0:13: DP IN available
[33461.962023] thunderbolt 0000:04:00.0: 0:13: no suitable DP OUT adapter available, not tunneling
[33461.963361] pci 0000:00:08.0: Setting to D3hot
[33461.963842] thunderbolt 0000:04:00.0: 0:14: DP IN resource available after hotplug
[33461.963847] thunderbolt 0000:04:00.0: looking for DP IN <-> DP OUT pairs:
[33461.963993] thunderbolt 0000:04:00.0: 0:13: DP IN available
[33461.963997] thunderbolt 0000:04:00.0: 0:13: no suitable DP OUT adapter available, not tunneling
[33461.964158] thunderbolt 0000:04:00.0: 0:14: DP IN available
[33461.964162] thunderbolt 0000:04:00.0: 0:14: no suitable DP OUT adapter available, not tunneling
[33461.983357] ACPI: EC: event unblocked
[33461.992143] i915 0000:00:02.0: [drm] GT0: GuC firmware i915/mtl_guc_70.bin version 70.53.0
[33462.002210] i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
[33462.002214] i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
[33462.002466] i915 0000:00:02.0: [drm] GT0: GUC: RC enabled
[33462.003164] i915 0000:00:02.0: [drm] GT1: GuC firmware i915/mtl_guc_70.bin version 70.53.0
[33462.003170] i915 0000:00:02.0: [drm] GT1: HuC firmware i915/mtl_huc_gsc.bin version 8.5.4
[33462.011851] nvme nvme1: 24/0/0 default/read/poll queues
[33462.023535] nvme nvme0: 16/0/0 default/read/poll queues
[33462.026439] i915 0000:00:02.0: [drm] GT1: HuC: authenticated for clear media
[33462.026855] i915 0000:00:02.0: [drm] GT1: GUC: submission enabled
[33462.026856] i915 0000:00:02.0: [drm] GT1: GUC: SLPC enabled
[33462.026925] i915 0000:00:02.0: [drm] GT1: GUC: RC enabled
[33462.169558] i915 0000:00:02.0: [drm] GT1: Loaded GSC firmware i915/mtl_gsc_1.bin (cv1.0, r102.1.15.1926, svn 1)
[33462.189932] i915 0000:00:02.0: [drm] GT1: HuC: authenticated for all workloads
[33462.266835] usb 3-8: reset full-speed USB device number 3 using xhci_hcd
[33462.503734] usb 3-9: reset full-speed USB device number 4 using xhci_hcd
[33462.738824] usb 3-4: reset high-speed USB device number 2 using xhci_hcd
[33462.871701] mei_gsc_proxy 0000:80:16.0-0f73db04-97ab-4125-b893-e904ad0d5464: bound 0000:00:02.0 (ops i915_gsc_proxy_component_ops [i915])
[33462.875637] OOM killer enabled.
[33462.875639] Restarting tasks: Starting
[33462.877781] Restarting tasks: Done
[33462.877789] efivarfs: resyncing variable state
[33462.893248] efivarfs: finished resyncing variable state
[33462.893299] random: crng reseeded on system resumption
[33462.898402] PM: suspend exit
[33465.818572] Realtek Internal NBASE-T PHY r8169-0-b400:00: attached PHY driver (mii_bus:phy_addr=r8169-0-b400:00, irq=MAC)
[33465.853379] rfkill: input handler disabled
[33465.976643] r8169 0000:b4:00.0 enp180s0: Link is Down
[33468.955817] wlp181s0f0: regulatory prevented using AP config, downgraded
[33469.019644] wlp181s0f0: authenticate with 80:ae:54:b8:0c:fa (local address=44:38:e8:f6:0e:dc)
[33469.022328] wlp181s0f0: send auth to 80:ae:54:b8:0c:fa (try 1/3)
[33469.024914] wlp181s0f0: authenticated
[33469.025333] wlp181s0f0: associate with 80:ae:54:b8:0c:fa (try 1/3)
[33469.031077] wlp181s0f0: RX AssocResp from 80:ae:54:b8:0c:fa (capab=0x1911 status=0 aid=9)
[33469.037762] wlp181s0f0: associated
[33469.038476] wlp181s0f0: Limiting TX power to 35 (35 - 0) dBm as advertised by 80:ae:54:b8:0c:fa
[34889.626256] perf: interrupt took too long (3964 > 3960), lowering kernel.perf_event_max_sample_rate to 50000
[36410.515229] hrtimer: interrupt took 4074 ns
[39173.454495] usb 4-6: new SuperSpeed USB device number 2 using xhci_hcd
[39173.466235] usb 4-6: New USB device found, idVendor=0080, idProduct=a001, bcdDevice= 1.00
[39173.466241] usb 4-6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[39173.466243] usb 4-6: Product: External USB 3.0
[39173.466245] usb 4-6: Manufacturer: TOSHIBA
[39173.466246] usb 4-6: SerialNumber: 20150331001A5
[39173.501841] usbcore: registered new interface driver usb-storage
[39173.507837] scsi host0: uas
[39173.507993] usbcore: registered new interface driver uas
[39173.508538] scsi 0:0:0:0: Direct-Access     TO Exter nal USB 3.0      6101 PQ: 0 ANSI: 6
[39173.511220] sd 0:0:0:0: Attached scsi generic sg0 type 0
[39176.195519] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[39176.195538] sd 0:0:0:0: [sda] 4096-byte physical blocks
[39176.195987] sd 0:0:0:0: [sda] Write Protect is off
[39176.195994] sd 0:0:0:0: [sda] Mode Sense: 53 00 00 08
[39176.196566] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[39176.221698] sd 0:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
[39176.221717] sd 0:0:0:0: [sda] Optimal transfer size 33553920 bytes not a multiple of preferred minimum block size (4096 bytes)
[39176.242736]  sda: sda1
[39176.242870] sd 0:0:0:0: [sda] Attached SCSI disk
[39176.705701] ntfs3: Enabled Linux POSIX ACLs support
[39176.705709] ntfs3: Read-only LZX/Xpress compression included
[39547.339125] usb 4-6: USB disconnect, device number 2
[39547.374382] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[39547.537221] sd 0:0:0:0: [sda] Synchronize Cache(10) failed: Result: hostbyte=DID_ERROR driverbyte=DRIVER_OK
[39547.777381] usb 4-6: new SuperSpeed USB device number 3 using xhci_hcd
[39547.789465] usb 4-6: New USB device found, idVendor=0080, idProduct=a001, bcdDevice= 1.00
[39547.789471] usb 4-6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[39547.789473] usb 4-6: Product: External USB 3.0
[39547.789475] usb 4-6: Manufacturer: TOSHIBA
[39547.789476] usb 4-6: SerialNumber: 20150331001A5
[39547.793814] scsi host0: uas
[39547.794385] scsi 0:0:0:0: Direct-Access     TO Exter nal USB 3.0      6101 PQ: 0 ANSI: 6
[39547.797072] sd 0:0:0:0: Attached scsi generic sg0 type 0
[39547.797442] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[39547.797448] sd 0:0:0:0: [sda] 4096-byte physical blocks
[39547.797612] sd 0:0:0:0: [sda] Write Protect is off
[39547.797615] sd 0:0:0:0: [sda] Mode Sense: 53 00 00 08
[39547.797928] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[39547.840176] usb 4-6: USB disconnect, device number 3
[39547.840339] xhci_hcd 0000:80:14.0: WARN Set TR Deq Ptr cmd failed due to incorrect slot or ep state.
[39547.840346] usb 4-6: cmd cmplt err -108
[39547.840494] xhci_hcd 0000:80:14.0: WARN Set TR Deq Ptr cmd failed due to incorrect slot or ep state.
[39547.840502] sd 0:0:0:0: [sda] tag#26 uas_zap_pending 0 uas-tag 1 inflight: CMD 
[39547.840505] sd 0:0:0:0: [sda] tag#26 CDB: Report supported operation codes a3 0c 01 12 00 00 00 00 00 0a 00 00
[39547.840539] sd 0:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
[39547.840547] sd 0:0:0:0: [sda] Optimal transfer size 33553920 bytes not a multiple of preferred minimum block size (4096 bytes)
[39547.857118] sd 0:0:0:0: [sda] Attached SCSI disk
[39547.884426] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[39548.046978] sd 0:0:0:0: [sda] Synchronize Cache(10) failed: Result: hostbyte=DID_ERROR driverbyte=DRIVER_OK
[39548.184042] usb 3-7: new high-speed USB device number 6 using xhci_hcd
[39548.352359] usb 3-7: Device not responding to setup address.
[39548.553124] usb 3-7: Device not responding to setup address.
[39548.761121] usb 3-7: device not accepting address 6, error -71
[39596.712648] usb 4-6: new SuperSpeed USB device number 4 using xhci_hcd
[39596.724864] usb 4-6: New USB device found, idVendor=0080, idProduct=a001, bcdDevice= 1.00
[39596.724870] usb 4-6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[39596.724872] usb 4-6: Product: External USB 3.0
[39596.724874] usb 4-6: Manufacturer: TOSHIBA
[39596.724875] usb 4-6: SerialNumber: 20150331001A5
[39596.730223] scsi host0: uas
[39596.731090] scsi 0:0:0:0: Direct-Access     TO Exter nal USB 3.0      6101 PQ: 0 ANSI: 6
[39596.734581] sd 0:0:0:0: Attached scsi generic sg0 type 0
[39599.014568] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[39599.014587] sd 0:0:0:0: [sda] 4096-byte physical blocks
[39599.014820] sd 0:0:0:0: [sda] Write Protect is off
[39599.014827] sd 0:0:0:0: [sda] Mode Sense: 53 00 00 08
[39599.015458] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[39599.040634] sd 0:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
[39599.040650] sd 0:0:0:0: [sda] Optimal transfer size 33553920 bytes not a multiple of preferred minimum block size (4096 bytes)
[39599.076065]  sda: sda1 < sda5 >
[39599.076851] sd 0:0:0:0: [sda] Attached SCSI disk
[41444.482279] wlp181s0f0: Connection to AP 80:ae:54:b8:0c:fa lost
[41445.916265] wlp181s0f0: regulatory prevented using AP config, downgraded
[41445.979259] wlp181s0f0: authenticate with 80:ae:54:b8:0c:fa (local address=44:38:e8:f6:0e:dc)
[41445.982085] wlp181s0f0: send auth to 80:ae:54:b8:0c:fa (try 1/3)
[41445.985949] wlp181s0f0: authenticated
[41445.986638] wlp181s0f0: associate with 80:ae:54:b8:0c:fa (try 1/3)
[41445.992620] wlp181s0f0: RX AssocResp from 80:ae:54:b8:0c:fa (capab=0x1911 status=0 aid=9)
[41445.997812] wlp181s0f0: associated
[41446.105559] wlp181s0f0: Limiting TX power to 35 (35 - 0) dBm as advertised by 80:ae:54:b8:0c:fa
[41448.065790] iwlwifi 0000:b5:00.0: missed beacons exceeds threshold, but receiving data. Stay connected, Expect bugs.
[41448.168092] iwlwifi 0000:b5:00.0: missed beacons exceeds threshold, but receiving data. Stay connected, Expect bugs.
[41448.270544] iwlwifi 0000:b5:00.0: missed beacons exceeds threshold, but receiving data. Stay connected, Expect bugs.
[41448.373007] iwlwifi 0000:b5:00.0: missed beacons exceeds threshold, but receiving data. Stay connected, Expect bugs.
[41448.475352] iwlwifi 0000:b5:00.0: missed beacons exceeds threshold, but receiving data. Stay connected, Expect bugs.
[42095.683805] usb 4-6: USB disconnect, device number 4
[42095.700065] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[42095.866669] sd 0:0:0:0: [sda] Synchronize Cache(10) failed: Result: hostbyte=DID_ERROR driverbyte=DRIVER_OK
[42259.901912] wlp181s0f0: deauthenticating from 80:ae:54:b8:0c:fa by local choice (Reason: 3=DEAUTH_LEAVING)
[42261.100888] rfkill: input handler enabled
[42277.928495] PM: suspend entry (deep)
[42278.982744] Filesystems sync: 1.054 seconds
[42279.018956] Freezing user space processes
[42279.022736] Freezing user space processes completed (elapsed 0.003 seconds)
[42279.022740] OOM killer disabled.
[42279.022741] Freezing remaining freezable tasks
[42279.024370] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[42279.024484] printk: Suspending console(s) (use no_console_suspend to debug)
[42279.196567] thunderbolt 0000:04:00.0: suspending...
[42279.196573] thunderbolt 0000:04:00.0: 0: suspending switch
[42279.196575] thunderbolt 0000:04:00.0: 0: enabling wakeup: 0x1f
[42279.203347] ACPI: EC: interrupt blocked
[42279.219249] thunderbolt 0000:04:00.0: suspend finished
[42279.219251] thunderbolt 0000:04:00.0: stopping RX ring 0
[42279.219274] thunderbolt 0000:04:00.0: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
[42279.219286] thunderbolt 0000:04:00.0: stopping TX ring 0
[42279.219290] thunderbolt 0000:04:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[42279.219295] thunderbolt 0000:04:00.0: control channel stopped
[42279.254675] ACPI: PM: Preparing to enter system sleep state S3
[42279.263585] ACPI: EC: event blocked
[42279.263586] ACPI: EC: EC stopped
[42279.263586] ACPI: PM: Saving platform NVS memory
[42279.263780] Disabling non-boot CPUs ...
[42279.266852] smpboot: CPU 23 is now offline
[42279.271437] smpboot: CPU 22 is now offline
[42279.276315] smpboot: CPU 21 is now offline
[42279.280412] smpboot: CPU 20 is now offline
[42279.284950] smpboot: CPU 19 is now offline
[42279.288720] smpboot: CPU 18 is now offline
[42279.293251] smpboot: CPU 17 is now offline
[42279.296287] smpboot: CPU 16 is now offline
[42279.300664] smpboot: CPU 15 is now offline
[42279.304336] smpboot: CPU 14 is now offline
[42279.307800] smpboot: CPU 13 is now offline
[42279.311568] smpboot: CPU 12 is now offline
[42279.315253] smpboot: CPU 11 is now offline
[42279.318489] smpboot: CPU 10 is now offline
[42279.321980] smpboot: CPU 9 is now offline
[42279.325193] smpboot: CPU 8 is now offline
[42279.328440] smpboot: CPU 7 is now offline
[42279.331787] smpboot: CPU 6 is now offline
[42279.335190] smpboot: CPU 5 is now offline
[42279.338572] smpboot: CPU 4 is now offline
[42279.342183] smpboot: CPU 3 is now offline
[42279.345098] smpboot: CPU 2 is now offline
[42279.348513] smpboot: CPU 1 is now offline
[42279.359534] ACPI: PM: Low-level resume complete
[42279.359629] ACPI: EC: EC started
[42279.359630] ACPI: PM: Restoring platform NVS memory
[42279.362362] Enabling non-boot CPUs ...
[42279.362662] smpboot: Booting Node 0 Processor 1 APIC 0x8
[42279.369619] CPU1 is up
[42279.370005] smpboot: Booting Node 0 Processor 2 APIC 0x20
[42279.375334] CPU2 is up
[42279.375666] smpboot: Booting Node 0 Processor 3 APIC 0x28
[42279.381492] CPU3 is up
[42279.381833] smpboot: Booting Node 0 Processor 4 APIC 0x30
[42279.387643] CPU4 is up
[42279.387998] smpboot: Booting Node 0 Processor 5 APIC 0x38
[42279.393538] CPU5 is up
[42279.393862] smpboot: Booting Node 0 Processor 6 APIC 0x50
[42279.399571] CPU6 is up
[42279.399967] smpboot: Booting Node 0 Processor 7 APIC 0x58
[42279.405532] CPU7 is up
[42279.405882] smpboot: Booting Node 0 Processor 8 APIC 0x10
[42279.412405] core: The event 0x5d0 is not supported as an auto-counter reload event.
[42279.412414] core: cpu_atom PMU driver: 
[42279.412416] ... version:                   6
[42279.412417] ... bit width:                 48
[42279.412418] ... generic counters:          8
[42279.412418] ... generic bitmap:            00000000000000ff
[42279.412419] ... fixed-purpose counters:    6
[42279.412420] ... fixed-purpose bitmap:      0000000000000077
[42279.412420] ... value mask:                0000ffffffffffff
[42279.412421] ... max period:                00007fffffffffff
[42279.412422] ... global_ctrl mask:          00000077000000ff
[42279.413876] CPU8 is up
[42279.414293] smpboot: Booting Node 0 Processor 9 APIC 0x12
[42279.420877] CPU9 is up
[42279.421246] smpboot: Booting Node 0 Processor 10 APIC 0x14
[42279.427902] CPU10 is up
[42279.428319] smpboot: Booting Node 0 Processor 11 APIC 0x16
[42279.435234] CPU11 is up
[42279.435607] smpboot: Booting Node 0 Processor 12 APIC 0x18
[42279.444102] CPU12 is up
[42279.444523] smpboot: Booting Node 0 Processor 13 APIC 0x1a
[42279.451066] CPU13 is up
[42279.451433] smpboot: Booting Node 0 Processor 14 APIC 0x1c
[42279.458119] CPU14 is up
[42279.458537] smpboot: Booting Node 0 Processor 15 APIC 0x1e
[42279.467491] CPU15 is up
[42279.467903] smpboot: Booting Node 0 Processor 16 APIC 0x40
[42279.476393] CPU16 is up
[42279.476821] smpboot: Booting Node 0 Processor 17 APIC 0x42
[42279.485294] CPU17 is up
[42279.485713] smpboot: Booting Node 0 Processor 18 APIC 0x44
[42279.494591] CPU18 is up
[42279.494987] smpboot: Booting Node 0 Processor 19 APIC 0x46
[42279.503756] CPU19 is up
[42279.504171] smpboot: Booting Node 0 Processor 20 APIC 0x48
[42279.511473] CPU20 is up
[42279.511891] smpboot: Booting Node 0 Processor 21 APIC 0x4a
[42279.520562] CPU21 is up
[42279.520922] smpboot: Booting Node 0 Processor 22 APIC 0x4c
[42279.529882] CPU22 is up
[42279.530304] smpboot: Booting Node 0 Processor 23 APIC 0x4e
[42279.539905] CPU23 is up
[42279.546600] ACPI: PM: Waking up from system sleep state S3
[42279.565430] ACPI: EC: interrupt unblocked
[42279.578525] nvidia 0000:01:00.0: Enabling HDA controller
[42279.582677] thunderbolt 0000:04:00.0: control channel starting...
[42279.582680] thunderbolt 0000:04:00.0: starting TX ring 0
[42279.582687] thunderbolt 0000:04:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[42279.582690] thunderbolt 0000:04:00.0: starting RX ring 0
[42279.582696] thunderbolt 0000:04:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[42279.582701] thunderbolt 0000:04:00.0: resuming...
[42279.582703] thunderbolt 0000:04:00.0: 0: resuming switch
[42279.582704] thunderbolt 0000:04:00.0: restoring Switch at 0x0 (depth: 0, up port: 15)
[42279.583106] thunderbolt 0000:04:00.0: acking hot plug event on 0:13
[42279.583133] thunderbolt 0000:04:00.0: acking hot plug event on 0:14
[42279.583744] thunderbolt 0000:04:00.0: acking hot plug event on 0:16
[42279.583760] thunderbolt 0000:04:00.0: 0:1: USB4 wake: no, connection wake: no, disconnection wake: no
[42279.583844] thunderbolt 0000:04:00.0: 0:3: USB4 wake: no, connection wake: no, disconnection wake: no
[42279.583848] thunderbolt 0000:04:00.0: 0: disabling wakeup
[42279.592693] thunderbolt 0000:04:00.0: 0: TMU: supports uni-directional mode
[42279.592697] thunderbolt 0000:04:00.0: 0: TMU: supports enhanced uni-directional mode
[42279.592802] thunderbolt 0000:04:00.0: 0: TMU: current mode: off
[42279.592806] thunderbolt 0000:04:00.0: 0: TMU: mode change off -> bi-directional, HiFi requested
[42279.593331] thunderbolt 0000:04:00.0: 0: TMU: mode set to: bi-directional, HiFi
[42279.595631] thunderbolt 0000:04:00.0: resume finished
[42279.596319] thunderbolt 0000:04:00.0: 0:13: DP IN resource available after hotplug
[42279.596323] thunderbolt 0000:04:00.0: looking for DP IN <-> DP OUT pairs:
[42279.597167] pci 0000:00:08.0: Setting to D3hot
[42279.598122] thunderbolt 0000:04:00.0: 0:13: DP IN available
[42279.598128] thunderbolt 0000:04:00.0: 0:13: no suitable DP OUT adapter available, not tunneling
[42279.598617] thunderbolt 0000:04:00.0: 0:14: DP IN resource available after hotplug
[42279.598620] thunderbolt 0000:04:00.0: looking for DP IN <-> DP OUT pairs:
[42279.599142] thunderbolt 0000:04:00.0: 0:13: DP IN available
[42279.599144] thunderbolt 0000:04:00.0: 0:13: no suitable DP OUT adapter available, not tunneling
[42279.599334] thunderbolt 0000:04:00.0: 0:14: DP IN available
[42279.599340] thunderbolt 0000:04:00.0: 0:14: no suitable DP OUT adapter available, not tunneling
[42279.617198] ACPI: EC: event unblocked
[42279.625822] i915 0000:00:02.0: [drm] GT0: GuC firmware i915/mtl_guc_70.bin version 70.53.0
[42279.633008] nvme nvme1: 24/0/0 default/read/poll queues
[42279.642900] i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
[42279.642903] i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
[42279.643152] i915 0000:00:02.0: [drm] GT0: GUC: RC enabled
[42279.643403] i915 0000:00:02.0: [drm] GT1: GuC firmware i915/mtl_guc_70.bin version 70.53.0
[42279.643405] i915 0000:00:02.0: [drm] GT1: HuC firmware i915/mtl_huc_gsc.bin version 8.5.4
[42279.666187] i915 0000:00:02.0: [drm] GT1: HuC: authenticated for clear media
[42279.666651] i915 0000:00:02.0: [drm] GT1: GUC: submission enabled
[42279.666652] i915 0000:00:02.0: [drm] GT1: GUC: SLPC enabled
[42279.666713] i915 0000:00:02.0: [drm] GT1: GUC: RC enabled
[42279.718574] nvme nvme0: 16/0/0 default/read/poll queues
[42279.809449] i915 0000:00:02.0: [drm] GT1: Loaded GSC firmware i915/mtl_gsc_1.bin (cv1.0, r102.1.15.1926, svn 1)
[42279.829915] i915 0000:00:02.0: [drm] GT1: HuC: authenticated for all workloads
[42279.894468] usb 3-4: reset high-speed USB device number 2 using xhci_hcd
[42280.130486] usb 3-9: reset full-speed USB device number 4 using xhci_hcd
[42280.365485] usb 3-8: reset full-speed USB device number 3 using xhci_hcd
[42280.502756] mei_gsc_proxy 0000:80:16.0-0f73db04-97ab-4125-b893-e904ad0d5464: bound 0000:00:02.0 (ops i915_gsc_proxy_component_ops [i915])
[42280.506016] OOM killer enabled.
[42280.506020] Restarting tasks: Starting
[42280.509542] Restarting tasks: Done
[42280.509554] efivarfs: resyncing variable state
[42280.531038] efivarfs: finished resyncing variable state
[42280.531082] random: crng reseeded on system resumption
[42280.535815] PM: suspend exit
[42280.667189] audit: type=1400 audit(1783386029.304:337): apparmor="DENIED" operation="open" class="file" profile="/usr/sbin/cupsd" name="/etc/paperspecs" pid=62604 comm="cupsd" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
[42280.671756] audit: type=1400 audit(1783386029.309:338): apparmor="DENIED" operation="capable" class="cap" profile="/usr/sbin/cupsd" pid=62604 comm="cupsd" capability=12  capname="net_admin"
[42281.306503] audit: type=1400 audit(1783386029.944:339): apparmor="DENIED" operation="open" class="file" profile="snap.firmware-updater.firmware-notifier" name="/proc/sys/vm/max_map_count" pid=62380 comm="firmware-notifi" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[42289.840943] Realtek Internal NBASE-T PHY r8169-0-b400:00: attached PHY driver (mii_bus:phy_addr=r8169-0-b400:00, irq=MAC)
[42289.879278] rfkill: input handler disabled
[42289.984284] r8169 0000:b4:00.0 enp180s0: Link is Down
[42293.082350] wlp181s0f0: regulatory prevented using AP config, downgraded
[42293.136408] wlp181s0f0: authenticate with 4c:8d:53:87:7c:89 (local address=44:38:e8:f6:0e:dc)
[42293.139279] wlp181s0f0: send auth to 4c:8d:53:87:7c:89 (try 1/3)
[42293.154217] wlp181s0f0: authenticated
[42293.155124] wlp181s0f0: associate with 4c:8d:53:87:7c:89 (try 1/3)
[42293.197945] wlp181s0f0: RX AssocResp from 4c:8d:53:87:7c:89 (capab=0x1501 status=0 aid=11)
[42293.204010] wlp181s0f0: associated
[42293.477738] wlp181s0f0: Limiting TX power to 30 (30 - 0) dBm as advertised by 4c:8d:53:87:7c:89
[49785.479812] perf: interrupt took too long (4956 > 4955), lowering kernel.perf_event_max_sample_rate to 40000
[53054.205324] audit: type=1400 audit(1783396803.150:340): apparmor="DENIED" operation="open" class="file" profile="snap.firmware-updater.firmware-notifier" name="/proc/sys/vm/max_map_count" pid=72567 comm="firmware-notifi" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[54579.268169] systemd-sysv-generator[73866]: SysV service '/etc/init.d/oracle-free-23c' lacks a native systemd unit file, automatically generating a unit file for compatibility.
[54579.268173] systemd-sysv-generator[73866]: Please update package to include a native systemd unit file.
[54579.268175] systemd-sysv-generator[73866]: ! This compatibility logic is deprecated, expect removal soon. !
[54579.483318] set_capacity_and_notify: 16 callbacks suppressed
[54579.483321] loop25: detected capacity change from 0 to 385344
[54579.642903] systemd-sysv-generator[74056]: SysV service '/etc/init.d/oracle-free-23c' lacks a native systemd unit file, automatically generating a unit file for compatibility.
[54579.642907] systemd-sysv-generator[74056]: Please update package to include a native systemd unit file.
[54579.642909] systemd-sysv-generator[74056]: ! This compatibility logic is deprecated, expect removal soon. !
[54579.912057] systemd-sysv-generator[74240]: SysV service '/etc/init.d/oracle-free-23c' lacks a native systemd unit file, automatically generating a unit file for compatibility.
[54579.912062] systemd-sysv-generator[74240]: Please update package to include a native systemd unit file.
[54579.912063] systemd-sysv-generator[74240]: ! This compatibility logic is deprecated, expect removal soon. !
[54580.138389] audit: type=1400 audit(1783398329.105:341): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/snapd/27406/usr/lib/snapd/snap-confine" pid=74259 comm="apparmor_parser"
[54580.237021] audit: type=1400 audit(1783398329.203:342): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.chromium.hook.configure" pid=74265 comm="apparmor_parser"
[54580.313508] audit: type=1400 audit(1783398329.280:343): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap-update-ns.chromium" pid=74261 comm="apparmor_parser"
[54580.436950] audit: type=1400 audit(1783398329.403:344): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.chromium.daemon" pid=74264 comm="apparmor_parser"
[54580.445563] audit: type=1400 audit(1783398329.412:345): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.chromium.chromium" pid=74263 comm="apparmor_parser"
[54580.451122] audit: type=1400 audit(1783398329.418:346): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.chromium.chromedriver" pid=74262 comm="apparmor_parser"
[54580.457770] audit: type=1400 audit(1783398329.424:347): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.cups.cupstestppd" pid=74278 comm="apparmor_parser"
[54580.457779] audit: type=1400 audit(1783398329.424:348): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.cups" pid=74267 comm="apparmor_parser"
[54580.458151] audit: type=1400 audit(1783398329.425:349): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.cups.ippeveprinter" pid=74281 comm="apparmor_parser"
[54580.458333] audit: type=1400 audit(1783398329.425:350): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.cups.ippfind" pid=74282 comm="apparmor_parser"
[54580.613318] systemd-sysv-generator[74474]: SysV service '/etc/init.d/oracle-free-23c' lacks a native systemd unit file, automatically generating a unit file for compatibility.
[54580.613323] systemd-sysv-generator[74474]: Please update package to include a native systemd unit file.
[54580.613324] systemd-sysv-generator[74474]: ! This compatibility logic is deprecated, expect removal soon. !
[54581.422885] systemd-sysv-generator[74695]: SysV service '/etc/init.d/oracle-free-23c' lacks a native systemd unit file, automatically generating a unit file for compatibility.
[54581.422891] systemd-sysv-generator[74695]: Please update package to include a native systemd unit file.
[54581.422892] systemd-sysv-generator[74695]: ! This compatibility logic is deprecated, expect removal soon. !
[63853.424289] kauditd_printk_skb: 29 callbacks suppressed
[63853.424294] audit: type=1400 audit(1783407602.531:380): apparmor="DENIED" operation="open" class="file" profile="snap.firmware-updater.firmware-notifier" name="/proc/sys/vm/max_map_count" pid=83053 comm="firmware-notifi" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[74652.118426] audit: type=1400 audit(1783418401.388:381): apparmor="DENIED" operation="open" class="file" profile="snap.firmware-updater.firmware-notifier" name="/proc/sys/vm/max_map_count" pid=91230 comm="firmware-notifi" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[76561.583834] msi_wmi: Unknown event received
[76561.712807] msi_wmi: Unknown event received
[76584.330200] wlp181s0f0: disconnect from AP 4c:8d:53:87:7c:89 for new auth to 4c:8d:53:87:ca:59
[76584.378550] wlp181s0f0: regulatory prevented using AP config, downgraded
[76584.423387] wlp181s0f0: authenticate with 4c:8d:53:87:ca:59 (local address=44:38:e8:f6:0e:dc)
[76584.426411] wlp181s0f0: send auth to 4c:8d:53:87:ca:59 (try 1/3)
[76584.435101] wlp181s0f0: authenticated
[76584.435742] wlp181s0f0: associate with 4c:8d:53:87:ca:59 (try 1/3)
[76584.493142] wlp181s0f0: RX ReassocResp from 4c:8d:53:87:ca:59 (capab=0x1501 status=0 aid=2)
[76584.499172] wlp181s0f0: associated
[76584.679370] wlp181s0f0: Limiting TX power to 30 (30 - 0) dBm as advertised by 4c:8d:53:87:ca:59
[76606.196326] wlp181s0f0: Connection to AP 4c:8d:53:87:ca:59 lost
[76608.214448] iwlwifi 0000:b5:00.0: fail to flush all tx fifo queues Q 1
[76608.214464] iwlwifi 0000:b5:00.0: Queue 1 is stuck 23 24
[76608.764100] wlp181s0f0: regulatory prevented using AP config, downgraded
[76608.817759] wlp181s0f0: authenticate with 4c:8d:53:87:7c:89 (local address=44:38:e8:f6:0e:dc)
[76608.820103] wlp181s0f0: send auth to 4c:8d:53:87:7c:89 (try 1/3)
[76610.172184] wlp181s0f0: send auth to 4c:8d:53:87:7c:89 (try 2/3)
[76611.196106] wlp181s0f0: send auth to 4c:8d:53:87:7c:89 (try 3/3)
[76612.219342] wlp181s0f0: authentication with 4c:8d:53:87:7c:89 timed out
[76613.076507] wlp181s0f0: regulatory prevented using AP config, downgraded
[76613.129910] wlp181s0f0: authenticate with e4:82:10:43:56:49 (local address=44:38:e8:f6:0e:dc)
[76613.132541] wlp181s0f0: send auth to e4:82:10:43:56:49 (try 1/3)
[76613.173076] wlp181s0f0: authenticated
[76613.174385] wlp181s0f0: associate with e4:82:10:43:56:49 (try 1/3)
[76613.242943] wlp181s0f0: RX AssocResp from e4:82:10:43:56:49 (capab=0x1501 status=0 aid=2)
[76613.249469] wlp181s0f0: associated
[76613.348131] wlp181s0f0: Limiting TX power to 23 (23 - 0) dBm as advertised by e4:82:10:43:56:49
[76631.588985] wlp181s0f0: Connection to AP e4:82:10:43:56:49 lost
[76632.107871] wlp181s0f0: regulatory prevented using AP config, downgraded
[76632.161260] wlp181s0f0: authenticate with e4:82:10:43:4f:a9 (local address=44:38:e8:f6:0e:dc)
[76632.163946] wlp181s0f0: send auth to e4:82:10:43:4f:a9 (try 1/3)
[76632.266321] wlp181s0f0: send auth to e4:82:10:43:4f:a9 (try 2/3)
[76632.369041] wlp181s0f0: send auth to e4:82:10:43:4f:a9 (try 3/3)
[76632.470099] wlp181s0f0: authentication with e4:82:10:43:4f:a9 timed out
[76633.242354] wlp181s0f0: regulatory prevented using AP config, downgraded
[76633.278384] wlp181s0f0: authenticate with e4:82:10:43:56:39 (local address=44:38:e8:f6:0e:dc)
[76633.281387] wlp181s0f0: send auth to e4:82:10:43:56:39 (try 1/3)
[76633.383846] wlp181s0f0: send auth to e4:82:10:43:56:39 (try 2/3)
[76633.484730] wlp181s0f0: send auth to e4:82:10:43:56:39 (try 3/3)
[76633.586025] wlp181s0f0: authentication with e4:82:10:43:56:39 timed out
[76634.727457] wlp181s0f0: regulatory prevented using AP config, downgraded
[76634.781207] wlp181s0f0: authenticate with 4c:8d:53:87:a8:59 (local address=44:38:e8:f6:0e:dc)
[76634.783979] wlp181s0f0: send auth to 4c:8d:53:87:a8:59 (try 1/3)
[76634.897746] wlp181s0f0: send auth to 4c:8d:53:87:a8:59 (try 2/3)
[76635.000480] wlp181s0f0: send auth to 4c:8d:53:87:a8:59 (try 3/3)
[76635.111442] wlp181s0f0: authentication with 4c:8d:53:87:a8:59 timed out
[76646.534240] wlp181s0f0: regulatory prevented using AP config, downgraded
[76646.587651] wlp181s0f0: authenticate with e4:82:10:43:50:29 (local address=44:38:e8:f6:0e:dc)
[76646.590428] wlp181s0f0: send auth to e4:82:10:43:50:29 (try 1/3)
[76646.695289] wlp181s0f0: send auth to e4:82:10:43:50:29 (try 2/3)
[76646.796958] wlp181s0f0: send auth to e4:82:10:43:50:29 (try 3/3)
[76646.899364] wlp181s0f0: authentication with e4:82:10:43:50:29 timed out
[76648.298149] wlp181s0f0: regulatory prevented using AP config, downgraded
[76648.351356] wlp181s0f0: authenticate with e4:82:10:43:53:09 (local address=44:38:e8:f6:0e:dc)
[76648.354108] wlp181s0f0: send auth to e4:82:10:43:53:09 (try 1/3)
[76648.456826] wlp181s0f0: send auth to e4:82:10:43:53:09 (try 2/3)
[76648.561150] wlp181s0f0: send auth to e4:82:10:43:53:09 (try 3/3)
[76648.663215] wlp181s0f0: authentication with e4:82:10:43:53:09 timed out
[76676.232539] wlp181s0f0: authenticate with b6:35:c4:99:57:c6 (local address=44:38:e8:f6:0e:dc)
[76676.235169] wlp181s0f0: send auth to b6:35:c4:99:57:c6 (try 1/3)
[76676.250505] wlp181s0f0: authenticated
[76676.251383] wlp181s0f0: associate with b6:35:c4:99:57:c6 (try 1/3)
[76676.270225] wlp181s0f0: RX AssocResp from b6:35:c4:99:57:c6 (capab=0x411 status=0 aid=1)
[76676.277174] wlp181s0f0: associated
[78204.727217] perf: interrupt took too long (6219 > 6195), lowering kernel.perf_event_max_sample_rate to 32000
[78433.361457] msi_wmi: Unknown event received
[78433.532484] msi_wmi: Unknown event received
[78434.906779] workqueue: acpi_os_execute_deferred hogged CPU for >10000us 4 times, consider switching to WQ_UNBOUND
[78435.498768] workqueue: acpi_os_execute_deferred hogged CPU for >10000us 5 times, consider switching to WQ_UNBOUND
[79381.953930] wlp181s0f0: deauthenticating from b6:35:c4:99:57:c6 by local choice (Reason: 3=DEAUTH_LEAVING)
[79382.077863] wlp181s0f0: regulatory prevented using AP config, downgraded
[79382.140744] wlp181s0f0: authenticate with 80:ae:54:b8:0c:fa (local address=44:38:e8:f6:0e:dc)
[79382.143397] wlp181s0f0: send auth to 80:ae:54:b8:0c:fa (try 1/3)
[79382.146697] wlp181s0f0: authenticated
[79382.148157] wlp181s0f0: associate with 80:ae:54:b8:0c:fa (try 1/3)
[79382.153745] wlp181s0f0: RX AssocResp from 80:ae:54:b8:0c:fa (capab=0x1911 status=0 aid=6)
[79382.158955] wlp181s0f0: associated
[79382.228997] wlp181s0f0: Limiting TX power to 35 (35 - 0) dBm as advertised by 80:ae:54:b8:0c:fa
[79728.556079] wlp181s0f0: Connection to AP 80:ae:54:b8:0c:fa lost
[79730.048395] wlp181s0f0: regulatory prevented using AP config, downgraded
[79730.111646] wlp181s0f0: authenticate with 80:ae:54:b8:0c:fa (local address=44:38:e8:f6:0e:dc)
[79730.114301] wlp181s0f0: send auth to 80:ae:54:b8:0c:fa (try 1/3)
[79730.116734] wlp181s0f0: authenticated
[79730.119305] wlp181s0f0: associate with 80:ae:54:b8:0c:fa (try 1/3)
[79730.123474] wlp181s0f0: RX AssocResp from 80:ae:54:b8:0c:fa (capab=0x1911 status=0 aid=6)
[79730.129912] wlp181s0f0: associated
[79730.793327] wlp181s0f0: Limiting TX power to 35 (35 - 0) dBm as advertised by 80:ae:54:b8:0c:fa
[84126.890823] wlp181s0f0: Connection to AP 80:ae:54:b8:0c:fa lost
[84129.495859] wlp181s0f0: regulatory prevented using AP config, downgraded
[84129.559049] wlp181s0f0: authenticate with 80:ae:54:b8:0c:fa (local address=44:38:e8:f6:0e:dc)
[84129.561666] wlp181s0f0: send auth to 80:ae:54:b8:0c:fa (try 1/3)
[84129.565353] wlp181s0f0: authenticated
[84129.567026] wlp181s0f0: associate with 80:ae:54:b8:0c:fa (try 1/3)
[84129.572918] wlp181s0f0: RX AssocResp from 80:ae:54:b8:0c:fa (capab=0x1911 status=0 aid=4)
[84129.577915] wlp181s0f0: associated
[84129.639868] wlp181s0f0: Limiting TX power to 35 (35 - 0) dBm as advertised by 80:ae:54:b8:0c:fa
[84137.027906] wlp181s0f0: Connection to AP 80:ae:54:b8:0c:fa lost
[84138.458494] wlp181s0f0: regulatory prevented using AP config, downgraded
[84138.521688] wlp181s0f0: authenticate with 80:ae:54:b8:0c:fa (local address=44:38:e8:f6:0e:dc)
[84138.524453] wlp181s0f0: send auth to 80:ae:54:b8:0c:fa (try 1/3)
[84138.527390] wlp181s0f0: authenticated
[84138.530026] wlp181s0f0: associate with 80:ae:54:b8:0c:fa (try 1/3)
[84138.535279] wlp181s0f0: RX AssocResp from 80:ae:54:b8:0c:fa (capab=0x1911 status=0 aid=4)
[84138.540588] wlp181s0f0: associated
[84139.061109] wlp181s0f0: Limiting TX power to 35 (35 - 0) dBm as advertised by 80:ae:54:b8:0c:fa
[84146.448613] wlp181s0f0: Connection to AP 80:ae:54:b8:0c:fa lost
[84147.468204] wlp181s0f0: regulatory prevented using AP config, downgraded
[84147.531289] wlp181s0f0: authenticate with 80:ae:54:b8:0c:fa (local address=44:38:e8:f6:0e:dc)
[84147.533972] wlp181s0f0: send auth to 80:ae:54:b8:0c:fa (try 1/3)
[84147.536662] wlp181s0f0: authenticated
[84147.537822] wlp181s0f0: associate with 80:ae:54:b8:0c:fa (try 1/3)
[84147.542986] wlp181s0f0: RX AssocResp from 80:ae:54:b8:0c:fa (capab=0x1911 status=0 aid=4)
[84147.547765] wlp181s0f0: associated
[84147.662611] wlp181s0f0: Limiting TX power to 35 (35 - 0) dBm as advertised by 80:ae:54:b8:0c:fa
[84154.435684] wlp181s0f0: Connection to AP 80:ae:54:b8:0c:fa lost
[84155.423891] wlp181s0f0: regulatory prevented using AP config, downgraded
[84155.486855] wlp181s0f0: authenticate with 80:ae:54:b8:0c:fa (local address=44:38:e8:f6:0e:dc)
[84155.489493] wlp181s0f0: send auth to 80:ae:54:b8:0c:fa (try 1/3)
[84155.492308] wlp181s0f0: authenticated
[84155.493602] wlp181s0f0: associate with 80:ae:54:b8:0c:fa (try 1/3)
[84155.499705] wlp181s0f0: RX AssocResp from 80:ae:54:b8:0c:fa (capab=0x1911 status=0 aid=4)
[84155.504716] wlp181s0f0: associated
[84155.547129] wlp181s0f0: Limiting TX power to 35 (35 - 0) dBm as advertised by 80:ae:54:b8:0c:fa
[84158.019546] wlp181s0f0: Connection to AP 80:ae:54:b8:0c:fa lost
[84158.752188] wlp181s0f0: regulatory prevented using AP config, downgraded
[84158.815441] wlp181s0f0: authenticate with 80:ae:54:b8:0c:fa (local address=44:38:e8:f6:0e:dc)
[84158.818199] wlp181s0f0: send auth to 80:ae:54:b8:0c:fa (try 1/3)
[84158.821850] wlp181s0f0: authenticated
[84158.823643] wlp181s0f0: associate with 80:ae:54:b8:0c:fa (try 1/3)
[84158.829254] wlp181s0f0: RX AssocResp from 80:ae:54:b8:0c:fa (capab=0x1911 status=0 aid=4)
[84158.836141] wlp181s0f0: associated
[84159.541174] wlp181s0f0: Limiting TX power to 35 (35 - 0) dBm as advertised by 80:ae:54:b8:0c:fa
[84185.360473] wlp181s0f0: Connection to AP 80:ae:54:b8:0c:fa lost
[84186.312052] wlp181s0f0: regulatory prevented using AP config, downgraded
[84186.374881] wlp181s0f0: authenticate with 80:ae:54:b8:0c:fa (local address=44:38:e8:f6:0e:dc)
[84186.377523] wlp181s0f0: send auth to 80:ae:54:b8:0c:fa (try 1/3)
[84186.381893] wlp181s0f0: authenticated
[84186.382881] wlp181s0f0: associate with 80:ae:54:b8:0c:fa (try 1/3)
[84186.390211] wlp181s0f0: RX AssocResp from 80:ae:54:b8:0c:fa (capab=0x1911 status=0 aid=4)
[84186.395551] wlp181s0f0: associated
[84187.495657] wlp181s0f0: Limiting TX power to 35 (35 - 0) dBm as advertised by 80:ae:54:b8:0c:fa
[84191.401610] wlp181s0f0: Connection to AP 80:ae:54:b8:0c:fa lost
[84193.509194] wlp181s0f0: regulatory prevented using AP config, downgraded
[84193.572429] wlp181s0f0: authenticate with 80:ae:54:b8:0c:fa (local address=44:38:e8:f6:0e:dc)
[84193.575089] wlp181s0f0: send auth to 80:ae:54:b8:0c:fa (try 1/3)
[84193.577365] wlp181s0f0: authenticated
[84193.578876] wlp181s0f0: associate with 80:ae:54:b8:0c:fa (try 1/3)
[84193.585234] wlp181s0f0: RX AssocResp from 80:ae:54:b8:0c:fa (capab=0x1911 status=0 aid=4)
[84193.590490] wlp181s0f0: associated
[84194.971977] wlp181s0f0: Limiting TX power to 35 (35 - 0) dBm as advertised by 80:ae:54:b8:0c:fa
[84199.491499] wlp181s0f0: Connection to AP 80:ae:54:b8:0c:fa lost
[84201.579025] wlp181s0f0: regulatory prevented using AP config, downgraded
[84201.641538] wlp181s0f0: authenticate with 80:ae:54:b8:0c:fa (local address=44:38:e8:f6:0e:dc)
[84201.644111] wlp181s0f0: send auth to 80:ae:54:b8:0c:fa (try 1/3)
[84201.647761] wlp181s0f0: authenticated
[84201.649770] wlp181s0f0: associate with 80:ae:54:b8:0c:fa (try 1/3)
[84201.655875] wlp181s0f0: RX AssocResp from 80:ae:54:b8:0c:fa (capab=0x1911 status=0 aid=4)
[84201.661031] wlp181s0f0: associated
[84202.240952] wlp181s0f0: Limiting TX power to 35 (35 - 0) dBm as advertised by 80:ae:54:b8:0c:fa
[84205.327915] iwlwifi 0000:b5:00.0: missed beacons exceeds threshold, but receiving data. Stay connected, Expect bugs.
[84205.430274] iwlwifi 0000:b5:00.0: missed beacons exceeds threshold, but receiving data. Stay connected, Expect bugs.
[84205.532784] wlp181s0f0: Connection to AP 80:ae:54:b8:0c:fa lost
[84206.442622] wlp181s0f0: regulatory prevented using AP config, downgraded
[84206.505627] wlp181s0f0: authenticate with 80:ae:54:b8:0c:fa (local address=44:38:e8:f6:0e:dc)
[84206.508225] wlp181s0f0: send auth to 80:ae:54:b8:0c:fa (try 1/3)
[84206.510647] wlp181s0f0: authenticated
[84206.511549] wlp181s0f0: associate with 80:ae:54:b8:0c:fa (try 1/3)
[84206.517299] wlp181s0f0: RX AssocResp from 80:ae:54:b8:0c:fa (capab=0x1911 status=0 aid=4)
[84206.522433] wlp181s0f0: associated
[84207.156251] wlp181s0f0: Limiting TX power to 35 (35 - 0) dBm as advertised by 80:ae:54:b8:0c:fa
[84214.748547] iwlwifi 0000:b5:00.0: missed beacons exceeds threshold, but receiving data. Stay connected, Expect bugs.
[84214.850927] iwlwifi 0000:b5:00.0: missed beacons exceeds threshold, but receiving data. Stay connected, Expect bugs.
[84214.953588] iwlwifi 0000:b5:00.0: missed beacons exceeds threshold, but receiving data. Stay connected, Expect bugs.
[84215.055784] wlp181s0f0: Connection to AP 80:ae:54:b8:0c:fa lost
[84216.007643] wlp181s0f0: regulatory prevented using AP config, downgraded
[84216.070839] wlp181s0f0: authenticate with 80:ae:54:b8:0c:fa (local address=44:38:e8:f6:0e:dc)
[84216.073411] wlp181s0f0: send auth to 80:ae:54:b8:0c:fa (try 1/3)
[84216.075944] wlp181s0f0: authenticated
[84216.076362] wlp181s0f0: associate with 80:ae:54:b8:0c:fa (try 1/3)
[84216.081981] wlp181s0f0: RX AssocResp from 80:ae:54:b8:0c:fa (capab=0x1911 status=0 aid=4)
[84216.086889] wlp181s0f0: associated
[84217.296700] wlp181s0f0: Limiting TX power to 35 (35 - 0) dBm as advertised by 80:ae:54:b8:0c:fa
[85455.705038] audit: type=1400 audit(1783429205.146:382): apparmor="DENIED" operation="open" class="file" profile="snap.firmware-updater.firmware-notifier" name="/proc/sys/vm/max_map_count" pid=103590 comm="firmware-notifi" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[86075.437907] wlp181s0f0: Connection to AP 80:ae:54:b8:0c:fa lost
[86076.942151] wlp181s0f0: regulatory prevented using AP config, downgraded
[86077.004989] wlp181s0f0: authenticate with 80:ae:54:b8:0c:fa (local address=44:38:e8:f6:0e:dc)
[86077.007683] wlp181s0f0: send auth to 80:ae:54:b8:0c:fa (try 1/3)
[86077.010679] wlp181s0f0: authenticated
[86077.012119] wlp181s0f0: associate with 80:ae:54:b8:0c:fa (try 1/3)
[86077.018401] wlp181s0f0: RX AssocResp from 80:ae:54:b8:0c:fa (capab=0x1911 status=0 aid=4)
[86077.023870] wlp181s0f0: associated
[86077.470514] wlp181s0f0: Limiting TX power to 35 (35 - 0) dBm as advertised by 80:ae:54:b8:0c:fa
[86574.567875] wlp181s0f0: deauthenticating from 80:ae:54:b8:0c:fa by local choice (Reason: 3=DEAUTH_LEAVING)
[86575.937422] rfkill: input handler enabled
[86592.236109] PM: suspend entry (deep)
[86593.256613] Filesystems sync: 1.020 seconds
[86593.292058] Freezing user space processes
[86593.294472] Freezing user space processes completed (elapsed 0.002 seconds)
[86593.294479] OOM killer disabled.
[86593.294481] Freezing remaining freezable tasks
[86593.296241] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[86593.296317] printk: Suspending console(s) (use no_console_suspend to debug)
[86593.771250] ACPI: EC: interrupt blocked
[86593.787829] thunderbolt 0000:04:00.0: suspending...
[86593.787833] thunderbolt 0000:04:00.0: 0: suspending switch
[86593.787836] thunderbolt 0000:04:00.0: 0: enabling wakeup: 0x1f
[86593.802788] thunderbolt 0000:04:00.0: suspend finished
[86593.802792] thunderbolt 0000:04:00.0: stopping RX ring 0
[86593.802797] thunderbolt 0000:04:00.0: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
[86593.802813] thunderbolt 0000:04:00.0: stopping TX ring 0
[86593.802817] thunderbolt 0000:04:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[86593.802822] thunderbolt 0000:04:00.0: control channel stopped
[86593.826089] ACPI: PM: Preparing to enter system sleep state S3
[86593.833686] ACPI: EC: event blocked
[86593.833687] ACPI: EC: EC stopped
[86593.833687] ACPI: PM: Saving platform NVS memory
[86593.833880] Disabling non-boot CPUs ...
[86593.836888] smpboot: CPU 23 is now offline
[86593.842490] smpboot: CPU 22 is now offline
[86593.845861] smpboot: CPU 21 is now offline
[86593.850364] smpboot: CPU 20 is now offline
[86593.854943] smpboot: CPU 19 is now offline
[86593.858521] smpboot: CPU 18 is now offline
[86593.862950] smpboot: CPU 17 is now offline
[86593.866428] smpboot: CPU 16 is now offline
[86593.870748] smpboot: CPU 15 is now offline
[86593.874108] smpboot: CPU 14 is now offline
[86593.878164] smpboot: CPU 13 is now offline
[86593.881801] smpboot: CPU 12 is now offline
[86593.885907] smpboot: CPU 11 is now offline
[86593.889804] smpboot: CPU 10 is now offline
[86593.893456] smpboot: CPU 9 is now offline
[86593.897374] smpboot: CPU 8 is now offline
[86593.901034] smpboot: CPU 7 is now offline
[86593.904585] smpboot: CPU 6 is now offline
[86593.908134] smpboot: CPU 5 is now offline
[86593.911860] smpboot: CPU 4 is now offline
[86593.915305] smpboot: CPU 3 is now offline
[86593.918792] smpboot: CPU 2 is now offline
[86593.922094] smpboot: CPU 1 is now offline
[86593.933517] ACPI: PM: Low-level resume complete
[86593.933612] ACPI: EC: EC started
[86593.933613] ACPI: PM: Restoring platform NVS memory
[86593.935839] Enabling non-boot CPUs ...
[86593.936157] smpboot: Booting Node 0 Processor 1 APIC 0x8
[86593.943131] CPU1 is up
[86593.943628] smpboot: Booting Node 0 Processor 2 APIC 0x20
[86593.949680] CPU2 is up
[86593.949996] smpboot: Booting Node 0 Processor 3 APIC 0x28
[86593.955723] CPU3 is up
[86593.956028] smpboot: Booting Node 0 Processor 4 APIC 0x30
[86593.962055] CPU4 is up
[86593.962372] smpboot: Booting Node 0 Processor 5 APIC 0x38
[86593.967928] CPU5 is up
[86593.968229] smpboot: Booting Node 0 Processor 6 APIC 0x50
[86593.974160] CPU6 is up
[86593.974522] smpboot: Booting Node 0 Processor 7 APIC 0x58
[86593.981173] CPU7 is up
[86593.981595] smpboot: Booting Node 0 Processor 8 APIC 0x10
[86593.988761] core: The event 0x5d0 is not supported as an auto-counter reload event.
[86593.988769] core: cpu_atom PMU driver: 
[86593.988771] ... version:                   6
[86593.988771] ... bit width:                 48
[86593.988772] ... generic counters:          8
[86593.988773] ... generic bitmap:            00000000000000ff
[86593.988774] ... fixed-purpose counters:    6
[86593.988774] ... fixed-purpose bitmap:      0000000000000077
[86593.988775] ... value mask:                0000ffffffffffff
[86593.988775] ... max period:                00007fffffffffff
[86593.988776] ... global_ctrl mask:          00000077000000ff
[86593.990218] CPU8 is up
[86593.990606] smpboot: Booting Node 0 Processor 9 APIC 0x12
[86593.999231] CPU9 is up
[86593.999607] smpboot: Booting Node 0 Processor 10 APIC 0x14
[86594.006343] CPU10 is up
[86594.006772] smpboot: Booting Node 0 Processor 11 APIC 0x16
[86594.013558] CPU11 is up
[86594.013993] smpboot: Booting Node 0 Processor 12 APIC 0x18
[86594.022430] CPU12 is up
[86594.022863] smpboot: Booting Node 0 Processor 13 APIC 0x1a
[86594.029427] CPU13 is up
[86594.029860] smpboot: Booting Node 0 Processor 14 APIC 0x1c
[86594.038709] CPU14 is up
[86594.039139] smpboot: Booting Node 0 Processor 15 APIC 0x1e
[86594.047797] CPU15 is up
[86594.048171] smpboot: Booting Node 0 Processor 16 APIC 0x40
[86594.056674] CPU16 is up
[86594.057099] smpboot: Booting Node 0 Processor 17 APIC 0x42
[86594.065657] CPU17 is up
[86594.066079] smpboot: Booting Node 0 Processor 18 APIC 0x44
[86594.074958] CPU18 is up
[86594.075388] smpboot: Booting Node 0 Processor 19 APIC 0x46
[86594.084062] CPU19 is up
[86594.084489] smpboot: Booting Node 0 Processor 20 APIC 0x48
[86594.093811] CPU20 is up
[86594.094284] smpboot: Booting Node 0 Processor 21 APIC 0x4a
[86594.101758] CPU21 is up
[86594.102189] smpboot: Booting Node 0 Processor 22 APIC 0x4c
[86594.109801] CPU22 is up
[86594.110240] smpboot: Booting Node 0 Processor 23 APIC 0x4e
[86594.119240] CPU23 is up
[86594.126021] ACPI: PM: Waking up from system sleep state S3
[86594.138835] ACPI: EC: interrupt unblocked
[86594.151564] nvidia 0000:01:00.0: Enabling HDA controller
[86594.154181] thunderbolt 0000:04:00.0: control channel starting...
[86594.154186] thunderbolt 0000:04:00.0: starting TX ring 0
[86594.154195] thunderbolt 0000:04:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[86594.154198] thunderbolt 0000:04:00.0: starting RX ring 0
[86594.154204] thunderbolt 0000:04:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[86594.154212] thunderbolt 0000:04:00.0: resuming...
[86594.154214] thunderbolt 0000:04:00.0: 0: resuming switch
[86594.154215] thunderbolt 0000:04:00.0: restoring Switch at 0x0 (depth: 0, up port: 15)
[86594.155164] thunderbolt 0000:04:00.0: 0:1: USB4 wake: no, connection wake: no, disconnection wake: no
[86594.155333] thunderbolt 0000:04:00.0: 0:3: USB4 wake: no, connection wake: no, disconnection wake: no
[86594.155336] thunderbolt 0000:04:00.0: 0: disabling wakeup
[86594.161817] thunderbolt 0000:04:00.0: acking hot plug event on 0:13
[86594.161960] thunderbolt 0000:04:00.0: acking hot plug event on 0:14
[86594.162070] thunderbolt 0000:04:00.0: acking hot plug event on 0:16
[86594.164146] thunderbolt 0000:04:00.0: 0: TMU: supports uni-directional mode
[86594.164150] thunderbolt 0000:04:00.0: 0: TMU: supports enhanced uni-directional mode
[86594.164253] thunderbolt 0000:04:00.0: 0: TMU: current mode: off
[86594.164258] thunderbolt 0000:04:00.0: 0: TMU: mode change off -> bi-directional, HiFi requested
[86594.164762] thunderbolt 0000:04:00.0: 0: TMU: mode set to: bi-directional, HiFi
[86594.167086] thunderbolt 0000:04:00.0: resume finished
[86594.167397] thunderbolt 0000:04:00.0: 0:13: DP IN resource available after hotplug
[86594.167402] thunderbolt 0000:04:00.0: looking for DP IN <-> DP OUT pairs:
[86594.168525] pci 0000:00:08.0: Setting to D3hot
[86594.169158] thunderbolt 0000:04:00.0: 0:13: DP IN available
[86594.169163] thunderbolt 0000:04:00.0: 0:13: no suitable DP OUT adapter available, not tunneling
[86594.169326] thunderbolt 0000:04:00.0: 0:14: DP IN resource available after hotplug
[86594.169330] thunderbolt 0000:04:00.0: looking for DP IN <-> DP OUT pairs:
[86594.169546] thunderbolt 0000:04:00.0: 0:13: DP IN available
[86594.169550] thunderbolt 0000:04:00.0: 0:13: no suitable DP OUT adapter available, not tunneling
[86594.169618] thunderbolt 0000:04:00.0: 0:14: DP IN available
[86594.169622] thunderbolt 0000:04:00.0: 0:14: no suitable DP OUT adapter available, not tunneling
[86594.187074] ACPI: EC: event unblocked
[86594.196824] i915 0000:00:02.0: [drm] GT0: GuC firmware i915/mtl_guc_70.bin version 70.53.0
[86594.212909] nvme nvme1: 24/0/0 default/read/poll queues
[86594.226190] nvme nvme0: 16/0/0 default/read/poll queues
[86594.228379] i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
[86594.228382] i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
[86594.228634] i915 0000:00:02.0: [drm] GT0: GUC: RC enabled
[86594.228891] i915 0000:00:02.0: [drm] GT1: GuC firmware i915/mtl_guc_70.bin version 70.53.0
[86594.228892] i915 0000:00:02.0: [drm] GT1: HuC firmware i915/mtl_huc_gsc.bin version 8.5.4
[86594.252635] i915 0000:00:02.0: [drm] GT1: HuC: authenticated for clear media
[86594.254000] i915 0000:00:02.0: [drm] GT1: GUC: submission enabled
[86594.254001] i915 0000:00:02.0: [drm] GT1: GUC: SLPC enabled
[86594.254063] i915 0000:00:02.0: [drm] GT1: GUC: RC enabled
[86594.397315] i915 0000:00:02.0: [drm] GT1: Loaded GSC firmware i915/mtl_gsc_1.bin (cv1.0, r102.1.15.1926, svn 1)
[86594.417551] i915 0000:00:02.0: [drm] GT1: HuC: authenticated for all workloads
[86594.465834] usb 3-4: reset high-speed USB device number 2 using xhci_hcd
[86594.701856] usb 3-8: reset full-speed USB device number 3 using xhci_hcd
[86594.938886] usb 3-9: reset full-speed USB device number 4 using xhci_hcd
[86595.067918] mei_gsc_proxy 0000:80:16.0-0f73db04-97ab-4125-b893-e904ad0d5464: bound 0000:00:02.0 (ops i915_gsc_proxy_component_ops [i915])
[86595.070606] OOM killer enabled.
[86595.070609] Restarting tasks: Starting
[86595.073835] Restarting tasks: Done
[86595.073846] efivarfs: resyncing variable state
[86595.093201] efivarfs: finished resyncing variable state
[86595.093243] random: crng reseeded on system resumption
[86595.096359] PM: suspend exit
[86595.226675] audit: type=1400 audit(1783471515.290:383): apparmor="DENIED" operation="open" class="file" profile="/usr/sbin/cupsd" name="/etc/paperspecs" pid=105576 comm="cupsd" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
[86595.231980] audit: type=1400 audit(1783471515.296:384): apparmor="DENIED" operation="capable" class="cap" profile="/usr/sbin/cupsd" pid=105576 comm="cupsd" capability=12  capname="net_admin"
[86595.265467] audit: type=1400 audit(1783471515.329:385): apparmor="DENIED" operation="open" class="file" profile="snap.firmware-updater.firmware-notifier" name="/proc/sys/vm/max_map_count" pid=105350 comm="firmware-notifi" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[86604.084423] Realtek Internal NBASE-T PHY r8169-0-b400:00: attached PHY driver (mii_bus:phy_addr=r8169-0-b400:00, irq=MAC)
[86604.109425] rfkill: input handler disabled
[86604.243654] r8169 0000:b4:00.0 enp180s0: Link is Down
[86607.288595] wlp181s0f0: regulatory prevented using AP config, downgraded
[86607.344652] wlp181s0f0: authenticate with e4:82:10:43:34:a9 (local address=44:38:e8:f6:0e:dc)
[86607.347380] wlp181s0f0: send auth to e4:82:10:43:34:a9 (try 1/3)
[86607.403668] wlp181s0f0: authenticated
[86607.405532] wlp181s0f0: associate with e4:82:10:43:34:a9 (try 1/3)
[86607.441529] wlp181s0f0: RX AssocResp from e4:82:10:43:34:a9 (capab=0x1501 status=0 aid=1)
[86607.447673] wlp181s0f0: associated
[86607.710238] wlp181s0f0: Limiting TX power to 30 (30 - 0) dBm as advertised by e4:82:10:43:34:a9
[87444.791892] wlp181s0f0: disconnect from AP e4:82:10:43:34:a9 for new auth to 4c:8d:53:87:7c:89
[87444.850372] wlp181s0f0: regulatory prevented using AP config, downgraded
[87444.895563] wlp181s0f0: authenticate with 4c:8d:53:87:7c:89 (local address=44:38:e8:f6:0e:dc)
[87444.898549] wlp181s0f0: send auth to 4c:8d:53:87:7c:89 (try 1/3)
[87444.908456] wlp181s0f0: authenticated
[87444.909427] wlp181s0f0: associate with 4c:8d:53:87:7c:89 (try 1/3)
[87444.965513] wlp181s0f0: RX ReassocResp from 4c:8d:53:87:7c:89 (capab=0x1501 status=0 aid=10)
[87444.970793] wlp181s0f0: associated
[87445.006699] wlp181s0f0: Limiting TX power to 30 (30 - 0) dBm as advertised by 4c:8d:53:87:7c:89
[87481.788023] audit: type=1400 audit(1783472402.255:386): apparmor="DENIED" operation="open" class="file" profile="snap.firmware-updater.firmware-notifier" name="/proc/sys/vm/max_map_count" pid=107672 comm="firmware-notifi" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[98280.106455] audit: type=1400 audit(1783483200.751:387): apparmor="DENIED" operation="open" class="file" profile="snap.firmware-updater.firmware-notifier" name="/proc/sys/vm/max_map_count" pid=119547 comm="firmware-notifi" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[109084.463140] audit: type=1400 audit(1783494005.272:388): apparmor="DENIED" operation="open" class="file" profile="snap.firmware-updater.firmware-notifier" name="/proc/sys/vm/max_map_count" pid=125900 comm="firmware-notifi" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[119883.543783] audit: type=1400 audit(1783504804.516:389): apparmor="DENIED" operation="open" class="file" profile="snap.firmware-updater.firmware-notifier" name="/proc/sys/vm/max_map_count" pid=132469 comm="firmware-notifi" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[120176.255863] wlp181s0f0: deauthenticating from 4c:8d:53:87:7c:89 by local choice (Reason: 3=DEAUTH_LEAVING)
[120177.548483] rfkill: input handler enabled
[120193.739390] PM: suspend entry (deep)
[120194.791794] Filesystems sync: 1.052 seconds
[120194.826411] Freezing user space processes
[120194.830100] Freezing user space processes completed (elapsed 0.003 seconds)
[120194.830104] OOM killer disabled.
[120194.830105] Freezing remaining freezable tasks
[120194.831945] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[120194.832058] printk: Suspending console(s) (use no_console_suspend to debug)
[120195.340615] thunderbolt 0000:04:00.0: suspending...
[120195.340621] thunderbolt 0000:04:00.0: 0: suspending switch
[120195.340625] thunderbolt 0000:04:00.0: 0: enabling wakeup: 0x1f
[120195.341815] thunderbolt 0000:04:00.0: suspend finished
[120195.341820] thunderbolt 0000:04:00.0: stopping RX ring 0
[120195.341826] thunderbolt 0000:04:00.0: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
[120195.341841] thunderbolt 0000:04:00.0: stopping TX ring 0
[120195.341846] thunderbolt 0000:04:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[120195.341853] thunderbolt 0000:04:00.0: control channel stopped
[120195.347699] ACPI: EC: interrupt blocked
[120195.400693] ACPI: PM: Preparing to enter system sleep state S3
[120195.408906] ACPI: EC: event blocked
[120195.408907] ACPI: EC: EC stopped
[120195.408907] ACPI: PM: Saving platform NVS memory
[120195.409100] Disabling non-boot CPUs ...
[120195.412146] smpboot: CPU 23 is now offline
[120195.417050] smpboot: CPU 22 is now offline
[120195.421666] smpboot: CPU 21 is now offline
[120195.426359] smpboot: CPU 20 is now offline
[120195.430783] smpboot: CPU 19 is now offline
[120195.435487] smpboot: CPU 18 is now offline
[120195.439911] smpboot: CPU 17 is now offline
[120195.443956] smpboot: CPU 16 is now offline
[120195.447862] smpboot: CPU 15 is now offline
[120195.451428] smpboot: CPU 14 is now offline
[120195.455395] smpboot: CPU 13 is now offline
[120195.458884] smpboot: CPU 12 is now offline
[120195.462595] smpboot: CPU 11 is now offline
[120195.466411] smpboot: CPU 10 is now offline
[120195.469711] smpboot: CPU 9 is now offline
[120195.473256] smpboot: CPU 8 is now offline
[120195.476797] smpboot: CPU 7 is now offline
[120195.480259] smpboot: CPU 6 is now offline
[120195.483864] smpboot: CPU 5 is now offline
[120195.487121] smpboot: CPU 4 is now offline
[120195.490636] smpboot: CPU 3 is now offline
[120195.494061] smpboot: CPU 2 is now offline
[120195.497156] smpboot: CPU 1 is now offline
[120195.508676] ACPI: PM: Low-level resume complete
[120195.508774] ACPI: EC: EC started
[120195.508775] ACPI: PM: Restoring platform NVS memory
[120195.511291] Enabling non-boot CPUs ...
[120195.511689] smpboot: Booting Node 0 Processor 1 APIC 0x8
[120195.516659] CPU1 is up
[120195.517052] smpboot: Booting Node 0 Processor 2 APIC 0x20
[120195.522569] CPU2 is up
[120195.522856] smpboot: Booting Node 0 Processor 3 APIC 0x28
[120195.528485] CPU3 is up
[120195.528795] smpboot: Booting Node 0 Processor 4 APIC 0x30
[120195.534547] CPU4 is up
[120195.534832] smpboot: Booting Node 0 Processor 5 APIC 0x38
[120195.540754] CPU5 is up
[120195.541079] smpboot: Booting Node 0 Processor 6 APIC 0x50
[120195.546716] CPU6 is up
[120195.547032] smpboot: Booting Node 0 Processor 7 APIC 0x58
[120195.554965] CPU7 is up
[120195.555300] smpboot: Booting Node 0 Processor 8 APIC 0x10
[120195.562541] core: The event 0x5d0 is not supported as an auto-counter reload event.
[120195.562550] core: cpu_atom PMU driver: 
[120195.562552] ... version:                   6
[120195.562553] ... bit width:                 48
[120195.562554] ... generic counters:          8
[120195.562555] ... generic bitmap:            00000000000000ff
[120195.562555] ... fixed-purpose counters:    6
[120195.562556] ... fixed-purpose bitmap:      0000000000000077
[120195.562556] ... value mask:                0000ffffffffffff
[120195.562557] ... max period:                00007fffffffffff
[120195.562558] ... global_ctrl mask:          00000077000000ff
[120195.564049] CPU8 is up
[120195.564481] smpboot: Booting Node 0 Processor 9 APIC 0x12
[120195.573089] CPU9 is up
[120195.573534] smpboot: Booting Node 0 Processor 10 APIC 0x14
[120195.582062] CPU10 is up
[120195.582483] smpboot: Booting Node 0 Processor 11 APIC 0x16
[120195.591477] CPU11 is up
[120195.591909] smpboot: Booting Node 0 Processor 12 APIC 0x18
[120195.600224] CPU12 is up
[120195.600658] smpboot: Booting Node 0 Processor 13 APIC 0x1a
[120195.607166] CPU13 is up
[120195.607596] smpboot: Booting Node 0 Processor 14 APIC 0x1c
[120195.614277] CPU14 is up
[120195.614654] smpboot: Booting Node 0 Processor 15 APIC 0x1e
[120195.623600] CPU15 is up
[120195.624037] smpboot: Booting Node 0 Processor 16 APIC 0x40
[120195.632416] CPU16 is up
[120195.632858] smpboot: Booting Node 0 Processor 17 APIC 0x42
[120195.641459] CPU17 is up
[120195.641883] smpboot: Booting Node 0 Processor 18 APIC 0x44
[120195.650825] CPU18 is up
[120195.651261] smpboot: Booting Node 0 Processor 19 APIC 0x46
[120195.658749] CPU19 is up
[120195.659183] smpboot: Booting Node 0 Processor 20 APIC 0x48
[120195.667711] CPU20 is up
[120195.668145] smpboot: Booting Node 0 Processor 21 APIC 0x4a
[120195.676647] CPU21 is up
[120195.677084] smpboot: Booting Node 0 Processor 22 APIC 0x4c
[120195.685950] CPU22 is up
[120195.686335] smpboot: Booting Node 0 Processor 23 APIC 0x4e
[120195.694000] CPU23 is up
[120195.700610] ACPI: PM: Waking up from system sleep state S3
[120195.718980] ACPI: EC: interrupt unblocked
[120195.732608] nvidia 0000:01:00.0: Enabling HDA controller
[120195.733829] thunderbolt 0000:04:00.0: control channel starting...
[120195.733833] thunderbolt 0000:04:00.0: starting TX ring 0
[120195.733841] thunderbolt 0000:04:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[120195.733843] thunderbolt 0000:04:00.0: starting RX ring 0
[120195.733849] thunderbolt 0000:04:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[120195.733856] thunderbolt 0000:04:00.0: resuming...
[120195.733857] thunderbolt 0000:04:00.0: 0: resuming switch
[120195.733859] thunderbolt 0000:04:00.0: restoring Switch at 0x0 (depth: 0, up port: 15)
[120195.734739] thunderbolt 0000:04:00.0: 0:1: USB4 wake: no, connection wake: no, disconnection wake: no
[120195.734767] thunderbolt 0000:04:00.0: 0:3: USB4 wake: no, connection wake: no, disconnection wake: no
[120195.734769] thunderbolt 0000:04:00.0: 0: disabling wakeup
[120195.735397] thunderbolt 0000:04:00.0: acking hot plug event on 0:13
[120195.735537] thunderbolt 0000:04:00.0: acking hot plug event on 0:14
[120195.735669] thunderbolt 0000:04:00.0: acking hot plug event on 0:16
[120195.743604] thunderbolt 0000:04:00.0: 0: TMU: supports uni-directional mode
[120195.743606] thunderbolt 0000:04:00.0: 0: TMU: supports enhanced uni-directional mode
[120195.743739] thunderbolt 0000:04:00.0: 0: TMU: current mode: off
[120195.743743] thunderbolt 0000:04:00.0: 0: TMU: mode change off -> bi-directional, HiFi requested
[120195.744243] thunderbolt 0000:04:00.0: 0: TMU: mode set to: bi-directional, HiFi
[120195.746549] thunderbolt 0000:04:00.0: resume finished
[120195.747285] thunderbolt 0000:04:00.0: 0:13: DP IN resource available after hotplug
[120195.747291] thunderbolt 0000:04:00.0: looking for DP IN <-> DP OUT pairs:
[120195.747912] pci 0000:00:08.0: Setting to D3hot
[120195.748596] thunderbolt 0000:04:00.0: 0:13: DP IN available
[120195.748601] thunderbolt 0000:04:00.0: 0:13: no suitable DP OUT adapter available, not tunneling
[120195.749088] thunderbolt 0000:04:00.0: 0:14: DP IN resource available after hotplug
[120195.749090] thunderbolt 0000:04:00.0: looking for DP IN <-> DP OUT pairs:
[120195.749137] thunderbolt 0000:04:00.0: 0:13: DP IN available
[120195.749139] thunderbolt 0000:04:00.0: 0:13: no suitable DP OUT adapter available, not tunneling
[120195.749629] thunderbolt 0000:04:00.0: 0:14: DP IN available
[120195.749632] thunderbolt 0000:04:00.0: 0:14: no suitable DP OUT adapter available, not tunneling
[120195.767375] ACPI: EC: event unblocked
[120195.777454] i915 0000:00:02.0: [drm] GT0: GuC firmware i915/mtl_guc_70.bin version 70.53.0
[120195.788770] nvme nvme1: 24/0/0 default/read/poll queues
[120195.801085] i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
[120195.801088] i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
[120195.801339] i915 0000:00:02.0: [drm] GT0: GUC: RC enabled
[120195.801603] i915 0000:00:02.0: [drm] GT1: GuC firmware i915/mtl_guc_70.bin version 70.53.0
[120195.801605] i915 0000:00:02.0: [drm] GT1: HuC firmware i915/mtl_huc_gsc.bin version 8.5.4
[120195.802378] nvme nvme0: 16/0/0 default/read/poll queues
[120195.825430] i915 0000:00:02.0: [drm] GT1: HuC: authenticated for clear media
[120195.826306] i915 0000:00:02.0: [drm] GT1: GUC: submission enabled
[120195.826308] i915 0000:00:02.0: [drm] GT1: GUC: SLPC enabled
[120195.826399] i915 0000:00:02.0: [drm] GT1: GUC: RC enabled
[120195.966337] i915 0000:00:02.0: [drm] GT1: Loaded GSC firmware i915/mtl_gsc_1.bin (cv1.0, r102.1.15.1926, svn 1)
[120195.986826] i915 0000:00:02.0: [drm] GT1: HuC: authenticated for all workloads
[120196.048626] usb 3-9: reset full-speed USB device number 4 using xhci_hcd
[120196.283771] usb 3-4: reset high-speed USB device number 2 using xhci_hcd
[120196.519595] usb 3-8: reset full-speed USB device number 3 using xhci_hcd
[120196.656076] mei_gsc_proxy 0000:80:16.0-0f73db04-97ab-4125-b893-e904ad0d5464: bound 0000:00:02.0 (ops i915_gsc_proxy_component_ops [i915])
[120196.660515] OOM killer enabled.
[120196.660518] Restarting tasks: Starting
[120196.663690] Restarting tasks: Done
[120196.663698] efivarfs: resyncing variable state
[120196.689622] efivarfs: finished resyncing variable state
[120196.689661] random: crng reseeded on system resumption
[120196.693078] PM: suspend exit
[120196.816532] audit: type=1400 audit(1783558817.304:390): apparmor="DENIED" operation="open" class="file" profile="/usr/sbin/cupsd" name="/etc/paperspecs" pid=133315 comm="cupsd" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
[120196.820630] audit: type=1400 audit(1783558817.309:391): apparmor="DENIED" operation="capable" class="cap" profile="/usr/sbin/cupsd" pid=133315 comm="cupsd" capability=12  capname="net_admin"
[120196.854623] audit: type=1400 audit(1783558817.342:392): apparmor="DENIED" operation="open" class="file" profile="snap.firmware-updater.firmware-notifier" name="/proc/sys/vm/max_map_count" pid=133121 comm="firmware-notifi" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[120205.585200] Realtek Internal NBASE-T PHY r8169-0-b400:00: attached PHY driver (mii_bus:phy_addr=r8169-0-b400:00, irq=MAC)
[120205.617270] rfkill: input handler disabled
[120205.743456] r8169 0000:b4:00.0 enp180s0: Link is Down
[120208.833378] wlp181s0f0: regulatory prevented using AP config, downgraded
[120208.889177] wlp181s0f0: authenticate with 4c:8d:53:87:80:89 (local address=44:38:e8:f6:0e:dc)
[120208.891818] wlp181s0f0: send auth to 4c:8d:53:87:80:89 (try 1/3)
[120208.903906] wlp181s0f0: authenticated
[120208.905190] wlp181s0f0: associate with 4c:8d:53:87:80:89 (try 1/3)
[120208.936827] wlp181s0f0: RX AssocResp from 4c:8d:53:87:80:89 (capab=0x1501 status=0 aid=5)
[120208.942085] wlp181s0f0: associated
[120209.101840] wlp181s0f0: Limiting TX power to 30 (30 - 0) dBm as advertised by 4c:8d:53:87:80:89
[122325.550168] wlp181s0f0: disconnect from AP 4c:8d:53:87:80:89 for new auth to 4c:8d:53:87:7c:89
[122325.610691] wlp181s0f0: regulatory prevented using AP config, downgraded
[122325.658312] wlp181s0f0: authenticate with 4c:8d:53:87:7c:89 (local address=44:38:e8:f6:0e:dc)
[122325.661200] wlp181s0f0: send auth to 4c:8d:53:87:7c:89 (try 1/3)
[122325.670540] wlp181s0f0: authenticated
[122325.671851] wlp181s0f0: associate with 4c:8d:53:87:7c:89 (try 1/3)
[122325.752773] wlp181s0f0: RX ReassocResp from 4c:8d:53:87:7c:89 (capab=0x1501 status=0 aid=19)
[122325.759673] wlp181s0f0: associated
[122325.993767] wlp181s0f0: Limiting TX power to 30 (30 - 0) dBm as advertised by 4c:8d:53:87:7c:89
[122646.775155] wlp181s0f0: deauthenticating from 4c:8d:53:87:7c:89 by local choice (Reason: 3=DEAUTH_LEAVING)
[122646.927892] wlp181s0f0: authenticate with b6:35:c4:99:57:c6 (local address=44:38:e8:f6:0e:dc)
[122646.930574] wlp181s0f0: send auth to b6:35:c4:99:57:c6 (try 1/3)
[122646.947901] wlp181s0f0: authenticated
[122646.949456] wlp181s0f0: associate with b6:35:c4:99:57:c6 (try 1/3)
[122646.969006] wlp181s0f0: RX AssocResp from b6:35:c4:99:57:c6 (capab=0x411 status=0 aid=1)
[122646.976118] wlp181s0f0: associated
[130981.732856] audit: type=1400 audit(1783569602.531:393): apparmor="DENIED" operation="open" class="file" profile="snap.firmware-updater.firmware-notifier" name="/proc/sys/vm/max_map_count" pid=141513 comm="firmware-notifi" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[140136.339457] audit: type=1400 audit(1783578757.302:394): apparmor="AUDIT" operation="userns_create" class="namespace" info="Userns create - transitioning profile" profile="unconfined" pid=147141 comm="WeChatAppEx" requested="userns_create" target="unprivileged_userns" execpath="/opt/wechat/RadiumWMPF/runtime/WeChatAppEx"
[140136.340138] audit: type=1400 audit(1783578757.303:395): apparmor="DENIED" operation="capable" class="cap" profile="unprivileged_userns" pid=147149 comm="WeChatAppEx" capability=21  capname="sys_admin"
[141780.776624] audit: type=1400 audit(1783580401.770:396): apparmor="DENIED" operation="open" class="file" profile="snap.firmware-updater.firmware-notifier" name="/proc/sys/vm/max_map_count" pid=149048 comm="firmware-notifi" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[152579.644264] audit: type=1400 audit(1783591200.777:397): apparmor="DENIED" operation="open" class="file" profile="snap.firmware-updater.firmware-notifier" name="/proc/sys/vm/max_map_count" pid=163568 comm="firmware-notifi" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[153543.751831] wlp181s0f0: deauthenticating from b6:35:c4:99:57:c6 by local choice (Reason: 3=DEAUTH_LEAVING)
[153545.122348] rfkill: input handler enabled
[153561.529883] PM: suspend entry (deep)
[153562.564721] Filesystems sync: 1.034 seconds
[153562.601150] Freezing user space processes
[153562.605025] Freezing user space processes completed (elapsed 0.003 seconds)
[153562.605033] OOM killer disabled.
[153562.605034] Freezing remaining freezable tasks
[153562.606917] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[153562.606993] printk: Suspending console(s) (use no_console_suspend to debug)
[153563.078981] ACPI: EC: interrupt blocked
[153563.108517] thunderbolt 0000:04:00.0: suspending...
[153563.108521] thunderbolt 0000:04:00.0: 0: suspending switch
[153563.108524] thunderbolt 0000:04:00.0: 0: enabling wakeup: 0x1f
[153563.109879] thunderbolt 0000:04:00.0: suspend finished
[153563.109881] thunderbolt 0000:04:00.0: stopping RX ring 0
[153563.109886] thunderbolt 0000:04:00.0: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
[153563.109897] thunderbolt 0000:04:00.0: stopping TX ring 0
[153563.109902] thunderbolt 0000:04:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[153563.109907] thunderbolt 0000:04:00.0: control channel stopped
[153563.131240] ACPI: PM: Preparing to enter system sleep state S3
[153563.139411] ACPI: EC: event blocked
[153563.139412] ACPI: EC: EC stopped
[153563.139412] ACPI: PM: Saving platform NVS memory
[153563.139548] Disabling non-boot CPUs ...
[153563.142928] smpboot: CPU 23 is now offline
[153563.149510] smpboot: CPU 22 is now offline
[153563.155130] smpboot: CPU 21 is now offline
[153563.161378] smpboot: CPU 20 is now offline
[153563.166794] smpboot: CPU 19 is now offline
[153563.170321] smpboot: CPU 18 is now offline
[153563.174910] smpboot: CPU 17 is now offline
[153563.179465] smpboot: CPU 16 is now offline
[153563.184030] smpboot: CPU 15 is now offline
[153563.187616] smpboot: CPU 14 is now offline
[153563.192055] smpboot: CPU 13 is now offline
[153563.195963] smpboot: CPU 12 is now offline
[153563.200273] smpboot: CPU 11 is now offline
[153563.203979] smpboot: CPU 10 is now offline
[153563.207633] smpboot: CPU 9 is now offline
[153563.211077] smpboot: CPU 8 is now offline
[153563.214573] smpboot: CPU 7 is now offline
[153563.218073] smpboot: CPU 6 is now offline
[153563.221670] smpboot: CPU 5 is now offline
[153563.225155] smpboot: CPU 4 is now offline
[153563.228638] smpboot: CPU 3 is now offline
[153563.231655] smpboot: CPU 2 is now offline
[153563.235012] smpboot: CPU 1 is now offline
[153563.246124] ACPI: PM: Low-level resume complete
[153563.246220] ACPI: EC: EC started
[153563.246221] ACPI: PM: Restoring platform NVS memory
[153563.248503] Enabling non-boot CPUs ...
[153563.248831] smpboot: Booting Node 0 Processor 1 APIC 0x8
[153563.255691] CPU1 is up
[153563.256027] smpboot: Booting Node 0 Processor 2 APIC 0x20
[153563.262012] CPU2 is up
[153563.262338] smpboot: Booting Node 0 Processor 3 APIC 0x28
[153563.268113] CPU3 is up
[153563.268488] smpboot: Booting Node 0 Processor 4 APIC 0x30
[153563.274364] CPU4 is up
[153563.274732] smpboot: Booting Node 0 Processor 5 APIC 0x38
[153563.280346] CPU5 is up
[153563.280725] smpboot: Booting Node 0 Processor 6 APIC 0x50
[153563.286490] CPU6 is up
[153563.286872] smpboot: Booting Node 0 Processor 7 APIC 0x58
[153563.293504] CPU7 is up
[153563.293841] smpboot: Booting Node 0 Processor 8 APIC 0x10
[153563.301088] core: The event 0x5d0 is not supported as an auto-counter reload event.
[153563.301096] core: cpu_atom PMU driver: 
[153563.301098] ... version:                   6
[153563.301099] ... bit width:                 48
[153563.301100] ... generic counters:          8
[153563.301100] ... generic bitmap:            00000000000000ff
[153563.301101] ... fixed-purpose counters:    6
[153563.301101] ... fixed-purpose bitmap:      0000000000000077
[153563.301102] ... value mask:                0000ffffffffffff
[153563.301103] ... max period:                00007fffffffffff
[153563.301103] ... global_ctrl mask:          00000077000000ff
[153563.302507] CPU8 is up
[153563.302897] smpboot: Booting Node 0 Processor 9 APIC 0x12
[153563.309562] CPU9 is up
[153563.310013] smpboot: Booting Node 0 Processor 10 APIC 0x14
[153563.316781] CPU10 is up
[153563.317220] smpboot: Booting Node 0 Processor 11 APIC 0x16
[153563.325999] CPU11 is up
[153563.326373] smpboot: Booting Node 0 Processor 12 APIC 0x18
[153563.334697] CPU12 is up
[153563.335132] smpboot: Booting Node 0 Processor 13 APIC 0x1a
[153563.343766] CPU13 is up
[153563.344205] smpboot: Booting Node 0 Processor 14 APIC 0x1c
[153563.353025] CPU14 is up
[153563.353455] smpboot: Booting Node 0 Processor 15 APIC 0x1e
[153563.362135] CPU15 is up
[153563.362573] smpboot: Booting Node 0 Processor 16 APIC 0x40
[153563.370933] CPU16 is up
[153563.371304] smpboot: Booting Node 0 Processor 17 APIC 0x42
[153563.380299] CPU17 is up
[153563.380672] smpboot: Booting Node 0 Processor 18 APIC 0x44
[153563.389302] CPU18 is up
[153563.389736] smpboot: Booting Node 0 Processor 19 APIC 0x46
[153563.398363] CPU19 is up
[153563.398796] smpboot: Booting Node 0 Processor 20 APIC 0x48
[153563.406141] CPU20 is up
[153563.406518] smpboot: Booting Node 0 Processor 21 APIC 0x4a
[153563.415141] CPU21 is up
[153563.415572] smpboot: Booting Node 0 Processor 22 APIC 0x4c
[153563.424523] CPU22 is up
[153563.424897] smpboot: Booting Node 0 Processor 23 APIC 0x4e
[153563.434589] CPU23 is up
[153563.441068] ACPI: PM: Waking up from system sleep state S3
[153563.456889] ACPI: EC: interrupt unblocked
[153563.463524] nvidia 0000:01:00.0: Enabling HDA controller
[153563.465946] thunderbolt 0000:04:00.0: control channel starting...
[153563.465951] thunderbolt 0000:04:00.0: starting TX ring 0
[153563.465958] thunderbolt 0000:04:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[153563.465961] thunderbolt 0000:04:00.0: starting RX ring 0
[153563.465967] thunderbolt 0000:04:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[153563.465973] thunderbolt 0000:04:00.0: resuming...
[153563.465974] thunderbolt 0000:04:00.0: 0: resuming switch
[153563.465976] thunderbolt 0000:04:00.0: restoring Switch at 0x0 (depth: 0, up port: 15)
[153563.466159] thunderbolt 0000:04:00.0: 0:1: USB4 wake: no, connection wake: no, disconnection wake: no
[153563.466848] thunderbolt 0000:04:00.0: 0:3: USB4 wake: no, connection wake: no, disconnection wake: no
[153563.466850] thunderbolt 0000:04:00.0: 0: disabling wakeup
[153563.469830] thunderbolt 0000:04:00.0: acking hot plug event on 0:13
[153563.469942] thunderbolt 0000:04:00.0: acking hot plug event on 0:14
[153563.470087] thunderbolt 0000:04:00.0: acking hot plug event on 0:16
[153563.475591] thunderbolt 0000:04:00.0: 0: TMU: supports uni-directional mode
[153563.475593] thunderbolt 0000:04:00.0: 0: TMU: supports enhanced uni-directional mode
[153563.475719] thunderbolt 0000:04:00.0: 0: TMU: current mode: off
[153563.475722] thunderbolt 0000:04:00.0: 0: TMU: mode change off -> bi-directional, HiFi requested
[153563.476231] thunderbolt 0000:04:00.0: 0: TMU: mode set to: bi-directional, HiFi
[153563.478539] thunderbolt 0000:04:00.0: resume finished
[153563.478646] thunderbolt 0000:04:00.0: 0:13: DP IN resource available after hotplug
[153563.478650] thunderbolt 0000:04:00.0: looking for DP IN <-> DP OUT pairs:
[153563.478773] thunderbolt 0000:04:00.0: 0:13: DP IN available
[153563.478775] thunderbolt 0000:04:00.0: 0:13: no suitable DP OUT adapter available, not tunneling
[153563.479878] pci 0000:00:08.0: Setting to D3hot
[153563.480468] thunderbolt 0000:04:00.0: 0:14: DP IN resource available after hotplug
[153563.480470] thunderbolt 0000:04:00.0: looking for DP IN <-> DP OUT pairs:
[153563.480501] thunderbolt 0000:04:00.0: 0:13: DP IN available
[153563.480503] thunderbolt 0000:04:00.0: 0:13: no suitable DP OUT adapter available, not tunneling
[153563.480644] thunderbolt 0000:04:00.0: 0:14: DP IN available
[153563.480645] thunderbolt 0000:04:00.0: 0:14: no suitable DP OUT adapter available, not tunneling
[153563.500024] ACPI: EC: event unblocked
[153563.510752] i915 0000:00:02.0: [drm] GT0: GuC firmware i915/mtl_guc_70.bin version 70.53.0
[153563.520085] nvme nvme1: 24/0/0 default/read/poll queues
[153563.532888] i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
[153563.532890] i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
[153563.533147] i915 0000:00:02.0: [drm] GT0: GUC: RC enabled
[153563.533438] i915 0000:00:02.0: [drm] GT1: GuC firmware i915/mtl_guc_70.bin version 70.53.0
[153563.533439] i915 0000:00:02.0: [drm] GT1: HuC firmware i915/mtl_huc_gsc.bin version 8.5.4
[153563.537546] nvme nvme0: 16/0/0 default/read/poll queues
[153563.555860] i915 0000:00:02.0: [drm] GT1: HuC: authenticated for clear media
[153563.556724] i915 0000:00:02.0: [drm] GT1: GUC: submission enabled
[153563.556725] i915 0000:00:02.0: [drm] GT1: GUC: SLPC enabled
[153563.556785] i915 0000:00:02.0: [drm] GT1: GUC: RC enabled
[153563.698246] i915 0000:00:02.0: [drm] GT1: Loaded GSC firmware i915/mtl_gsc_1.bin (cv1.0, r102.1.15.1926, svn 1)
[153563.718628] i915 0000:00:02.0: [drm] GT1: HuC: authenticated for all workloads
[153563.776145] usb 3-9: reset full-speed USB device number 4 using xhci_hcd
[153564.011257] usb 3-8: reset full-speed USB device number 3 using xhci_hcd
[153564.248209] usb 3-4: reset high-speed USB device number 2 using xhci_hcd
[153564.382991] mei_gsc_proxy 0000:80:16.0-0f73db04-97ab-4125-b893-e904ad0d5464: bound 0000:00:02.0 (ops i915_gsc_proxy_component_ops [i915])
[153564.386991] OOM killer enabled.
[153564.386995] Restarting tasks: Starting
[153564.390075] Restarting tasks: Done
[153564.390091] efivarfs: resyncing variable state
[153564.417205] efivarfs: finished resyncing variable state
[153564.417249] random: crng reseeded on system resumption
[153564.421631] PM: suspend exit
[153564.543832] audit: type=1400 audit(1783644819.294:398): apparmor="DENIED" operation="open" class="file" profile="/usr/sbin/cupsd" name="/etc/paperspecs" pid=169188 comm="cupsd" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
[153564.549238] audit: type=1400 audit(1783644819.300:399): apparmor="DENIED" operation="capable" class="cap" profile="/usr/sbin/cupsd" pid=169188 comm="cupsd" capability=12  capname="net_admin"
[153564.593227] audit: type=1400 audit(1783644819.344:400): apparmor="DENIED" operation="open" class="file" profile="snap.firmware-updater.firmware-notifier" name="/proc/sys/vm/max_map_count" pid=168896 comm="firmware-notifi" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[153573.281854] Realtek Internal NBASE-T PHY r8169-0-b400:00: attached PHY driver (mii_bus:phy_addr=r8169-0-b400:00, irq=MAC)
[153573.324722] rfkill: input handler disabled
[153573.442281] r8169 0000:b4:00.0 enp180s0: Link is Down
[153576.531236] wlp181s0f0: regulatory prevented using AP config, downgraded
[153576.586922] wlp181s0f0: authenticate with e4:82:10:43:34:a9 (local address=44:38:e8:f6:0e:dc)
[153576.589525] wlp181s0f0: send auth to e4:82:10:43:34:a9 (try 1/3)
[153576.638834] wlp181s0f0: authenticated
[153576.639947] wlp181s0f0: associate with e4:82:10:43:34:a9 (try 1/3)
[153576.683153] wlp181s0f0: RX AssocResp from e4:82:10:43:34:a9 (capab=0x1501 status=0 aid=2)
[153576.688665] wlp181s0f0: associated
[153576.712738] wlp181s0f0: Limiting TX power to 30 (30 - 0) dBm as advertised by e4:82:10:43:34:a9
[153737.576979] rfkill: input handler enabled
[153737.579177] audit: type=1400 audit(1783644992.332:401): apparmor="AUDIT" operation="userns_create" class="namespace" info="Userns create - transitioning profile" profile="unconfined" pid=171429 comm="(ubuntu-insigh)" requested="userns_create" target="unprivileged_userns" execpath="/usr/lib/systemd/systemd-executor"
[153737.579484] audit: type=1400 audit(1783644992.333:402): apparmor="DENIED" operation="capable" class="cap" profile="unprivileged_userns" pid=171429 comm="(ubuntu-insigh)" capability=21  capname="sys_admin"
[153737.579488] audit: type=1400 audit(1783644992.333:403): apparmor="AUDIT" operation="userns_create" class="namespace" info="Userns create - transitioning profile" profile="unconfined" pid=171432 comm="(ubuntu-insigh)" requested="userns_create" target="unprivileged_userns" execpath="/usr/lib/systemd/systemd-executor"
[153737.580380] audit: type=1400 audit(1783644992.333:404): apparmor="DENIED" operation="capable" class="cap" profile="unprivileged_userns" pid=171432 comm="(ubuntu-insigh)" capability=21  capname="sys_admin"
[153737.590878] audit: type=1400 audit(1783644992.344:405): apparmor="DENIED" operation="getattr" class="file" info="Failed name lookup - disconnected path" error=-13 profile="unprivileged_userns" name="" pid=171529 comm="systemd-detect-" requested_mask="r" denied_mask="r" fsuid=60579 ouid=0
[153737.650199] audit: type=1400 audit(1783644992.403:406): apparmor="DENIED" operation="capable" class="cap" profile="fusermount3" pid=171689 comm="fusermount3" capability=1  capname="dac_override"
[153737.650205] audit: type=1400 audit(1783644992.403:407): apparmor="DENIED" operation="capable" class="cap" profile="fusermount3" pid=171689 comm="fusermount3" capability=7  capname="setuid"
[153737.650647] audit: type=1400 audit(1783644992.404:408): apparmor="DENIED" operation="capable" class="cap" profile="fusermount3" pid=171690 comm="fusermount3" capability=7  capname="setuid"
[153737.664228] audit: type=1400 audit(1783644992.417:409): apparmor="DENIED" operation="open" class="file" profile="snap-update-ns.snapd-desktop-integration" name="/run/gdm3/home/gdm-greeter/" pid=171696 comm="snap-update-ns" requested_mask="r" denied_mask="r" fsuid=60579 ouid=60579
[153737.664785] audit: type=1400 audit(1783644992.418:410): apparmor="DENIED" operation="open" class="file" profile="/snap/snapd/27406/usr/lib/snapd/snap-confine" name="/run/gdm3/" pid=171428 comm="snap-confine" requested_mask="r" denied_mask="r" fsuid=60579 ouid=0
[153738.714047] rfkill: input handler disabled
[153743.259177] rfkill: input handler enabled
[153743.293153] rfkill: input handler disabled
[153753.575015] audit: type=1400 audit(1783645008.327:411): apparmor="DENIED" operation="capable" class="cap" profile="fusermount3" pid=174198 comm="fusermount3" capability=1  capname="dac_override"
[153753.575025] audit: type=1400 audit(1783645008.327:412): apparmor="DENIED" operation="capable" class="cap" profile="fusermount3" pid=174198 comm="fusermount3" capability=7  capname="setuid"
[153753.575187] audit: type=1400 audit(1783645008.328:413): apparmor="DENIED" operation="capable" class="cap" profile="fusermount3" pid=174202 comm="fusermount3" capability=7  capname="setuid"
[153753.578297] audit: type=1400 audit(1783645008.331:414): apparmor="DENIED" operation="mount" class="mount" info="failed mntpnt match" error=-13 profile="fusermount3" name="/" pid=174203 comm="fusermount3" flags="rw, rprivate"
[153856.361716] NOTICE: Automounting of tracing to debugfs is deprecated and will be removed in 2030
[153945.847416] audit: type=1400 audit(1783645200.603:415): apparmor="DENIED" operation="open" class="file" profile="snap.firmware-updater.firmware-notifier" name="/proc/sys/vm/max_map_count" pid=175247 comm="firmware-notifi" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[154487.294401] wlp181s0f0: disconnect from AP e4:82:10:43:34:a9 for new auth to 4c:8d:53:87:7c:89
[154487.359154] wlp181s0f0: regulatory prevented using AP config, downgraded
[154487.406468] wlp181s0f0: authenticate with 4c:8d:53:87:7c:89 (local address=44:38:e8:f6:0e:dc)
[154487.408814] wlp181s0f0: send auth to 4c:8d:53:87:7c:89 (try 1/3)
[154487.417675] wlp181s0f0: authenticated
[154487.418253] wlp181s0f0: associate with 4c:8d:53:87:7c:89 (try 1/3)
[154487.485135] wlp181s0f0: RX ReassocResp from 4c:8d:53:87:7c:89 (capab=0x1501 status=0 aid=11)
[154487.490582] wlp181s0f0: associated
[154487.614541] wlp181s0f0: Limiting TX power to 30 (30 - 0) dBm as advertised by 4c:8d:53:87:7c:89
[155433.113665] wlp181s0f0: deauthenticated from 4c:8d:53:87:7c:89 (Reason: 6=CLASS2_FRAME_FROM_NONAUTH_STA)
[155433.173793] wlp181s0f0: regulatory prevented using AP config, downgraded
[155433.222423] wlp181s0f0: authenticate with 4c:8d:53:87:7c:89 (local address=44:38:e8:f6:0e:dc)
[155433.224961] wlp181s0f0: send auth to 4c:8d:53:87:7c:89 (try 1/3)
[155433.236429] wlp181s0f0: authenticated
[155433.237509] wlp181s0f0: associate with 4c:8d:53:87:7c:89 (try 1/3)
[155433.286188] wlp181s0f0: RX AssocResp from 4c:8d:53:87:7c:89 (capab=0x1501 status=0 aid=11)
[155433.293594] wlp181s0f0: associated
[155433.369200] wlp181s0f0: Limiting TX power to 30 (30 - 0) dBm as advertised by 4c:8d:53:87:7c:89
[160313.985475] msi_wmi: Unknown event received
[160314.147587] msi_wmi: Unknown event received
[160314.302708] msi_wmi: Unknown event received
[160594.055995] msi_wmi: Unknown event received
[160594.260402] msi_wmi: Unknown event received
[160594.410824] msi_wmi: Unknown event received
[160594.550896] msi_wmi: Unknown event received
[164037.037785] msi_wmi: Unknown event received
[164037.289445] msi_wmi: Unknown event received
[164037.321796] msi_wmi: Unknown event received
[164037.355297] msi_wmi: Unknown event received
[164037.387540] msi_wmi: Unknown event received
[164037.421169] msi_wmi: Unknown event received
[164037.453561] msi_wmi: Unknown event received
[164037.486472] msi_wmi: Unknown event received
[164037.518586] msi_wmi: Unknown event received
[164037.551743] msi_wmi: Unknown event received
[164037.584555] msi_wmi: Unknown event received
[164037.617556] msi_wmi: Unknown event received
[164037.650253] msi_wmi: Unknown event received
[164037.682638] msi_wmi: Unknown event received
[164037.716293] msi_wmi: Unknown event received
[164037.748591] msi_wmi: Unknown event received
[164037.781906] msi_wmi: Unknown event received
[164037.815613] msi_wmi: Unknown event received
[164037.846793] msi_wmi: Unknown event received
[164037.880085] msi_wmi: Unknown event received
[164037.913668] msi_wmi: Unknown event received
[164037.945641] msi_wmi: Unknown event received
[164037.978770] msi_wmi: Unknown event received
[164038.011246] msi_wmi: Unknown event received
[164517.769065] msi_wmi: Unknown event received
[164517.984133] msi_wmi: Unknown event received
[164747.325885] audit: type=1400 audit(1783656001.904:416): apparmor="DENIED" operation="open" class="file" profile="snap.firmware-updater.firmware-notifier" name="/proc/sys/vm/max_map_count" pid=195345 comm="firmware-notifi" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[170781.044941] msi_wmi: Unknown event received
[170781.234407] msi_wmi: Unknown event received
[170781.370937] msi_wmi: Unknown event received
[175545.923698] audit: type=1400 audit(1783666800.660:417): apparmor="DENIED" operation="open" class="file" profile="snap.firmware-updater.firmware-notifier" name="/proc/sys/vm/max_map_count" pid=204944 comm="firmware-notifi" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[185781.039056] wlp181s0f0: deauthenticating from 4c:8d:53:87:7c:89 by local choice (Reason: 3=DEAUTH_LEAVING)
[185782.216025] rfkill: input handler enabled
[185798.604664] PM: suspend entry (deep)
[185799.568404] Filesystems sync: 0.963 seconds
[185799.602655] Freezing user space processes
[185799.606447] Freezing user space processes completed (elapsed 0.003 seconds)
[185799.606451] OOM killer disabled.
[185799.606451] Freezing remaining freezable tasks
[185799.608844] Freezing remaining freezable tasks completed (elapsed 0.002 seconds)
[185799.608988] printk: Suspending console(s) (use no_console_suspend to debug)
[185800.055134] ACPI: EC: interrupt blocked
[185800.081208] thunderbolt 0000:04:00.0: suspending...
[185800.081212] thunderbolt 0000:04:00.0: 0: suspending switch
[185800.081215] thunderbolt 0000:04:00.0: 0: enabling wakeup: 0x1f
[185800.082397] thunderbolt 0000:04:00.0: suspend finished
[185800.082399] thunderbolt 0000:04:00.0: stopping RX ring 0
[185800.082404] thunderbolt 0000:04:00.0: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
[185800.082415] thunderbolt 0000:04:00.0: stopping TX ring 0
[185800.082419] thunderbolt 0000:04:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[185800.082425] thunderbolt 0000:04:00.0: control channel stopped
[185800.113614] ACPI: PM: Preparing to enter system sleep state S3
[185800.122343] ACPI: EC: event blocked
[185800.122344] ACPI: EC: EC stopped
[185800.122344] ACPI: PM: Saving platform NVS memory
[185800.122522] Disabling non-boot CPUs ...
[185800.125586] smpboot: CPU 23 is now offline
[185800.130559] smpboot: CPU 22 is now offline
[185800.135659] smpboot: CPU 21 is now offline
[185800.140361] smpboot: CPU 20 is now offline
[185800.145404] smpboot: CPU 19 is now offline
[185800.150172] smpboot: CPU 18 is now offline
[185800.155206] smpboot: CPU 17 is now offline
[185800.159419] smpboot: CPU 16 is now offline
[185800.164308] smpboot: CPU 15 is now offline
[185800.168612] smpboot: CPU 14 is now offline
[185800.173183] smpboot: CPU 13 is now offline
[185800.177367] smpboot: CPU 12 is now offline
[185800.181578] smpboot: CPU 11 is now offline
[185800.184978] smpboot: CPU 10 is now offline
[185800.189171] smpboot: CPU 9 is now offline
[185800.192586] smpboot: CPU 8 is now offline
[185800.196369] smpboot: CPU 7 is now offline
[185800.200017] smpboot: CPU 6 is now offline
[185800.203708] smpboot: CPU 5 is now offline
[185800.207268] smpboot: CPU 4 is now offline
[185800.210572] smpboot: CPU 3 is now offline
[185800.214194] smpboot: CPU 2 is now offline
[185800.217308] smpboot: CPU 1 is now offline
[185800.228104] ACPI: PM: Low-level resume complete
[185800.228200] ACPI: EC: EC started
[185800.228201] ACPI: PM: Restoring platform NVS memory
[185800.230489] Enabling non-boot CPUs ...
[185800.231071] smpboot: Booting Node 0 Processor 1 APIC 0x8
[185800.237711] CPU1 is up
[185800.238060] smpboot: Booting Node 0 Processor 2 APIC 0x20
[185800.243700] CPU2 is up
[185800.244056] smpboot: Booting Node 0 Processor 3 APIC 0x28
[185800.249858] CPU3 is up
[185800.250317] smpboot: Booting Node 0 Processor 4 APIC 0x30
[185800.255839] CPU4 is up
[185800.256159] smpboot: Booting Node 0 Processor 5 APIC 0x38
[185800.261893] CPU5 is up
[185800.262254] smpboot: Booting Node 0 Processor 6 APIC 0x50
[185800.268219] CPU6 is up
[185800.268546] smpboot: Booting Node 0 Processor 7 APIC 0x58
[185800.275334] CPU7 is up
[185800.275680] smpboot: Booting Node 0 Processor 8 APIC 0x10
[185800.282742] core: The event 0x5d0 is not supported as an auto-counter reload event.
[185800.282750] core: cpu_atom PMU driver: 
[185800.282752] ... version:                   6
[185800.282753] ... bit width:                 48
[185800.282754] ... generic counters:          8
[185800.282755] ... generic bitmap:            00000000000000ff
[185800.282755] ... fixed-purpose counters:    6
[185800.282756] ... fixed-purpose bitmap:      0000000000000077
[185800.282756] ... value mask:                0000ffffffffffff
[185800.282757] ... max period:                00007fffffffffff
[185800.282758] ... global_ctrl mask:          00000077000000ff
[185800.284329] CPU8 is up
[185800.284725] smpboot: Booting Node 0 Processor 9 APIC 0x12
[185800.293396] CPU9 is up
[185800.293784] smpboot: Booting Node 0 Processor 10 APIC 0x14
[185800.300507] CPU10 is up
[185800.300954] smpboot: Booting Node 0 Processor 11 APIC 0x16
[185800.309780] CPU11 is up
[185800.310222] smpboot: Booting Node 0 Processor 12 APIC 0x18
[185800.318622] CPU12 is up
[185800.319069] smpboot: Booting Node 0 Processor 13 APIC 0x1a
[185800.327579] CPU13 is up
[185800.328022] smpboot: Booting Node 0 Processor 14 APIC 0x1c
[185800.336888] CPU14 is up
[185800.337331] smpboot: Booting Node 0 Processor 15 APIC 0x1e
[185800.345897] CPU15 is up
[185800.346295] smpboot: Booting Node 0 Processor 16 APIC 0x40
[185800.354780] CPU16 is up
[185800.355231] smpboot: Booting Node 0 Processor 17 APIC 0x42
[185800.363896] CPU17 is up
[185800.364337] smpboot: Booting Node 0 Processor 18 APIC 0x44
[185800.373253] CPU18 is up
[185800.373712] smpboot: Booting Node 0 Processor 19 APIC 0x46
[185800.381207] CPU19 is up
[185800.381678] smpboot: Booting Node 0 Processor 20 APIC 0x48
[185800.391013] CPU20 is up
[185800.391458] smpboot: Booting Node 0 Processor 21 APIC 0x4a
[185800.399078] CPU21 is up
[185800.399523] smpboot: Booting Node 0 Processor 22 APIC 0x4c
[185800.407518] CPU22 is up
[185800.407967] smpboot: Booting Node 0 Processor 23 APIC 0x4e
[185800.417552] CPU23 is up
[185800.424161] ACPI: PM: Waking up from system sleep state S3
[185800.438984] ACPI: EC: interrupt unblocked
[185800.439717] nvidia 0000:01:00.0: Enabling HDA controller
[185800.449448] thunderbolt 0000:04:00.0: control channel starting...
[185800.449451] thunderbolt 0000:04:00.0: starting TX ring 0
[185800.449459] thunderbolt 0000:04:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[185800.449461] thunderbolt 0000:04:00.0: starting RX ring 0
[185800.449467] thunderbolt 0000:04:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[185800.449473] thunderbolt 0000:04:00.0: resuming...
[185800.449474] thunderbolt 0000:04:00.0: 0: resuming switch
[185800.449476] thunderbolt 0000:04:00.0: restoring Switch at 0x0 (depth: 0, up port: 15)
[185800.450799] thunderbolt 0000:04:00.0: 0:1: USB4 wake: no, connection wake: no, disconnection wake: no
[185800.450874] thunderbolt 0000:04:00.0: 0:3: USB4 wake: no, connection wake: no, disconnection wake: no
[185800.450878] thunderbolt 0000:04:00.0: 0: disabling wakeup
[185800.451106] thunderbolt 0000:04:00.0: acking hot plug event on 0:13
[185800.451212] thunderbolt 0000:04:00.0: acking hot plug event on 0:14
[185800.451359] thunderbolt 0000:04:00.0: acking hot plug event on 0:16
[185800.459680] thunderbolt 0000:04:00.0: 0: TMU: supports uni-directional mode
[185800.459682] thunderbolt 0000:04:00.0: 0: TMU: supports enhanced uni-directional mode
[185800.459792] thunderbolt 0000:04:00.0: 0: TMU: current mode: off
[185800.459795] thunderbolt 0000:04:00.0: 0: TMU: mode change off -> bi-directional, HiFi requested
[185800.460320] thunderbolt 0000:04:00.0: 0: TMU: mode set to: bi-directional, HiFi
[185800.462624] thunderbolt 0000:04:00.0: resume finished
[185800.462835] thunderbolt 0000:04:00.0: 0:13: DP IN resource available after hotplug
[185800.462840] thunderbolt 0000:04:00.0: looking for DP IN <-> DP OUT pairs:
[185800.462974] thunderbolt 0000:04:00.0: 0:13: DP IN available
[185800.462978] thunderbolt 0000:04:00.0: 0:13: no suitable DP OUT adapter available, not tunneling
[185800.464328] pci 0000:00:08.0: Setting to D3hot
[185800.464981] thunderbolt 0000:04:00.0: 0:14: DP IN resource available after hotplug
[185800.464983] thunderbolt 0000:04:00.0: looking for DP IN <-> DP OUT pairs:
[185800.465162] thunderbolt 0000:04:00.0: 0:13: DP IN available
[185800.465166] thunderbolt 0000:04:00.0: 0:13: no suitable DP OUT adapter available, not tunneling
[185800.465197] thunderbolt 0000:04:00.0: 0:14: DP IN available
[185800.465198] thunderbolt 0000:04:00.0: 0:14: no suitable DP OUT adapter available, not tunneling
[185800.485313] ACPI: EC: event unblocked
[185800.495189] i915 0000:00:02.0: [drm] GT0: GuC firmware i915/mtl_guc_70.bin version 70.53.0
[185800.517771] i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
[185800.517777] i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
[185800.518035] i915 0000:00:02.0: [drm] GT0: GUC: RC enabled
[185800.518319] i915 0000:00:02.0: [drm] GT1: GuC firmware i915/mtl_guc_70.bin version 70.53.0
[185800.518320] i915 0000:00:02.0: [drm] GT1: HuC firmware i915/mtl_huc_gsc.bin version 8.5.4
[185800.521906] nvme nvme0: 16/0/0 default/read/poll queues
[185800.522470] nvme nvme1: 24/0/0 default/read/poll queues
[185800.543524] i915 0000:00:02.0: [drm] GT1: HuC: authenticated for clear media
[185800.544271] i915 0000:00:02.0: [drm] GT1: GUC: submission enabled
[185800.544272] i915 0000:00:02.0: [drm] GT1: GUC: SLPC enabled
[185800.544333] i915 0000:00:02.0: [drm] GT1: GUC: RC enabled
[185800.685588] i915 0000:00:02.0: [drm] GT1: Loaded GSC firmware i915/mtl_gsc_1.bin (cv1.0, r102.1.15.1926, svn 1)
[185800.705843] i915 0000:00:02.0: [drm] GT1: HuC: authenticated for all workloads
[185800.767805] usb 3-9: reset full-speed USB device number 4 using xhci_hcd
[185801.002844] usb 3-8: reset full-speed USB device number 3 using xhci_hcd
[185801.237900] usb 3-4: reset high-speed USB device number 2 using xhci_hcd
[185801.372497] mei_gsc_proxy 0000:80:16.0-0f73db04-97ab-4125-b893-e904ad0d5464: bound 0000:00:02.0 (ops i915_gsc_proxy_component_ops [i915])
[185801.375200] OOM killer enabled.
[185801.375203] Restarting tasks: Starting
[185801.380757] Restarting tasks: Done
[185801.380769] efivarfs: resyncing variable state
[185801.405902] efivarfs: finished resyncing variable state
[185801.405948] random: crng reseeded on system resumption
[185801.410172] PM: suspend exit
[185801.533613] audit: type=1400 audit(1783760570.302:418): apparmor="DENIED" operation="open" class="file" profile="/usr/sbin/cupsd" name="/etc/paperspecs" pid=213246 comm="cupsd" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
[185801.539421] audit: type=1400 audit(1783760570.308:419): apparmor="DENIED" operation="capable" class="cap" profile="/usr/sbin/cupsd" pid=213246 comm="cupsd" capability=12  capname="net_admin"
[185801.569994] audit: type=1400 audit(1783760570.339:420): apparmor="DENIED" operation="open" class="file" profile="snap.firmware-updater.firmware-notifier" name="/proc/sys/vm/max_map_count" pid=213045 comm="firmware-notifi" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[185811.782381] Realtek Internal NBASE-T PHY r8169-0-b400:00: attached PHY driver (mii_bus:phy_addr=r8169-0-b400:00, irq=MAC)
[185811.818223] rfkill: input handler disabled
[185811.937613] r8169 0000:b4:00.0 enp180s0: Link is Down
[185817.736078] wlp181s0f0: regulatory prevented using AP config, downgraded
[185817.803946] wlp181s0f0: authenticate with 80:ae:54:b8:0c:fa (local address=44:38:e8:f6:0e:dc)
[185817.807030] wlp181s0f0: send auth to 80:ae:54:b8:0c:fa (try 1/3)
[185817.810759] wlp181s0f0: authenticated
[185817.811296] wlp181s0f0: associate with 80:ae:54:b8:0c:fa (try 1/3)
[185817.817770] wlp181s0f0: RX AssocResp from 80:ae:54:b8:0c:fa (capab=0x1911 status=0 aid=10)
[185817.826933] wlp181s0f0: associated
[185817.917094] wlp181s0f0: Limiting TX power to 35 (35 - 0) dBm as advertised by 80:ae:54:b8:0c:fa
[185994.836506] audit: type=1400 audit(1783760763.444:421): apparmor="DENIED" operation="open" class="file" profile="lsusb" name="/sys/devices/pci0000:80/0000:80:14.0/uevent" pid=215260 comm="lsusb" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[185994.836512] audit: type=1400 audit(1783760763.444:422): apparmor="DENIED" operation="open" class="file" profile="lsusb" name="/sys/devices/pci0000:80/uevent" pid=215260 comm="lsusb" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[185994.836629] audit: type=1400 audit(1783760763.444:423): apparmor="DENIED" operation="open" class="file" profile="lsusb" name="/sys/devices/pci0000:80/0000:80:14.0/uevent" pid=215260 comm="lsusb" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[185994.836753] audit: type=1400 audit(1783760763.444:424): apparmor="DENIED" operation="open" class="file" profile="lsusb" name="/sys/devices/pci0000:80/uevent" pid=215260 comm="lsusb" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[185994.836972] audit: type=1400 audit(1783760763.445:425): apparmor="DENIED" operation="open" class="file" profile="lsusb" name="/sys/devices/pci0000:00/0000:00:06.1/0000:02:00.0/0000:03:02.0/0000:38:00.0/uevent" pid=215260 comm="lsusb" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[185994.836975] audit: type=1400 audit(1783760763.445:426): apparmor="DENIED" operation="open" class="file" profile="lsusb" name="/sys/devices/pci0000:00/0000:00:06.1/0000:02:00.0/0000:03:02.0/uevent" pid=215260 comm="lsusb" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[185994.836976] audit: type=1400 audit(1783760763.445:427): apparmor="DENIED" operation="open" class="file" profile="lsusb" name="/sys/devices/pci0000:00/0000:00:06.1/0000:02:00.0/uevent" pid=215260 comm="lsusb" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[185994.836978] audit: type=1400 audit(1783760763.445:428): apparmor="DENIED" operation="open" class="file" profile="lsusb" name="/sys/devices/pci0000:00/0000:00:06.1/uevent" pid=215260 comm="lsusb" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[185994.836979] audit: type=1400 audit(1783760763.445:429): apparmor="DENIED" operation="open" class="file" profile="lsusb" name="/sys/devices/pci0000:00/uevent" pid=215260 comm="lsusb" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[185994.837984] audit: type=1400 audit(1783760763.446:430): apparmor="DENIED" operation="open" class="file" profile="lsusb" name="/sys/devices/pci0000:80/0000:80:14.0/uevent" pid=215260 comm="lsusb" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0

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

end of thread, other threads:[~2026-07-11  9:10 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-05 13:48 [PATCH RFC] thunderbolt: Add JHL9580 Barlow Ridge (TB5) ICM support — host_reset timeout blocking PCIe tunneling Neo
2026-07-05 13:58 ` Neo
2026-07-07 14:56   ` Alan Borzeszkowski
2026-07-11  9:09     ` Neo
  -- strict thread matches above, loose matches on Subject: below --
2026-07-03  3:49 Neo
2026-07-03 16:48 ` Alan Borzeszkowski

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